From owner-svn-src-projects@FreeBSD.ORG Sun Sep 15 21:18:52 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 29B2E84F; Sun, 15 Sep 2013 21:18:52 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1632D2644; Sun, 15 Sep 2013 21:18:52 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8FLIp5j056155; Sun, 15 Sep 2013 21:18:51 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8FLIpU9056151; Sun, 15 Sep 2013 21:18:51 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201309152118.r8FLIpU9056151@svn.freebsd.org> From: Nathan Whitehorn Date: Sun, 15 Sep 2013 21:18:51 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255603 - in projects/pseries: conf 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.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Sep 2013 21:18:52 -0000 Author: nwhitehorn Date: Sun Sep 15 21:18:50 2013 New Revision: 255603 URL: http://svnweb.freebsd.org/changeset/base/255603 Log: Add support for the PAPR IOMMU. This makes DMA work at least on the QEMU pSeries emulator. Thanks to kib for working through some details on IRC. Added: projects/pseries/powerpc/pseries/plpar_iommu.c (contents, props changed) projects/pseries/powerpc/pseries/plpar_iommu.h (contents, props changed) Modified: projects/pseries/conf/files.powerpc projects/pseries/powerpc/pseries/rtas_pci.c Modified: projects/pseries/conf/files.powerpc ============================================================================== --- projects/pseries/conf/files.powerpc Sun Sep 15 16:27:25 2013 (r255602) +++ projects/pseries/conf/files.powerpc Sun Sep 15 21:18:50 2013 (r255603) @@ -229,6 +229,7 @@ powerpc/pseries/phyp-hvcall.S optional p powerpc/pseries/mmu_phyp.c optional pseries powerpc64 powerpc/pseries/phyp_console.c optional pseries powerpc64 powerpc/pseries/platform_chrp.c optional pseries +powerpc/pseries/plpar_iommu.c optional pseries powerpc64 powerpc/pseries/rtas_dev.c optional pseries powerpc/pseries/rtas_pci.c optional pseries pci powerpc/pseries/vdevice.c optional pseries powerpc64 Added: projects/pseries/powerpc/pseries/plpar_iommu.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/pseries/powerpc/pseries/plpar_iommu.c Sun Sep 15 21:18:50 2013 (r255603) @@ -0,0 +1,231 @@ +/*- + * Copyright (c) 2013, Nathan Whitehorn + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice unmodified, this list of conditions, and the following + * disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include +#include + +MALLOC_DEFINE(M_PHYPIOMMU, "iommu", "IOMMU data for PAPR LPARs"); + +struct papr_iommu_map { + uint32_t iobn; + vmem_t *vmem; + struct papr_iommu_map *next; +}; + +static SLIST_HEAD(iommu_maps, iommu_map) iommu_map_head = + SLIST_HEAD_INITIALIZER(iommu_map_head); +static int papr_supports_stuff_tce = -1; + +struct iommu_map { + uint32_t iobn; + vmem_t *vmem; + + SLIST_ENTRY(iommu_map) entries; +}; + +struct dma_window { + struct iommu_map *map; + bus_addr_t start; + bus_addr_t end; +}; + +int +phyp_iommu_set_dma_tag(device_t dev, device_t child, bus_dma_tag_t tag) +{ + device_t p; + phandle_t node; + cell_t dma_acells, dma_scells, dmawindow[5]; + struct iommu_map *i; + + for (p = child; p != NULL; p = device_get_parent(p)) { + if (ofw_bus_has_prop(p, "ibm,my-dma-window")) + break; + if (ofw_bus_has_prop(p, "ibm,dma-window")) + break; + } + + if (p == NULL) + return (ENXIO); + + node = ofw_bus_get_node(p); + if (OF_getprop(node, "ibm,#dma-size-cells", &dma_scells, + sizeof(cell_t)) <= 0) + OF_searchprop(node, "#size-cells", &dma_scells, sizeof(cell_t)); + if (OF_getprop(node, "ibm,#dma-address-cells", &dma_acells, + sizeof(cell_t)) <= 0) + OF_searchprop(node, "#address-cells", &dma_acells, + sizeof(cell_t)); + + if (ofw_bus_has_prop(p, "ibm,my-dma-window")) + OF_getprop(node, "ibm,my-dma-window", dmawindow, + sizeof(cell_t)*(dma_scells + dma_acells + 1)); + else + OF_getprop(node, "ibm,dma-window", dmawindow, + sizeof(cell_t)*(dma_scells + dma_acells + 1)); + + struct dma_window *window = malloc(sizeof(struct dma_window), + M_PHYPIOMMU, M_WAITOK); + if (dma_acells == 1) + window->start = dmawindow[1]; + else + window->start = ((uint64_t)(dmawindow[1]) << 32) | dmawindow[2]; + if (dma_scells == 1) + window->end = window->start + dmawindow[dma_acells + 1]; + else + window->end = window->start + + (((uint64_t)(dmawindow[dma_acells + 1]) << 32) | + dmawindow[dma_acells + 2]); + + window->map = NULL; + SLIST_FOREACH(i, &iommu_map_head, entries) { + if (i->iobn == dmawindow[0]) { + window->map = i; + break; + } + } + + if (window->map == NULL) { + window->map = malloc(sizeof(struct iommu_map), M_PHYPIOMMU, + M_WAITOK); + window->map->iobn = dmawindow[0]; + window->map->vmem = vmem_create("IOMMU mappings", 0, + trunc_page(VMEM_ADDR_MAX), PAGE_SIZE, 0, + M_BESTFIT | M_NOWAIT); + } + + /* + * Check experimentally whether we can use H_STUFF_TCE. It is required + * by the spec but some firmware (e.g. QEMU) does not actually support + * it + */ + if (papr_supports_stuff_tce == -1) + papr_supports_stuff_tce = !(phyp_hcall(H_STUFF_TCE, + window->map->iobn, 0, 0, 0) == H_FUNCTION); + + bus_dma_tag_set_iommu(tag, dev, window); + + return (0); +} + +int +phyp_iommu_map(device_t dev, bus_dma_segment_t *segs, int *nsegs, + bus_addr_t min, bus_addr_t max, bus_size_t alignment, bus_addr_t boundary, + void *cookie) +{ + struct dma_window *window = cookie; + bus_addr_t minaddr, maxaddr; + bus_addr_t alloced; + bus_size_t allocsize; + int error, i, j; + uint64_t tce; + minaddr = window->start; + maxaddr = window->end; + + /* XXX: handle exclusion range in a more useful way */ + if (min < maxaddr) + maxaddr = min; + + /* XXX: is this correct? */ + if (alignment % PAGE_SIZE != 0) + alignment = PAGE_SIZE; + + /* XXX: consolidate segs? */ + for (i = 0; i < *nsegs; i++) { + allocsize = round_page(segs[i].ds_len + + (segs[i].ds_addr & PAGE_MASK)); + error = vmem_xalloc(window->map->vmem, allocsize, alignment, 0, + boundary, minaddr, maxaddr, M_BESTFIT | M_NOWAIT, &alloced); + if (error != 0) { + panic("VMEM failure: %d\n", error); + return (error); + } + + tce = trunc_page(segs[i].ds_addr); + tce |= 0x3; /* read/write */ + if (papr_supports_stuff_tce) { + error = phyp_hcall(H_STUFF_TCE, window->map->iobn, + alloced, tce, allocsize/PAGE_SIZE); + } else { + for (j = 0; j < allocsize; j += PAGE_SIZE) + error = phyp_hcall(H_PUT_TCE, window->map->iobn, + alloced + j, tce + j); + } + + segs[i].ds_addr = alloced + (segs[i].ds_addr & PAGE_MASK); + if (error < 0) { + panic("IOMMU mapping error: %d\n", error); + return (ENOMEM); + } + } + + return (0); +} + +int +phyp_iommu_unmap(device_t dev, bus_dma_segment_t *segs, int nsegs, void *cookie) +{ + struct dma_window *window = cookie; + bus_addr_t pageround; + bus_size_t roundedsize; + int i; + bus_addr_t j; + + for (i = 0; i < nsegs; i++) { + pageround = trunc_page(segs[i].ds_addr); + roundedsize = round_page(segs[i].ds_len + + (segs[i].ds_addr & PAGE_MASK)); + + if (papr_supports_stuff_tce) { + phyp_hcall(H_STUFF_TCE, window->map->iobn, pageround, 0, + roundedsize/PAGE_SIZE); + } else { + for (j = 0; j < roundedsize; j += PAGE_SIZE) + phyp_hcall(H_PUT_TCE, window->map->iobn, + pageround + j, 0); + } + + vmem_xfree(window->map->vmem, pageround, roundedsize); + } + + return (0); +} + Added: projects/pseries/powerpc/pseries/plpar_iommu.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/pseries/powerpc/pseries/plpar_iommu.h Sun Sep 15 21:18:50 2013 (r255603) @@ -0,0 +1,41 @@ +/*- + * Copyright (c) 2013, Nathan Whitehorn + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice unmodified, this list of conditions, and the following + * disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef _PSERIES_PHYP_IOMMU_H_ +#define _PSERIES_PHYP_IOMMU_H_ + +#include +#include + +int phyp_iommu_set_dma_tag(device_t dev, device_t child, bus_dma_tag_t tag); +int phyp_iommu_map(device_t dev, bus_dma_segment_t *segs, int *nsegs, + bus_addr_t min, bus_addr_t max, bus_size_t alignment, bus_addr_t boundary, + void *cookie); +int phyp_iommu_unmap(device_t dev, bus_dma_segment_t *segs, int nsegs, + void *cookie); + +#endif + Modified: projects/pseries/powerpc/pseries/rtas_pci.c ============================================================================== --- projects/pseries/powerpc/pseries/rtas_pci.c Sun Sep 15 16:27:25 2013 (r255602) +++ projects/pseries/powerpc/pseries/rtas_pci.c Sun Sep 15 21:18:50 2013 (r255603) @@ -54,8 +54,10 @@ __FBSDID("$FreeBSD: projects/pseries/pow #include #include +#include #include "pcib_if.h" +#include "iommu_if.h" /* * Device interface. @@ -72,6 +74,11 @@ static void rtaspci_write_config(device u_int, u_int32_t, int); /* + * IOMMU LPAR interface + */ +static bus_dma_tag_t rtaspci_get_dma_tag(device_t dev, device_t child); + +/* * Driver methods. */ static device_method_t rtaspci_methods[] = { @@ -83,11 +90,19 @@ static device_method_t rtaspci_methods[] DEVMETHOD(pcib_read_config, rtaspci_read_config), DEVMETHOD(pcib_write_config, rtaspci_write_config), + /* IOMMU functions */ + DEVMETHOD(bus_get_dma_tag, rtaspci_get_dma_tag), +#ifdef __powerpc64__ + DEVMETHOD(iommu_map, phyp_iommu_map), + DEVMETHOD(iommu_unmap, phyp_iommu_unmap), +#endif + DEVMETHOD_END }; struct rtaspci_softc { struct ofw_pci_softc pci_sc; + bus_dma_tag_t dma_tag; cell_t read_pci_config, write_pci_config; cell_t ex_read_pci_config, ex_write_pci_config; @@ -134,6 +149,15 @@ rtaspci_attach(device_t dev) OF_getprop(ofw_bus_get_node(dev), "ibm,pci-config-space-type", &sc->sc_extended_config, sizeof(sc->sc_extended_config)); + bus_dma_tag_create(bus_get_dma_tag(dev), + 1, 0, BUS_SPACE_MAXADDR, BUS_SPACE_MAXADDR, + NULL, NULL, BUS_SPACE_MAXSIZE, 0, BUS_SPACE_MAXSIZE, + 0, NULL, NULL, &sc->dma_tag); +#ifdef __powerpc64__ + if (!(mfmsr() & PSL_HV)) + phyp_iommu_set_dma_tag(dev, dev, sc->dma_tag); +#endif + return (ofw_pci_attach(dev)); } @@ -201,3 +225,12 @@ rtaspci_write_config(device_t dev, u_int width, val, &pcierror); } +static bus_dma_tag_t +rtaspci_get_dma_tag(device_t dev, device_t child) +{ + struct rtaspci_softc *sc; + + sc = device_get_softc(dev); + return (sc->dma_tag); +} + From owner-svn-src-projects@FreeBSD.ORG Mon Sep 16 00:06:59 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E1EFF4E4; Mon, 16 Sep 2013 00:06:59 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id CB0052DE4; Mon, 16 Sep 2013 00:06:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8G06xI7045127; Mon, 16 Sep 2013 00:06:59 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8G06tUv045001; Mon, 16 Sep 2013 00:06:55 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309160006.r8G06tUv045001@svn.freebsd.org> From: Neel Natu Date: Mon, 16 Sep 2013 00:06:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255605 - in projects/bhyve_npt_pmap: . contrib/gcc/config/arm contrib/ipfilter contrib/ipfilter/BSD contrib/ipfilter/FWTK contrib/ipfilter/FreeBSD contrib/ipfilter/FreeBSD-2.2 contrib/... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Sep 2013 00:07:00 -0000 Author: neel Date: Mon Sep 16 00:06:54 2013 New Revision: 255605 URL: http://svnweb.freebsd.org/changeset/base/255605 Log: IFC @255409 Added: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/upgrade - copied unchanged from r255409, head/contrib/ipfilter/BSD/upgrade projects/bhyve_npt_pmap/contrib/ipfilter/WhatsNew50.txt - copied unchanged from r255409, head/contrib/ipfilter/WhatsNew50.txt projects/bhyve_npt_pmap/contrib/ipfilter/arc4random.c - copied unchanged from r255409, head/contrib/ipfilter/arc4random.c projects/bhyve_npt_pmap/contrib/ipfilter/genmask.c - copied unchanged from r255409, head/contrib/ipfilter/genmask.c projects/bhyve_npt_pmap/contrib/ipfilter/ip_dstlist.c - copied unchanged from r255409, head/contrib/ipfilter/ip_dstlist.c projects/bhyve_npt_pmap/contrib/ipfilter/ip_dstlist.h - copied unchanged from r255409, head/contrib/ipfilter/ip_dstlist.h projects/bhyve_npt_pmap/contrib/ipfilter/ip_fil_compat.c - copied unchanged from r255409, head/contrib/ipfilter/ip_fil_compat.c projects/bhyve_npt_pmap/contrib/ipfilter/ipf_rb.h - copied unchanged from r255409, head/contrib/ipfilter/ipf_rb.h projects/bhyve_npt_pmap/contrib/ipfilter/lib/allocmbt.c - copied unchanged from r255409, head/contrib/ipfilter/lib/allocmbt.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/assigndefined.c - copied unchanged from r255409, head/contrib/ipfilter/lib/assigndefined.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/connecttcp.c - copied unchanged from r255409, head/contrib/ipfilter/lib/connecttcp.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/dupmbt.c - copied unchanged from r255409, head/contrib/ipfilter/lib/dupmbt.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/familyname.c - copied unchanged from r255409, head/contrib/ipfilter/lib/familyname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/findword.c - copied unchanged from r255409, head/contrib/ipfilter/lib/findword.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/freembt.c - copied unchanged from r255409, head/contrib/ipfilter/lib/freembt.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ftov.c - copied unchanged from r255409, head/contrib/ipfilter/lib/ftov.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/geticmptype.c - copied unchanged from r255409, head/contrib/ipfilter/lib/geticmptype.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/icmptypename.c - copied unchanged from r255409, head/contrib/ipfilter/lib/icmptypename.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/icmptypes.c - copied unchanged from r255409, head/contrib/ipfilter/lib/icmptypes.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/interror.c - copied unchanged from r255409, head/contrib/ipfilter/lib/interror.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipf_perror.c - copied unchanged from r255409, head/contrib/ipfilter/lib/ipf_perror.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_dstlist.c - copied unchanged from r255409, head/contrib/ipfilter/lib/load_dstlist.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_dstlistnode.c - copied unchanged from r255409, head/contrib/ipfilter/lib/load_dstlistnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/mb_hexdump.c - copied unchanged from r255409, head/contrib/ipfilter/lib/mb_hexdump.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/msgdsize.c - copied unchanged from r255409, head/contrib/ipfilter/lib/msgdsize.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/parsefields.c - copied unchanged from r255409, head/contrib/ipfilter/lib/parsefields.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/parseipfexpr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/parseipfexpr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/parsewhoisline.c - copied unchanged from r255409, head/contrib/ipfilter/lib/parsewhoisline.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/poolio.c - copied unchanged from r255409, head/contrib/ipfilter/lib/poolio.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/prependmbt.c - copied unchanged from r255409, head/contrib/ipfilter/lib/prependmbt.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printactiveaddr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printactiveaddr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printaddr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printaddr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printdstl_live.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printdstl_live.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printdstlist.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printdstlist.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printdstlistdata.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printdstlistdata.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printdstlistnode.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printdstlistnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printdstlistpolicy.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printdstlistpolicy.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printfieldhdr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printfieldhdr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhost.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printhost.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printipfexpr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printipfexpr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printiphdr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printiphdr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printlookup.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printlookup.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printnataddr.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printnataddr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printnatfield.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printnatfield.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printnatside.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printnatside.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpoolfield.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printpoolfield.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printstatefields.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printstatefields.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printtcpflags.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printtcpflags.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printunit.c - copied unchanged from r255409, head/contrib/ipfilter/lib/printunit.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_execute.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_execute.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_file.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_file.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_nothing.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_nothing.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_syslog.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_syslog.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_v1trap.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_v1trap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/save_v2trap.c - copied unchanged from r255409, head/contrib/ipfilter/lib/save_v2trap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/vtof.c - copied unchanged from r255409, head/contrib/ipfilter/lib/vtof.c - copied unchanged from r255409, head/contrib/ipfilter/ml_ipl.c - copied unchanged from r255409, head/contrib/ipfilter/mlfk_ipl.c - copied unchanged from r255409, head/contrib/ipfilter/mli_ipl.c - copied unchanged from r255409, head/contrib/ipfilter/mln_ipl.c projects/bhyve_npt_pmap/contrib/ipfilter/mln_rule.c - copied unchanged from r255409, head/contrib/ipfilter/mln_rule.c projects/bhyve_npt_pmap/contrib/ipfilter/mlo_ipl.c - copied unchanged from r255409, head/contrib/ipfilter/mlo_ipl.c projects/bhyve_npt_pmap/contrib/ipfilter/mlo_rule.c - copied unchanged from r255409, head/contrib/ipfilter/mlo_rule.c - copied unchanged from r255409, head/contrib/ipfilter/mls_ipl.c projects/bhyve_npt_pmap/contrib/ipfilter/mls_rule.c - copied unchanged from r255409, head/contrib/ipfilter/mls_rule.c projects/bhyve_npt_pmap/contrib/ipfilter/mlso_rule.c - copied unchanged from r255409, head/contrib/ipfilter/mlso_rule.c projects/bhyve_npt_pmap/contrib/ipfilter/radix_ipf.c - copied unchanged from r255409, head/contrib/ipfilter/radix_ipf.c projects/bhyve_npt_pmap/contrib/ipfilter/sys/ - copied from r255409, head/contrib/ipfilter/sys/ projects/bhyve_npt_pmap/contrib/ipfilter/test/e4to6 - copied unchanged from r255409, head/contrib/ipfilter/test/e4to6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f21 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f21 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f22 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f22 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f25 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f25 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f26 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f26 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f27 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f27 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f28 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f28 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f29 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f29 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f30 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/f30 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i22 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/i22 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i23 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/i23 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in100 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/in100 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in101 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/in101 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in102 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/in102 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in7 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/in7 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ip3 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/ip3 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ipv6.4 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/ipv6.4 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n100 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n100 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n101 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n101 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n102 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n102 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n103 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n103 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n104 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n104 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n105 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n105 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n106 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n106 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n11_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n11_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n12_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n12_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n13_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n13_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n14_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n14_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n15 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n15 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n15_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n15_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n17 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n17 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n18 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n18 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n1_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n1_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n200 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n200 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n2_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n2_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n4_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n4_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n5_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n5_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n6_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n6_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n7_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n7_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n8_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n8_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n9_6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/n9_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni17 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/ni17 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni18 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/ni18 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p10 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p10 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p11 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p11 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p12 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p12 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p13 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p13 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p4 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p4 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p6 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p7 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p7 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p9 - copied unchanged from r255409, head/contrib/ipfilter/test/expected/p9 projects/bhyve_npt_pmap/contrib/ipfilter/test/h4to6 - copied unchanged from r255409, head/contrib/ipfilter/test/h4to6 projects/bhyve_npt_pmap/contrib/ipfilter/test/i4to6 - copied unchanged from r255409, head/contrib/ipfilter/test/i4to6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f21 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f21 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f22 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f22 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f25 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f25 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f26 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f26 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f27 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f27 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f28 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f28 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f29 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f29 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f30 - copied unchanged from r255409, head/contrib/ipfilter/test/input/f30 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ipv6.4 - copied unchanged from r255409, head/contrib/ipfilter/test/input/ipv6.4 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n100 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n100 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n101 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n101 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n102 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n102 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n103 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n103 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n104 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n104 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n105 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n105 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n106 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n106 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n10_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n10_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n11_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n11_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n12_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n12_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n13_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n13_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n14_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n14_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n15 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n15 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n15_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n15_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n17 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n17 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n17_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n17_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n18 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n18 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n1_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n1_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n200 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n200 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n2_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n2_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n4_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n4_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n5_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n5_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n6_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n6_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n7_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n7_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n8_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n8_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n9_6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/n9_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni18 - copied unchanged from r255409, head/contrib/ipfilter/test/input/ni18 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p10 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p10 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p11 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p11 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p12 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p12 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p13 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p13 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p4 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p4 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p6 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p7 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p7 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/p9 - copied unchanged from r255409, head/contrib/ipfilter/test/input/p9 projects/bhyve_npt_pmap/contrib/ipfilter/test/ipflib.sh - copied unchanged from r255409, head/contrib/ipfilter/test/ipflib.sh projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f21 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f21 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f22 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f22 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f25 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f25 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f26 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f26 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f27 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f27 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f28.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f28.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f28.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f28.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f29.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f29.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f29.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f29.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f30 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/f30 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i22 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/i22 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i23 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/i23 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/in100 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/in100 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/in101 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/in101 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/in102 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/in102 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/in7 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/in7 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ip3 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/ip3 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ipv6.4 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/ipv6.4 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n100 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n100 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n101 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n101 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n102 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n102 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n103 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n103 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n104 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n104 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n105 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n105 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n106 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n106 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n10_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n10_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n11_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n11_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n12_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n12_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n13_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n13_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n14_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n14_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n15 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n15 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n15_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n15_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n16_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n16_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n17 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n17 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n17_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n17_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n18 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n18 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n1_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n1_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n200 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n200 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n2_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n2_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n4_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n4_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n5_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n5_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n6_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n6_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n7_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n7_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n8_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n8_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/n9_6 - copied unchanged from r255409, head/contrib/ipfilter/test/regress/n9_6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ni17.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/ni17.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ni18.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/ni18.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ni18.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/ni18.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p10.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p10.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p10.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p10.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p11.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p11.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p11.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p11.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p12.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p12.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p12.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p12.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p13.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p13.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p13.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p13.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p4.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p4.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p4.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p4.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p6.ipf - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p6.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p6.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p6.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p6.whois - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p6.whois projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p7.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p7.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p7.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p7.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p9.nat - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p9.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p9.pool - copied unchanged from r255409, head/contrib/ipfilter/test/regress/p9.pool projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipfsyncd.c - copied unchanged from r255409, head/contrib/ipfilter/tools/ipfsyncd.c projects/bhyve_npt_pmap/contrib/ldns-host/ - copied from r255409, head/contrib/ldns-host/ projects/bhyve_npt_pmap/contrib/openpam/lib/libpam/ - copied from r255409, head/contrib/openpam/lib/libpam/ projects/bhyve_npt_pmap/contrib/openpam/m4/ - copied from r255409, head/contrib/openpam/m4/ projects/bhyve_npt_pmap/contrib/openpam/mkpkgng.in - copied unchanged from r255409, head/contrib/openpam/mkpkgng.in projects/bhyve_npt_pmap/contrib/openpam/t/t_file.c - copied unchanged from r255409, head/contrib/openpam/t/t_file.c projects/bhyve_npt_pmap/contrib/openpam/test-driver - copied unchanged from r255409, head/contrib/openpam/test-driver projects/bhyve_npt_pmap/etc/etc.amd64/libmap32.conf - copied unchanged from r255409, head/etc/etc.amd64/libmap32.conf projects/bhyve_npt_pmap/share/examples/kld/random_adaptor/ - copied from r255409, head/share/examples/kld/random_adaptor/ projects/bhyve_npt_pmap/sys/arm/broadcom/bcm2835/bcm2835_gpio.h - copied unchanged from r255409, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_dns_pxy.c - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ip_dns_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_dstlist.c - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ip_dstlist.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_dstlist.h - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ip_dstlist.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_nat6.c - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ip_nat6.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ipf_rb.h - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/ipf_rb.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/radix_ipf.c - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/radix_ipf.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/radix_ipf.h - copied unchanged from r255409, head/sys/contrib/ipfilter/netinet/radix_ipf.h projects/bhyve_npt_pmap/sys/dev/random/pseudo_rng.c - copied unchanged from r255409, head/sys/dev/random/pseudo_rng.c projects/bhyve_npt_pmap/sys/dev/random/random_harvestq.c - copied unchanged from r255409, head/sys/dev/random/random_harvestq.c projects/bhyve_npt_pmap/sys/dev/random/random_harvestq.h - copied unchanged from r255409, head/sys/dev/random/random_harvestq.h projects/bhyve_npt_pmap/sys/mips/mips/bcopy.S - copied unchanged from r255409, head/sys/mips/mips/bcopy.S Directory Properties: projects/bhyve_npt_pmap/contrib/ipfilter/ml_ipl.c (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/mlfk_ipl.c (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/mli_ipl.c (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/mln_ipl.c (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/mls_ipl.c (props changed) Replaced: projects/bhyve_npt_pmap/contrib/openpam/lib/Makefile.am - copied unchanged from r255409, head/contrib/openpam/lib/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/lib/Makefile.in - copied unchanged from r255409, head/contrib/openpam/lib/Makefile.in Deleted: projects/bhyve_npt_pmap/contrib/ipfilter/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/BSD/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/iplang/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/README projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/hpux.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/in_var.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ip_var.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/tcpip.h projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_ef.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_sn.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_td.c projects/bhyve_npt_pmap/contrib/ipfilter/net/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/radix.c projects/bhyve_npt_pmap/contrib/ipfilter/rules/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/samples/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/test/.cvsignore projects/bhyve_npt_pmap/contrib/ipfilter/test/hextest projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ipf6-1 projects/bhyve_npt_pmap/contrib/ipfilter/test/mhtest projects/bhyve_npt_pmap/contrib/openpam/FREEBSD-vendor projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_borrow_cred.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_check_owner_perms.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_configure.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_constants.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_constants.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_ctype.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_debug.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_dispatch.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_dynamic.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_features.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_features.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_findenv.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_free_data.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_free_envlist.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_get_feature.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_get_option.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_impl.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_load.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_log.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_nullconv.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_readline.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_readlinev.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_readword.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_restore_cred.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_set_feature.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_set_option.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_static.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_straddch.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_strlcat.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_strlcmp.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_strlcpy.h projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_subst.c projects/bhyve_npt_pmap/contrib/openpam/lib/openpam_ttyconv.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_acct_mgmt.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_authenticate.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_authenticate_secondary.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_chauthtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_close_session.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_end.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_error.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_authtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_data.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_item.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_mapped_authtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_mapped_username.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_get_user.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_getenv.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_getenvlist.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_info.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_open_session.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_prompt.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_putenv.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_set_data.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_set_item.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_set_mapped_authtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_set_mapped_username.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_setcred.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_setenv.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_acct_mgmt.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_authenticate.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_authenticate_secondary.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_chauthtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_close_session.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_get_mapped_authtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_get_mapped_username.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_open_session.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_set_mapped_authtok.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_set_mapped_username.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_sm_setcred.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_start.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_strerror.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_verror.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_vinfo.c projects/bhyve_npt_pmap/contrib/openpam/lib/pam_vprompt.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/QNX_OCL.txt projects/bhyve_npt_pmap/sys/dev/random/probe.c Modified: projects/bhyve_npt_pmap/Makefile.inc1 projects/bhyve_npt_pmap/ObsoleteFiles.inc projects/bhyve_npt_pmap/UPDATING projects/bhyve_npt_pmap/contrib/gcc/config/arm/ieee754-df.S projects/bhyve_npt_pmap/contrib/ipfilter/BNF projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile.ipsend projects/bhyve_npt_pmap/contrib/ipfilter/BSD/ipfadm-rcd projects/bhyve_npt_pmap/contrib/ipfilter/BSD/kupgrade projects/bhyve_npt_pmap/contrib/ipfilter/FAQ.FreeBSD projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/ftp-gw.diff projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/fwtk_transparent.diff projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-2.2/kinstall projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/kinstall projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-4.0/kinstall projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD/kinstall projects/bhyve_npt_pmap/contrib/ipfilter/HISTORY projects/bhyve_npt_pmap/contrib/ipfilter/INSTALL.FreeBSD projects/bhyve_npt_pmap/contrib/ipfilter/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/NAT.FreeBSD projects/bhyve_npt_pmap/contrib/ipfilter/etc/protocols projects/bhyve_npt_pmap/contrib/ipfilter/etc/services projects/bhyve_npt_pmap/contrib/ipfilter/ip_fil.c projects/bhyve_npt_pmap/contrib/ipfilter/ipf.h projects/bhyve_npt_pmap/contrib/ipfilter/iplang/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/iplang/iplang.h projects/bhyve_npt_pmap/contrib/ipfilter/iplang/iplang.tst projects/bhyve_npt_pmap/contrib/ipfilter/iplang/iplang_l.l projects/bhyve_npt_pmap/contrib/ipfilter/iplang/iplang_y.y projects/bhyve_npt_pmap/contrib/ipfilter/ipmon.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/ipsd.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/ipsdr.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/linux.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/sbpf.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/sdlpi.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/slinux.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsd/snit.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/44arp.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/arp.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/dlcommon.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ip.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ipresend.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ipsend.5 projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ipsend.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ipsend.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/ipsopt.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/iptest.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/iptests.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/larp.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/linux.h projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/lsock.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/resend.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/sbpf.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/sdlpi.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/sirix.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/slinux.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/snit.c projects/bhyve_npt_pmap/contrib/ipfilter/ipsend/sock.c projects/bhyve_npt_pmap/contrib/ipfilter/ipt.h projects/bhyve_npt_pmap/contrib/ipfilter/kmem.h projects/bhyve_npt_pmap/contrib/ipfilter/l4check/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/l4check/l4check.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/lib/addicmp.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/addipopt.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/alist_free.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/alist_new.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/bcopywrap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/binprint.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/buildopts.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/checkrev.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/count4bits.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/count6bits.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/debug.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/facpri.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/facpri.h projects/bhyve_npt_pmap/contrib/ipfilter/lib/fill6bits.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/flags.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/gethost.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getifname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getnattype.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getport.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getportproto.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getproto.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/getsumd.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/hostname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/icmpcode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/initparse.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ionames.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipf_dotuning.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_hx.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_pc.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipft_tx.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ipoptsec.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/kmem.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/kmem.h projects/bhyve_npt_pmap/contrib/ipfilter/lib/kmemcpywrap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/kvatoname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_file.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_hash.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_hashnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_http.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_pool.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_poolnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/load_url.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/mutex_emul.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/nametokva.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/nat_setgroupmap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/ntomask.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/optname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/optprint.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/optprintv6.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/optvalue.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/portname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/print_toif.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printactivenat.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printaps.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printbuf.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printfr.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printfraginfo.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhash.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhash_live.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhashdata.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhashnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhostmap.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printhostmask.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printifname.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printip.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printlog.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printmask.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printnat.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpacket.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpacket6.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpool.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpool_live.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpooldata.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printpoolnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printportcmp.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printproto.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printsbuf.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printstate.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printtqtable.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/printtunable.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/remove_hash.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/remove_hashnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/remove_pool.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/remove_poolnode.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/resetlexer.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/rwlock_emul.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/tcpflags.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/tcpoptnames.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/v6ionames.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/v6optvalue.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/var.c projects/bhyve_npt_pmap/contrib/ipfilter/lib/verbose.c projects/bhyve_npt_pmap/contrib/ipfilter/man/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/man/ipf.4 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipf.5 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipfilter.4 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipfilter.4.mandoc projects/bhyve_npt_pmap/contrib/ipfilter/man/ipfstat.8 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipftest.1 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipmon.5 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipnat.4 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipnat.5 projects/bhyve_npt_pmap/contrib/ipfilter/man/ipnat.8 projects/bhyve_npt_pmap/contrib/ipfilter/man/ippool.5 projects/bhyve_npt_pmap/contrib/ipfilter/man/ippool.8 projects/bhyve_npt_pmap/contrib/ipfilter/md5.c projects/bhyve_npt_pmap/contrib/ipfilter/mkfilters projects/bhyve_npt_pmap/contrib/ipfilter/mlf_ipl.c projects/bhyve_npt_pmap/contrib/ipfilter/mlf_rule.c projects/bhyve_npt_pmap/contrib/ipfilter/mlfk_rule.c projects/bhyve_npt_pmap/contrib/ipfilter/mlh_rule.c (contents, props changed) projects/bhyve_npt_pmap/contrib/ipfilter/opts.h projects/bhyve_npt_pmap/contrib/ipfilter/pcap-ipf.h projects/bhyve_npt_pmap/contrib/ipfilter/perl/Ipfanaly.pl projects/bhyve_npt_pmap/contrib/ipfilter/perl/Isbgraph projects/bhyve_npt_pmap/contrib/ipfilter/perl/Services projects/bhyve_npt_pmap/contrib/ipfilter/perl/ipfmeta.pl projects/bhyve_npt_pmap/contrib/ipfilter/perl/logfilter.pl projects/bhyve_npt_pmap/contrib/ipfilter/radix_ipf.h projects/bhyve_npt_pmap/contrib/ipfilter/rules/BASIC_1.FW projects/bhyve_npt_pmap/contrib/ipfilter/rules/BASIC_2.FW projects/bhyve_npt_pmap/contrib/ipfilter/rules/firewall projects/bhyve_npt_pmap/contrib/ipfilter/rules/ipmon.conf projects/bhyve_npt_pmap/contrib/ipfilter/rules/server projects/bhyve_npt_pmap/contrib/ipfilter/samples/proxy.c projects/bhyve_npt_pmap/contrib/ipfilter/samples/relay.c projects/bhyve_npt_pmap/contrib/ipfilter/snoop.h projects/bhyve_npt_pmap/contrib/ipfilter/test/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/test/bpftest projects/bhyve_npt_pmap/contrib/ipfilter/test/dotest projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f11 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f13 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/f18 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i10 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i11 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i12 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i14 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i17 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i18 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i20 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i3 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i4 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i5 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i7 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i8 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i9 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in3 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in5 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/in6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ip1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ip2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ipv6.6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/l1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/l1.b projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n10 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n11 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n12 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n13 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n14 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n16 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n3 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n4 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n5 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n7 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n8 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/n9 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni10 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni11 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni12 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni19 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni20 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni21 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni23 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni4 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni5 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni6 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/ni8 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p1 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p2 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p3 projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/p5 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f13 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/f24 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ipv6.1 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ipv6.3 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ipv6.6 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n10 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n12 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n16 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n8 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/n9 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni1 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni10 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni11 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni12 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni13 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni14 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni15 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni16 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni19 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni2 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni20 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni3 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni4 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni5 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni7 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni8 projects/bhyve_npt_pmap/contrib/ipfilter/test/input/ni9 projects/bhyve_npt_pmap/contrib/ipfilter/test/intest projects/bhyve_npt_pmap/contrib/ipfilter/test/iptest projects/bhyve_npt_pmap/contrib/ipfilter/test/itest projects/bhyve_npt_pmap/contrib/ipfilter/test/logtest projects/bhyve_npt_pmap/contrib/ipfilter/test/mtest projects/bhyve_npt_pmap/contrib/ipfilter/test/natipftest projects/bhyve_npt_pmap/contrib/ipfilter/test/nattest projects/bhyve_npt_pmap/contrib/ipfilter/test/ptest projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/f13 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i11 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i12 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i14 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i17 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i18 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i2 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i21 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i7 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/i8 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/in2 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ipv6.5 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ipv6.6 projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ni13.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/ni14.nat projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p1.pool projects/bhyve_npt_pmap/contrib/ipfilter/test/regress/p3.ipf projects/bhyve_npt_pmap/contrib/ipfilter/test/test.format projects/bhyve_npt_pmap/contrib/ipfilter/test/vfycksum.pl projects/bhyve_npt_pmap/contrib/ipfilter/todo projects/bhyve_npt_pmap/contrib/ipfilter/tools/BNF.ipf projects/bhyve_npt_pmap/contrib/ipfilter/tools/Makefile projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipf.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipf_y.y projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipfcomp.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipfs.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipfstat.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipftest.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipmon.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipmon_y.y projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipnat.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipnat_y.y projects/bhyve_npt_pmap/contrib/ipfilter/tools/ippool.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ippool_y.y projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipscan_y.y projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipsyncm.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/ipsyncs.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/lex_var.h projects/bhyve_npt_pmap/contrib/ipfilter/tools/lexer.c projects/bhyve_npt_pmap/contrib/ipfilter/tools/lexer.h projects/bhyve_npt_pmap/contrib/openpam/CREDITS projects/bhyve_npt_pmap/contrib/openpam/HISTORY projects/bhyve_npt_pmap/contrib/openpam/INSTALL projects/bhyve_npt_pmap/contrib/openpam/LICENSE projects/bhyve_npt_pmap/contrib/openpam/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/README projects/bhyve_npt_pmap/contrib/openpam/RELNOTES projects/bhyve_npt_pmap/contrib/openpam/TODO projects/bhyve_npt_pmap/contrib/openpam/aclocal.m4 projects/bhyve_npt_pmap/contrib/openpam/autogen.sh projects/bhyve_npt_pmap/contrib/openpam/bin/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/bin/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/bin/openpam_dump_policy/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/bin/openpam_dump_policy/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/bin/openpam_dump_policy/openpam_dump_policy.c projects/bhyve_npt_pmap/contrib/openpam/bin/pamtest/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/bin/pamtest/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/bin/pamtest/pamtest.1 projects/bhyve_npt_pmap/contrib/openpam/bin/pamtest/pamtest.c projects/bhyve_npt_pmap/contrib/openpam/bin/su/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/bin/su/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/bin/su/su.1 projects/bhyve_npt_pmap/contrib/openpam/bin/su/su.c projects/bhyve_npt_pmap/contrib/openpam/compile projects/bhyve_npt_pmap/contrib/openpam/config.guess projects/bhyve_npt_pmap/contrib/openpam/config.h.in projects/bhyve_npt_pmap/contrib/openpam/config.sub projects/bhyve_npt_pmap/contrib/openpam/configure projects/bhyve_npt_pmap/contrib/openpam/configure.ac projects/bhyve_npt_pmap/contrib/openpam/depcomp projects/bhyve_npt_pmap/contrib/openpam/doc/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/doc/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/doc/man/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/doc/man/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam.man projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_borrow_cred.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_free_data.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_free_envlist.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_get_feature.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_get_option.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_log.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_nullconv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_readline.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_readlinev.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_readword.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_restore_cred.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_set_feature.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_set_option.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_straddch.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_subst.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/openpam_ttyconv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam.conf.5 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam.man projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_acct_mgmt.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_authenticate.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_chauthtok.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_close_session.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_conv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_end.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_error.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_get_authtok.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_get_data.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_get_item.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_get_user.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_getenv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_getenvlist.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_info.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_open_session.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_prompt.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_putenv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_set_data.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_set_item.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_setcred.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_setenv.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_authenticate.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_chauthtok.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_close_session.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_open_session.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_sm_setcred.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_start.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_strerror.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_verror.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_vinfo.3 projects/bhyve_npt_pmap/contrib/openpam/doc/man/pam_vprompt.3 projects/bhyve_npt_pmap/contrib/openpam/include/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/include/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/include/security/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/include/security/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/include/security/openpam.h projects/bhyve_npt_pmap/contrib/openpam/include/security/openpam_attr.h projects/bhyve_npt_pmap/contrib/openpam/include/security/openpam_version.h projects/bhyve_npt_pmap/contrib/openpam/include/security/pam_appl.h projects/bhyve_npt_pmap/contrib/openpam/include/security/pam_constants.h projects/bhyve_npt_pmap/contrib/openpam/include/security/pam_modules.h projects/bhyve_npt_pmap/contrib/openpam/include/security/pam_types.h projects/bhyve_npt_pmap/contrib/openpam/install-sh projects/bhyve_npt_pmap/contrib/openpam/misc/gendoc.pl projects/bhyve_npt_pmap/contrib/openpam/missing projects/bhyve_npt_pmap/contrib/openpam/modules/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/modules/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/modules/pam_deny/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/modules/pam_deny/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/modules/pam_deny/pam_deny.c projects/bhyve_npt_pmap/contrib/openpam/modules/pam_permit/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/modules/pam_permit/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/modules/pam_permit/pam_permit.c projects/bhyve_npt_pmap/contrib/openpam/modules/pam_unix/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/modules/pam_unix/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/modules/pam_unix/pam_unix.c projects/bhyve_npt_pmap/contrib/openpam/pamgdb.in projects/bhyve_npt_pmap/contrib/openpam/t/Makefile.am projects/bhyve_npt_pmap/contrib/openpam/t/Makefile.in projects/bhyve_npt_pmap/contrib/openpam/t/t.h projects/bhyve_npt_pmap/contrib/openpam/t/t_main.c projects/bhyve_npt_pmap/contrib/openpam/t/t_openpam_readlinev.c projects/bhyve_npt_pmap/contrib/openpam/t/t_openpam_readword.c projects/bhyve_npt_pmap/etc/Makefile projects/bhyve_npt_pmap/etc/mtree/BSD.usr.dist projects/bhyve_npt_pmap/lib/libc/arm/_fpmath.h projects/bhyve_npt_pmap/lib/libc/arm/arith.h projects/bhyve_npt_pmap/lib/libc/arm/softfloat/arm-gcc.h projects/bhyve_npt_pmap/lib/libc/resolv/res_send.c projects/bhyve_npt_pmap/lib/libc/sys/wait.2 projects/bhyve_npt_pmap/lib/libldns/Makefile projects/bhyve_npt_pmap/lib/libpam/libpam/Makefile projects/bhyve_npt_pmap/lib/libpam/modules/pam_ssh/Makefile projects/bhyve_npt_pmap/lib/msun/src/math_private.h projects/bhyve_npt_pmap/sbin/camcontrol/camcontrol.8 projects/bhyve_npt_pmap/sbin/ipf/ipf/Makefile projects/bhyve_npt_pmap/sbin/ipf/ipftest/Makefile projects/bhyve_npt_pmap/sbin/ipf/libipf/Makefile projects/bhyve_npt_pmap/sbin/newfs_msdos/newfs_msdos.c projects/bhyve_npt_pmap/secure/lib/libssh/Makefile projects/bhyve_npt_pmap/secure/libexec/sftp-server/Makefile projects/bhyve_npt_pmap/secure/libexec/ssh-keysign/Makefile projects/bhyve_npt_pmap/secure/libexec/ssh-pkcs11-helper/Makefile projects/bhyve_npt_pmap/secure/usr.bin/scp/Makefile projects/bhyve_npt_pmap/secure/usr.bin/sftp/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-add/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-agent/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-keygen/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-keyscan/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh/Makefile projects/bhyve_npt_pmap/secure/usr.sbin/sshd/Makefile projects/bhyve_npt_pmap/share/examples/kld/Makefile projects/bhyve_npt_pmap/share/mk/bsd.lib.mk projects/bhyve_npt_pmap/share/mk/bsd.libnames.mk projects/bhyve_npt_pmap/share/mk/bsd.own.mk projects/bhyve_npt_pmap/share/mk/bsd.prog.mk projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c projects/bhyve_npt_pmap/sys/amd64/vmm/intel/vmx.c projects/bhyve_npt_pmap/sys/amd64/vmm/io/ppt.c projects/bhyve_npt_pmap/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/bhyve_npt_pmap/sys/arm/include/ieee.h projects/bhyve_npt_pmap/sys/arm/include/sf_buf.h projects/bhyve_npt_pmap/sys/cddl/dev/dtrace/dtrace_clone.c projects/bhyve_npt_pmap/sys/conf/files projects/bhyve_npt_pmap/sys/conf/files.mips projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/fil.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_auth.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_auth.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_compat.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_fil.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_frag.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_frag.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_htable.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_htable.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_irc_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_log.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_lookup.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_lookup.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_nat.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_nat.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_pool.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_pool.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_pptp_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_proxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_proxy.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c (contents, props changed) projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_rpcb_pxy.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_rules.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_scan.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_scan.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_state.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_state.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_sync.c projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ip_sync.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/ipl.h projects/bhyve_npt_pmap/sys/contrib/ipfilter/netinet/mlfk_ipl.c projects/bhyve_npt_pmap/sys/dev/firewire/fwdev.c projects/bhyve_npt_pmap/sys/dev/glxsb/glxsb.c projects/bhyve_npt_pmap/sys/dev/hifn/hifn7751.c projects/bhyve_npt_pmap/sys/dev/random/harvest.c projects/bhyve_npt_pmap/sys/dev/random/hash.c projects/bhyve_npt_pmap/sys/dev/random/hash.h projects/bhyve_npt_pmap/sys/dev/random/random_adaptors.c projects/bhyve_npt_pmap/sys/dev/random/random_adaptors.h projects/bhyve_npt_pmap/sys/dev/random/randomdev.c projects/bhyve_npt_pmap/sys/dev/random/randomdev_soft.c projects/bhyve_npt_pmap/sys/dev/random/randomdev_soft.h projects/bhyve_npt_pmap/sys/dev/random/yarrow.c projects/bhyve_npt_pmap/sys/dev/random/yarrow.h projects/bhyve_npt_pmap/sys/dev/rndtest/rndtest.c projects/bhyve_npt_pmap/sys/dev/safe/safe.c projects/bhyve_npt_pmap/sys/dev/ubsec/ubsec.c projects/bhyve_npt_pmap/sys/dev/usb/controller/xhci.c projects/bhyve_npt_pmap/sys/dev/vkbd/vkbd.c projects/bhyve_npt_pmap/sys/dev/vmware/vmxnet3/if_vmxvar.h projects/bhyve_npt_pmap/sys/fs/ext2fs/ext2_htree.c projects/bhyve_npt_pmap/sys/fs/ext2fs/ext2_lookup.c projects/bhyve_npt_pmap/sys/kern/capabilities.conf projects/bhyve_npt_pmap/sys/kern/kern_intr.c projects/bhyve_npt_pmap/sys/kern/sched_ule.c projects/bhyve_npt_pmap/sys/kern/subr_capability.c projects/bhyve_npt_pmap/sys/kern/subr_prf.c projects/bhyve_npt_pmap/sys/kern/vfs_bio.c projects/bhyve_npt_pmap/sys/mips/atheros/ar71xx_gpio.c projects/bhyve_npt_pmap/sys/mips/atheros/ar71xx_gpiovar.h projects/bhyve_npt_pmap/sys/mips/cavium/octeon_rnd.c projects/bhyve_npt_pmap/sys/mips/mips/support.S projects/bhyve_npt_pmap/sys/mips/nlm/board.c projects/bhyve_npt_pmap/sys/mips/nlm/board.h projects/bhyve_npt_pmap/sys/mips/nlm/board_cpld.c projects/bhyve_npt_pmap/sys/mips/nlm/dev/net/nae.c projects/bhyve_npt_pmap/sys/mips/nlm/dev/net/xaui.c projects/bhyve_npt_pmap/sys/mips/nlm/dev/net/xlpge.c projects/bhyve_npt_pmap/sys/mips/nlm/dev/net/xlpge.h projects/bhyve_npt_pmap/sys/mips/nlm/hal/nae.h projects/bhyve_npt_pmap/sys/mips/nlm/hal/nlm_hal.c projects/bhyve_npt_pmap/sys/mips/nlm/hal/sys.h projects/bhyve_npt_pmap/sys/modules/ipfilter/Makefile projects/bhyve_npt_pmap/sys/modules/random/Makefile projects/bhyve_npt_pmap/sys/net/if_ethersubr.c projects/bhyve_npt_pmap/sys/net/if_tap.c projects/bhyve_npt_pmap/sys/net/if_tun.c projects/bhyve_npt_pmap/sys/netgraph/ng_iface.c projects/bhyve_npt_pmap/sys/netinet/ip_carp.c projects/bhyve_npt_pmap/sys/netinet/sctp_indata.c projects/bhyve_npt_pmap/sys/nlm/nlm_prot_impl.c projects/bhyve_npt_pmap/sys/powerpc/ofw/ofw_cpu.c projects/bhyve_npt_pmap/sys/security/audit/audit_pipe.c projects/bhyve_npt_pmap/sys/sys/random.h projects/bhyve_npt_pmap/sys/sys/systm.h projects/bhyve_npt_pmap/sys/vm/vm_object.c projects/bhyve_npt_pmap/tools/build/mk/OptionalObsoleteFiles.inc projects/bhyve_npt_pmap/usr.bin/Makefile projects/bhyve_npt_pmap/usr.bin/host/Makefile projects/bhyve_npt_pmap/usr.sbin/bsdconfig/examples/browse_packages.sh projects/bhyve_npt_pmap/usr.sbin/setfib/setfib.1 Directory Properties: projects/bhyve_npt_pmap/ (props changed) projects/bhyve_npt_pmap/contrib/gcc/ (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/ (props changed) projects/bhyve_npt_pmap/contrib/ipfilter/test/expected/i19 (props changed) projects/bhyve_npt_pmap/contrib/openpam/ (props changed) projects/bhyve_npt_pmap/lib/libc/ (props changed) projects/bhyve_npt_pmap/sbin/ (props changed) projects/bhyve_npt_pmap/sys/ (props changed) projects/bhyve_npt_pmap/sys/amd64/vmm/ (props changed) projects/bhyve_npt_pmap/sys/conf/ (props changed) projects/bhyve_npt_pmap/sys/contrib/ipfilter/ (props changed) Modified: projects/bhyve_npt_pmap/Makefile.inc1 ============================================================================== --- projects/bhyve_npt_pmap/Makefile.inc1 Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/Makefile.inc1 Mon Sep 16 00:06:54 2013 (r255605) @@ -382,6 +382,7 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ + LIBPRIVATEDIR=/usr/lib32/private \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} LIB32WMAKEFLAGS+= \ CC="${XCC} ${LIB32FLAGS}" \ Modified: projects/bhyve_npt_pmap/ObsoleteFiles.inc ============================================================================== --- projects/bhyve_npt_pmap/ObsoleteFiles.inc Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/ObsoleteFiles.inc Mon Sep 16 00:06:54 2013 (r255605) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20130908: libssh becomes private +OLD_LIBS+=usr/lib/libssh.so.5 +OLD_LIBS+=usr/lib32/libssh.so.5 # 20130903: gnupatch is no more OLD_FILES+=usr/bin/gnupatch OLD_FILES+=usr/share/man/man1/gnupatch.1.gz Modified: projects/bhyve_npt_pmap/UPDATING ============================================================================== --- projects/bhyve_npt_pmap/UPDATING Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/UPDATING Mon Sep 16 00:06:54 2013 (r255605) @@ -31,6 +31,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130906: + The GNU Compiler Collection and C++ standard library (libstdc++) + are no longer built by default on platforms where clang is the system + compiler. You can enable them with the WITH_GCC and WITH_GNUCXX + options in src.conf. + 20130905: The PROCDESC kernel option is now part of the GENERIC kernel configuration and is required for the rwhod(8) to work. Modified: projects/bhyve_npt_pmap/contrib/gcc/config/arm/ieee754-df.S ============================================================================== --- projects/bhyve_npt_pmap/contrib/gcc/config/arm/ieee754-df.S Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/gcc/config/arm/ieee754-df.S Mon Sep 16 00:06:54 2013 (r255605) @@ -43,7 +43,7 @@ @ For FPA, float words are always big-endian. @ For VFP, floats words follow the memory system mode. -#if defined(__VFP_FP__) && !defined(__ARMEB__) +#if (defined(__ARM_EABI__) || defined(__VFP_FP__)) && !defined(__ARMEB__) #define xl r0 #define xh r1 #define yl r2 Modified: projects/bhyve_npt_pmap/contrib/ipfilter/BNF ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/BNF Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BNF Mon Sep 16 00:06:54 2013 (r255605) @@ -67,7 +67,7 @@ facility = "kern" | "user" | "mail" | "d "audit" | "logalert" | "local0" | "local1" | "local2" | "local3" | "local4" | "local5" | "local6" | "local7" . priority = "emerg" | "alert" | "crit" | "err" | "warn" | "notice" | - "info" | "debug" . + "info" | "debug" . hexnumber = "0" "x" hexstring . hexstring = hexdigit [ hexstring ] . Modified: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile Mon Sep 16 00:06:54 2013 (r255605) @@ -1,9 +1,8 @@ # -# Copyright (C) 1993-1998 by Darren Reed. +# Copyright (C) 2012 by Darren Reed. # # See the IPFILTER.LICENCE file for details on licencing. # -TOP=../.. BINDEST=/usr/sbin SBINDEST=/sbin MANDIR=/usr/share/man @@ -17,13 +16,14 @@ CFLAGS=-g -I$(TOP) # DEVFS!=/usr/bin/lsvfs 2>&1 | sed -n 's/.*devfs.*/-DDEVFS/p' CPU!=uname -m -INC=-I/usr/include -I/sys -I/sys/sys -I/sys/arch +COMPDIR!=/bin/ls -1tr /usr/src/sys/arch/${CPU}/compile | tail -1 +INC=-I/usr/include -I/sys -I/sys/sys -I/sys/arch -I/usr/src/sys/arch/${CPU}/compile/${COMPDIR} DEF=-D$(CPU) -D__$(CPU)__ -DINET -DKERNEL -D_KERNEL $(INC) $(DEVFS) -fno-builtin IPDEF=$(DEF) -DGATEWAY -DDIRECTED_BROADCAST VNODESHDIR=/sys/kern MLD=$(ML) ML=mln_ipl.c -LKM=if_ipl.o +LKM=ipflkm.o LKMR=ipfrule.o DLKM= OBJ=. @@ -44,15 +44,15 @@ INSTALL=install # MODOBJS=ip_fil.o fil.o ml_ipl.o ip_nat.o ip_frag.o ip_state.o ip_proxy.o \ ip_auth.o ip_log.o ip_pool.o ip_htable.o ip_lookup.o ip_rules.o \ - ip_scan.o ip_sync.o + ip_scan.o ip_sync.o ip_nat6.o ip_dstlist.o radix_ipf.o # ip_trafcon.o DFLAGS=$(IPFLKM) $(IPFLOG) $(LOOKUP) $(SYNC) $(DEF) $(DLKM) $(IPFBPF) -IPF=ipf.o ipfcomp.o ipf_y.o ipf_l.o bpf_filter_u.o -IPT=ipftest.o fil_u.o ip_frag_u.o ip_state_u.o ip_nat_u.o \ +IPF=ipf.o ipfcomp.o ipf_y.o ipf_l.o +IPT=ipftest.o fil_u.o ip_frag_u.o ip_state_u.o ip_nat_u.o ip_nat6_u.o \ ip_proxy_u.o ip_auth_u.o ip_htable_u.o ip_lookup_u.o ip_pool_u.o \ ip_scan_u.o ip_sync_u.o ip_rules_u.o ip_fil_u.o ip_log_u.o \ ippool_y.o ippool_l.o ipf_y.o ipf_l.o ipnat_y.o ipnat_l.o \ - md5_u.o radix_u.o bpf_filter_u.o + md5_u.o radix_ipf_u.o ip_dstlist_u.o # ip_syn_u.o #ip_trafcon_u.o TOOL=$(TOP)/tools @@ -60,9 +60,9 @@ IPNAT=ipnat.o ipnat_y.o ipnat_l.o IPMON=ipmon.o ipmon_y.o ipmon_l.o IPPOOL=ippool_y.o ippool_l.o kmem.o ippool.o IPTRAFCON=iptrafcon.o -PROXYLIST=$(TOP)/ip_ftp_pxy.c $(TOP)/ip_ipsec_pxy.c $(TOP)/ip_irc_pxy.c \ - $(TOP)/ip_netbios_pxy.c $(TOP)/ip_raudio_pxy.c $(TOP)/ip_rcmd_pxy.c \ - $(TOP)/ip_rpcb_pxy.c $(TOP)/ip_pptp_pxy.c +PROXYLIST=$(TOP)/ip_dns_pxy.c $(TOP)/ip_ftp_pxy.c $(TOP)/ip_ipsec_pxy.c \ + $(TOP)/ip_irc_pxy.c $(TOP)/ip_netbios_pxy.c $(TOP)/ip_raudio_pxy.c \ + $(TOP)/ip_rcmd_pxy.c $(TOP)/ip_rpcb_pxy.c $(TOP)/ip_pptp_pxy.c FILS=ipfstat.o LIBSRC=$(TOP)/lib RANLIB=ranlib @@ -70,6 +70,11 @@ AROPTS=cq HERE!=pwd CCARGS=-I. $(DEBUG) $(CFLAGS) $(UFLAGS) KCARGS=-I. $(DEBUG) $(CFLAGS) +.if ${MACHINE_ARCH} == amd64 +KCARGS+=-mcmodel=kernel -mno-red-zone -fno-omit-frame-pointer \ + -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow \ + -msoft-float -fno-asynchronous-unwind-tables +.endif # # Extra is option kernel things we always want in user space. # @@ -77,9 +82,11 @@ EXTRA=$(ALLOPTS) include $(TOP)/lib/Makefile -build all: machine $(OBJ)/libipf.a ipf ipfs ipfstat ipftest ipmon ipnat \ - ippool ipscan ipsyncm ipsyncs $(LKM) $(LKMR) - -sh -c 'for i in ipf ipftest ipmon ippool ipnat ipscan ipsyncm ipsyncs; do /bin/rm -f $(TOP)/$$i; ln -s `pwd`/$$i $(TOP); done' +build all: machine $(OBJ)/libipf.a tools $(LKM) $(LKMR) + +tools: ipf ipfs ipfstat ipftest ipmon ipnat ippool ipscan ipsyncm \ + ipsyncs ipfsyncd + -sh -c 'for i in ipf ipftest ipmon ippool ipnat ipscan ipsyncm ipsyncs ipfsyncd; do /bin/rm -f $(TOP)/$$i; ln -s `pwd`/$$i $(TOP); done' -/bin/rm -f ../tools ./tools -ln -s ../tools . -ln -s ../tools .. @@ -122,12 +129,18 @@ ipsyncm: ipsyncm.o $(OBJ)/libipf.a ipsyncs: ipsyncs.o $(OBJ)/libipf.a $(CC) $(CCARGS) ipsyncs.o -o $@ $(LIBS) +ipfsyncd: ipfsyncd.o $(OBJ)/libipf.a + $(CC) $(CCARGS) ipfsyncd.o -o $@ $(LIBS) + ipsyncm.o: $(TOOL)/ipsyncm.c $(TOP)/ip_sync.h $(CC) $(CCARGS) -c $(TOOL)/ipsyncm.c -o $@ ipsyncs.o: $(TOOL)/ipsyncs.c $(TOP)/ip_sync.h $(CC) $(CCARGS) -c $(TOOL)/ipsyncs.c -o $@ +ipfsyncd.o: $(TOOL)/ipfsyncd.c $(TOP)/ip_sync.h + $(CC) $(CCARGS) -c $(TOOL)/ipfsyncd.c -o $@ + tests: (cd test; make ) @@ -146,7 +159,7 @@ fil_u.o: $(TOP)/fil.c $(TOP)/ip_fil.h $( fil.o: $(TOP)/fil.c $(TOP)/ip_fil.h $(TOP)/ip_compat.h $(TOP)/ipl.h \ $(TOP)/ip_rules.h - $(CC) $(KCARGS) $(POLICY) $(DFLAGS) $(IPFBPF) $(COMPIPF) \ + $(CC) $(KCARGS) $(POLICY) $(DFLAGS) $(IPFBPF) $(COMPIPF) $(COMPATIPF) \ -c $(TOP)/fil.c -o $@ ipf.o: $(TOOL)/ipf.c $(TOP)/ip_fil.h $(TOP)/ipf.h $(TOP)/opts.h @@ -163,7 +176,7 @@ ipnat.o: $(TOOL)/ipnat.c $(TOP)/ip_fil.h $(TOP)/opts.h $(CC) $(CCARGS) -c $(TOOL)/ipnat.c -o $@ -ipnat_y.o: ipnat_y.c ipnat_y.h ipnat_l.h +ipnat_y.o: ipnat_y.c ipnat_y.h ipnat_l.h $(TOP)/ip_fil.h $(TOP)/ip_nat.h $(CC) $(CCARGS) -c ipnat_y.c -o $@ ipnat_l.o: ipnat_l.c ipnat_y.h @@ -183,6 +196,9 @@ ipnat_l.h: $(TOOL)/lexer.h ip_nat_u.o: $(TOP)/ip_nat.c $(TOP)/ip_nat.h $(TOP)/ip_compat.h $(TOP)/ip_fil.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_nat.c -o $@ +ip_nat6_u.o: $(TOP)/ip_nat6.c $(TOP)/ip_nat.h $(TOP)/ip_compat.h $(TOP)/ip_fil.h + $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_nat6.c -o $@ + ip_proxy_u.o: $(TOP)/ip_proxy.c $(TOP)/ip_proxy.h $(TOP)/ip_compat.h \ $(TOP)/ip_fil.h $(PROXYLIST) $(TOP)/ip_nat.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_proxy.c -o $@ @@ -222,8 +238,13 @@ ip_htable_u.o: $(TOP)/ip_htable.c $(TOP) $(TOP)/ip_htable.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_htable.c -o $@ +ip_dstlist_u.o: $(TOP)/ip_dstlist.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ + $(TOP)/ip_dstlist.h + $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_dstlist.c -o $@ + ip_lookup_u.o: $(TOP)/ip_lookup.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ - $(TOP)/ip_lookup.h $(TOP)/ip_pool.h $(TOP)/ip_htable.h + $(TOP)/ip_lookup.h $(TOP)/ip_pool.h $(TOP)/ip_htable.h \ + $(TOP)/ip_dstlist.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/ip_lookup.c -o $@ ip_trafcon_u.o: $(TOP)/ip_trafcon.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ @@ -236,19 +257,28 @@ ip_log_u.o: $(TOP)/ip_log.c $(TOP)/ip_fi md5_u.o: $(TOP)/md5.c $(TOP)/md5.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/md5.c -o $@ -radix_u.o: $(TOP)/md5.c $(TOP)/radix_ipf.h - $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/radix.c -o $@ +radix_ipf_u.o: $(TOP)/md5.c $(TOP)/radix_ipf.h + $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/radix_ipf.c -o $@ bpf_filter_u.o: $(TOP)/bpf_filter.c $(TOP)/pcap-ipf.h $(CC) $(CCARGS) $(EXTRA) -c $(TOP)/bpf_filter.c -o $@ -if_ipl.o: $(MODOBJS) +ipflkm.o: $(MODOBJS) ld -r $(MODOBJS) -o $(LKM) - ${RM} -f if_ipl + ${RM} -f ipflkm ipfrule.ko.5: ip_rulesx.o $(MLR) +.if ${MACHINE_ARCH} != amd64 ld -warn-common -r -d -o $(.TARGET:S/.ko/.kld/) ip_rulesx.o $(MLR) - ld -Bshareable -d -warn-common -o $(LKMR:S/.5$//) $(.TARGET:S/.ko/.kld/) + ld -Bshareable -d -warn-common -o $(LKMR:S/.5$//) $(.TARGET:S/.ko/.kld/) +.else + ld -warn-common -r -d -o $(.TARGET:S/.5$//) ip_rulesx.o $(MLR) + nm -g $(.TARGET:S/.5$//) | \ + awk '/^[^[:space:]]+ [^AU] (.*)$$/ { print ($$2=="C" ? "-N" : "-L") $$3 }' | \ + xargs -J% objcopy % $(.TARGET:S/.5$//) + +.endif + ipfrule.ko: ip_rulesx.o $(MLR) gensetdefs ip_rulesx.o $(MLR) $(CC) $(KCARGS) -c setdef0.c @@ -256,10 +286,17 @@ ipfrule.ko: ip_rulesx.o $(MLR) ld -Bshareable -o $@ setdef0.o ip_rulesx.o $(MLR) setdef1.o ipf.ko.5 ipl.ko.5: $(MODOBJS) +.if ${MACHINE_ARCH} != amd64 ld -warn-common -r -d -o $(.TARGET:S/.ko/.kld/) $(MODOBJS) ld -Bshareable -d -warn-common -o $(LKM:S/.5$//) $(.TARGET:S/.ko/.kld/) +.else + ld -warn-common -r -d -o $(.TARGET:S/.5$//) $(MODOBJS) + nm -g $(.TARGET:S/.5$//) | \ + awk '/^[^[:space:]]+ [^AU] (.*)$$/ { print ($$2=="C" ? "-N" : "-L") $$3 }' | \ + xargs -J% objcopy % $(.TARGET:S/.5$//) +.endif -ipf.ko ipl.ko: $(MODOBJS) +ipf.ko ipl.ko: $(MODOBJS) gensetdefs $(MODOBJS) $(CC) $(KCARGS) -c setdef0.c $(CC) $(KCARGS) -c setdef1.c @@ -268,6 +305,9 @@ ipf.ko ipl.ko: $(MODOBJS) ip_nat.o: $(TOP)/ip_nat.c $(TOP)/ip_nat.h $(TOP)/ip_compat.h $(TOP)/ip_fil.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_nat.c -o $@ +ip_nat6.o: $(TOP)/ip_nat6.c $(TOP)/ip_nat.h $(TOP)/ip_compat.h $(TOP)/ip_fil.h + $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_nat6.c -o $@ + ip_frag.o: $(TOP)/ip_frag.c $(TOP)/ip_frag.h $(TOP)/ip_compat.h $(TOP)/ip_fil.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_frag.c -o $@ @@ -290,6 +330,11 @@ ip_fil.c: ip_fil.o: ip_fil.c $(TOP)/ip_fil.h $(TOP)/ip_compat.h $(TOP)/ip_nat.h $(CC) $(KCARGS) $(DFLAGS) $(COMPIPF) -c ip_fil.c -o $@ +ip_fil_compat.o: $(TOP)/ip_fil_compat.c $(TOP)/ipl.h $(TOP)/ip_fil.h \ + $(TOP)/ip_compat.h $(TOP)/ip_nat.h $(TOP)/ip_state.h + $(CC) $(KCARGS) $(DFLAGS) $(COMPIPF) $(COMPATIPF) \ + -c $(TOP)/ip_fil_compat.c -o $@ + ip_log.o: $(TOP)/ip_log.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_log.c -o $@ @@ -307,16 +352,26 @@ ip_htable.o: $(TOP)/ip_htable.c $(TOP)/i $(TOP)/ip_lookup.h $(TOP)/ip_htable.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_htable.c -o $@ +ip_dstlist.o: $(TOP)/ip_dstlist.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ + $(TOP)/ip_lookup.h $(TOP)/ip_dstlist.h + $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_dstlist.c -o $@ + ip_lookup.o: $(TOP)/ip_lookup.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ - $(TOP)/ip_pool.h $(TOP)/ip_htable.h $(TOP)/ip_lookup.h + $(TOP)/ip_pool.h $(TOP)/ip_htable.h $(TOP)/ip_lookup.h \ + $(TOP)/ip_dstlist.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_lookup.c -o $@ +radix_ipf.o: $(TOP)/md5.c $(TOP)/radix_ipf.h + $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/radix_ipf.c -o $@ + ip_trafcon.o: $(TOP)/ip_trafcon.c $(TOP)/ip_compat.h $(TOP)/ip_fil.h \ $(TOP)/ip_trafcon.h $(CC) $(KCARGS) $(DFLAGS) -c $(TOP)/ip_trafcon.c -o $@ vnode_if.h: $(VNODESHDIR)/vnode_if.src mkdir -p ../sys + mkdir -p ../rump/include/rump + mkdir -p ../rump/librump/rumpvfs if [ -f $(VNODESHDIR)/vnode_if.sh ] ; then \ sh $(VNODESHDIR)/vnode_if.sh $(VNODESHDIR)/vnode_if.src; \ fi @@ -325,10 +380,11 @@ vnode_if.h: $(VNODESHDIR)/vnode_if.src fi if [ -f ../sys/vnode_if.h ] ; then mv ../sys/vnode_if.h .; fi rmdir ../sys + rm -rf ../rump ml_ipl.o: vnode_if.h $(TOP)/$(MLD) $(TOP)/ipl.h -/bin/rm -f vnode_if.c - $(CC) -I. $(CFLAGS) $(DFLAGS) -c $(TOP)/$(ML) -o $@ + $(CC) -I. $(KCARGS) $(DFLAGS) -c $(TOP)/$(ML) -o $@ ip_rules.o: ip_rules.c $(TOP)/ip_rules.h $(CC) -I. $(CFLAGS) $(DFLAGS) $(COMPIPF) -c ip_rules.c -o $@ @@ -344,7 +400,7 @@ $(TOP)/ip_rules.h: ip_rules.c fi ip_rulesx.o: ip_rules.c $(TOP)/ip_rules.h - $(CC) -I. $(CFLAGS) $(DFLAGS) -DIPFILTER_COMPILED -c ip_rules.c -o $@ + $(CC) -I. $(KCARGS) $(DFLAGS) -DIPFILTER_COMPILED -c ip_rules.c -o $@ mlf_rule.o: $(TOP)/mlf_rule.c $(TOP)/ip_rules.h $(CC) -I. $(CFLAGS) $(DFLAGS) -c $(TOP)/mlf_rule.c -o $@ @@ -356,7 +412,7 @@ mlo_rule.o: $(TOP)/mlo_rule.c $(TOP)/ip_ $(CC) -I. $(CFLAGS) $(DFLAGS) -c $(TOP)/mlo_rule.c -o $@ mlfk_rule.o: $(TOP)/mlfk_rule.c $(TOP)/ip_rules.h - $(CC) -I. $(CFLAGS) $(DFLAGS) -c $(TOP)/mlfk_rule.c -o $@ + $(CC) -I. $(KCARGS) $(DFLAGS) -c $(TOP)/mlfk_rule.c -o $@ ipf_y.o: ipf_y.c ipf_y.h $(TOP)/ipf.h ipf_l.h $(TOP)/opts.h $(CC) $(CCARGS) $(IPFBPF) -c ipf_y.c -o $@ @@ -427,10 +483,11 @@ ippool_y.o: ippool_y.c ippool_y.h $(TOP) ippool_l.o: ippool_l.c ippool_y.h $(TOP)/ip_pool.h $(CC) $(CCARGS) -I. -c ippool_l.c -o $@ -ippool_y.c: $(TOOL)/ippool_y.y $(TOP)/ip_pool.h ippool_l.h +ippool_y.c: $(TOOL)/ippool_y.y $(TOP)/ip_pool.h ippool_l.h ippool_y.h (cd $(TOOL); make "DEST=$(HERE)" $(HERE)/$@) -ippool_y.h: ippool_y.c +ippool_y.h: $(TOOL)/ippool_y.y + (cd $(TOOL); make "DEST=$(HERE)" $(HERE)/$@) ippool_l.c: $(TOOL)/lexer.c $(TOP)/ip_pool.h (cd $(TOOL); make "DEST=$(HERE)" $(HERE)/$@) @@ -449,10 +506,10 @@ iptrafcon: $(IPTRAFCON) $(OBJ)/libipf.a .l.c: clean: - ${RM} -f ../ipf ../ipnat ../ipmon ../ippool ../ipftest + ${RM} -f ../ipf ../ipnat ../ipmon ../ippool ../ipftest ${RM} -f ../ipscan ../ipsyncm ../ipsyncs ${RM} -f *.core *.o *.a ipt ipfstat ipf ipfstat ipftest ipmon - ${RM} -f if_ipl ipnat ipfrule.ko* ipf.kld* ipfrule.kld* + ${RM} -f ipflkm ipnat ipfrule.ko* ipf.kld* ipfrule.kld* ${RM} -f vnode_if.h $(LKM) ioconf.h *.ko setdef1.c setdef0.c setdefs.h ${RM} -f ip_fil.c ipf_l.c ipf_y.c ipf_y.h ipf_l.h ${RM} -f ipscan ipscan_y.c ipscan_y.h ipscan_l.c ipscan_l.h @@ -481,8 +538,8 @@ install: /bin/cp $(TOP)/$$i /usr/include/netinet/; \ $(CHMOD) 444 /usr/include/netinet/$$i; \ done - -if [ -d /lkm -a -f if_ipl.o ] ; then \ - cp if_ipl.o /lkm; \ + -if [ -d /lkm -a -f ipflkm.o ] ; then \ + cp ipflkm.o /lkm; \ fi -if [ -d /modules -a -f ipf.ko ] ; then \ if [ -f /modules/ipl.ko ] ; then \ @@ -494,6 +551,7 @@ install: -if [ -d /modules -a -f ipfrule.ko ] ; then \ cp ipfrule.ko /modules; \ fi +.if ${MACHINE_ARCH} != amd64 -if [ -d /boot/kernel -a -f ipf.ko ] ; then \ if [ -f /boot/kernel/ipl.ko ] ; then \ cp ipf.ko /boot/kernel/ipl.ko; \ @@ -504,8 +562,29 @@ install: -if [ -d /boot/kernel -a -f ipfrule.ko ] ; then \ cp ipfrule.ko /boot/kernel; \ fi - -if [ -d /usr/lkm -a -f if_ipl.o ] ; then \ - cp if_ipl.o /usr/lkm; \ +.else + -if [ -d /boot/kernel -a -f ipf.ko ] ; then \ + if [ -f /boot/kernel/ipl.ko ] ; then \ + objcopy --only-keep-debug ipf.ko + /boot/kernel/ipl.ko.symbols; \ + objcopy --strip-debug \ + --add-gnu-debuglink=ipl.ko.symbols \ + ipf.ko /boot/kernel/ipl.ko; \ + else \ + objcopy --only-keep-debug ipf.ko \ + /boot/kernel/ipf.ko.symbols; \ + objcopy --strip-debug \ + --add-gnu-debuglink=ipl.ko.symbols \ + ipf.ko /boot/kernel/ipf.ko; \ + fi \ + fi + -if [ -d /boot/kernel -a -f ipfrule.ko ] ; then \ + objcopy --only-keep-debug ipfrule.ko /boot/kernel/ipfrule.ko.symbols; \ + objcopy --strip-debug --add-gnu-debuglink=ipfrule.ko.symbols ipfrule.ko /boot/kernel/ipfrule.ko; \ + fi +.endif + -if [ -d /usr/lkm -a -f ipflkm.o ] ; then \ + cp ipflkm.o /usr/lkm; \ fi -$(INSTALL) -cs -g wheel -m 755 -o root ipscan $(SBINDEST) (cd $(TOP)/man; make INSTALL=$(INSTALL) MANDIR=$(MANDIR) install; cd $(TOP)) @@ -533,8 +612,8 @@ install: (cd $(TOP)/man; make INSTALL=$(INSTALL) MANDIR=$(MANDIR) install; cd $(TOP)) coverage: - ksh -c 'for i in *.da; do j=$${i%%.da}.c; gcov $$j 2>&1 | egrep -v "y.tab.c|Could|Creating|_l\.c|\.h"; done' | sort -k 1n -k 3n > report - sort -k 1n -k 3n report | perl -e 'while(<>) { next if (/^0.00/); s/\%//g; @F=split;$$lc+=$$F[2];$$t += ($$F[0]/100)*$$F[2];} printf "%d of %d = %d%%\n", $$t, $$lc,($$t/$$lc)*100;' >> report + ksh -c 'for i in *.da; do j=$${i%%.da}.c; gcov $$j 2>&1 | egrep -v "y.tab.c|Could|Creating|_l\.c|\.h"; done' | sort -n > report + sort -n report | perl -e 'while(<>) { next if (/^0.00/); s/\%//g; @F=split;$$lc+=$$F[2];$$t += $$F[0]/100*$$F[2];} printf "%d of %d = %d%%\n", $$t, $$lc,$$t/$$lc*100;' >> report clean-coverage: /bin/rm -f *.gcov *.da Modified: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile.ipsend ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile.ipsend Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BSD/Makefile.ipsend Mon Sep 16 00:06:54 2013 (r255605) @@ -1,5 +1,5 @@ # -# $Id: Makefile.ipsend,v 2.8 2002/05/22 16:15:36 darrenr Exp $ +# $Id$ # BINDEST=/usr/sbin @@ -23,7 +23,8 @@ MFLAGS="BINDEST=$(BINDEST)" "SBINDEST=$( "SOLARIS2=$(SOLARIS2)" "DEBUG=$(DEBUG)" "DCPU=$(CPU)" \ "CPUDIR=$(CPUDIR)" "LOOKUP=$(LOOKUP)" # -all build bsd-bpf : ipsend ipresend iptest +build: +all bsd-bpf : ipsend ipresend iptest iplang_y.o: $(TOP)/iplang/iplang_y.y (cd $(TOP)/iplang; $(MAKE) ../BSD/$(CPUDIR)/$@ $(MFLAGS) 'DESTDIR=../BSD/$(CPUDIR)' ) @@ -103,6 +104,6 @@ dlcommon.o: $(TOP)/ipsend/dlcommon.c sdlpi.o: $(TOP)/ipsend/sdlpi.c $(CC) $(DEBUG) $(CFLAGS) -c $(TOP)/ipsend/sdlpi.c -o $@ -install: +install: -$(INSTALL) -cs -g wheel -m 755 -o root ipsend ipresend iptest $(BINDEST) Modified: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/ipfadm-rcd ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/BSD/ipfadm-rcd Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BSD/ipfadm-rcd Mon Sep 16 00:06:54 2013 (r255605) @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2006 by Darren Reed. +# Copyright (C) 2012 by Darren Reed. # # See the IPFILTER.LICENCE file for details on licencing. # Modified: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/kupgrade ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/BSD/kupgrade Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BSD/kupgrade Mon Sep 16 00:06:54 2013 (r255605) @@ -2,7 +2,7 @@ # PATH=/sbin:/usr/sbin:/bin:/usr/bin; export PATH argv0=`basename $0` - + os=`uname -s` rev=`uname -r` maj=`expr $rev : '\([0-9]*\)\.'` @@ -23,6 +23,7 @@ fi if [ -d /sys/dist/ipf ] ; then ipfdir=/sys/dist/ipf/netinet fi +mkdir -m 755 -p $ipfdir/../net confdir="$archdir/conf" if [ -f /dev/ipnat ] ; then major=`ls -l /dev/ipnat | sed -e 's/.* \([0-9]*\),.*/\1/'` @@ -30,7 +31,7 @@ if [ -f /dev/ipnat ] ; then else major=x fi - + if [ ! -f ip_rules.c -o ! -f ip_rules.h ] ; then echo "Trying to build ip_rules.c and ip_rules.h" make ip_rules.c @@ -43,8 +44,9 @@ if [ ! -f ip_rules.c -o ! -f ip_rules.h fi fi -echo -n "Installing " -for j in auth frag nat proxy scan state sync pool htable lookup rules; do +echo -n "Installing into $ipfdir" +for j in auth frag nat proxy scan state sync pool dstlist htable lookup rules \ + dstlist; do for i in ip_$j.[ch]; do if [ -f "$i" ] ; then echo -n " $i" @@ -53,6 +55,12 @@ for j in auth frag nat proxy scan state fi done done +echo -n " net/radix_ipf.h" +cp radix_ipf.h $ipfdir +chmod 644 $ipfdir/radix_ipf.h +echo -n " radix_ipf.c -> $ipfdir/radix_ipf.c" +cp radix_ipf.c $ipfdir/radix_ipf.c +chmod 644 $ipfdir/radix_ipf.c case $os in SunOS) @@ -88,14 +96,16 @@ if [ -f $ipfdir/ip_fil.c ] ; then chmod 644 $ipfdir/ip_fil.c fi -for i in ip_fil.h fil.c ip_log.c ip_compat.h ipl.h ip_*_pxy.c; do +for i in ip_nat6.c ip_fil.h fil.c ip_log.c ip_compat.h ipl.h ip_*_pxy.c \ + ip_fil_compat.c ipf_rb.h; do echo -n " $i" cp $i $ipfdir chmod 644 $ipfdir/$i done echo "" echo -n "Installing into /usr/include/netinet" -for j in auth compat fil frag nat proxy scan state sync pool htable lookup; do +for j in auth compat fil frag nat proxy scan state sync pool htable dstlist \ + lookup; do i=ip_$j.h if [ -f "$i" ] ; then echo -n " $i" @@ -103,7 +113,7 @@ for j in auth compat fil frag nat proxy chmod 644 /usr/include/netinet/$i fi done -for j in ipl.h; do +for j in ipl.h ipf_rb.h; do if [ -f "$j" ] ; then echo -n " $j" cp $j /usr/include/netinet/$j @@ -157,15 +167,19 @@ if [ $os = FreeBSD -a -f /sys/conf/files mv files files.preipf4 cp -p files.preipf4 files fi - for i in htable pool lookup; do + for i in dstlist htable pool lookup; do grep ip_$i.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then echo "contrib/ipfilter/netinet/ip_$i.c optional ipfilter inet ipfilter_lookup" >> files fi done + grep ip_fil_compat.c files >/dev/null 2>&1 + if [ $? -ne 0 ] ; then + echo 'contrib/ipfilter/netinet/ip_fil_compat.c optional ipfilter inet ipfilter_compat' >> files + fi grep ip_sync.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then - echo 'contrib/ipfilter/netinet/ip_sync.c optional ipfilter inet ipfilter_sync' >> files + echo 'contrib/ipfilter/netinet/ip_sync.c optional ipfilter inet' >> files fi grep ip_scan.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then @@ -177,13 +191,19 @@ if [ $os = FreeBSD -a -f /sys/conf/files fi fi if [ $os = NetBSD -a -f /sys/conf/files ] ; then + if [ -f /sys/netinet/files.ipfilter ] ; then + if ! grep -q ip_fil_compat.c /sys/netinet/files.ipfilter; then + echo 'file dist/ipf/netinet/ip_fil_compat.c ipfilter & ipfilter_compat' >> /sys/netinet/files.ipfilter + echo 'defflag opt_ipfilter.h IPFILTER_COMPAT' >> /sys/netinet/files.ipfilter + fi + fi cd /sys/conf if [ ! -f files.preipf4 ] ; then mv files files.preipf4 cp -p files.preipf4 files fi if [ $fullrev -ge 010600 -a $fullrev -lt 020000 ] ; then - for i in htable pool lookup; do + for i in dstlist htable pool lookup; do grep ip_$i.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then echo "file netinet/ip_$i.c ipfilter & ipfilter_lookup" >> files @@ -191,7 +211,7 @@ if [ $os = NetBSD -a -f /sys/conf/files done grep ip_sync.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then - echo 'file netinet/ip_sync.c ipfilter & ipfilter_sync' >> files + echo 'file netinet/ip_sync.c ipfilter' >> files fi grep ip_scan.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then @@ -210,15 +230,18 @@ if [ $os = OpenBSD -a -f /sys/conf/files cp -p files.preipf4 files fi if [ $fullrev -ge 030400 ] ; then - for i in htable pool lookup; do + for i in dstlist htable pool lookup; do grep ip_$i.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then echo "file netinet/ip_$i.c ipfilter & ipfilter_lookup" >> files fi done - grep ip_sync.c files >/dev/null 2>&1 + grep ip_fil_compat.c files >/dev/null 2>&1 + if [ $? -ne 0 ] ; then + echo 'file netinet/ip_fil_compat.c ipfilter & ipfilter_compat' >> files + fi if [ $? -ne 0 ] ; then - echo 'file netinet/ip_sync.c ipfilter & ipfilter_sync' >> files + echo 'file netinet/ip_sync.c ipfilter' >> files fi grep ip_scan.c files >/dev/null 2>&1 if [ $? -ne 0 ] ; then @@ -241,7 +264,7 @@ cat | (cd /usr/src/sys/modules/ipfilter; KMOD= ipl SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \\ ! ip_log.c ip_fil.c fil.c - + .if !defined(NOINET6) CFLAGS+= -DUSE_INET6 .endif @@ -249,10 +272,10 @@ cat | (cd /usr/src/sys/modules/ipfilter; ! CFLAGS+= -DIPFILTER=1 -DIPFILTER_LKM -DIPFILTER_LOG -DPFIL_HOOKS --- 5,15 ---- KMOD= ipl - SRCS= mlfk_ipl.c ip_nat.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \\ -! ip_log.c ip_fil.c fil.c ip_lookup.c ip_pool.c ip_htable.c \\ -! ip_sync.c ip_scan.c ip_rules.c - + SRCS= mlfk_ipl.c ip_nat.c ip_nat6.c ip_frag.c ip_state.c ip_proxy.c ip_auth.c \\ +! ip_log.c ip_fil.c fil.c ip_lookup.c ip_pool.c ip_dstlist.c ip_htable.c \\ +! ip_sync.c ip_scan.c ip_rules.c ip_fil_compat.c + .if !defined(NOINET6) CFLAGS+= -DUSE_INET6 .endif @@ -261,4 +284,29 @@ cat | (cd /usr/src/sys/modules/ipfilter; ! -DIPFILTER_LOOKUP -DIPFILTER_COMPILED __EOF__ fi + +CONF=/sys/netinet/files.ipfilter +if [ -f $CONF -a $os = NetBSD ] ; then + for i in ip_nat6.c ip_dstlist.c radix_ipf.c; do + echo "Checking for $i in $CONF" + grep $i $CONF >/dev/null 2>&1 + if [ $? -ne 0 ] ; then + echo "Adding $i to $CONF" + sed -n -e /ip_nat.c/s/ip_nat.c/$i/p $CONF >> $CONF + fi + done +fi + +CONF=/sys/conf/files +if [ -f $CONF -a $os = FreeBSD ] ; then + for i in ip_nat6.c ip_dstlist.c radix_ipf.c; do + echo "Checking for $i in $CONF" + grep $i $CONF >/dev/null 2>&1 + if [ $? -ne 0 ] ; then + echo "Adding $i to $CONF" + sed -n -e /ip_nat.c/,/NORMAL/p $CONF | \ + sed -e s/ip_nat.c/$i/p >> $CONF + fi + done +fi exit 0 Copied: projects/bhyve_npt_pmap/contrib/ipfilter/BSD/upgrade (from r255409, head/contrib/ipfilter/BSD/upgrade) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bhyve_npt_pmap/contrib/ipfilter/BSD/upgrade Mon Sep 16 00:06:54 2013 (r255605, copy of r255409, head/contrib/ipfilter/BSD/upgrade) @@ -0,0 +1,46 @@ +#!/bin/sh +# +PATH=/sbin:/usr/sbin:/bin:/usr/bin; export PATH +argv0=`basename $0` + +case `pwd` in +*BSD) + ;; +*) + cd BSD + ;; +esac +os=`uname -s` +rev=`uname -r` +maj=`expr $rev : '\([0-9]*\)\.'` +min=`expr $rev : '[0-9]*\.\([0-9]*\)'` +sub=`expr $rev : '[0-9]*\.[0-9]*\.\([0-9]*\)'` +plat=`uname -p` +objdir=${os}-${rev}-${plat} + +# try to bomb out fast if anything fails.... +set -e + +for i in ipf ipfstat ipmon ipnat ippool; do + if [ ! -f /sbin/${i}.dist -a -f /sbin/${i} ] ; then + mv /sbin/${i} /sbin/${i}.dist + cp -p /sbin/${i}.dist /sbin/${i} + cp ${objdir}/${i} /sbin/ + fi + if [ ! -f /usr/sbin/${i}.dist -a -f /usr/sbin/${i} ] ; then + mv /usr/sbin/${i} /usr/sbin/${i}.dist + cp -p /usr/sbin/${i}.dist /usr/sbin/${i} + cp ${objdir}/${i} /usr/sbin/ + fi +done +if [ -f /boot/kernel/ipl.ko ] ; then + if [ ! -f /boot/kernel/ipl.ko.dist ] ; then + mv /boot/kernel/ipl.ko /boot/kernel/ipl.ko.dist + cp -p /boot/kernel/ipl.ko.dist /boot/kernel/ipl.ko + fi + if [ ! -f /boot/kernel/ipl.ko.symbols.dist ] ; then + mv /boot/kernel/ipl.ko.symbols /boot/kernel/ipl.ko.symbols.dist + fi + cp ${objdir}/ipf.ko /boot/kernel/ipl.ko +fi +exit 0 Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FAQ.FreeBSD ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FAQ.FreeBSD Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FAQ.FreeBSD Mon Sep 16 00:06:54 2013 (r255605) @@ -1,4 +1,4 @@ -These are Instructions for Configuring A FreeBSD Box For NAT +These are Instructions for Configuring A FreeBSD Box For NAT After you have installed IP-Filter. You will need to change three files: @@ -54,7 +54,7 @@ fpx0 is the interface with the real inte /32 is the subnet mask 255.255.255.255, ie only use this ip address. -portmap tcp/udp 10000:65000 +portmap tcp/udp 10000:65000 tells it to use the ports to redirect the tcp/udp calls through @@ -67,7 +67,7 @@ reboots. In your /etc/rc.local put the line: -ipnat -f /etc/natrules +ipnat -f /etc/natrules To check and see if it is loaded, as root type ipnat -ls Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/ftp-gw.diff ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/ftp-gw.diff Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/ftp-gw.diff Mon Sep 16 00:06:54 2013 (r255605) @@ -4,7 +4,7 @@ *** 11,31 **** --- 11,41 ---- */ - static char RcsId[] = "$Header: /devel/CVS/IP-Filter/FWTK/ftp-gw.diff,v 2.1 1999/08/04 17:30:30 darrenr Exp $"; + static char RcsId[] = "$Header$"; + /* + * Patches for IP Filter NAT extensions written by Darren Reed, 7/7/96 Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/fwtk_transparent.diff ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/fwtk_transparent.diff Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FWTK/fwtk_transparent.diff Mon Sep 16 00:06:54 2013 (r255605) @@ -124,7 +124,7 @@ diff -cr ../TIS.orig/fwtk/Makefile.confi *************** *** 11,30 **** # - # RcsId: "$Header: /devel/CVS/IP-Filter/FWTK/fwtk_transparent.diff,v 2.2 2001/02/28 09:36:06 darrenr Exp $" + # RcsId: "$Header$" # Your C compiler (eg, "cc" or "gcc") @@ -145,7 +145,7 @@ diff -cr ../TIS.orig/fwtk/Makefile.confi -Dgethostbyaddr=res_gethostbyaddr -Dgetnetbyname=res_getnetbyname \ --- 11,34 ---- # - # RcsId: "$Header: /devel/CVS/IP-Filter/FWTK/fwtk_transparent.diff,v 2.2 2001/02/28 09:36:06 darrenr Exp $" + # RcsId: "$Header$" + # + # Path to sources of ip_filter (ip_nat.h required in lib/hnam.c) Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-2.2/kinstall ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-2.2/kinstall Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-2.2/kinstall Mon Sep 16 00:06:54 2013 (r255605) @@ -17,8 +17,8 @@ foreach i (ip_{auth,fil,frag,nat,pool,pr case *.h: /bin/cp $i /usr/include/netinet/$i chmod 644 /usr/include/netinet/$i - breaksw - endsw + breaksw + endsw end echo "" echo "Copying /usr/include/osreldate.h to /sys/sys" Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 Mon Sep 16 00:06:54 2013 (r255605) @@ -10,7 +10,7 @@ To build a kernel with the IP filter, fo 4. build a new kernel 5. install the new kernel - + 6. If not using DEVFS, create devices for IP Filter as follows: mknod /dev/ipl c 79 0 mknod /dev/ipnat c 79 1 @@ -18,7 +18,7 @@ To build a kernel with the IP filter, fo mknod /dev/ipauth c 79 3 mknod /dev/ipsync c 79 4 mknod /dev/ipscan c 79 5 - + 7. reboot Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/kinstall ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/kinstall Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-3/kinstall Mon Sep 16 00:06:54 2013 (r255605) @@ -18,8 +18,8 @@ foreach i (ip_fil.[ch] ip_nat.[ch] ip_fr case *.h: /bin/cp $i /usr/include/netinet/$i chmod 644 /usr/include/netinet/$i - breaksw - endsw + breaksw + endsw end echo "" echo "Linking /usr/include/osreldate.h to /sys/sys/osreldate.h" Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-4.0/kinstall ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-4.0/kinstall Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD-4.0/kinstall Mon Sep 16 00:06:54 2013 (r255605) @@ -20,8 +20,8 @@ foreach i (ip_{auth,fil,nat,pool,proxy,s case *.h: /bin/cp $i /usr/include/netinet/$i chmod 644 /usr/include/netinet/$i - breaksw - endsw + breaksw + endsw end echo "" echo "Linking /usr/include/osreldate.h to /sys/sys/osreldate.h" Modified: projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD/kinstall ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD/kinstall Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/FreeBSD/kinstall Mon Sep 16 00:06:54 2013 (r255605) @@ -17,8 +17,8 @@ foreach i (ip_{auth,fil,frag,nat,pool,pr case *.h: /bin/cp $i /usr/include/netinet/$i chmod 644 /usr/include/netinet/$i - breaksw - endsw + breaksw + endsw end echo "" grep iplopen $archdir/$karch/conf.c >& /dev/null Modified: projects/bhyve_npt_pmap/contrib/ipfilter/HISTORY ============================================================================== --- projects/bhyve_npt_pmap/contrib/ipfilter/HISTORY Sun Sep 15 21:38:46 2013 (r255604) +++ projects/bhyve_npt_pmap/contrib/ipfilter/HISTORY Mon Sep 16 00:06:54 2013 (r255605) @@ -10,745 +10,268 @@ # and especially those who have found the time to port IP Filter to new # platforms. # -4.1.28 - Release 16 October 2007 +5.1.2 - RELEASED - 22 Jul 2012 -backout changes (B1) & (B2) as they've caused NAT entries to persist for -too long and possibly other side effects. +3546266 macro letters could be more consistent +3546265 not all of the state statistics are displayed +3546261 scripts for updating BSD environment out of date +3546260 compiler warnings about non-integer array subscript +3546259 asserting numdereflists == 0 is not correct +3546258 expression matching does not see IPF_EXP_END +3544317 ipnat/ipfstat are not using ipfexp_t +3545324 proxy checksum calculation is not hardware aware +3545321 FTP sequence number adjustment incorrectly applied +3545320 EPSV is not recognised +3545319 move nat rule creation to ip_proxy.c +3545317 better feedback of checksum requirements for proxies +3545314 ftp proxy levels do not make sense +3545312 EPRT is not supported by ftp proxy +3544318 ipnat.conf parsing ignores LHS address family +3545309 non-ipv6 safe proxies do not fail with ipv6 +3545323 NAT updates the source port twice +3545322 ipv6 nat rules cannot start proxies +3544314 bucket copyout tries to copy too much data +3544313 remove nat encap feature +3546248 compat rule pointer type mismatch +3546247 UDP hardware checksum offload not recognised +3545311 ifp_ifaddr does not find the first set address +3545310 ipmon needs ipl_sec on 64bit boundary +3545326 reference count changes made without lock +3544315 stateful matching does not use ipfexp_t +3543493 tokens are not flushed when disabled +3543487 NAT rules do not always release lookup objects +3543491 function comments in ip_state.c are old +3543404 ipnat.conf parsing uses family/ip version badly +3543403 incorrect line number printed in ipnat parsing errors +3543402 Not all NAT statistics are printed +3542979 NAT session list management is too simple +3542978 ipv4 and ipv6 nat insert have common hash insertion +3542977 ipnat_t refence tracking incomplete +3542975 proxies must use ipnat_t separately +3542980 printing ipv6 expressions is wrong +3542983 ippool cannot handle more than one ipv6 address +3543018 mask array shifted incorrectly. +3542974 reason for dropping packet is lost +3542982 line numbers not recorded/displayed correctly by ipf +3542981 exclamation mark cuases trouble with pools +3541655 test suite checksums incorrect +3541653 display proxy fail status correctly +3540993 IP header offset excluded in pullup calculations +3540994 pullupmsg does not work as required +3540992 pointer to ipv6 frag header not updated on pullup +3541645 netmask management adds /32 for /0 +3541637 ipnat parser does not zero port fields for non-port protocol +3541635 pool names cannot by numbers +3540995 IPv6 fragment tracking does not always work +3540996 printing of nextip for ipv6 nat rules is wrong +3540999 ipnat.conf parsing has trouble with icmpidmap for ipv6 +3540825 whois output parsing error for ipv6 +3540814 ipfd_lock serves no purpose +3540810 lookup objects need tail pointers +3540809 refactor hash table lookups for nat +3540819 radix tree does not work with ipv6 +3540820 mutex emulation should be logged +3540828 ipfstat filtering with -m fails tests +3536480 ippool could be more like the others +3536477 pool printing not uniform +3536483 flushing empty destination lists causes panic +3536481 more use of bzero after KMALLOC required +3536479 ipnat.conf line numbers not stored +3536484 Makefile missing dependency for ippool +3536199 TFTP proxy requires something extra +3536198 ICMP checksum out by one +3536203 ipnat does not return an error +3536201 ipf.conf parsing too address friendly +3536200 printing of bytes/packets not indented +3497941 ipv4 multicast detection incorrect on little endian +3535361 to interfaces printed out of order +3535363 ipf parser is inconsistent +3532306 deleting ipnat rules does not work +3532054 new error required for ipf_rx_create +3532053 icmp6 checksums wrong +3532052 icmpv6 state check with incorrect length +3531871 checksum verification wants too many icmp6 bytes +3531870 ipnat.conf parsing needs to support inet6 +3532048 error in ipf group parsing +3531868 ICMPV6 checksum not validated +3531893 ipftest exits without error for bad input +3531890 whois pool parsing builds bad structures +3531891 icmpv6 text parsing ignorant of icmp types +3531653 rewrite with icmp does not work +3530563 NAT operations fail with EPERM +3530544 first pass at gcc -Wextra cleanup +3530540 lookup create functions do not set error properly +3530539 ipf_main_soft_destroy doesn't need 2nd arg +3530541 reorder structure for better packing +3530543 ipnat purge needs documentation +3530515 BSD upgrade script required +3528029 ipmon bad-mutex panic +3530247 loading address pools light on input validation +3530255 radix tree delete uses wrong lookup +3530254 radix tree allocation support wrong +3530264 ipmon prints qd for some 64bit numbers +3530260 decapsulate rules not printed correctly. +3530266 ipfstat -v/-d flags confused +2939220 why a packet is blocked is not discernable +2939218 output interface not recorded +2941850 use of destination lists with to/dup-to beneficial +3457747 build errors introduced with radix change +3535360 timeout groups leak +3535359 memory leak with tokens +3535358 listing rules in groups requires tracking groups +3535357 rule head removal is problematic +3530259 not all ioctl error checked wth SIOCIPFINTERROR +3530258 error routine that uses fd required +3530253 inadequate function comment blocks +3530249 walking lookup tables leaks memory +3530241 extra lock padding required for freebsd +3529901 ipf returns 0 when rules fail to load +3529491 checksum validation could be better +3529486 tcp checksum wrong for ipv6 +3533779 ipv6 nat rules missing inet6 keyword +3532693 ipnat.conf rejects some ipv6 addresses +3532691 ipv4 should not be forced for icmp +3532689 ipv6 nat rules do not print inet6 +3532688 ipv6 address always printed with "to " +3532687 with v6hdrs not supported like with ipopts +3532686 ipf expressions do not work with ipv6 +3540825 whois output parsing error for ipv6 +3540818 NAT for certain IPv6 ICMP packets should not be allowed +3540815 memory leak with destination lists +3540814 ipfd_lock serves no purpose +3540810 lookup objects need tail pointers +3540809 refactor hash table lookups for nat +3540808 completed tokens do not stop iteration +3530492 address hash table name not used *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Mon Sep 16 17:32:14 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id DFD001AE; Mon, 16 Sep 2013 17:32:14 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C63C02E87; Mon, 16 Sep 2013 17:32:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8GHWEps004141; Mon, 16 Sep 2013 17:32:14 GMT (envelope-from gavin@svn.freebsd.org) Received: (from gavin@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8GHWDWC004135; Mon, 16 Sep 2013 17:32:13 GMT (envelope-from gavin@svn.freebsd.org) Message-Id: <201309161732.r8GHWDWC004135@svn.freebsd.org> From: Gavin Atkinson Date: Mon, 16 Sep 2013 17:32:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255618 - in projects/pciehp: . bin/chflags bin/dd bin/df bin/ed bin/kenv bin/ln bin/ls bin/pkill bin/ps bin/sh bin/sleep bin/test cddl/contrib/opensolaris/cmd/dtrace cddl/contrib/opens... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Sep 2013 17:32:15 -0000 Author: gavin Date: Mon Sep 16 17:32:02 2013 New Revision: 255618 URL: http://svnweb.freebsd.org/changeset/base/255618 Log: Merge from head to r255608. Added: projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.basics.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.basics.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cg/ - copied from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cg/ projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal.ksh - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal.ksh projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal2.ksh - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal2.ksh projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal3.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal3.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/err.D_PRINT_AGG.bad.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/err.D_PRINT_AGG.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.dyn.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.dyn.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.xlate.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.xlate.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.xlate.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/tst.xlate.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_AGG.bad.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_AGG.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/tst.dyn.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/tst.dyn.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh.out - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/tst.const.d - copied unchanged from r255608, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/tst.const.d projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.c - copied unchanged from r255608, head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.h - copied unchanged from r255608, head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.h projects/pciehp/cddl/lib/libdtrace/ip.d - copied unchanged from r255608, head/cddl/lib/libdtrace/ip.d projects/pciehp/cddl/lib/libdtrace/tcp.d - copied unchanged from r255608, head/cddl/lib/libdtrace/tcp.d projects/pciehp/cddl/lib/libdtrace/udp.d - copied unchanged from r255608, head/cddl/lib/libdtrace/udp.d - copied from r255608, head/contrib/apr/ - copied from r255608, head/contrib/apr-util/ projects/pciehp/contrib/bind9/bin/dnssec/dnssec-verify.8 - copied unchanged from r255608, head/contrib/bind9/bin/dnssec/dnssec-verify.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-verify.c - copied unchanged from r255608, head/contrib/bind9/bin/dnssec/dnssec-verify.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-verify.docbook - copied unchanged from r255608, head/contrib/bind9/bin/dnssec/dnssec-verify.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-verify.html - copied unchanged from r255608, head/contrib/bind9/bin/dnssec/dnssec-verify.html projects/pciehp/contrib/bind9/bin/named/bind9.ver3.xsl - copied unchanged from r255608, head/contrib/bind9/bin/named/bind9.ver3.xsl projects/pciehp/contrib/bind9/bin/named/bind9.ver3.xsl.h - copied unchanged from r255608, head/contrib/bind9/bin/named/bind9.ver3.xsl.h projects/pciehp/contrib/bind9/doc/arm/man.dnssec-verify.html - copied unchanged from r255608, head/contrib/bind9/doc/arm/man.dnssec-verify.html projects/pciehp/contrib/bind9/lib/dns/clientinfo.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/clientinfo.c projects/pciehp/contrib/bind9/lib/dns/include/dns/clientinfo.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/include/dns/clientinfo.h projects/pciehp/contrib/bind9/lib/dns/include/dns/update.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/include/dns/update.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/eui48_108.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/eui48_108.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/eui48_108.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/eui48_108.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/eui64_109.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/eui64_109.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/eui64_109.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/eui64_109.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/l32_105.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/l32_105.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/l32_105.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/l32_105.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/l64_106.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/l64_106.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/l64_106.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/l64_106.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/lp_107.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/lp_107.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/lp_107.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/lp_107.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/naptr_35.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/naptr_35.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/naptr_35.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/naptr_35.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/nid_104.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/nid_104.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/nid_104.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/nid_104.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/uri_256.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/uri_256.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/uri_256.h - copied unchanged from r255608, head/contrib/bind9/lib/dns/rdata/generic/uri_256.h projects/pciehp/contrib/bind9/lib/dns/update.c - copied unchanged from r255608, head/contrib/bind9/lib/dns/update.c projects/pciehp/contrib/bind9/lib/isc/include/isc/pool.h - copied unchanged from r255608, head/contrib/bind9/lib/isc/include/isc/pool.h projects/pciehp/contrib/bind9/lib/isc/include/isc/queue.h - copied unchanged from r255608, head/contrib/bind9/lib/isc/include/isc/queue.h projects/pciehp/contrib/bind9/lib/isc/include/isc/regex.h - copied unchanged from r255608, head/contrib/bind9/lib/isc/include/isc/regex.h projects/pciehp/contrib/bind9/lib/isc/pool.c - copied unchanged from r255608, head/contrib/bind9/lib/isc/pool.c projects/pciehp/contrib/bind9/lib/isc/regex.c - copied unchanged from r255608, head/contrib/bind9/lib/isc/regex.c projects/pciehp/contrib/bmake/mk/stage-install.sh - copied unchanged from r255608, head/contrib/bmake/mk/stage-install.sh projects/pciehp/contrib/bmake/unit-tests/sunshcmd - copied unchanged from r255608, head/contrib/bmake/unit-tests/sunshcmd projects/pciehp/contrib/dialog/buildlist.c - copied unchanged from r255608, head/contrib/dialog/buildlist.c projects/pciehp/contrib/dialog/po/an.po - copied unchanged from r255608, head/contrib/dialog/po/an.po projects/pciehp/contrib/dialog/po/ia.po - copied unchanged from r255608, head/contrib/dialog/po/ia.po projects/pciehp/contrib/dialog/rangebox.c - copied unchanged from r255608, head/contrib/dialog/rangebox.c projects/pciehp/contrib/dialog/samples/buildlist - copied unchanged from r255608, head/contrib/dialog/samples/buildlist projects/pciehp/contrib/dialog/samples/buildlist2 - copied unchanged from r255608, head/contrib/dialog/samples/buildlist2 projects/pciehp/contrib/dialog/samples/checklist12 - copied unchanged from r255608, head/contrib/dialog/samples/checklist12 projects/pciehp/contrib/dialog/samples/dft-cancel - copied unchanged from r255608, head/contrib/dialog/samples/dft-cancel projects/pciehp/contrib/dialog/samples/dft-extra - copied unchanged from r255608, head/contrib/dialog/samples/dft-extra projects/pciehp/contrib/dialog/samples/dft-help - copied unchanged from r255608, head/contrib/dialog/samples/dft-help projects/pciehp/contrib/dialog/samples/dft-no - copied unchanged from r255608, head/contrib/dialog/samples/dft-no projects/pciehp/contrib/dialog/samples/fselect0 - copied unchanged from r255608, head/contrib/dialog/samples/fselect0 projects/pciehp/contrib/dialog/samples/menubox12 - copied unchanged from r255608, head/contrib/dialog/samples/menubox12 projects/pciehp/contrib/dialog/samples/rangebox - copied unchanged from r255608, head/contrib/dialog/samples/rangebox projects/pciehp/contrib/dialog/samples/rangebox2 - copied unchanged from r255608, head/contrib/dialog/samples/rangebox2 projects/pciehp/contrib/dialog/samples/rangebox3 - copied unchanged from r255608, head/contrib/dialog/samples/rangebox3 projects/pciehp/contrib/dialog/samples/rangebox4 - copied unchanged from r255608, head/contrib/dialog/samples/rangebox4 projects/pciehp/contrib/dialog/samples/treeview - copied unchanged from r255608, head/contrib/dialog/samples/treeview projects/pciehp/contrib/dialog/samples/treeview2 - copied unchanged from r255608, head/contrib/dialog/samples/treeview2 projects/pciehp/contrib/dialog/samples/with-dquotes - copied unchanged from r255608, head/contrib/dialog/samples/with-dquotes projects/pciehp/contrib/dialog/samples/with-squotes - copied unchanged from r255608, head/contrib/dialog/samples/with-squotes projects/pciehp/contrib/dialog/treeview.c - copied unchanged from r255608, head/contrib/dialog/treeview.c projects/pciehp/contrib/flex/ - copied from r255608, head/contrib/flex/ projects/pciehp/contrib/gcc/config/i386/ammintrin.h - copied unchanged from r255608, head/contrib/gcc/config/i386/ammintrin.h projects/pciehp/contrib/ipfilter/BSD/upgrade - copied unchanged from r255608, head/contrib/ipfilter/BSD/upgrade projects/pciehp/contrib/ipfilter/WhatsNew50.txt - copied unchanged from r255608, head/contrib/ipfilter/WhatsNew50.txt projects/pciehp/contrib/ipfilter/arc4random.c - copied unchanged from r255608, head/contrib/ipfilter/arc4random.c projects/pciehp/contrib/ipfilter/genmask.c - copied unchanged from r255608, head/contrib/ipfilter/genmask.c projects/pciehp/contrib/ipfilter/ip_dstlist.c - copied unchanged from r255608, head/contrib/ipfilter/ip_dstlist.c projects/pciehp/contrib/ipfilter/ip_dstlist.h - copied unchanged from r255608, head/contrib/ipfilter/ip_dstlist.h projects/pciehp/contrib/ipfilter/ip_fil_compat.c - copied unchanged from r255608, head/contrib/ipfilter/ip_fil_compat.c projects/pciehp/contrib/ipfilter/ipf_rb.h - copied unchanged from r255608, head/contrib/ipfilter/ipf_rb.h projects/pciehp/contrib/ipfilter/lib/allocmbt.c - copied unchanged from r255608, head/contrib/ipfilter/lib/allocmbt.c projects/pciehp/contrib/ipfilter/lib/assigndefined.c - copied unchanged from r255608, head/contrib/ipfilter/lib/assigndefined.c projects/pciehp/contrib/ipfilter/lib/connecttcp.c - copied unchanged from r255608, head/contrib/ipfilter/lib/connecttcp.c projects/pciehp/contrib/ipfilter/lib/dupmbt.c - copied unchanged from r255608, head/contrib/ipfilter/lib/dupmbt.c projects/pciehp/contrib/ipfilter/lib/familyname.c - copied unchanged from r255608, head/contrib/ipfilter/lib/familyname.c projects/pciehp/contrib/ipfilter/lib/findword.c - copied unchanged from r255608, head/contrib/ipfilter/lib/findword.c projects/pciehp/contrib/ipfilter/lib/freembt.c - copied unchanged from r255608, head/contrib/ipfilter/lib/freembt.c projects/pciehp/contrib/ipfilter/lib/ftov.c - copied unchanged from r255608, head/contrib/ipfilter/lib/ftov.c projects/pciehp/contrib/ipfilter/lib/geticmptype.c - copied unchanged from r255608, head/contrib/ipfilter/lib/geticmptype.c projects/pciehp/contrib/ipfilter/lib/icmptypename.c - copied unchanged from r255608, head/contrib/ipfilter/lib/icmptypename.c projects/pciehp/contrib/ipfilter/lib/icmptypes.c - copied unchanged from r255608, head/contrib/ipfilter/lib/icmptypes.c projects/pciehp/contrib/ipfilter/lib/interror.c - copied unchanged from r255608, head/contrib/ipfilter/lib/interror.c projects/pciehp/contrib/ipfilter/lib/ipf_perror.c - copied unchanged from r255608, head/contrib/ipfilter/lib/ipf_perror.c projects/pciehp/contrib/ipfilter/lib/load_dstlist.c - copied unchanged from r255608, head/contrib/ipfilter/lib/load_dstlist.c projects/pciehp/contrib/ipfilter/lib/load_dstlistnode.c - copied unchanged from r255608, head/contrib/ipfilter/lib/load_dstlistnode.c projects/pciehp/contrib/ipfilter/lib/mb_hexdump.c - copied unchanged from r255608, head/contrib/ipfilter/lib/mb_hexdump.c projects/pciehp/contrib/ipfilter/lib/msgdsize.c - copied unchanged from r255608, head/contrib/ipfilter/lib/msgdsize.c projects/pciehp/contrib/ipfilter/lib/parsefields.c - copied unchanged from r255608, head/contrib/ipfilter/lib/parsefields.c projects/pciehp/contrib/ipfilter/lib/parseipfexpr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/parseipfexpr.c projects/pciehp/contrib/ipfilter/lib/parsewhoisline.c - copied unchanged from r255608, head/contrib/ipfilter/lib/parsewhoisline.c projects/pciehp/contrib/ipfilter/lib/poolio.c - copied unchanged from r255608, head/contrib/ipfilter/lib/poolio.c projects/pciehp/contrib/ipfilter/lib/prependmbt.c - copied unchanged from r255608, head/contrib/ipfilter/lib/prependmbt.c projects/pciehp/contrib/ipfilter/lib/printactiveaddr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printactiveaddr.c projects/pciehp/contrib/ipfilter/lib/printaddr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printaddr.c projects/pciehp/contrib/ipfilter/lib/printdstl_live.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printdstl_live.c projects/pciehp/contrib/ipfilter/lib/printdstlist.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printdstlist.c projects/pciehp/contrib/ipfilter/lib/printdstlistdata.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printdstlistdata.c projects/pciehp/contrib/ipfilter/lib/printdstlistnode.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printdstlistnode.c projects/pciehp/contrib/ipfilter/lib/printdstlistpolicy.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printdstlistpolicy.c projects/pciehp/contrib/ipfilter/lib/printfieldhdr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printfieldhdr.c projects/pciehp/contrib/ipfilter/lib/printhost.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printhost.c projects/pciehp/contrib/ipfilter/lib/printipfexpr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printipfexpr.c projects/pciehp/contrib/ipfilter/lib/printiphdr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printiphdr.c projects/pciehp/contrib/ipfilter/lib/printlookup.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printlookup.c projects/pciehp/contrib/ipfilter/lib/printnataddr.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printnataddr.c projects/pciehp/contrib/ipfilter/lib/printnatfield.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printnatfield.c projects/pciehp/contrib/ipfilter/lib/printnatside.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printnatside.c projects/pciehp/contrib/ipfilter/lib/printpoolfield.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printpoolfield.c projects/pciehp/contrib/ipfilter/lib/printstatefields.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printstatefields.c projects/pciehp/contrib/ipfilter/lib/printtcpflags.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printtcpflags.c projects/pciehp/contrib/ipfilter/lib/printunit.c - copied unchanged from r255608, head/contrib/ipfilter/lib/printunit.c projects/pciehp/contrib/ipfilter/lib/save_execute.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_execute.c projects/pciehp/contrib/ipfilter/lib/save_file.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_file.c projects/pciehp/contrib/ipfilter/lib/save_nothing.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_nothing.c projects/pciehp/contrib/ipfilter/lib/save_syslog.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_syslog.c projects/pciehp/contrib/ipfilter/lib/save_v1trap.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_v1trap.c projects/pciehp/contrib/ipfilter/lib/save_v2trap.c - copied unchanged from r255608, head/contrib/ipfilter/lib/save_v2trap.c projects/pciehp/contrib/ipfilter/lib/vtof.c - copied unchanged from r255608, head/contrib/ipfilter/lib/vtof.c - copied unchanged from r255608, head/contrib/ipfilter/ml_ipl.c - copied unchanged from r255608, head/contrib/ipfilter/mlfk_ipl.c - copied unchanged from r255608, head/contrib/ipfilter/mli_ipl.c - copied unchanged from r255608, head/contrib/ipfilter/mln_ipl.c projects/pciehp/contrib/ipfilter/mln_rule.c - copied unchanged from r255608, head/contrib/ipfilter/mln_rule.c projects/pciehp/contrib/ipfilter/mlo_ipl.c - copied unchanged from r255608, head/contrib/ipfilter/mlo_ipl.c projects/pciehp/contrib/ipfilter/mlo_rule.c - copied unchanged from r255608, head/contrib/ipfilter/mlo_rule.c - copied unchanged from r255608, head/contrib/ipfilter/mls_ipl.c projects/pciehp/contrib/ipfilter/mls_rule.c - copied unchanged from r255608, head/contrib/ipfilter/mls_rule.c projects/pciehp/contrib/ipfilter/mlso_rule.c - copied unchanged from r255608, head/contrib/ipfilter/mlso_rule.c projects/pciehp/contrib/ipfilter/radix_ipf.c - copied unchanged from r255608, head/contrib/ipfilter/radix_ipf.c projects/pciehp/contrib/ipfilter/sys/ - copied from r255608, head/contrib/ipfilter/sys/ projects/pciehp/contrib/ipfilter/test/e4to6 - copied unchanged from r255608, head/contrib/ipfilter/test/e4to6 projects/pciehp/contrib/ipfilter/test/expected/f21 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f21 projects/pciehp/contrib/ipfilter/test/expected/f22 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f22 projects/pciehp/contrib/ipfilter/test/expected/f25 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f25 projects/pciehp/contrib/ipfilter/test/expected/f26 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f26 projects/pciehp/contrib/ipfilter/test/expected/f27 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f27 projects/pciehp/contrib/ipfilter/test/expected/f28 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f28 projects/pciehp/contrib/ipfilter/test/expected/f29 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f29 projects/pciehp/contrib/ipfilter/test/expected/f30 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/f30 projects/pciehp/contrib/ipfilter/test/expected/i22 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/i22 projects/pciehp/contrib/ipfilter/test/expected/i23 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/i23 projects/pciehp/contrib/ipfilter/test/expected/in100 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/in100 projects/pciehp/contrib/ipfilter/test/expected/in101 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/in101 projects/pciehp/contrib/ipfilter/test/expected/in102 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/in102 projects/pciehp/contrib/ipfilter/test/expected/in7 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/in7 projects/pciehp/contrib/ipfilter/test/expected/ip3 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/ip3 projects/pciehp/contrib/ipfilter/test/expected/ipv6.4 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/ipv6.4 projects/pciehp/contrib/ipfilter/test/expected/n100 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n100 projects/pciehp/contrib/ipfilter/test/expected/n101 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n101 projects/pciehp/contrib/ipfilter/test/expected/n102 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n102 projects/pciehp/contrib/ipfilter/test/expected/n103 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n103 projects/pciehp/contrib/ipfilter/test/expected/n104 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n104 projects/pciehp/contrib/ipfilter/test/expected/n105 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n105 projects/pciehp/contrib/ipfilter/test/expected/n106 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n106 projects/pciehp/contrib/ipfilter/test/expected/n11_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n11_6 projects/pciehp/contrib/ipfilter/test/expected/n12_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n12_6 projects/pciehp/contrib/ipfilter/test/expected/n13_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n13_6 projects/pciehp/contrib/ipfilter/test/expected/n14_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n14_6 projects/pciehp/contrib/ipfilter/test/expected/n15 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n15 projects/pciehp/contrib/ipfilter/test/expected/n15_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n15_6 projects/pciehp/contrib/ipfilter/test/expected/n17 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n17 projects/pciehp/contrib/ipfilter/test/expected/n18 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n18 projects/pciehp/contrib/ipfilter/test/expected/n1_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n1_6 projects/pciehp/contrib/ipfilter/test/expected/n200 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n200 projects/pciehp/contrib/ipfilter/test/expected/n2_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n2_6 projects/pciehp/contrib/ipfilter/test/expected/n4_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n4_6 projects/pciehp/contrib/ipfilter/test/expected/n5_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n5_6 projects/pciehp/contrib/ipfilter/test/expected/n6_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n6_6 projects/pciehp/contrib/ipfilter/test/expected/n7_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n7_6 projects/pciehp/contrib/ipfilter/test/expected/n8_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n8_6 projects/pciehp/contrib/ipfilter/test/expected/n9_6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/n9_6 projects/pciehp/contrib/ipfilter/test/expected/ni17 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/ni17 projects/pciehp/contrib/ipfilter/test/expected/ni18 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/ni18 projects/pciehp/contrib/ipfilter/test/expected/p10 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p10 projects/pciehp/contrib/ipfilter/test/expected/p11 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p11 projects/pciehp/contrib/ipfilter/test/expected/p12 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p12 projects/pciehp/contrib/ipfilter/test/expected/p13 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p13 projects/pciehp/contrib/ipfilter/test/expected/p4 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p4 projects/pciehp/contrib/ipfilter/test/expected/p6 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p6 projects/pciehp/contrib/ipfilter/test/expected/p7 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p7 projects/pciehp/contrib/ipfilter/test/expected/p9 - copied unchanged from r255608, head/contrib/ipfilter/test/expected/p9 projects/pciehp/contrib/ipfilter/test/h4to6 - copied unchanged from r255608, head/contrib/ipfilter/test/h4to6 projects/pciehp/contrib/ipfilter/test/i4to6 - copied unchanged from r255608, head/contrib/ipfilter/test/i4to6 projects/pciehp/contrib/ipfilter/test/input/f21 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f21 projects/pciehp/contrib/ipfilter/test/input/f22 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f22 projects/pciehp/contrib/ipfilter/test/input/f25 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f25 projects/pciehp/contrib/ipfilter/test/input/f26 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f26 projects/pciehp/contrib/ipfilter/test/input/f27 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f27 projects/pciehp/contrib/ipfilter/test/input/f28 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f28 projects/pciehp/contrib/ipfilter/test/input/f29 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f29 projects/pciehp/contrib/ipfilter/test/input/f30 - copied unchanged from r255608, head/contrib/ipfilter/test/input/f30 projects/pciehp/contrib/ipfilter/test/input/ipv6.4 - copied unchanged from r255608, head/contrib/ipfilter/test/input/ipv6.4 projects/pciehp/contrib/ipfilter/test/input/n100 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n100 projects/pciehp/contrib/ipfilter/test/input/n101 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n101 projects/pciehp/contrib/ipfilter/test/input/n102 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n102 projects/pciehp/contrib/ipfilter/test/input/n103 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n103 projects/pciehp/contrib/ipfilter/test/input/n104 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n104 projects/pciehp/contrib/ipfilter/test/input/n105 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n105 projects/pciehp/contrib/ipfilter/test/input/n106 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n106 projects/pciehp/contrib/ipfilter/test/input/n10_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n10_6 projects/pciehp/contrib/ipfilter/test/input/n11_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n11_6 projects/pciehp/contrib/ipfilter/test/input/n12_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n12_6 projects/pciehp/contrib/ipfilter/test/input/n13_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n13_6 projects/pciehp/contrib/ipfilter/test/input/n14_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n14_6 projects/pciehp/contrib/ipfilter/test/input/n15 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n15 projects/pciehp/contrib/ipfilter/test/input/n15_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n15_6 projects/pciehp/contrib/ipfilter/test/input/n17 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n17 projects/pciehp/contrib/ipfilter/test/input/n17_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n17_6 projects/pciehp/contrib/ipfilter/test/input/n18 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n18 projects/pciehp/contrib/ipfilter/test/input/n1_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n1_6 projects/pciehp/contrib/ipfilter/test/input/n200 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n200 projects/pciehp/contrib/ipfilter/test/input/n2_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n2_6 projects/pciehp/contrib/ipfilter/test/input/n4_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n4_6 projects/pciehp/contrib/ipfilter/test/input/n5_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n5_6 projects/pciehp/contrib/ipfilter/test/input/n6_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n6_6 projects/pciehp/contrib/ipfilter/test/input/n7_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n7_6 projects/pciehp/contrib/ipfilter/test/input/n8_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n8_6 projects/pciehp/contrib/ipfilter/test/input/n9_6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/n9_6 projects/pciehp/contrib/ipfilter/test/input/ni18 - copied unchanged from r255608, head/contrib/ipfilter/test/input/ni18 projects/pciehp/contrib/ipfilter/test/input/p10 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p10 projects/pciehp/contrib/ipfilter/test/input/p11 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p11 projects/pciehp/contrib/ipfilter/test/input/p12 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p12 projects/pciehp/contrib/ipfilter/test/input/p13 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p13 projects/pciehp/contrib/ipfilter/test/input/p4 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p4 projects/pciehp/contrib/ipfilter/test/input/p6 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p6 projects/pciehp/contrib/ipfilter/test/input/p7 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p7 projects/pciehp/contrib/ipfilter/test/input/p9 - copied unchanged from r255608, head/contrib/ipfilter/test/input/p9 projects/pciehp/contrib/ipfilter/test/ipflib.sh - copied unchanged from r255608, head/contrib/ipfilter/test/ipflib.sh projects/pciehp/contrib/ipfilter/test/regress/f21 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f21 projects/pciehp/contrib/ipfilter/test/regress/f22 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f22 projects/pciehp/contrib/ipfilter/test/regress/f25 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f25 projects/pciehp/contrib/ipfilter/test/regress/f26 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f26 projects/pciehp/contrib/ipfilter/test/regress/f27 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f27 projects/pciehp/contrib/ipfilter/test/regress/f28.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f28.ipf projects/pciehp/contrib/ipfilter/test/regress/f28.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f28.pool projects/pciehp/contrib/ipfilter/test/regress/f29.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f29.ipf projects/pciehp/contrib/ipfilter/test/regress/f29.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f29.pool projects/pciehp/contrib/ipfilter/test/regress/f30 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/f30 projects/pciehp/contrib/ipfilter/test/regress/i22 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/i22 projects/pciehp/contrib/ipfilter/test/regress/i23 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/i23 projects/pciehp/contrib/ipfilter/test/regress/in100 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/in100 projects/pciehp/contrib/ipfilter/test/regress/in101 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/in101 projects/pciehp/contrib/ipfilter/test/regress/in102 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/in102 projects/pciehp/contrib/ipfilter/test/regress/in7 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/in7 projects/pciehp/contrib/ipfilter/test/regress/ip3 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/ip3 projects/pciehp/contrib/ipfilter/test/regress/ipv6.4 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/ipv6.4 projects/pciehp/contrib/ipfilter/test/regress/n100 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n100 projects/pciehp/contrib/ipfilter/test/regress/n101 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n101 projects/pciehp/contrib/ipfilter/test/regress/n102 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n102 projects/pciehp/contrib/ipfilter/test/regress/n103 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n103 projects/pciehp/contrib/ipfilter/test/regress/n104 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n104 projects/pciehp/contrib/ipfilter/test/regress/n105 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n105 projects/pciehp/contrib/ipfilter/test/regress/n106 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n106 projects/pciehp/contrib/ipfilter/test/regress/n10_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n10_6 projects/pciehp/contrib/ipfilter/test/regress/n11_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n11_6 projects/pciehp/contrib/ipfilter/test/regress/n12_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n12_6 projects/pciehp/contrib/ipfilter/test/regress/n13_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n13_6 projects/pciehp/contrib/ipfilter/test/regress/n14_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n14_6 projects/pciehp/contrib/ipfilter/test/regress/n15 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n15 projects/pciehp/contrib/ipfilter/test/regress/n15_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n15_6 projects/pciehp/contrib/ipfilter/test/regress/n16_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n16_6 projects/pciehp/contrib/ipfilter/test/regress/n17 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n17 projects/pciehp/contrib/ipfilter/test/regress/n17_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n17_6 projects/pciehp/contrib/ipfilter/test/regress/n18 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n18 projects/pciehp/contrib/ipfilter/test/regress/n1_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n1_6 projects/pciehp/contrib/ipfilter/test/regress/n200 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n200 projects/pciehp/contrib/ipfilter/test/regress/n2_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n2_6 projects/pciehp/contrib/ipfilter/test/regress/n4_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n4_6 projects/pciehp/contrib/ipfilter/test/regress/n5_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n5_6 projects/pciehp/contrib/ipfilter/test/regress/n6_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n6_6 projects/pciehp/contrib/ipfilter/test/regress/n7_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n7_6 projects/pciehp/contrib/ipfilter/test/regress/n8_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n8_6 projects/pciehp/contrib/ipfilter/test/regress/n9_6 - copied unchanged from r255608, head/contrib/ipfilter/test/regress/n9_6 projects/pciehp/contrib/ipfilter/test/regress/ni17.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/ni17.ipf projects/pciehp/contrib/ipfilter/test/regress/ni18.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/ni18.ipf projects/pciehp/contrib/ipfilter/test/regress/ni18.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/ni18.nat projects/pciehp/contrib/ipfilter/test/regress/p10.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p10.nat projects/pciehp/contrib/ipfilter/test/regress/p10.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p10.pool projects/pciehp/contrib/ipfilter/test/regress/p11.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p11.nat projects/pciehp/contrib/ipfilter/test/regress/p11.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p11.pool projects/pciehp/contrib/ipfilter/test/regress/p12.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p12.nat projects/pciehp/contrib/ipfilter/test/regress/p12.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p12.pool projects/pciehp/contrib/ipfilter/test/regress/p13.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p13.ipf projects/pciehp/contrib/ipfilter/test/regress/p13.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p13.pool projects/pciehp/contrib/ipfilter/test/regress/p4.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p4.nat projects/pciehp/contrib/ipfilter/test/regress/p4.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p4.pool projects/pciehp/contrib/ipfilter/test/regress/p6.ipf - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p6.ipf projects/pciehp/contrib/ipfilter/test/regress/p6.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p6.pool projects/pciehp/contrib/ipfilter/test/regress/p6.whois - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p6.whois projects/pciehp/contrib/ipfilter/test/regress/p7.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p7.nat projects/pciehp/contrib/ipfilter/test/regress/p7.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p7.pool projects/pciehp/contrib/ipfilter/test/regress/p9.nat - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p9.nat projects/pciehp/contrib/ipfilter/test/regress/p9.pool - copied unchanged from r255608, head/contrib/ipfilter/test/regress/p9.pool projects/pciehp/contrib/ipfilter/tools/ipfsyncd.c - copied unchanged from r255608, head/contrib/ipfilter/tools/ipfsyncd.c projects/pciehp/contrib/ldns-host/ - copied from r255608, head/contrib/ldns-host/ - copied from r255608, head/contrib/libexecinfo/ projects/pciehp/contrib/libgnuregex/ - copied from r255608, head/contrib/libgnuregex/ projects/pciehp/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h - copied unchanged from r255608, head/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h - copied unchanged from r255608, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h projects/pciehp/contrib/llvm/include/llvm/Support/CBindingWrapping.h - copied unchanged from r255608, head/contrib/llvm/include/llvm/Support/CBindingWrapping.h projects/pciehp/contrib/llvm/include/llvm/Support/Compression.h - copied unchanged from r255608, head/contrib/llvm/include/llvm/Support/Compression.h projects/pciehp/contrib/llvm/lib/Support/Compression.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Support/Compression.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h - copied unchanged from r255608, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h projects/pciehp/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsOs16.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MipsOs16.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsOs16.h - copied unchanged from r255608, head/contrib/llvm/lib/Target/Mips/MipsOs16.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/AsmParser/ - copied from r255608, head/contrib/llvm/lib/Target/PowerPC/AsmParser/ projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUELFObjectWriter.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/R600/R600Packetizer.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/R600/R600Packetizer.cpp projects/pciehp/contrib/llvm/lib/Target/R600/SIDefines.h - copied unchanged from r255608, head/contrib/llvm/lib/Target/R600/SIDefines.h projects/pciehp/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h - copied unchanged from r255608, head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h projects/pciehp/contrib/llvm/lib/Target/SystemZ/ - copied from r255608, head/contrib/llvm/lib/Target/SystemZ/ projects/pciehp/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp - copied unchanged from r255608, head/contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/VecUtils.h - copied unchanged from r255608, head/contrib/llvm/lib/Transforms/Vectorize/VecUtils.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def - copied unchanged from r255608, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h - copied unchanged from r255608, head/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h - copied unchanged from r255608, head/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h projects/pciehp/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/Format/BreakableToken.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/BreakableToken.h - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/Format/BreakableToken.h projects/pciehp/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/Format/WhitespaceManager.h projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h - copied unchanged from r255608, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h projects/pciehp/contrib/llvm/tools/lldb/ - copied from r255608, head/contrib/llvm/tools/lldb/ projects/pciehp/contrib/nvi/catalog/zh_CN.GB2312.base - copied unchanged from r255608, head/contrib/nvi/catalog/zh_CN.GB2312.base projects/pciehp/contrib/nvi/catalog/zh_CN.GB2312.owner - copied unchanged from r255608, head/contrib/nvi/catalog/zh_CN.GB2312.owner projects/pciehp/contrib/nvi/cl/extern.h - copied unchanged from r255608, head/contrib/nvi/cl/extern.h projects/pciehp/contrib/nvi/common/conv.c - copied unchanged from r255608, head/contrib/nvi/common/conv.c projects/pciehp/contrib/nvi/common/conv.h - copied unchanged from r255608, head/contrib/nvi/common/conv.h projects/pciehp/contrib/nvi/common/encoding.c - copied unchanged from r255608, head/contrib/nvi/common/encoding.c projects/pciehp/contrib/nvi/common/extern.h - copied unchanged from r255608, head/contrib/nvi/common/extern.h projects/pciehp/contrib/nvi/common/multibyte.h - copied unchanged from r255608, head/contrib/nvi/common/multibyte.h projects/pciehp/contrib/nvi/common/options_def.h - copied unchanged from r255608, head/contrib/nvi/common/options_def.h projects/pciehp/contrib/nvi/ex/ex_def.h - copied unchanged from r255608, head/contrib/nvi/ex/ex_def.h projects/pciehp/contrib/nvi/ex/extern.h - copied unchanged from r255608, head/contrib/nvi/ex/extern.h projects/pciehp/contrib/nvi/regex/ - copied from r255608, head/contrib/nvi/regex/ projects/pciehp/contrib/nvi/vi/extern.h - copied unchanged from r255608, head/contrib/nvi/vi/extern.h projects/pciehp/contrib/openpam/lib/libpam/ - copied from r255608, head/contrib/openpam/lib/libpam/ projects/pciehp/contrib/openpam/m4/ - copied from r255608, head/contrib/openpam/m4/ projects/pciehp/contrib/openpam/mkpkgng.in - copied unchanged from r255608, head/contrib/openpam/mkpkgng.in projects/pciehp/contrib/openpam/t/t_file.c - copied unchanged from r255608, head/contrib/openpam/t/t_file.c projects/pciehp/contrib/openpam/test-driver - copied unchanged from r255608, head/contrib/openpam/test-driver - copied from r255608, head/contrib/serf/ projects/pciehp/contrib/sqlite3/ - copied from r255608, head/contrib/sqlite3/ - copied from r255608, head/contrib/subversion/ projects/pciehp/contrib/tcpdump/print-msnlb.c - copied unchanged from r255608, head/contrib/tcpdump/print-msnlb.c projects/pciehp/contrib/tcpdump/print-otv.c - copied unchanged from r255608, head/contrib/tcpdump/print-otv.c projects/pciehp/contrib/tcpdump/print-vxlan.c - copied unchanged from r255608, head/contrib/tcpdump/print-vxlan.c projects/pciehp/contrib/tcpdump/print-zeromq.c - copied unchanged from r255608, head/contrib/tcpdump/print-zeromq.c projects/pciehp/contrib/unbound/config.h - copied unchanged from r255608, head/contrib/unbound/config.h projects/pciehp/contrib/unbound/doc/libunbound.3 - copied unchanged from r255608, head/contrib/unbound/doc/libunbound.3 projects/pciehp/contrib/unbound/doc/unbound-anchor.8 - copied unchanged from r255608, head/contrib/unbound/doc/unbound-anchor.8 projects/pciehp/contrib/unbound/doc/unbound-checkconf.8 - copied unchanged from r255608, head/contrib/unbound/doc/unbound-checkconf.8 projects/pciehp/contrib/unbound/doc/unbound-control.8 - copied unchanged from r255608, head/contrib/unbound/doc/unbound-control.8 projects/pciehp/contrib/unbound/doc/unbound.8 - copied unchanged from r255608, head/contrib/unbound/doc/unbound.8 projects/pciehp/contrib/unbound/doc/unbound.conf.5 - copied unchanged from r255608, head/contrib/unbound/doc/unbound.conf.5 projects/pciehp/contrib/unbound/freebsd-configure.sh - copied unchanged from r255608, head/contrib/unbound/freebsd-configure.sh projects/pciehp/contrib/unbound/freebsd-sources.pl - copied unchanged from r255608, head/contrib/unbound/freebsd-sources.pl projects/pciehp/contrib/unbound/libunbound/worker.h - copied unchanged from r255608, head/contrib/unbound/libunbound/worker.h projects/pciehp/contrib/unbound/smallapp/unbound-control-setup.sh.in - copied unchanged from r255608, head/contrib/unbound/smallapp/unbound-control-setup.sh.in projects/pciehp/contrib/wpa/hostapd/hlr_auc_gw.txt - copied unchanged from r255608, head/contrib/wpa/hostapd/hlr_auc_gw.txt projects/pciehp/contrib/wpa/hostapd/hostapd.eap_user_sqlite - copied unchanged from r255608, head/contrib/wpa/hostapd/hostapd.eap_user_sqlite projects/pciehp/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch - copied unchanged from r255608, head/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch projects/pciehp/contrib/wpa/src/ap/eap_user_db.c - copied unchanged from r255608, head/contrib/wpa/src/ap/eap_user_db.c projects/pciehp/contrib/wpa/src/ap/gas_serv.c - copied unchanged from r255608, head/contrib/wpa/src/ap/gas_serv.c projects/pciehp/contrib/wpa/src/ap/gas_serv.h - copied unchanged from r255608, head/contrib/wpa/src/ap/gas_serv.h projects/pciehp/contrib/wpa/src/ap/hs20.c - copied unchanged from r255608, head/contrib/wpa/src/ap/hs20.c projects/pciehp/contrib/wpa/src/ap/hs20.h - copied unchanged from r255608, head/contrib/wpa/src/ap/hs20.h projects/pciehp/contrib/wpa/src/ap/ieee802_11_shared.c - copied unchanged from r255608, head/contrib/wpa/src/ap/ieee802_11_shared.c projects/pciehp/contrib/wpa/src/ap/ieee802_11_vht.c - copied unchanged from r255608, head/contrib/wpa/src/ap/ieee802_11_vht.c projects/pciehp/contrib/wpa/src/ap/p2p_hostapd.c - copied unchanged from r255608, head/contrib/wpa/src/ap/p2p_hostapd.c projects/pciehp/contrib/wpa/src/ap/p2p_hostapd.h - copied unchanged from r255608, head/contrib/wpa/src/ap/p2p_hostapd.h projects/pciehp/contrib/wpa/src/ap/vlan_util.c - copied unchanged from r255608, head/contrib/wpa/src/ap/vlan_util.c projects/pciehp/contrib/wpa/src/ap/vlan_util.h - copied unchanged from r255608, head/contrib/wpa/src/ap/vlan_util.h projects/pciehp/contrib/wpa/src/ap/wnm_ap.c - copied unchanged from r255608, head/contrib/wpa/src/ap/wnm_ap.c projects/pciehp/contrib/wpa/src/ap/wnm_ap.h - copied unchanged from r255608, head/contrib/wpa/src/ap/wnm_ap.h projects/pciehp/contrib/wpa/src/common/gas.c - copied unchanged from r255608, head/contrib/wpa/src/common/gas.c projects/pciehp/contrib/wpa/src/common/gas.h - copied unchanged from r255608, head/contrib/wpa/src/common/gas.h projects/pciehp/contrib/wpa/src/crypto/aes-ccm.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/aes-ccm.c projects/pciehp/contrib/wpa/src/crypto/aes-gcm.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/aes-gcm.c projects/pciehp/contrib/wpa/src/crypto/random.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/random.c projects/pciehp/contrib/wpa/src/crypto/random.h - copied unchanged from r255608, head/contrib/wpa/src/crypto/random.h projects/pciehp/contrib/wpa/src/crypto/sha1-prf.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/sha1-prf.c projects/pciehp/contrib/wpa/src/crypto/sha256-prf.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/sha256-prf.c projects/pciehp/contrib/wpa/src/crypto/sha256-tlsprf.c - copied unchanged from r255608, head/contrib/wpa/src/crypto/sha256-tlsprf.c projects/pciehp/contrib/wpa/src/crypto/sha256_i.h - copied unchanged from r255608, head/contrib/wpa/src/crypto/sha256_i.h projects/pciehp/contrib/wpa/src/drivers/driver_bsd.c - copied unchanged from r255608, head/contrib/wpa/src/drivers/driver_bsd.c projects/pciehp/contrib/wpa/src/drivers/driver_common.c - copied unchanged from r255608, head/contrib/wpa/src/drivers/driver_common.c projects/pciehp/contrib/wpa/src/drivers/driver_privsep.c - copied unchanged from r255608, head/contrib/wpa/src/drivers/driver_privsep.c projects/pciehp/contrib/wpa/src/eap_common/eap_pwd_common.c - copied unchanged from r255608, head/contrib/wpa/src/eap_common/eap_pwd_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_pwd_common.h - copied unchanged from r255608, head/contrib/wpa/src/eap_common/eap_pwd_common.h projects/pciehp/contrib/wpa/src/eap_peer/eap_pwd.c - copied unchanged from r255608, head/contrib/wpa/src/eap_peer/eap_pwd.c projects/pciehp/contrib/wpa/src/eap_server/eap_server_pwd.c - copied unchanged from r255608, head/contrib/wpa/src/eap_server/eap_server_pwd.c projects/pciehp/contrib/wpa/src/l2_packet/l2_packet_privsep.c - copied unchanged from r255608, head/contrib/wpa/src/l2_packet/l2_packet_privsep.c projects/pciehp/contrib/wpa/src/p2p/ - copied from r255608, head/contrib/wpa/src/p2p/ projects/pciehp/contrib/wpa/src/radius/radius_das.c - copied unchanged from r255608, head/contrib/wpa/src/radius/radius_das.c projects/pciehp/contrib/wpa/src/radius/radius_das.h - copied unchanged from r255608, head/contrib/wpa/src/radius/radius_das.h projects/pciehp/contrib/wpa/src/rsn_supp/tdls.c - copied unchanged from r255608, head/contrib/wpa/src/rsn_supp/tdls.c projects/pciehp/contrib/wpa/src/utils/edit.c - copied unchanged from r255608, head/contrib/wpa/src/utils/edit.c projects/pciehp/contrib/wpa/src/utils/edit.h - copied unchanged from r255608, head/contrib/wpa/src/utils/edit.h projects/pciehp/contrib/wpa/src/utils/edit_readline.c - copied unchanged from r255608, head/contrib/wpa/src/utils/edit_readline.c projects/pciehp/contrib/wpa/src/utils/edit_simple.c - copied unchanged from r255608, head/contrib/wpa/src/utils/edit_simple.c projects/pciehp/contrib/wpa/src/utils/ext_password.c - copied unchanged from r255608, head/contrib/wpa/src/utils/ext_password.c projects/pciehp/contrib/wpa/src/utils/ext_password.h - copied unchanged from r255608, head/contrib/wpa/src/utils/ext_password.h projects/pciehp/contrib/wpa/src/utils/ext_password_i.h - copied unchanged from r255608, head/contrib/wpa/src/utils/ext_password_i.h projects/pciehp/contrib/wpa/src/utils/ext_password_test.c - copied unchanged from r255608, head/contrib/wpa/src/utils/ext_password_test.c projects/pciehp/contrib/wpa/src/wps/wps_attr_parse.h - copied unchanged from r255608, head/contrib/wpa/src/wps/wps_attr_parse.h projects/pciehp/contrib/wpa/src/wps/wps_validate.c - copied unchanged from r255608, head/contrib/wpa/src/wps/wps_validate.c projects/pciehp/contrib/wpa/wpa_supplicant/README-HS20 - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/README-HS20 projects/pciehp/contrib/wpa/wpa_supplicant/README-P2P - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/README-P2P projects/pciehp/contrib/wpa/wpa_supplicant/autoscan.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/autoscan.c projects/pciehp/contrib/wpa/wpa_supplicant/autoscan.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/autoscan.h projects/pciehp/contrib/wpa/wpa_supplicant/autoscan_exponential.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/autoscan_exponential.c projects/pciehp/contrib/wpa/wpa_supplicant/autoscan_periodic.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/autoscan_periodic.c projects/pciehp/contrib/wpa/wpa_supplicant/bgscan_learn.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/bgscan_learn.c projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h projects/pciehp/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in projects/pciehp/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in projects/pciehp/contrib/wpa/wpa_supplicant/examples/dbus-listen-preq.py - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/dbus-listen-preq.py projects/pciehp/contrib/wpa/wpa_supplicant/examples/p2p/ - copied from r255608, head/contrib/wpa/wpa_supplicant/examples/p2p/ projects/pciehp/contrib/wpa/wpa_supplicant/examples/p2p-action-udhcp.sh - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/p2p-action-udhcp.sh projects/pciehp/contrib/wpa/wpa_supplicant/examples/p2p-action.sh - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/p2p-action.sh projects/pciehp/contrib/wpa/wpa_supplicant/examples/udhcpd-p2p.conf - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/udhcpd-p2p.conf projects/pciehp/contrib/wpa/wpa_supplicant/examples/wps-ap-cli - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/wps-ap-cli projects/pciehp/contrib/wpa/wpa_supplicant/examples/wps-nfc.py - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/examples/wps-nfc.py projects/pciehp/contrib/wpa/wpa_supplicant/gas_query.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/gas_query.c projects/pciehp/contrib/wpa/wpa_supplicant/gas_query.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/gas_query.h projects/pciehp/contrib/wpa/wpa_supplicant/hs20_supplicant.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/hs20_supplicant.c projects/pciehp/contrib/wpa/wpa_supplicant/hs20_supplicant.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/hs20_supplicant.h projects/pciehp/contrib/wpa/wpa_supplicant/interworking.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/interworking.c projects/pciehp/contrib/wpa/wpa_supplicant/interworking.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/interworking.h projects/pciehp/contrib/wpa/wpa_supplicant/nfc_pw_token.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/nfc_pw_token.c projects/pciehp/contrib/wpa/wpa_supplicant/offchannel.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/offchannel.c projects/pciehp/contrib/wpa/wpa_supplicant/offchannel.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/offchannel.h projects/pciehp/contrib/wpa/wpa_supplicant/p2p_supplicant.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/p2p_supplicant.c projects/pciehp/contrib/wpa/wpa_supplicant/p2p_supplicant.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/p2p_supplicant.h projects/pciehp/contrib/wpa/wpa_supplicant/utils/ - copied from r255608, head/contrib/wpa/wpa_supplicant/utils/ projects/pciehp/contrib/wpa/wpa_supplicant/wifi_display.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wifi_display.c projects/pciehp/contrib/wpa/wpa_supplicant/wifi_display.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wifi_display.h projects/pciehp/contrib/wpa/wpa_supplicant/wnm_sta.c - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wnm_sta.c projects/pciehp/contrib/wpa/wpa_supplicant/wnm_sta.h - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wnm_sta.h projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.mk - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.mk projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.sh - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.sh projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf - copied unchanged from r255608, head/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf projects/pciehp/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c - copied unchanged from r255608, head/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c projects/pciehp/crypto/openssh/openbsd-compat/strnlen.c - copied unchanged from r255608, head/crypto/openssh/openbsd-compat/strnlen.c projects/pciehp/crypto/openssh/sandbox-seccomp-filter.c - copied unchanged from r255608, head/crypto/openssh/sandbox-seccomp-filter.c projects/pciehp/etc/libmap.conf - copied unchanged from r255608, head/etc/libmap.conf projects/pciehp/etc/libmap32.conf - copied unchanged from r255608, head/etc/libmap32.conf projects/pciehp/etc/mtree/BSD.debug.dist - copied unchanged from r255608, head/etc/mtree/BSD.debug.dist projects/pciehp/etc/periodic/monthly/450.status-security - copied unchanged from r255608, head/etc/periodic/monthly/450.status-security projects/pciehp/etc/periodic/weekly/450.status-security - copied unchanged from r255608, head/etc/periodic/weekly/450.status-security projects/pciehp/etc/rc.d/ctld - copied unchanged from r255608, head/etc/rc.d/ctld projects/pciehp/etc/rc.d/iscsictl - copied unchanged from r255608, head/etc/rc.d/iscsictl projects/pciehp/etc/rc.d/iscsid - copied unchanged from r255608, head/etc/rc.d/iscsid projects/pciehp/etc/rc.d/swap - copied unchanged from r255608, head/etc/rc.d/swap projects/pciehp/etc/rc.d/swaplate - copied unchanged from r255608, head/etc/rc.d/swaplate projects/pciehp/gnu/usr.bin/cc/include/__wmmintrin_aes.h - copied unchanged from r255608, head/gnu/usr.bin/cc/include/__wmmintrin_aes.h projects/pciehp/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h - copied unchanged from r255608, head/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h projects/pciehp/include/uchar.h - copied unchanged from r255608, head/include/uchar.h projects/pciehp/include/xlocale/_uchar.h - copied unchanged from r255608, head/include/xlocale/_uchar.h projects/pciehp/lib/clang/include/clang/Parse/AttrExprArgs.inc - copied unchanged from r255608, head/lib/clang/include/clang/Parse/AttrExprArgs.inc projects/pciehp/lib/csu/Makefile - copied unchanged from r255608, head/lib/csu/Makefile projects/pciehp/lib/libc++/libc++.ldscript - copied unchanged from r255608, head/lib/libc++/libc++.ldscript projects/pciehp/lib/libc/arm/gen/arm_initfini.c - copied unchanged from r255608, head/lib/libc/arm/gen/arm_initfini.c projects/pciehp/lib/libc/capability/ - copied from r255608, head/lib/libc/capability/ projects/pciehp/lib/libc/gen/dup3.3 - copied unchanged from r255608, head/lib/libc/gen/dup3.3 projects/pciehp/lib/libc/gen/dup3.c - copied unchanged from r255608, head/lib/libc/gen/dup3.c projects/pciehp/lib/libc/include/errlst.h - copied unchanged from r255608, head/lib/libc/include/errlst.h projects/pciehp/lib/libc/libc.ldscript - copied unchanged from r255608, head/lib/libc/libc.ldscript projects/pciehp/lib/libc/locale/c16rtomb.c - copied unchanged from r255608, head/lib/libc/locale/c16rtomb.c projects/pciehp/lib/libc/locale/c16rtomb_iconv.c - copied unchanged from r255608, head/lib/libc/locale/c16rtomb_iconv.c projects/pciehp/lib/libc/locale/c32rtomb.c - copied unchanged from r255608, head/lib/libc/locale/c32rtomb.c projects/pciehp/lib/libc/locale/c32rtomb_iconv.c - copied unchanged from r255608, head/lib/libc/locale/c32rtomb_iconv.c projects/pciehp/lib/libc/locale/cXXrtomb_iconv.h - copied unchanged from r255608, head/lib/libc/locale/cXXrtomb_iconv.h projects/pciehp/lib/libc/locale/mbrtoc16.c - copied unchanged from r255608, head/lib/libc/locale/mbrtoc16.c projects/pciehp/lib/libc/locale/mbrtoc16_iconv.c - copied unchanged from r255608, head/lib/libc/locale/mbrtoc16_iconv.c projects/pciehp/lib/libc/locale/mbrtoc32.c - copied unchanged from r255608, head/lib/libc/locale/mbrtoc32.c projects/pciehp/lib/libc/locale/mbrtoc32_iconv.c - copied unchanged from r255608, head/lib/libc/locale/mbrtoc32_iconv.c projects/pciehp/lib/libc/locale/mbrtocXX_iconv.h - copied unchanged from r255608, head/lib/libc/locale/mbrtocXX_iconv.h projects/pciehp/lib/libc/sys/aio_mlock.2 - copied unchanged from r255608, head/lib/libc/sys/aio_mlock.2 projects/pciehp/lib/libexecinfo/ - copied from r255608, head/lib/libexecinfo/ projects/pciehp/lib/libiconv_compat/ - copied from r255608, head/lib/libiconv_compat/ projects/pciehp/lib/libunbound/ - copied from r255608, head/lib/libunbound/ projects/pciehp/lib/libusb/libusb-0.1.pc - copied unchanged from r255608, head/lib/libusb/libusb-0.1.pc projects/pciehp/lib/libusb/libusb-1.0.pc - copied unchanged from r255608, head/lib/libusb/libusb-1.0.pc projects/pciehp/lib/libusb/libusb-2.0.pc - copied unchanged from r255608, head/lib/libusb/libusb-2.0.pc projects/pciehp/lib/msun/ld128/s_logl.c - copied unchanged from r255608, head/lib/msun/ld128/s_logl.c projects/pciehp/lib/msun/ld80/s_logl.c - copied unchanged from r255608, head/lib/msun/ld80/s_logl.c projects/pciehp/lib/msun/man/cacos.3 - copied unchanged from r255608, head/lib/msun/man/cacos.3 projects/pciehp/lib/msun/src/catrig.c - copied unchanged from r255608, head/lib/msun/src/catrig.c projects/pciehp/lib/msun/src/catrigf.c - copied unchanged from r255608, head/lib/msun/src/catrigf.c projects/pciehp/lib/msun/src/e_acoshl.c - copied unchanged from r255608, head/lib/msun/src/e_acoshl.c projects/pciehp/lib/msun/src/e_atanhl.c - copied unchanged from r255608, head/lib/msun/src/e_atanhl.c projects/pciehp/lib/msun/src/imprecise.c - copied unchanged from r255608, head/lib/msun/src/imprecise.c projects/pciehp/lib/msun/src/s_asinhl.c - copied unchanged from r255608, head/lib/msun/src/s_asinhl.c projects/pciehp/release/doc/ja_JP.eucJP/share/xml/catalog.xml - copied unchanged from r255608, head/release/doc/ja_JP.eucJP/share/xml/catalog.xml projects/pciehp/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.ent - copied unchanged from r255608, head/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.ent projects/pciehp/release/doc/ru_RU.KOI8-R/share/xml/catalog.xml - copied unchanged from r255608, head/release/doc/ru_RU.KOI8-R/share/xml/catalog.xml projects/pciehp/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.ent - copied unchanged from r255608, head/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.ent projects/pciehp/release/doc/share/xml/catalog.xml - copied unchanged from r255608, head/release/doc/share/xml/catalog.xml projects/pciehp/release/release.conf.sample - copied unchanged from r255608, head/release/release.conf.sample projects/pciehp/release/release.sh - copied unchanged from r255608, head/release/release.sh projects/pciehp/sbin/mount/mount.conf.8 - copied unchanged from r255608, head/sbin/mount/mount.conf.8 projects/pciehp/sbin/nvmecontrol/devlist.c - copied unchanged from r255608, head/sbin/nvmecontrol/devlist.c projects/pciehp/sbin/nvmecontrol/firmware.c - copied unchanged from r255608, head/sbin/nvmecontrol/firmware.c projects/pciehp/sbin/nvmecontrol/identify.c - copied unchanged from r255608, head/sbin/nvmecontrol/identify.c projects/pciehp/sbin/nvmecontrol/logpage.c - copied unchanged from r255608, head/sbin/nvmecontrol/logpage.c projects/pciehp/sbin/nvmecontrol/nvmecontrol.h - copied unchanged from r255608, head/sbin/nvmecontrol/nvmecontrol.h projects/pciehp/sbin/nvmecontrol/perftest.c - copied unchanged from r255608, head/sbin/nvmecontrol/perftest.c projects/pciehp/sbin/nvmecontrol/reset.c - copied unchanged from r255608, head/sbin/nvmecontrol/reset.c projects/pciehp/share/doc/legal/realtek/ - copied from r255608, head/share/doc/legal/realtek/ projects/pciehp/share/examples/kld/random_adaptor/ - copied from r255608, head/share/examples/kld/random_adaptor/ projects/pciehp/share/man/man4/aacraid.4 - copied unchanged from r255608, head/share/man/man4/aacraid.4 projects/pciehp/share/man/man4/acpi_rapidstart.4 - copied unchanged from r255608, head/share/man/man4/acpi_rapidstart.4 projects/pciehp/share/man/man4/cc_cdg.4 - copied unchanged from r255608, head/share/man/man4/cc_cdg.4 projects/pciehp/share/man/man4/gpio.4 - copied unchanged from r255608, head/share/man/man4/gpio.4 projects/pciehp/share/man/man4/hptnr.4 - copied unchanged from r255608, head/share/man/man4/hptnr.4 projects/pciehp/share/man/man4/procdesc.4 - copied unchanged from r255608, head/share/man/man4/procdesc.4 projects/pciehp/share/man/man4/qlxgbe.4 - copied unchanged from r255608, head/share/man/man4/qlxgbe.4 projects/pciehp/share/man/man4/qlxge.4 - copied unchanged from r255608, head/share/man/man4/qlxge.4 projects/pciehp/share/man/man4/rsu.4 - copied unchanged from r255608, head/share/man/man4/rsu.4 projects/pciehp/share/man/man4/rsufw.4 - copied unchanged from r255608, head/share/man/man4/rsufw.4 projects/pciehp/share/man/man4/urtwn.4 - copied unchanged from r255608, head/share/man/man4/urtwn.4 projects/pciehp/share/man/man4/vmx.4 - copied unchanged from r255608, head/share/man/man4/vmx.4 projects/pciehp/share/man/man9/SDT.9 - copied unchanged from r255608, head/share/man/man9/SDT.9 projects/pciehp/share/man/man9/vm_page_busy.9 - copied unchanged from r255608, head/share/man/man9/vm_page_busy.9 projects/pciehp/share/man/man9/vmem.9 - copied unchanged from r255608, head/share/man/man9/vmem.9 projects/pciehp/share/monetdef/ca_ES.UTF-8.src - copied unchanged from r255608, head/share/monetdef/ca_ES.UTF-8.src projects/pciehp/share/monetdef/de_AT.UTF-8.src - copied unchanged from r255608, head/share/monetdef/de_AT.UTF-8.src projects/pciehp/share/monetdef/de_DE.UTF-8.src - copied unchanged from r255608, head/share/monetdef/de_DE.UTF-8.src projects/pciehp/share/monetdef/el_GR.UTF-8.src - copied unchanged from r255608, head/share/monetdef/el_GR.UTF-8.src projects/pciehp/share/monetdef/es_ES.UTF-8.src - copied unchanged from r255608, head/share/monetdef/es_ES.UTF-8.src projects/pciehp/share/monetdef/fi_FI.UTF-8.src - copied unchanged from r255608, head/share/monetdef/fi_FI.UTF-8.src projects/pciehp/share/monetdef/fr_BE.UTF-8.src - copied unchanged from r255608, head/share/monetdef/fr_BE.UTF-8.src projects/pciehp/share/monetdef/fr_FR.UTF-8.src - copied unchanged from r255608, head/share/monetdef/fr_FR.UTF-8.src projects/pciehp/share/monetdef/it_IT.UTF-8.src - copied unchanged from r255608, head/share/monetdef/it_IT.UTF-8.src projects/pciehp/share/monetdef/nl_BE.UTF-8.src - copied unchanged from r255608, head/share/monetdef/nl_BE.UTF-8.src projects/pciehp/share/monetdef/nl_NL.UTF-8.src - copied unchanged from r255608, head/share/monetdef/nl_NL.UTF-8.src projects/pciehp/sys/amd64/include/fdt.h - copied unchanged from r255608, head/sys/amd64/include/fdt.h projects/pciehp/sys/amd64/include/ofw_machdep.h - copied unchanged from r255608, head/sys/amd64/include/ofw_machdep.h projects/pciehp/sys/arm/allwinner/a20/ - copied from r255608, head/sys/arm/allwinner/a20/ projects/pciehp/sys/arm/arm/generic_timer.c - copied unchanged from r255608, head/sys/arm/arm/generic_timer.c projects/pciehp/sys/arm/arm/stdatomic.c - copied unchanged from r255608, head/sys/arm/arm/stdatomic.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_gpio.h - copied unchanged from r255608, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.h projects/pciehp/sys/arm/broadcom/bcm2835/std.bcm2835 - copied unchanged from r255608, head/sys/arm/broadcom/bcm2835/std.bcm2835 projects/pciehp/sys/arm/broadcom/bcm2835/std.rpi - copied unchanged from r255608, head/sys/arm/broadcom/bcm2835/std.rpi projects/pciehp/sys/arm/conf/ARNDALE - copied unchanged from r255608, head/sys/arm/conf/ARNDALE projects/pciehp/sys/arm/conf/CUBIEBOARD2 - copied unchanged from r255608, head/sys/arm/conf/CUBIEBOARD2 projects/pciehp/sys/arm/conf/DIGI-CCWMX53 - copied unchanged from r255608, head/sys/arm/conf/DIGI-CCWMX53 projects/pciehp/sys/arm/freescale/imx/files.imx51 - copied unchanged from r255608, head/sys/arm/freescale/imx/files.imx51 projects/pciehp/sys/arm/freescale/imx/files.imx53 - copied unchanged from r255608, head/sys/arm/freescale/imx/files.imx53 projects/pciehp/sys/arm/freescale/imx/imx51_machdep.c - copied unchanged from r255608, head/sys/arm/freescale/imx/imx51_machdep.c projects/pciehp/sys/arm/freescale/imx/imx53_machdep.c - copied unchanged from r255608, head/sys/arm/freescale/imx/imx53_machdep.c projects/pciehp/sys/arm/freescale/imx/std.imx51 - copied unchanged from r255608, head/sys/arm/freescale/imx/std.imx51 projects/pciehp/sys/arm/freescale/imx/std.imx53 - copied unchanged from r255608, head/sys/arm/freescale/imx/std.imx53 projects/pciehp/sys/arm/samsung/ - copied from r255608, head/sys/arm/samsung/ projects/pciehp/sys/arm/ti/am335x/am335x_lcd.c - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_lcd.c projects/pciehp/sys/arm/ti/am335x/am335x_lcd.h - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_lcd.h projects/pciehp/sys/arm/ti/am335x/am335x_lcd_syscons.c - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_lcd_syscons.c projects/pciehp/sys/arm/ti/am335x/am335x_pwm.c - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_pwm.c projects/pciehp/sys/arm/ti/am335x/am335x_pwm.h - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_pwm.h projects/pciehp/sys/arm/ti/am335x/am335x_scm.h - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_scm.h projects/pciehp/sys/arm/ti/am335x/am335x_usbss.c - copied unchanged from r255608, head/sys/arm/ti/am335x/am335x_usbss.c projects/pciehp/sys/arm/ti/ti_sdhci.c - copied unchanged from r255608, head/sys/arm/ti/ti_sdhci.c projects/pciehp/sys/boot/fdt/dts/am335x-evm.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/am335x-evm.dts projects/pciehp/sys/boot/fdt/dts/bcm2835.dtsi - copied unchanged from r255608, head/sys/boot/fdt/dts/bcm2835.dtsi projects/pciehp/sys/boot/fdt/dts/beaglebone-black.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/beaglebone-black.dts projects/pciehp/sys/boot/fdt/dts/cubieboard2.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/cubieboard2.dts projects/pciehp/sys/boot/fdt/dts/digi-ccwmx53.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/digi-ccwmx53.dts projects/pciehp/sys/boot/fdt/dts/exynos5250-arndale.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/exynos5250-arndale.dts projects/pciehp/sys/boot/fdt/dts/exynos5250.dtsi - copied unchanged from r255608, head/sys/boot/fdt/dts/exynos5250.dtsi projects/pciehp/sys/boot/fdt/dts/imx53x.dtsi - copied unchanged from r255608, head/sys/boot/fdt/dts/imx53x.dtsi projects/pciehp/sys/boot/fdt/dts/rpi.dts - copied unchanged from r255608, head/sys/boot/fdt/dts/rpi.dts projects/pciehp/sys/boot/i386/gptboot/gptboot.8 - copied unchanged from r255608, head/sys/boot/i386/gptboot/gptboot.8 projects/pciehp/sys/cam/cam_compat.c - copied unchanged from r255608, head/sys/cam/cam_compat.c projects/pciehp/sys/cam/cam_compat.h - copied unchanged from r255608, head/sys/cam/cam_compat.h projects/pciehp/sys/cam/ctl/ctl_frontend_iscsi.c - copied unchanged from r255608, head/sys/cam/ctl/ctl_frontend_iscsi.c projects/pciehp/sys/cam/ctl/ctl_frontend_iscsi.h - copied unchanged from r255608, head/sys/cam/ctl/ctl_frontend_iscsi.h projects/pciehp/sys/cddl/compat/opensolaris/sys/debug_compat.h - copied unchanged from r255608, head/sys/cddl/compat/opensolaris/sys/debug_compat.h projects/pciehp/sys/compat/freebsd32/freebsd32_capability.c - copied unchanged from r255608, head/sys/compat/freebsd32/freebsd32_capability.c projects/pciehp/sys/compat/freebsd32/freebsd32_misc.h - copied unchanged from r255608, head/sys/compat/freebsd32/freebsd32_misc.h projects/pciehp/sys/contrib/dev/acpica/compiler/asloptions.c - copied unchanged from r255608, head/sys/contrib/dev/acpica/compiler/asloptions.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbprint.c - copied unchanged from r255608, head/sys/contrib/dev/acpica/components/tables/tbprint.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utbuffer.c - copied unchanged from r255608, head/sys/contrib/dev/acpica/components/utilities/utbuffer.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/uterror.c - copied unchanged from r255608, head/sys/contrib/dev/acpica/components/utilities/uterror.c projects/pciehp/sys/contrib/dev/drm2/ - copied from r255608, head/sys/contrib/dev/drm2/ projects/pciehp/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu - copied unchanged from r255608, head/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu projects/pciehp/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu - copied unchanged from r255608, head/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu projects/pciehp/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu - copied unchanged from r255608, head/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu projects/pciehp/sys/contrib/dev/rsu/ - copied from r255608, head/sys/contrib/dev/rsu/ projects/pciehp/sys/contrib/dev/urtwn/ - copied from r255608, head/sys/contrib/dev/urtwn/ projects/pciehp/sys/contrib/ipfilter/netinet/ip_dns_pxy.c - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ip_dns_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_dstlist.c - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ip_dstlist.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_dstlist.h - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ip_dstlist.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_nat6.c - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ip_nat6.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ipf_rb.h - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/ipf_rb.h projects/pciehp/sys/contrib/ipfilter/netinet/radix_ipf.c - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/radix_ipf.c projects/pciehp/sys/contrib/ipfilter/netinet/radix_ipf.h - copied unchanged from r255608, head/sys/contrib/ipfilter/netinet/radix_ipf.h projects/pciehp/sys/contrib/v4l/ - copied from r255608, head/sys/contrib/v4l/ projects/pciehp/sys/crypto/aesni/aesencdec.h - copied unchanged from r255608, head/sys/crypto/aesni/aesencdec.h projects/pciehp/sys/crypto/siphash/ - copied from r255608, head/sys/crypto/siphash/ projects/pciehp/sys/dev/aacraid/ - copied from r255608, head/sys/dev/aacraid/ projects/pciehp/sys/dev/acpi_support/acpi_rapidstart.c - copied unchanged from r255608, head/sys/dev/acpi_support/acpi_rapidstart.c projects/pciehp/sys/dev/ath/if_ath_btcoex.c - copied unchanged from r255608, head/sys/dev/ath/if_ath_btcoex.c projects/pciehp/sys/dev/ath/if_ath_btcoex.h - copied unchanged from r255608, head/sys/dev/ath/if_ath_btcoex.h projects/pciehp/sys/dev/ath/if_ath_lna_div.c - copied unchanged from r255608, head/sys/dev/ath/if_ath_lna_div.c projects/pciehp/sys/dev/ath/if_ath_lna_div.h - copied unchanged from r255608, head/sys/dev/ath/if_ath_lna_div.h projects/pciehp/sys/dev/cxgbe/firmware/t4fw-1.8.11.0.bin.uu - copied unchanged from r255608, head/sys/dev/cxgbe/firmware/t4fw-1.8.11.0.bin.uu projects/pciehp/sys/dev/cxgbe/firmware/t5fw-1.8.22.0.bin.uu - copied unchanged from r255608, head/sys/dev/cxgbe/firmware/t5fw-1.8.22.0.bin.uu projects/pciehp/sys/dev/cxgbe/firmware/t5fw_cfg.txt - copied unchanged from r255608, head/sys/dev/cxgbe/firmware/t5fw_cfg.txt projects/pciehp/sys/dev/cxgbe/firmware/t5fw_cfg_fpga.txt - copied unchanged from r255608, head/sys/dev/cxgbe/firmware/t5fw_cfg_fpga.txt projects/pciehp/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt - copied unchanged from r255608, head/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt projects/pciehp/sys/dev/cxgbe/t4_tracer.c - copied unchanged from r255608, head/sys/dev/cxgbe/t4_tracer.c projects/pciehp/sys/dev/drm2/ati_pcigart.c - copied unchanged from r255608, head/sys/dev/drm2/ati_pcigart.c projects/pciehp/sys/dev/drm2/drm_buffer.c - copied unchanged from r255608, head/sys/dev/drm2/drm_buffer.c projects/pciehp/sys/dev/drm2/drm_buffer.h - copied unchanged from r255608, head/sys/dev/drm2/drm_buffer.h projects/pciehp/sys/dev/drm2/drm_core.h - copied unchanged from r255608, head/sys/dev/drm2/drm_core.h projects/pciehp/sys/dev/drm2/drm_dp_helper.c - copied unchanged from r255608, head/sys/dev/drm2/drm_dp_helper.c projects/pciehp/sys/dev/drm2/drm_fixed.h - copied unchanged from r255608, head/sys/dev/drm2/drm_fixed.h projects/pciehp/sys/dev/drm2/drm_os_freebsd.h - copied unchanged from r255608, head/sys/dev/drm2/drm_os_freebsd.h projects/pciehp/sys/dev/drm2/radeon/ - copied from r255608, head/sys/dev/drm2/radeon/ projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_vlans.c - copied unchanged from r255608, head/sys/dev/etherswitch/arswitch/arswitch_vlans.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_vlans.h - copied unchanged from r255608, head/sys/dev/etherswitch/arswitch/arswitch_vlans.h projects/pciehp/sys/dev/etherswitch/ip17x/ - copied from r255608, head/sys/dev/etherswitch/ip17x/ projects/pciehp/sys/dev/fdt/fdt_x86.c - copied unchanged from r255608, head/sys/dev/fdt/fdt_x86.c projects/pciehp/sys/dev/hpt27xx/hpt27xx_os_bsd.c - copied unchanged from r255608, head/sys/dev/hpt27xx/hpt27xx_os_bsd.c projects/pciehp/sys/dev/hpt27xx/hpt27xx_osm_bsd.c - copied unchanged from r255608, head/sys/dev/hpt27xx/hpt27xx_osm_bsd.c projects/pciehp/sys/dev/hptnr/ - copied from r255608, head/sys/dev/hptnr/ projects/pciehp/sys/dev/hwpmc/hwpmc_mpc7xxx.c - copied unchanged from r255608, head/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/pciehp/sys/dev/hwpmc/hwpmc_powerpc.h - copied unchanged from r255608, head/sys/dev/hwpmc/hwpmc_powerpc.h - copied from r255608, head/sys/dev/hyperv/ projects/pciehp/sys/dev/iscsi/icl.c - copied unchanged from r255608, head/sys/dev/iscsi/icl.c projects/pciehp/sys/dev/iscsi/icl.h - copied unchanged from r255608, head/sys/dev/iscsi/icl.h projects/pciehp/sys/dev/iscsi/icl_proxy.c - copied unchanged from r255608, head/sys/dev/iscsi/icl_proxy.c projects/pciehp/sys/dev/iscsi/iscsi.c - copied unchanged from r255608, head/sys/dev/iscsi/iscsi.c projects/pciehp/sys/dev/iscsi/iscsi.h - copied unchanged from r255608, head/sys/dev/iscsi/iscsi.h projects/pciehp/sys/dev/iscsi/iscsi_ioctl.h - copied unchanged from r255608, head/sys/dev/iscsi/iscsi_ioctl.h projects/pciehp/sys/dev/iscsi/iscsi_proto.h - copied unchanged from r255608, head/sys/dev/iscsi/iscsi_proto.h projects/pciehp/sys/dev/iscsi_initiator/ - copied from r255608, head/sys/dev/iscsi_initiator/ projects/pciehp/sys/dev/iwn/if_iwn_devid.h - copied unchanged from r255608, head/sys/dev/iwn/if_iwn_devid.h projects/pciehp/sys/dev/ixgbe/ixgbe_dcb.c - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb.c projects/pciehp/sys/dev/ixgbe/ixgbe_dcb.h - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb.h projects/pciehp/sys/dev/ixgbe/ixgbe_dcb_82598.c - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb_82598.c projects/pciehp/sys/dev/ixgbe/ixgbe_dcb_82598.h - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb_82598.h projects/pciehp/sys/dev/ixgbe/ixgbe_dcb_82599.c - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb_82599.c projects/pciehp/sys/dev/ixgbe/ixgbe_dcb_82599.h - copied unchanged from r255608, head/sys/dev/ixgbe/ixgbe_dcb_82599.h projects/pciehp/sys/dev/mbox/ - copied from r255608, head/sys/dev/mbox/ projects/pciehp/sys/dev/nvme/nvme_util.c - copied unchanged from r255608, head/sys/dev/nvme/nvme_util.c projects/pciehp/sys/dev/qlxgbe/ - copied from r255608, head/sys/dev/qlxgbe/ projects/pciehp/sys/dev/qlxge/ - copied from r255608, head/sys/dev/qlxge/ projects/pciehp/sys/dev/random/pseudo_rng.c - copied unchanged from r255608, head/sys/dev/random/pseudo_rng.c projects/pciehp/sys/dev/random/random_adaptors.c - copied unchanged from r255608, head/sys/dev/random/random_adaptors.c projects/pciehp/sys/dev/random/random_adaptors.h - copied unchanged from r255608, head/sys/dev/random/random_adaptors.h projects/pciehp/sys/dev/random/random_harvestq.c - copied unchanged from r255608, head/sys/dev/random/random_harvestq.c projects/pciehp/sys/dev/random/random_harvestq.h - copied unchanged from r255608, head/sys/dev/random/random_harvestq.h projects/pciehp/sys/dev/uart/uart_cpu_fdt.c - copied unchanged from r255608, head/sys/dev/uart/uart_cpu_fdt.c projects/pciehp/sys/dev/uart/uart_dev_ns8250.h - copied unchanged from r255608, head/sys/dev/uart/uart_dev_ns8250.h projects/pciehp/sys/dev/uart/uart_dev_ti8250.c - copied unchanged from r255608, head/sys/dev/uart/uart_dev_ti8250.c projects/pciehp/sys/dev/usb/gadget/ - copied from r255608, head/sys/dev/usb/gadget/ projects/pciehp/sys/dev/usb/wlan/if_rsu.c - copied unchanged from r255608, head/sys/dev/usb/wlan/if_rsu.c projects/pciehp/sys/dev/usb/wlan/if_rsureg.h - copied unchanged from r255608, head/sys/dev/usb/wlan/if_rsureg.h projects/pciehp/sys/dev/usb/wlan/if_urtwn.c - copied unchanged from r255608, head/sys/dev/usb/wlan/if_urtwn.c projects/pciehp/sys/dev/usb/wlan/if_urtwnreg.h - copied unchanged from r255608, head/sys/dev/usb/wlan/if_urtwnreg.h projects/pciehp/sys/dev/vmware/ - copied from r255608, head/sys/dev/vmware/ projects/pciehp/sys/dev/wi/if_wi_macio.c - copied unchanged from r255608, head/sys/dev/wi/if_wi_macio.c projects/pciehp/sys/dev/xen/timer/ - copied from r255608, head/sys/dev/xen/timer/ projects/pciehp/sys/fs/ext2fs/ext2_extents.c - copied unchanged from r255608, head/sys/fs/ext2fs/ext2_extents.c projects/pciehp/sys/fs/ext2fs/ext2_extents.h - copied unchanged from r255608, head/sys/fs/ext2fs/ext2_extents.h projects/pciehp/sys/fs/ext2fs/ext2_hash.c - copied unchanged from r255608, head/sys/fs/ext2fs/ext2_hash.c projects/pciehp/sys/fs/ext2fs/ext2_htree.c - copied unchanged from r255608, head/sys/fs/ext2fs/ext2_htree.c projects/pciehp/sys/fs/ext2fs/htree.h - copied unchanged from r255608, head/sys/fs/ext2fs/htree.h projects/pciehp/sys/i386/include/fdt.h - copied unchanged from r255608, head/sys/i386/include/fdt.h projects/pciehp/sys/i386/include/ofw_machdep.h - copied unchanged from r255608, head/sys/i386/include/ofw_machdep.h projects/pciehp/sys/kern/subr_capability.c - copied unchanged from r255608, head/sys/kern/subr_capability.c projects/pciehp/sys/kern/subr_pctrie.c - copied unchanged from r255608, head/sys/kern/subr_pctrie.c projects/pciehp/sys/kern/subr_vmem.c - copied unchanged from r255608, head/sys/kern/subr_vmem.c projects/pciehp/sys/libkern/flsll.c - copied unchanged from r255608, head/sys/libkern/flsll.c projects/pciehp/sys/mips/atheros/ar934x_chip.c - copied unchanged from r255608, head/sys/mips/atheros/ar934x_chip.c projects/pciehp/sys/mips/atheros/ar934x_chip.h - copied unchanged from r255608, head/sys/mips/atheros/ar934x_chip.h projects/pciehp/sys/mips/atheros/ar934xreg.h - copied unchanged from r255608, head/sys/mips/atheros/ar934xreg.h projects/pciehp/sys/mips/conf/AR934X_BASE - copied unchanged from r255608, head/sys/mips/conf/AR934X_BASE projects/pciehp/sys/mips/conf/AR934X_BASE.hints - copied unchanged from r255608, head/sys/mips/conf/AR934X_BASE.hints projects/pciehp/sys/mips/conf/CARAMBOLA2 - copied unchanged from r255608, head/sys/mips/conf/CARAMBOLA2 projects/pciehp/sys/mips/conf/CARAMBOLA2.hints - copied unchanged from r255608, head/sys/mips/conf/CARAMBOLA2.hints projects/pciehp/sys/mips/conf/DB120 - copied unchanged from r255608, head/sys/mips/conf/DB120 projects/pciehp/sys/mips/conf/DB120.hints - copied unchanged from r255608, head/sys/mips/conf/DB120.hints projects/pciehp/sys/mips/conf/ENH200 - copied unchanged from r255608, head/sys/mips/conf/ENH200 projects/pciehp/sys/mips/conf/ENH200.hints - copied unchanged from r255608, head/sys/mips/conf/ENH200.hints projects/pciehp/sys/mips/conf/GXEMUL32 - copied unchanged from r255608, head/sys/mips/conf/GXEMUL32 projects/pciehp/sys/mips/conf/PICOSTATION_M2HP - copied unchanged from r255608, head/sys/mips/conf/PICOSTATION_M2HP projects/pciehp/sys/mips/conf/PICOSTATION_M2HP.hints - copied unchanged from r255608, head/sys/mips/conf/PICOSTATION_M2HP.hints projects/pciehp/sys/mips/malta/gt_pci_bus_space.c - copied unchanged from r255608, head/sys/mips/malta/gt_pci_bus_space.c projects/pciehp/sys/mips/malta/gt_pci_bus_space.h - copied unchanged from r255608, head/sys/mips/malta/gt_pci_bus_space.h projects/pciehp/sys/mips/mips/bcopy.S - copied unchanged from r255608, head/sys/mips/mips/bcopy.S projects/pciehp/sys/mips/mips/stdatomic.c - copied unchanged from r255608, head/sys/mips/mips/stdatomic.c projects/pciehp/sys/modules/aacraid/ - copied from r255608, head/sys/modules/aacraid/ projects/pciehp/sys/modules/acpi/acpi_rapidstart/ - copied from r255608, head/sys/modules/acpi/acpi_rapidstart/ projects/pciehp/sys/modules/cc/cc_cdg/ - copied from r255608, head/sys/modules/cc/cc_cdg/ projects/pciehp/sys/modules/cxgbe/t5_firmware/ - copied from r255608, head/sys/modules/cxgbe/t5_firmware/ projects/pciehp/sys/modules/drm2/radeonkms/ - copied from r255608, head/sys/modules/drm2/radeonkms/ projects/pciehp/sys/modules/drm2/radeonkmsfw/ - copied from r255608, head/sys/modules/drm2/radeonkmsfw/ projects/pciehp/sys/modules/hptnr/ - copied from r255608, head/sys/modules/hptnr/ - copied from r255608, head/sys/modules/hyperv/ projects/pciehp/sys/modules/iscsi_initiator/ - copied from r255608, head/sys/modules/iscsi_initiator/ projects/pciehp/sys/modules/iwnfw/iwn2000/ - copied from r255608, head/sys/modules/iwnfw/iwn2000/ projects/pciehp/sys/modules/iwnfw/iwn2030/ - copied from r255608, head/sys/modules/iwnfw/iwn2030/ projects/pciehp/sys/modules/qlxgbe/ - copied from r255608, head/sys/modules/qlxgbe/ projects/pciehp/sys/modules/qlxge/ - copied from r255608, head/sys/modules/qlxge/ projects/pciehp/sys/modules/usb/g_audio/ - copied from r255608, head/sys/modules/usb/g_audio/ projects/pciehp/sys/modules/usb/g_keyboard/ - copied from r255608, head/sys/modules/usb/g_keyboard/ projects/pciehp/sys/modules/usb/g_modem/ - copied from r255608, head/sys/modules/usb/g_modem/ projects/pciehp/sys/modules/usb/g_mouse/ - copied from r255608, head/sys/modules/usb/g_mouse/ projects/pciehp/sys/modules/usb/rsu/ - copied from r255608, head/sys/modules/usb/rsu/ projects/pciehp/sys/modules/usb/rsufw/ - copied from r255608, head/sys/modules/usb/rsufw/ projects/pciehp/sys/modules/usb/runfw/ - copied from r255608, head/sys/modules/usb/runfw/ projects/pciehp/sys/modules/usb/urtwn/ - copied from r255608, head/sys/modules/usb/urtwn/ projects/pciehp/sys/modules/usb/urtwnfw/ - copied from r255608, head/sys/modules/usb/urtwnfw/ projects/pciehp/sys/modules/vmware/ - copied from r255608, head/sys/modules/vmware/ projects/pciehp/sys/netinet/cc/cc_cdg.c - copied unchanged from r255608, head/sys/netinet/cc/cc_cdg.c projects/pciehp/sys/netinet/in_kdtrace.c - copied unchanged from r255608, head/sys/netinet/in_kdtrace.c projects/pciehp/sys/netinet/in_kdtrace.h - copied unchanged from r255608, head/sys/netinet/in_kdtrace.h projects/pciehp/sys/sys/_bitset.h - copied unchanged from r255608, head/sys/sys/_bitset.h projects/pciehp/sys/sys/_pctrie.h - copied unchanged from r255608, head/sys/sys/_pctrie.h projects/pciehp/sys/sys/_unrhdr.h - copied unchanged from r255608, head/sys/sys/_unrhdr.h projects/pciehp/sys/sys/bitset.h - copied unchanged from r255608, head/sys/sys/bitset.h projects/pciehp/sys/sys/caprights.h - copied unchanged from r255608, head/sys/sys/caprights.h projects/pciehp/sys/sys/pctrie.h - copied unchanged from r255608, head/sys/sys/pctrie.h projects/pciehp/sys/sys/stdatomic.h - copied unchanged from r255608, head/sys/sys/stdatomic.h projects/pciehp/sys/sys/vmem.h - copied unchanged from r255608, head/sys/sys/vmem.h - copied unchanged from r255608, head/sys/x86/include/acpica_machdep.h projects/pciehp/sys/x86/include/fdt.h - copied unchanged from r255608, head/sys/x86/include/fdt.h projects/pciehp/sys/x86/include/ofw_machdep.h - copied unchanged from r255608, head/sys/x86/include/ofw_machdep.h projects/pciehp/sys/x86/x86/fdt_machdep.c - copied unchanged from r255608, head/sys/x86/x86/fdt_machdep.c projects/pciehp/sys/x86/xen/ - copied from r255608, head/sys/x86/xen/ projects/pciehp/sys/xen/evtchn/evtchnvar.h - copied unchanged from r255608, head/sys/xen/evtchn/evtchnvar.h projects/pciehp/sys/xen/hvm.h - copied unchanged from r255608, head/sys/xen/hvm.h - copied from r255608, head/sys/xen/interface/arch-arm/ projects/pciehp/sys/xen/interface/arch-arm.h - copied unchanged from r255608, head/sys/xen/interface/arch-arm.h - copied from r255608, head/sys/xen/interface/arch-ia64/ projects/pciehp/sys/xen/interface/io/fsif.h - copied unchanged from r255608, head/sys/xen/interface/io/fsif.h projects/pciehp/sys/xen/interface/io/libxenvchan.h - copied unchanged from r255608, head/sys/xen/interface/io/libxenvchan.h projects/pciehp/sys/xen/interface/io/usbif.h - copied unchanged from r255608, head/sys/xen/interface/io/usbif.h projects/pciehp/sys/xen/interface/io/vscsiif.h - copied unchanged from r255608, head/sys/xen/interface/io/vscsiif.h projects/pciehp/sys/xen/interface/mem_event.h - copied unchanged from r255608, head/sys/xen/interface/mem_event.h projects/pciehp/sys/xen/interface/tmem.h - copied unchanged from r255608, head/sys/xen/interface/tmem.h - copied from r255608, head/sys/xen/interface/xsm/ projects/pciehp/sys/xen/xen-os.h - copied unchanged from r255608, head/sys/xen/xen-os.h projects/pciehp/tools/build/options/WITHOUT_ARM_EABI - copied unchanged from r255608, head/tools/build/options/WITHOUT_ARM_EABI projects/pciehp/tools/build/options/WITHOUT_BMAKE - copied unchanged from r255608, head/tools/build/options/WITHOUT_BMAKE projects/pciehp/tools/build/options/WITHOUT_CROSS_COMPILER - copied unchanged from r255608, head/tools/build/options/WITHOUT_CROSS_COMPILER projects/pciehp/tools/build/options/WITHOUT_FORMAT_EXTENSIONS - copied unchanged from r255608, head/tools/build/options/WITHOUT_FORMAT_EXTENSIONS projects/pciehp/tools/build/options/WITHOUT_GNUCXX - copied unchanged from r255608, head/tools/build/options/WITHOUT_GNUCXX projects/pciehp/tools/build/options/WITHOUT_ICONV - copied unchanged from r255608, head/tools/build/options/WITHOUT_ICONV projects/pciehp/tools/build/options/WITHOUT_SVNLITE - copied unchanged from r255608, head/tools/build/options/WITHOUT_SVNLITE projects/pciehp/tools/build/options/WITHOUT_UNBOUND - copied unchanged from r255608, head/tools/build/options/WITHOUT_UNBOUND projects/pciehp/tools/build/options/WITH_DEBUG_FILES - copied unchanged from r255608, head/tools/build/options/WITH_DEBUG_FILES projects/pciehp/tools/build/options/WITH_GCC - copied unchanged from r255608, head/tools/build/options/WITH_GCC projects/pciehp/tools/build/options/WITH_GNUCXX - copied unchanged from r255608, head/tools/build/options/WITH_GNUCXX projects/pciehp/tools/build/options/WITH_LIBICONV_COMPAT - copied unchanged from r255608, head/tools/build/options/WITH_LIBICONV_COMPAT projects/pciehp/tools/build/options/WITH_PKGTOOLS - copied unchanged from r255608, head/tools/build/options/WITH_PKGTOOLS projects/pciehp/tools/build/options/WITH_SVN - copied unchanged from r255608, head/tools/build/options/WITH_SVN projects/pciehp/tools/build/options/WITH_USB_GADGET_EXAMPLES - copied unchanged from r255608, head/tools/build/options/WITH_USB_GADGET_EXAMPLES projects/pciehp/tools/regression/bin/sh/builtins/alias4.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/alias4.0 projects/pciehp/tools/regression/bin/sh/builtins/break4.4 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/break4.4 projects/pciehp/tools/regression/bin/sh/builtins/break5.4 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/break5.4 projects/pciehp/tools/regression/bin/sh/builtins/jobid1.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/jobid1.0 projects/pciehp/tools/regression/bin/sh/builtins/jobid2.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/jobid2.0 projects/pciehp/tools/regression/bin/sh/builtins/local2.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/local2.0 projects/pciehp/tools/regression/bin/sh/builtins/local3.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/local3.0 projects/pciehp/tools/regression/bin/sh/builtins/local4.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/local4.0 projects/pciehp/tools/regression/bin/sh/builtins/return8.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/return8.0 projects/pciehp/tools/regression/bin/sh/builtins/type3.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/type3.0 projects/pciehp/tools/regression/bin/sh/builtins/wait10.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/wait10.0 projects/pciehp/tools/regression/bin/sh/builtins/wait8.0 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/wait8.0 projects/pciehp/tools/regression/bin/sh/builtins/wait9.127 - copied unchanged from r255608, head/tools/regression/bin/sh/builtins/wait9.127 projects/pciehp/tools/regression/bin/sh/execution/int-cmd1.0 - copied unchanged from r255608, head/tools/regression/bin/sh/execution/int-cmd1.0 projects/pciehp/tools/regression/bin/sh/expansion/arith13.0 - copied unchanged from r255608, head/tools/regression/bin/sh/expansion/arith13.0 projects/pciehp/tools/regression/bin/sh/parser/empty-cmd1.0 - copied unchanged from r255608, head/tools/regression/bin/sh/parser/empty-cmd1.0 projects/pciehp/tools/regression/bin/sh/parser/only-redir2.0 - copied unchanged from r255608, head/tools/regression/bin/sh/parser/only-redir2.0 projects/pciehp/tools/regression/bin/sh/parser/only-redir3.0 - copied unchanged from r255608, head/tools/regression/bin/sh/parser/only-redir3.0 projects/pciehp/tools/regression/bin/sh/parser/only-redir4.0 - copied unchanged from r255608, head/tools/regression/bin/sh/parser/only-redir4.0 projects/pciehp/tools/regression/file/fcntlflags/ - copied from r255608, head/tools/regression/file/fcntlflags/ projects/pciehp/tools/regression/include/stdatomic/ - copied from r255608, head/tools/regression/include/stdatomic/ projects/pciehp/tools/regression/iscsi/ - copied from r255608, head/tools/regression/iscsi/ projects/pciehp/tools/regression/lib/libc/gen/test-popen.c - copied unchanged from r255608, head/tools/regression/lib/libc/gen/test-popen.c projects/pciehp/tools/regression/lib/libc/locale/test-c16rtomb.c - copied unchanged from r255608, head/tools/regression/lib/libc/locale/test-c16rtomb.c projects/pciehp/tools/regression/lib/libc/locale/test-mbrtoc16.c - copied unchanged from r255608, head/tools/regression/lib/libc/locale/test-mbrtoc16.c projects/pciehp/tools/regression/lib/libc/stdio/test-fopen.c - copied unchanged from r255608, head/tools/regression/lib/libc/stdio/test-fopen.c projects/pciehp/tools/regression/lib/libc/stdio/test-fopen.t - copied unchanged from r255608, head/tools/regression/lib/libc/stdio/test-fopen.t projects/pciehp/tools/regression/lib/libc/stdio/test-mkostemp.c - copied unchanged from r255608, head/tools/regression/lib/libc/stdio/test-mkostemp.c projects/pciehp/tools/regression/lib/libc/stdio/test-mkostemp.t - copied unchanged from r255608, head/tools/regression/lib/libc/stdio/test-mkostemp.t projects/pciehp/tools/regression/lib/msun/test-invctrig.c - copied unchanged from r255608, head/tools/regression/lib/msun/test-invctrig.c projects/pciehp/tools/regression/lib/msun/test-utils.h - copied unchanged from r255608, head/tools/regression/lib/msun/test-utils.h projects/pciehp/tools/tools/ath/ath_ee_9300_print/ - copied from r255608, head/tools/tools/ath/ath_ee_9300_print/ projects/pciehp/tools/tools/drm/ - copied from r255608, head/tools/tools/drm/ projects/pciehp/tools/tools/makeroot/ - copied from r255608, head/tools/tools/makeroot/ projects/pciehp/tools/tools/netmap/vale-ctl.c - copied unchanged from r255608, head/tools/tools/netmap/vale-ctl.c projects/pciehp/tools/tools/usbtest/ - copied from r255608, head/tools/tools/usbtest/ projects/pciehp/usr.bin/calendar/calendars/ru_RU.UTF-8/ - copied from r255608, head/usr.bin/calendar/calendars/ru_RU.UTF-8/ projects/pciehp/usr.bin/iscsictl/ - copied from r255608, head/usr.bin/iscsictl/ projects/pciehp/usr.bin/lex/initparse.c - copied unchanged from r255608, head/usr.bin/lex/initparse.c projects/pciehp/usr.bin/lex/initparse.h - copied unchanged from r255608, head/usr.bin/lex/initparse.h projects/pciehp/usr.bin/lex/initskel.c - copied unchanged from r255608, head/usr.bin/lex/initskel.c projects/pciehp/usr.bin/lex/version.awk - copied unchanged from r255608, head/usr.bin/lex/version.awk projects/pciehp/usr.bin/svn/ - copied from r255608, head/usr.bin/svn/ projects/pciehp/usr.bin/vi/catalog/ - copied from r255608, head/usr.bin/vi/catalog/ projects/pciehp/usr.sbin/bhyve/rtc.h - copied unchanged from r255608, head/usr.sbin/bhyve/rtc.h projects/pciehp/usr.sbin/bhyve/virtio.c - copied unchanged from r255608, head/usr.sbin/bhyve/virtio.c projects/pciehp/usr.sbin/bsdconfig/examples/browse_packages.sh - copied unchanged from r255608, head/usr.sbin/bsdconfig/examples/browse_packages.sh projects/pciehp/usr.sbin/bsdconfig/networking/share/services.subr - copied unchanged from r255608, head/usr.sbin/bsdconfig/networking/share/services.subr projects/pciehp/usr.sbin/bsdconfig/packages/ - copied from r255608, head/usr.sbin/bsdconfig/packages/ projects/pciehp/usr.sbin/bsdconfig/share/media/http.subr - copied unchanged from r255608, head/usr.sbin/bsdconfig/share/media/http.subr projects/pciehp/usr.sbin/bsdconfig/share/packages/ - copied from r255608, head/usr.sbin/bsdconfig/share/packages/ projects/pciehp/usr.sbin/bsnmpd/modules/snmp_hast/ - copied from r255608, head/usr.sbin/bsnmpd/modules/snmp_hast/ projects/pciehp/usr.sbin/ctld/ - copied from r255608, head/usr.sbin/ctld/ projects/pciehp/usr.sbin/dnssec-verify/ - copied from r255608, head/usr.sbin/dnssec-verify/ projects/pciehp/usr.sbin/iscsid/ - copied from r255608, head/usr.sbin/iscsid/ projects/pciehp/usr.sbin/mfiutil/mfi_foreign.c - copied unchanged from r255608, head/usr.sbin/mfiutil/mfi_foreign.c projects/pciehp/usr.sbin/ppp/ppp.8 - copied unchanged from r255608, head/usr.sbin/ppp/ppp.8 projects/pciehp/usr.sbin/unbound/ - copied from r255608, head/usr.sbin/unbound/ projects/pciehp/usr.sbin/wpa/wpa_priv/ - copied from r255608, head/usr.sbin/wpa/wpa_priv/ Directory Properties: projects/pciehp/contrib/apr/ (props changed) projects/pciehp/contrib/apr-util/ (props changed) projects/pciehp/contrib/ipfilter/ml_ipl.c (props changed) projects/pciehp/contrib/ipfilter/mlfk_ipl.c (props changed) projects/pciehp/contrib/ipfilter/mli_ipl.c (props changed) projects/pciehp/contrib/ipfilter/mln_ipl.c (props changed) projects/pciehp/contrib/ipfilter/mls_ipl.c (props changed) projects/pciehp/contrib/libexecinfo/ (props changed) projects/pciehp/contrib/serf/ (props changed) projects/pciehp/contrib/subversion/ (props changed) projects/pciehp/sys/dev/hyperv/ (props changed) projects/pciehp/sys/modules/hyperv/ (props changed) projects/pciehp/sys/x86/include/acpica_machdep.h (props changed) projects/pciehp/sys/xen/interface/arch-arm/ (props changed) projects/pciehp/sys/xen/interface/arch-ia64/ (props changed) projects/pciehp/sys/xen/interface/xsm/ (props changed) Replaced: projects/pciehp/contrib/bind9/libtool.m4/ - copied from r255608, head/contrib/bind9/libtool.m4/ projects/pciehp/contrib/openpam/lib/Makefile.am - copied unchanged from r255608, head/contrib/openpam/lib/Makefile.am projects/pciehp/contrib/openpam/lib/Makefile.in - copied unchanged from r255608, head/contrib/openpam/lib/Makefile.in Deleted: projects/pciehp/bin/sh/init.h projects/pciehp/bin/sh/mkinit.c projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.complex.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/err.D_PRINT_DYN.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/man.TestTransStability.d projects/pciehp/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c projects/pciehp/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h projects/pciehp/contrib/cvs/ projects/pciehp/contrib/dialog/samples/copifuncs/admin.funcs projects/pciehp/contrib/dialog/samples/copifuncs/common.funcs projects/pciehp/contrib/dialog/samples/copifuncs/copi.funcs projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifman1 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifman2 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifmcfg2 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifmcfg4 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifmcfg5 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifpoll1 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifpoll2 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifreq1 projects/pciehp/contrib/dialog/samples/copifuncs/copi.ifreq2 projects/pciehp/contrib/dialog/samples/copifuncs/copi.rcnews projects/pciehp/contrib/dialog/samples/copifuncs/copi.sendifm1 projects/pciehp/contrib/dialog/samples/copifuncs/copi.sendifm2 projects/pciehp/contrib/dialog/samples/copifuncs/copi.trnrc projects/pciehp/contrib/dialog/samples/copifuncs/copi.wheel projects/pciehp/contrib/dialog/samples/copifuncs/ifpatch projects/pciehp/contrib/dialog/samples/copismall projects/pciehp/contrib/dialog/samples/dselect projects/pciehp/contrib/dialog/samples/install/FDISK.TEST projects/pciehp/contrib/dialog/samples/install/makefile.in projects/pciehp/contrib/dialog/samples/install/setup.c projects/pciehp/contrib/dialog/samples/install/setup.help projects/pciehp/contrib/dialog/samples/valgrind.log projects/pciehp/contrib/ipfilter/.cvsignore projects/pciehp/contrib/ipfilter/BSD/.cvsignore projects/pciehp/contrib/ipfilter/iplang/.cvsignore projects/pciehp/contrib/ipfilter/ipsend/.cvsignore projects/pciehp/contrib/ipfilter/ipsend/README projects/pciehp/contrib/ipfilter/ipsend/hpux.c projects/pciehp/contrib/ipfilter/ipsend/in_var.h projects/pciehp/contrib/ipfilter/ipsend/ip_var.h projects/pciehp/contrib/ipfilter/ipsend/tcpip.h projects/pciehp/contrib/ipfilter/lib/ipft_ef.c projects/pciehp/contrib/ipfilter/lib/ipft_sn.c projects/pciehp/contrib/ipfilter/lib/ipft_td.c projects/pciehp/contrib/ipfilter/net/.cvsignore projects/pciehp/contrib/ipfilter/radix.c projects/pciehp/contrib/ipfilter/rules/.cvsignore projects/pciehp/contrib/ipfilter/samples/.cvsignore projects/pciehp/contrib/ipfilter/test/.cvsignore projects/pciehp/contrib/ipfilter/test/hextest projects/pciehp/contrib/ipfilter/test/input/ipf6-1 projects/pciehp/contrib/ipfilter/test/mhtest projects/pciehp/contrib/less/Makefile.aut projects/pciehp/contrib/less/Makefile.dsb projects/pciehp/contrib/less/Makefile.dsg projects/pciehp/contrib/less/Makefile.dsu projects/pciehp/contrib/less/Makefile.in projects/pciehp/contrib/less/Makefile.o2e projects/pciehp/contrib/less/Makefile.o9c projects/pciehp/contrib/less/Makefile.o9u projects/pciehp/contrib/less/Makefile.wnb projects/pciehp/contrib/less/Makefile.wnm projects/pciehp/contrib/less/configure projects/pciehp/contrib/less/configure.ac projects/pciehp/contrib/less/defines.ds projects/pciehp/contrib/less/defines.h.in projects/pciehp/contrib/less/defines.o2 projects/pciehp/contrib/less/defines.o9 projects/pciehp/contrib/less/defines.wn projects/pciehp/contrib/less/install.sh projects/pciehp/contrib/less/less.man projects/pciehp/contrib/less/lessecho.man projects/pciehp/contrib/less/lesskey.man projects/pciehp/contrib/less/mkfuncs.awk projects/pciehp/contrib/less/mkinstalldirs projects/pciehp/contrib/llvm/include/llvm/ADT/InMemoryStruct.h projects/pciehp/contrib/llvm/include/llvm/Object/MachOObject.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFFormValue.h projects/pciehp/contrib/llvm/lib/Linker/Linker.cpp projects/pciehp/contrib/llvm/lib/Object/MachOObject.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDILPeepholeOptimizer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/MacroArgs.h projects/pciehp/contrib/nvi/FAQ projects/pciehp/contrib/nvi/LAYOUT projects/pciehp/contrib/nvi/build/ projects/pciehp/contrib/nvi/catalog/dutch projects/pciehp/contrib/nvi/catalog/dutch.check projects/pciehp/contrib/nvi/catalog/english projects/pciehp/contrib/nvi/catalog/english.base projects/pciehp/contrib/nvi/catalog/english.check projects/pciehp/contrib/nvi/catalog/french projects/pciehp/contrib/nvi/catalog/french.check projects/pciehp/contrib/nvi/catalog/german projects/pciehp/contrib/nvi/catalog/german.check projects/pciehp/contrib/nvi/catalog/polish projects/pciehp/contrib/nvi/catalog/polish.check projects/pciehp/contrib/nvi/catalog/ru_RU.KOI8-R projects/pciehp/contrib/nvi/catalog/ru_RU.KOI8-R.check projects/pciehp/contrib/nvi/catalog/spanish projects/pciehp/contrib/nvi/catalog/spanish.check projects/pciehp/contrib/nvi/catalog/swedish projects/pciehp/contrib/nvi/catalog/swedish.check projects/pciehp/contrib/nvi/catalog/uk_UA.KOI8-U projects/pciehp/contrib/nvi/cl/cl_bsd.c projects/pciehp/contrib/nvi/clib/ projects/pciehp/contrib/nvi/common/api.c projects/pciehp/contrib/nvi/ex/ex_perl.c projects/pciehp/contrib/nvi/ex/ex_tcl.c projects/pciehp/contrib/nvi/include/ projects/pciehp/contrib/nvi/ip/ projects/pciehp/contrib/nvi/ip_cl/ projects/pciehp/contrib/nvi/perl_api/ projects/pciehp/contrib/nvi/perl_scripts/ projects/pciehp/contrib/nvi/tcl_api/ projects/pciehp/contrib/nvi/tcl_scripts/ projects/pciehp/contrib/nvi/tk/ projects/pciehp/contrib/openbsm/m4/lt~obsolete.m4 projects/pciehp/contrib/openpam/FREEBSD-vendor projects/pciehp/contrib/openpam/lib/openpam_borrow_cred.c projects/pciehp/contrib/openpam/lib/openpam_check_owner_perms.c projects/pciehp/contrib/openpam/lib/openpam_configure.c projects/pciehp/contrib/openpam/lib/openpam_constants.c projects/pciehp/contrib/openpam/lib/openpam_constants.h projects/pciehp/contrib/openpam/lib/openpam_ctype.h projects/pciehp/contrib/openpam/lib/openpam_debug.h projects/pciehp/contrib/openpam/lib/openpam_dispatch.c projects/pciehp/contrib/openpam/lib/openpam_dynamic.c projects/pciehp/contrib/openpam/lib/openpam_features.c projects/pciehp/contrib/openpam/lib/openpam_features.h projects/pciehp/contrib/openpam/lib/openpam_findenv.c projects/pciehp/contrib/openpam/lib/openpam_free_data.c projects/pciehp/contrib/openpam/lib/openpam_free_envlist.c projects/pciehp/contrib/openpam/lib/openpam_get_feature.c projects/pciehp/contrib/openpam/lib/openpam_get_option.c projects/pciehp/contrib/openpam/lib/openpam_impl.h projects/pciehp/contrib/openpam/lib/openpam_load.c projects/pciehp/contrib/openpam/lib/openpam_log.c projects/pciehp/contrib/openpam/lib/openpam_nullconv.c projects/pciehp/contrib/openpam/lib/openpam_readline.c projects/pciehp/contrib/openpam/lib/openpam_readlinev.c projects/pciehp/contrib/openpam/lib/openpam_readword.c projects/pciehp/contrib/openpam/lib/openpam_restore_cred.c projects/pciehp/contrib/openpam/lib/openpam_set_feature.c projects/pciehp/contrib/openpam/lib/openpam_set_option.c projects/pciehp/contrib/openpam/lib/openpam_static.c projects/pciehp/contrib/openpam/lib/openpam_straddch.c projects/pciehp/contrib/openpam/lib/openpam_strlcat.h projects/pciehp/contrib/openpam/lib/openpam_strlcmp.h projects/pciehp/contrib/openpam/lib/openpam_strlcpy.h projects/pciehp/contrib/openpam/lib/openpam_subst.c projects/pciehp/contrib/openpam/lib/openpam_ttyconv.c projects/pciehp/contrib/openpam/lib/pam_acct_mgmt.c projects/pciehp/contrib/openpam/lib/pam_authenticate.c projects/pciehp/contrib/openpam/lib/pam_authenticate_secondary.c projects/pciehp/contrib/openpam/lib/pam_chauthtok.c projects/pciehp/contrib/openpam/lib/pam_close_session.c projects/pciehp/contrib/openpam/lib/pam_end.c projects/pciehp/contrib/openpam/lib/pam_error.c projects/pciehp/contrib/openpam/lib/pam_get_authtok.c projects/pciehp/contrib/openpam/lib/pam_get_data.c projects/pciehp/contrib/openpam/lib/pam_get_item.c projects/pciehp/contrib/openpam/lib/pam_get_mapped_authtok.c projects/pciehp/contrib/openpam/lib/pam_get_mapped_username.c projects/pciehp/contrib/openpam/lib/pam_get_user.c projects/pciehp/contrib/openpam/lib/pam_getenv.c projects/pciehp/contrib/openpam/lib/pam_getenvlist.c projects/pciehp/contrib/openpam/lib/pam_info.c projects/pciehp/contrib/openpam/lib/pam_open_session.c projects/pciehp/contrib/openpam/lib/pam_prompt.c projects/pciehp/contrib/openpam/lib/pam_putenv.c projects/pciehp/contrib/openpam/lib/pam_set_data.c projects/pciehp/contrib/openpam/lib/pam_set_item.c projects/pciehp/contrib/openpam/lib/pam_set_mapped_authtok.c projects/pciehp/contrib/openpam/lib/pam_set_mapped_username.c projects/pciehp/contrib/openpam/lib/pam_setcred.c projects/pciehp/contrib/openpam/lib/pam_setenv.c projects/pciehp/contrib/openpam/lib/pam_sm_acct_mgmt.c projects/pciehp/contrib/openpam/lib/pam_sm_authenticate.c projects/pciehp/contrib/openpam/lib/pam_sm_authenticate_secondary.c projects/pciehp/contrib/openpam/lib/pam_sm_chauthtok.c projects/pciehp/contrib/openpam/lib/pam_sm_close_session.c projects/pciehp/contrib/openpam/lib/pam_sm_get_mapped_authtok.c projects/pciehp/contrib/openpam/lib/pam_sm_get_mapped_username.c projects/pciehp/contrib/openpam/lib/pam_sm_open_session.c projects/pciehp/contrib/openpam/lib/pam_sm_set_mapped_authtok.c projects/pciehp/contrib/openpam/lib/pam_sm_set_mapped_username.c projects/pciehp/contrib/openpam/lib/pam_sm_setcred.c projects/pciehp/contrib/openpam/lib/pam_start.c projects/pciehp/contrib/openpam/lib/pam_strerror.c projects/pciehp/contrib/openpam/lib/pam_verror.c projects/pciehp/contrib/openpam/lib/pam_vinfo.c projects/pciehp/contrib/openpam/lib/pam_vprompt.c projects/pciehp/contrib/smbfs/mount_smbfs/Makefile projects/pciehp/contrib/wpa/hostapd/.gitignore projects/pciehp/contrib/wpa/hostapd/Makefile projects/pciehp/contrib/wpa/src/Makefile projects/pciehp/contrib/wpa/src/ap/Makefile projects/pciehp/contrib/wpa/src/common/Makefile projects/pciehp/contrib/wpa/src/crypto/.gitignore projects/pciehp/contrib/wpa/src/crypto/Makefile projects/pciehp/contrib/wpa/src/crypto/md5-non-fips.c projects/pciehp/contrib/wpa/src/drivers/.gitignore projects/pciehp/contrib/wpa/src/drivers/Makefile projects/pciehp/contrib/wpa/src/drivers/driver_ndiswrapper.c projects/pciehp/contrib/wpa/src/drivers/drivers.mak projects/pciehp/contrib/wpa/src/eap_common/Makefile projects/pciehp/contrib/wpa/src/eap_peer/Makefile projects/pciehp/contrib/wpa/src/eap_server/Makefile projects/pciehp/contrib/wpa/src/eapol_auth/Makefile projects/pciehp/contrib/wpa/src/eapol_supp/Makefile projects/pciehp/contrib/wpa/src/l2_packet/Makefile projects/pciehp/contrib/wpa/src/lib.rules projects/pciehp/contrib/wpa/src/radius/.gitignore projects/pciehp/contrib/wpa/src/radius/Makefile projects/pciehp/contrib/wpa/src/rsn_supp/Makefile projects/pciehp/contrib/wpa/src/tls/.gitignore projects/pciehp/contrib/wpa/src/tls/Makefile projects/pciehp/contrib/wpa/src/utils/.gitignore projects/pciehp/contrib/wpa/src/utils/Makefile projects/pciehp/contrib/wpa/src/wps/Makefile projects/pciehp/contrib/wpa/src/wps/wps_nfc.c projects/pciehp/contrib/wpa/src/wps/wps_nfc_pn531.c projects/pciehp/contrib/wpa/src/wps/wps_ufd.c projects/pciehp/contrib/wpa/wpa_supplicant/.gitignore projects/pciehp/contrib/wpa/wpa_supplicant/Makefile projects/pciehp/contrib/wpa/wpa_supplicant/dbus/.gitignore projects/pciehp/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service projects/pciehp/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service projects/pciehp/contrib/wpa/wpa_supplicant/doc/ projects/pciehp/contrib/wpa/wpa_supplicant/mlme.c projects/pciehp/contrib/wpa/wpa_supplicant/mlme.h projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant.nsi projects/pciehp/etc/rc.d/encswap projects/pciehp/etc/rc.d/swap1 projects/pciehp/gnu/lib/libregex/FREEBSD-upgrade projects/pciehp/gnu/lib/libregex/posix/ projects/pciehp/gnu/lib/libregex/regcomp.c projects/pciehp/gnu/lib/libregex/regex.c projects/pciehp/gnu/lib/libregex/regex_internal.c projects/pciehp/gnu/lib/libregex/regex_internal.h projects/pciehp/gnu/lib/libregex/regexec.c projects/pciehp/gnu/usr.bin/cvs/ projects/pciehp/gnu/usr.bin/gdb/libgdb/frame-unwind.diff projects/pciehp/gnu/usr.bin/patch/ projects/pciehp/include/stdatomic.h projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_add_4.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_add_8.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_and_4.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_and_8.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_op_n.h projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_or_4.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_or_8.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_sub_4.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_sub_8.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_xor_4.c projects/pciehp/lib/libcompiler_rt/__sync_fetch_and_xor_8.c projects/pciehp/lib/libcompiler_rt/__sync_lock_test_and_set_4.c projects/pciehp/lib/libcompiler_rt/__sync_lock_test_and_set_8.c projects/pciehp/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c projects/pciehp/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c projects/pciehp/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h projects/pciehp/lib/libpam/libpam/pam_std_option.c projects/pciehp/lib/libstand/arm/ projects/pciehp/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.xml projects/pciehp/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.xml projects/pciehp/share/doc/psd/28.cvs/ projects/pciehp/share/man/man9/vfs_mount.9 projects/pciehp/share/man/man9/vm_page_io.9 projects/pciehp/share/man/man9/vm_page_sleep_if_busy.9 projects/pciehp/share/man/man9/vm_page_wakeup.9 projects/pciehp/sys/amd64/compile/.cvsignore projects/pciehp/sys/amd64/conf/.cvsignore projects/pciehp/sys/arm/compile/.cvsignore projects/pciehp/sys/arm/conf/.cvsignore projects/pciehp/sys/arm/freescale/imx/imx.files projects/pciehp/sys/arm/freescale/imx/imx_machdep.c projects/pciehp/sys/arm/freescale/imx/std.imx projects/pciehp/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/pciehp/sys/compat/linux/linux_videodev.h projects/pciehp/sys/compat/linux/linux_videodev2.h projects/pciehp/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu projects/pciehp/sys/contrib/ipfilter/netinet/QNX_OCL.txt projects/pciehp/sys/crypto/aesni/aesencdec_amd64.S projects/pciehp/sys/crypto/aesni/aesencdec_i386.S projects/pciehp/sys/dev/cxgbe/firmware/t4fw-1.8.4.0.bin.uu projects/pciehp/sys/dev/hpt27xx/os_bsd.c projects/pciehp/sys/dev/hpt27xx/osm_bsd.c projects/pciehp/sys/dev/iscsi/initiator/ projects/pciehp/sys/dev/random/probe.c projects/pciehp/sys/dev/xen/xenpci/evtchn.c projects/pciehp/sys/i386/compile/.cvsignore projects/pciehp/sys/i386/conf/.cvsignore projects/pciehp/sys/i386/include/xen/xen_clock_util.h projects/pciehp/sys/i386/xen/xen_clock_util.c projects/pciehp/sys/i386/xen/xen_rtc.c projects/pciehp/sys/ia64/compile/.cvsignore projects/pciehp/sys/ia64/conf/.cvsignore projects/pciehp/sys/mips/compile/.cvsignore projects/pciehp/sys/mips/conf/.cvsignore projects/pciehp/sys/modules/iscsi/initiator/ projects/pciehp/sys/modules/runfw/ projects/pciehp/sys/pc98/compile/.cvsignore projects/pciehp/sys/pc98/conf/.cvsignore projects/pciehp/sys/powerpc/compile/.cvsignore projects/pciehp/sys/powerpc/conf/.cvsignore projects/pciehp/sys/sparc64/compile/.cvsignore projects/pciehp/sys/sparc64/conf/.cvsignore projects/pciehp/sys/xen/evtchn/evtchn.c projects/pciehp/sys/xen/interface/hvm/vmx_assist.h projects/pciehp/tools/build/options/WITHOUT_PKGTOOLS projects/pciehp/tools/build/options/WITH_ARM_EABI projects/pciehp/tools/build/options/WITH_BMAKE projects/pciehp/tools/build/options/WITH_BSDCONFIG projects/pciehp/tools/build/options/WITH_BSD_PATCH projects/pciehp/tools/build/options/WITH_ICONV projects/pciehp/tools/regression/geom_uzip/.cvsignore projects/pciehp/usr.bin/lex/COPYING projects/pciehp/usr.bin/lex/FlexLexer.h projects/pciehp/usr.bin/lex/NEWS projects/pciehp/usr.bin/lex/README projects/pciehp/usr.bin/lex/ccl.c projects/pciehp/usr.bin/lex/dfa.c projects/pciehp/usr.bin/lex/ecs.c projects/pciehp/usr.bin/lex/flex.skl projects/pciehp/usr.bin/lex/flexdef.h projects/pciehp/usr.bin/lex/gen.c projects/pciehp/usr.bin/lex/lib/libmain.c projects/pciehp/usr.bin/lex/lib/libyywrap.c projects/pciehp/usr.bin/lex/main.c projects/pciehp/usr.bin/lex/misc.c projects/pciehp/usr.bin/lex/mkskel.sh projects/pciehp/usr.bin/lex/nfa.c projects/pciehp/usr.bin/lex/parse.y projects/pciehp/usr.bin/lex/scan.l projects/pciehp/usr.bin/lex/sym.c projects/pciehp/usr.bin/lex/tblcmp.c projects/pciehp/usr.bin/lex/version.h projects/pciehp/usr.bin/lex/yylex.c projects/pciehp/usr.bin/systat/mbufs.c projects/pciehp/usr.bin/vi/port.h projects/pciehp/usr.sbin/makefs/compat/ projects/pciehp/usr.sbin/makefs/getid.c projects/pciehp/usr.sbin/ppp/ppp.8.m4 projects/pciehp/usr.sbin/wpa/hostapd/driver_freebsd.c projects/pciehp/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c Modified: projects/pciehp/MAINTAINERS (contents, props changed) projects/pciehp/Makefile projects/pciehp/Makefile.inc1 projects/pciehp/ObsoleteFiles.inc projects/pciehp/UPDATING projects/pciehp/bin/chflags/chflags.1 projects/pciehp/bin/dd/args.c projects/pciehp/bin/dd/conv_tab.c projects/pciehp/bin/dd/dd.c projects/pciehp/bin/dd/extern.h projects/pciehp/bin/dd/misc.c projects/pciehp/bin/dd/position.c projects/pciehp/bin/df/df.1 projects/pciehp/bin/ed/ed.1 projects/pciehp/bin/ed/re.c projects/pciehp/bin/kenv/kenv.c projects/pciehp/bin/ln/ln.c projects/pciehp/bin/ls/ls.1 projects/pciehp/bin/pkill/pkill.1 projects/pciehp/bin/pkill/pkill.c projects/pciehp/bin/ps/keyword.c projects/pciehp/bin/ps/ps.1 projects/pciehp/bin/sh/Makefile projects/pciehp/bin/sh/TOUR projects/pciehp/bin/sh/alias.c projects/pciehp/bin/sh/arith_yylex.c projects/pciehp/bin/sh/eval.c projects/pciehp/bin/sh/eval.h projects/pciehp/bin/sh/exec.c projects/pciehp/bin/sh/input.c projects/pciehp/bin/sh/input.h projects/pciehp/bin/sh/jobs.c projects/pciehp/bin/sh/jobs.h projects/pciehp/bin/sh/main.c projects/pciehp/bin/sh/memalloc.c projects/pciehp/bin/sh/memalloc.h projects/pciehp/bin/sh/output.c projects/pciehp/bin/sh/parser.c projects/pciehp/bin/sh/parser.h projects/pciehp/bin/sh/redir.c projects/pciehp/bin/sh/sh.1 projects/pciehp/bin/sh/shell.h projects/pciehp/bin/sh/trap.c projects/pciehp/bin/sh/trap.h projects/pciehp/bin/sh/var.c projects/pciehp/bin/sleep/sleep.c projects/pciehp/bin/test/test.1 projects/pciehp/bin/test/test.c projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dtest.pl projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.fill1.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionentry.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionreturnvalue.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.ioctlargs.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offset.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offsetzero.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.return0.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.tailcall.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.strjoin.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv4remote.pl projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv6remote.pl projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.BadAlign.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress2.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress3.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress4.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/err.D_PRINT_VOID.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/err.D_PROTO_LEN.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.ints.d.out projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/tst.copyin.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.c projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/err.BufSizeVariations1.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/err.BufSizeVariations2.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_PROTO_LEN.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_VOID.bad.d projects/pciehp/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/pciehp/cddl/contrib/opensolaris/cmd/zhack/zhack.c projects/pciehp/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/pciehp/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/pciehp/cddl/contrib/opensolaris/common/ctf/ctf_create.c projects/pciehp/cddl/contrib/opensolaris/common/ctf/ctf_error.c projects/pciehp/cddl/contrib/opensolaris/common/ctf/ctf_impl.h projects/pciehp/cddl/contrib/opensolaris/common/ctf/ctf_open.c projects/pciehp/cddl/contrib/opensolaris/lib/libctf/common/ctf_lib.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cg.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dis.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_error.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_errtags.h projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_options.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_regset.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_regset.h projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c projects/pciehp/cddl/contrib/opensolaris/lib/libdtrace/i386/dt_isadep.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_status.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/pciehp/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/pciehp/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/pciehp/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/pciehp/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c projects/pciehp/cddl/contrib/opensolaris/tools/ctf/cvt/ctftools.h projects/pciehp/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c projects/pciehp/cddl/contrib/opensolaris/tools/ctf/cvt/st_parse.c projects/pciehp/cddl/lib/drti/Makefile projects/pciehp/cddl/lib/libdtrace/Makefile projects/pciehp/cddl/lib/libzpool/Makefile projects/pciehp/cddl/usr.bin/ztest/Makefile projects/pciehp/cddl/usr.sbin/zdb/Makefile projects/pciehp/contrib/atf/atf-c++/check_test.cpp projects/pciehp/contrib/atf/atf-c++/detail/process_test.cpp projects/pciehp/contrib/atf/atf-c++/detail/test_helpers.cpp projects/pciehp/contrib/atf/atf-c++/detail/test_helpers.hpp projects/pciehp/contrib/bind9/CHANGES projects/pciehp/contrib/bind9/COPYRIGHT projects/pciehp/contrib/bind9/FAQ projects/pciehp/contrib/bind9/FAQ.xml projects/pciehp/contrib/bind9/HISTORY projects/pciehp/contrib/bind9/Makefile.in projects/pciehp/contrib/bind9/README projects/pciehp/contrib/bind9/aclocal.m4 projects/pciehp/contrib/bind9/bin/Makefile.in projects/pciehp/contrib/bind9/bin/check/check-tool.c projects/pciehp/contrib/bind9/bin/check/check-tool.h projects/pciehp/contrib/bind9/bin/check/named-checkconf.c projects/pciehp/contrib/bind9/bin/check/named-checkzone.8 projects/pciehp/contrib/bind9/bin/check/named-checkzone.c projects/pciehp/contrib/bind9/bin/check/named-checkzone.docbook projects/pciehp/contrib/bind9/bin/check/named-checkzone.html projects/pciehp/contrib/bind9/bin/confgen/ddns-confgen.c projects/pciehp/contrib/bind9/bin/confgen/keygen.c projects/pciehp/contrib/bind9/bin/confgen/rndc-confgen.c projects/pciehp/contrib/bind9/bin/dig/Makefile.in projects/pciehp/contrib/bind9/bin/dig/dig.1 projects/pciehp/contrib/bind9/bin/dig/dig.c projects/pciehp/contrib/bind9/bin/dig/dig.docbook projects/pciehp/contrib/bind9/bin/dig/dig.html projects/pciehp/contrib/bind9/bin/dig/dighost.c projects/pciehp/contrib/bind9/bin/dig/host.c projects/pciehp/contrib/bind9/bin/dig/include/dig/dig.h projects/pciehp/contrib/bind9/bin/dig/nslookup.c projects/pciehp/contrib/bind9/bin/dnssec/Makefile.in projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-revoke.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-revoke.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-settime.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-settime.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-settime.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-settime.html projects/pciehp/contrib/bind9/bin/dnssec/dnssec-signzone.8 projects/pciehp/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/pciehp/contrib/bind9/bin/dnssec/dnssec-signzone.docbook projects/pciehp/contrib/bind9/bin/dnssec/dnssec-signzone.html projects/pciehp/contrib/bind9/bin/dnssec/dnssectool.c projects/pciehp/contrib/bind9/bin/dnssec/dnssectool.h projects/pciehp/contrib/bind9/bin/named/Makefile.in projects/pciehp/contrib/bind9/bin/named/builtin.c projects/pciehp/contrib/bind9/bin/named/client.c projects/pciehp/contrib/bind9/bin/named/config.c projects/pciehp/contrib/bind9/bin/named/control.c projects/pciehp/contrib/bind9/bin/named/controlconf.c projects/pciehp/contrib/bind9/bin/named/include/dlz/dlz_dlopen_driver.h projects/pciehp/contrib/bind9/bin/named/include/named/client.h projects/pciehp/contrib/bind9/bin/named/include/named/control.h projects/pciehp/contrib/bind9/bin/named/include/named/globals.h projects/pciehp/contrib/bind9/bin/named/include/named/interfacemgr.h projects/pciehp/contrib/bind9/bin/named/include/named/server.h projects/pciehp/contrib/bind9/bin/named/include/named/zoneconf.h projects/pciehp/contrib/bind9/bin/named/interfacemgr.c projects/pciehp/contrib/bind9/bin/named/log.c projects/pciehp/contrib/bind9/bin/named/logconf.c projects/pciehp/contrib/bind9/bin/named/lwresd.c projects/pciehp/contrib/bind9/bin/named/main.c projects/pciehp/contrib/bind9/bin/named/named.8 projects/pciehp/contrib/bind9/bin/named/named.conf.5 projects/pciehp/contrib/bind9/bin/named/named.conf.docbook projects/pciehp/contrib/bind9/bin/named/named.conf.html projects/pciehp/contrib/bind9/bin/named/named.docbook projects/pciehp/contrib/bind9/bin/named/named.html projects/pciehp/contrib/bind9/bin/named/query.c projects/pciehp/contrib/bind9/bin/named/server.c projects/pciehp/contrib/bind9/bin/named/statschannel.c projects/pciehp/contrib/bind9/bin/named/tkeyconf.c projects/pciehp/contrib/bind9/bin/named/tsigconf.c projects/pciehp/contrib/bind9/bin/named/unix/Makefile.in projects/pciehp/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c projects/pciehp/contrib/bind9/bin/named/unix/os.c projects/pciehp/contrib/bind9/bin/named/update.c projects/pciehp/contrib/bind9/bin/named/xfrout.c projects/pciehp/contrib/bind9/bin/named/zoneconf.c projects/pciehp/contrib/bind9/bin/nsupdate/Makefile.in projects/pciehp/contrib/bind9/bin/nsupdate/nsupdate.1 projects/pciehp/contrib/bind9/bin/nsupdate/nsupdate.c projects/pciehp/contrib/bind9/bin/nsupdate/nsupdate.docbook projects/pciehp/contrib/bind9/bin/nsupdate/nsupdate.html projects/pciehp/contrib/bind9/bin/rndc/rndc.c projects/pciehp/contrib/bind9/bin/tools/genrandom.8 projects/pciehp/contrib/bind9/bin/tools/genrandom.c projects/pciehp/contrib/bind9/bin/tools/genrandom.docbook projects/pciehp/contrib/bind9/bin/tools/genrandom.html projects/pciehp/contrib/bind9/bin/tools/isc-hmac-fixup.8 projects/pciehp/contrib/bind9/bin/tools/isc-hmac-fixup.docbook projects/pciehp/contrib/bind9/bin/tools/isc-hmac-fixup.html projects/pciehp/contrib/bind9/bin/tools/nsec3hash.c projects/pciehp/contrib/bind9/config.h.in projects/pciehp/contrib/bind9/config.threads.in projects/pciehp/contrib/bind9/configure.in projects/pciehp/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch01.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch02.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch03.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch05.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.ch10.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.html projects/pciehp/contrib/bind9/doc/arm/Bv9ARM.pdf projects/pciehp/contrib/bind9/doc/arm/dnssec.xml projects/pciehp/contrib/bind9/doc/arm/man.arpaname.html projects/pciehp/contrib/bind9/doc/arm/man.ddns-confgen.html projects/pciehp/contrib/bind9/doc/arm/man.dig.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-settime.html projects/pciehp/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/pciehp/contrib/bind9/doc/arm/man.genrandom.html projects/pciehp/contrib/bind9/doc/arm/man.host.html projects/pciehp/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/pciehp/contrib/bind9/doc/arm/man.named-checkconf.html projects/pciehp/contrib/bind9/doc/arm/man.named-checkzone.html projects/pciehp/contrib/bind9/doc/arm/man.named-journalprint.html projects/pciehp/contrib/bind9/doc/arm/man.named.html projects/pciehp/contrib/bind9/doc/arm/man.nsec3hash.html projects/pciehp/contrib/bind9/doc/arm/man.nsupdate.html projects/pciehp/contrib/bind9/doc/arm/man.rndc-confgen.html projects/pciehp/contrib/bind9/doc/arm/man.rndc.conf.html projects/pciehp/contrib/bind9/doc/arm/man.rndc.html projects/pciehp/contrib/bind9/doc/arm/pkcs11.xml projects/pciehp/contrib/bind9/doc/misc/options projects/pciehp/contrib/bind9/isc-config.sh.in projects/pciehp/contrib/bind9/lib/Makefile.in projects/pciehp/contrib/bind9/lib/bind9/Makefile.in projects/pciehp/contrib/bind9/lib/bind9/api projects/pciehp/contrib/bind9/lib/bind9/check.c projects/pciehp/contrib/bind9/lib/dns/Makefile.in projects/pciehp/contrib/bind9/lib/dns/acache.c projects/pciehp/contrib/bind9/lib/dns/acl.c projects/pciehp/contrib/bind9/lib/dns/adb.c projects/pciehp/contrib/bind9/lib/dns/api projects/pciehp/contrib/bind9/lib/dns/byaddr.c projects/pciehp/contrib/bind9/lib/dns/cache.c projects/pciehp/contrib/bind9/lib/dns/callbacks.c projects/pciehp/contrib/bind9/lib/dns/client.c projects/pciehp/contrib/bind9/lib/dns/db.c projects/pciehp/contrib/bind9/lib/dns/dbtable.c projects/pciehp/contrib/bind9/lib/dns/diff.c projects/pciehp/contrib/bind9/lib/dns/dispatch.c projects/pciehp/contrib/bind9/lib/dns/dlz.c projects/pciehp/contrib/bind9/lib/dns/dns64.c projects/pciehp/contrib/bind9/lib/dns/dnssec.c projects/pciehp/contrib/bind9/lib/dns/dst_api.c projects/pciehp/contrib/bind9/lib/dns/dst_internal.h projects/pciehp/contrib/bind9/lib/dns/dst_openssl.h projects/pciehp/contrib/bind9/lib/dns/dst_parse.c projects/pciehp/contrib/bind9/lib/dns/ecdb.c projects/pciehp/contrib/bind9/lib/dns/gen.c projects/pciehp/contrib/bind9/lib/dns/gssapi_link.c projects/pciehp/contrib/bind9/lib/dns/gssapictx.c projects/pciehp/contrib/bind9/lib/dns/hmac_link.c projects/pciehp/contrib/bind9/lib/dns/include/dns/Makefile.in projects/pciehp/contrib/bind9/lib/dns/include/dns/acache.h projects/pciehp/contrib/bind9/lib/dns/include/dns/acl.h projects/pciehp/contrib/bind9/lib/dns/include/dns/adb.h projects/pciehp/contrib/bind9/lib/dns/include/dns/cache.h projects/pciehp/contrib/bind9/lib/dns/include/dns/callbacks.h projects/pciehp/contrib/bind9/lib/dns/include/dns/db.h projects/pciehp/contrib/bind9/lib/dns/include/dns/dispatch.h projects/pciehp/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h projects/pciehp/contrib/bind9/lib/dns/include/dns/dnssec.h projects/pciehp/contrib/bind9/lib/dns/include/dns/events.h projects/pciehp/contrib/bind9/lib/dns/include/dns/journal.h projects/pciehp/contrib/bind9/lib/dns/include/dns/log.h projects/pciehp/contrib/bind9/lib/dns/include/dns/master.h projects/pciehp/contrib/bind9/lib/dns/include/dns/masterdump.h projects/pciehp/contrib/bind9/lib/dns/include/dns/message.h projects/pciehp/contrib/bind9/lib/dns/include/dns/name.h projects/pciehp/contrib/bind9/lib/dns/include/dns/ncache.h projects/pciehp/contrib/bind9/lib/dns/include/dns/nsec.h projects/pciehp/contrib/bind9/lib/dns/include/dns/nsec3.h projects/pciehp/contrib/bind9/lib/dns/include/dns/private.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rdata.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rdataset.h projects/pciehp/contrib/bind9/lib/dns/include/dns/resolver.h projects/pciehp/contrib/bind9/lib/dns/include/dns/result.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rpz.h projects/pciehp/contrib/bind9/lib/dns/include/dns/rriterator.h projects/pciehp/contrib/bind9/lib/dns/include/dns/sdb.h projects/pciehp/contrib/bind9/lib/dns/include/dns/sdlz.h projects/pciehp/contrib/bind9/lib/dns/include/dns/time.h projects/pciehp/contrib/bind9/lib/dns/include/dns/types.h projects/pciehp/contrib/bind9/lib/dns/include/dns/validator.h projects/pciehp/contrib/bind9/lib/dns/include/dns/view.h projects/pciehp/contrib/bind9/lib/dns/include/dns/zone.h projects/pciehp/contrib/bind9/lib/dns/include/dns/zt.h projects/pciehp/contrib/bind9/lib/dns/include/dst/dst.h projects/pciehp/contrib/bind9/lib/dns/iptable.c projects/pciehp/contrib/bind9/lib/dns/journal.c projects/pciehp/contrib/bind9/lib/dns/key.c projects/pciehp/contrib/bind9/lib/dns/keytable.c projects/pciehp/contrib/bind9/lib/dns/log.c projects/pciehp/contrib/bind9/lib/dns/lookup.c projects/pciehp/contrib/bind9/lib/dns/master.c projects/pciehp/contrib/bind9/lib/dns/masterdump.c projects/pciehp/contrib/bind9/lib/dns/message.c projects/pciehp/contrib/bind9/lib/dns/name.c projects/pciehp/contrib/bind9/lib/dns/ncache.c projects/pciehp/contrib/bind9/lib/dns/nsec.c projects/pciehp/contrib/bind9/lib/dns/nsec3.c projects/pciehp/contrib/bind9/lib/dns/openssl_link.c projects/pciehp/contrib/bind9/lib/dns/openssldh_link.c projects/pciehp/contrib/bind9/lib/dns/openssldsa_link.c projects/pciehp/contrib/bind9/lib/dns/opensslecdsa_link.c projects/pciehp/contrib/bind9/lib/dns/opensslgost_link.c projects/pciehp/contrib/bind9/lib/dns/opensslrsa_link.c projects/pciehp/contrib/bind9/lib/dns/peer.c projects/pciehp/contrib/bind9/lib/dns/private.c projects/pciehp/contrib/bind9/lib/dns/rbt.c projects/pciehp/contrib/bind9/lib/dns/rbtdb.c projects/pciehp/contrib/bind9/lib/dns/rdata.c projects/pciehp/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/cert_37.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/key_25.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/mx_15.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h projects/pciehp/contrib/bind9/lib/dns/rdata/generic/opt_41.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/sig_24.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/soa_6.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/tkey_249.c projects/pciehp/contrib/bind9/lib/dns/rdata/generic/txt_16.c projects/pciehp/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c projects/pciehp/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c projects/pciehp/contrib/bind9/lib/dns/request.c projects/pciehp/contrib/bind9/lib/dns/resolver.c projects/pciehp/contrib/bind9/lib/dns/result.c projects/pciehp/contrib/bind9/lib/dns/rootns.c projects/pciehp/contrib/bind9/lib/dns/rpz.c projects/pciehp/contrib/bind9/lib/dns/sdb.c projects/pciehp/contrib/bind9/lib/dns/sdlz.c projects/pciehp/contrib/bind9/lib/dns/spnego.c projects/pciehp/contrib/bind9/lib/dns/spnego_asn1.c projects/pciehp/contrib/bind9/lib/dns/ssu.c projects/pciehp/contrib/bind9/lib/dns/ssu_external.c projects/pciehp/contrib/bind9/lib/dns/tkey.c projects/pciehp/contrib/bind9/lib/dns/tsig.c projects/pciehp/contrib/bind9/lib/dns/validator.c projects/pciehp/contrib/bind9/lib/dns/view.c projects/pciehp/contrib/bind9/lib/dns/xfrin.c projects/pciehp/contrib/bind9/lib/dns/zone.c projects/pciehp/contrib/bind9/lib/dns/zt.c projects/pciehp/contrib/bind9/lib/export/dns/Makefile.in projects/pciehp/contrib/bind9/lib/export/irs/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/nls/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/pciehp/contrib/bind9/lib/export/isc/unix/Makefile.in projects/pciehp/contrib/bind9/lib/export/isccfg/Makefile.in projects/pciehp/contrib/bind9/lib/export/samples/Makefile.in projects/pciehp/contrib/bind9/lib/export/samples/nsprobe.c projects/pciehp/contrib/bind9/lib/export/samples/sample-async.c projects/pciehp/contrib/bind9/lib/export/samples/sample-gai.c projects/pciehp/contrib/bind9/lib/export/samples/sample-request.c projects/pciehp/contrib/bind9/lib/export/samples/sample-update.c projects/pciehp/contrib/bind9/lib/export/samples/sample.c projects/pciehp/contrib/bind9/lib/irs/api projects/pciehp/contrib/bind9/lib/irs/dnsconf.c projects/pciehp/contrib/bind9/lib/irs/getaddrinfo.c projects/pciehp/contrib/bind9/lib/irs/getnameinfo.c projects/pciehp/contrib/bind9/lib/irs/resconf.c projects/pciehp/contrib/bind9/lib/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/api projects/pciehp/contrib/bind9/lib/isc/buffer.c projects/pciehp/contrib/bind9/lib/isc/include/isc/Makefile.in projects/pciehp/contrib/bind9/lib/isc/include/isc/buffer.h projects/pciehp/contrib/bind9/lib/isc/include/isc/file.h projects/pciehp/contrib/bind9/lib/isc/include/isc/heap.h projects/pciehp/contrib/bind9/lib/isc/include/isc/list.h projects/pciehp/contrib/bind9/lib/isc/include/isc/mem.h projects/pciehp/contrib/bind9/lib/isc/include/isc/namespace.h projects/pciehp/contrib/bind9/lib/isc/include/isc/radix.h projects/pciehp/contrib/bind9/lib/isc/include/isc/region.h projects/pciehp/contrib/bind9/lib/isc/include/isc/sockaddr.h projects/pciehp/contrib/bind9/lib/isc/include/isc/socket.h projects/pciehp/contrib/bind9/lib/isc/include/isc/task.h projects/pciehp/contrib/bind9/lib/isc/include/isc/taskpool.h projects/pciehp/contrib/bind9/lib/isc/include/isc/timer.h projects/pciehp/contrib/bind9/lib/isc/inet_aton.c projects/pciehp/contrib/bind9/lib/isc/log.c projects/pciehp/contrib/bind9/lib/isc/mem.c projects/pciehp/contrib/bind9/lib/isc/nothreads/Makefile.in projects/pciehp/contrib/bind9/lib/isc/parseint.c projects/pciehp/contrib/bind9/lib/isc/pthreads/thread.c projects/pciehp/contrib/bind9/lib/isc/radix.c projects/pciehp/contrib/bind9/lib/isc/ratelimiter.c projects/pciehp/contrib/bind9/lib/isc/sockaddr.c projects/pciehp/contrib/bind9/lib/isc/socket_api.c projects/pciehp/contrib/bind9/lib/isc/sparc64/include/isc/atomic.h projects/pciehp/contrib/bind9/lib/isc/symtab.c projects/pciehp/contrib/bind9/lib/isc/task.c projects/pciehp/contrib/bind9/lib/isc/task_api.c projects/pciehp/contrib/bind9/lib/isc/task_p.h projects/pciehp/contrib/bind9/lib/isc/taskpool.c projects/pciehp/contrib/bind9/lib/isc/timer.c projects/pciehp/contrib/bind9/lib/isc/timer_api.c projects/pciehp/contrib/bind9/lib/isc/unix/entropy.c projects/pciehp/contrib/bind9/lib/isc/unix/file.c projects/pciehp/contrib/bind9/lib/isc/unix/include/isc/time.h projects/pciehp/contrib/bind9/lib/isc/unix/net.c projects/pciehp/contrib/bind9/lib/isc/unix/socket.c projects/pciehp/contrib/bind9/lib/isc/unix/time.c projects/pciehp/contrib/bind9/lib/isccc/api projects/pciehp/contrib/bind9/lib/isccc/cc.c projects/pciehp/contrib/bind9/lib/isccfg/Makefile.in projects/pciehp/contrib/bind9/lib/isccfg/aclconf.c projects/pciehp/contrib/bind9/lib/isccfg/api projects/pciehp/contrib/bind9/lib/isccfg/include/isccfg/cfg.h projects/pciehp/contrib/bind9/lib/isccfg/namedconf.c projects/pciehp/contrib/bind9/lib/isccfg/parser.c projects/pciehp/contrib/bind9/lib/lwres/api projects/pciehp/contrib/bind9/lib/lwres/context.c projects/pciehp/contrib/bind9/lib/lwres/getaddrinfo.c projects/pciehp/contrib/bind9/lib/lwres/getipnode.c projects/pciehp/contrib/bind9/lib/lwres/getnameinfo.c projects/pciehp/contrib/bind9/lib/lwres/getrrset.c projects/pciehp/contrib/bind9/lib/lwres/lwinetaton.c projects/pciehp/contrib/bind9/lib/lwres/man/lwres_config.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_config.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_config.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_context.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_context.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_context.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gabn.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gabn.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gabn.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gethostent.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gethostent.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getipnode.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getipnode.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gnba.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gnba.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_gnba.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_hstrerror.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_inetntop.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_inetntop.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_noop.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_noop.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_noop.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_packet.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_packet.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_packet.html projects/pciehp/contrib/bind9/lib/lwres/man/lwres_resutil.3 projects/pciehp/contrib/bind9/lib/lwres/man/lwres_resutil.docbook projects/pciehp/contrib/bind9/lib/lwres/man/lwres_resutil.html projects/pciehp/contrib/bind9/lib/lwres/print.c projects/pciehp/contrib/bind9/lib/lwres/print_p.h projects/pciehp/contrib/bind9/lib/lwres/strtoul.c projects/pciehp/contrib/bind9/lib/lwres/unix/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/unix/include/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in projects/pciehp/contrib/bind9/lib/lwres/unix/include/lwres/net.h projects/pciehp/contrib/bind9/lib/lwres/version.c projects/pciehp/contrib/bind9/ltmain.sh projects/pciehp/contrib/bind9/make/Makefile.in projects/pciehp/contrib/bind9/make/includes.in projects/pciehp/contrib/bind9/make/rules.in projects/pciehp/contrib/bind9/mkinstalldirs projects/pciehp/contrib/bind9/version projects/pciehp/contrib/binutils/binutils/readelf.c projects/pciehp/contrib/binutils/gas/config/tc-arm.c projects/pciehp/contrib/binutils/gas/config/tc-i386.c projects/pciehp/contrib/binutils/include/elf/common.h projects/pciehp/contrib/binutils/include/elf/dwarf2.h projects/pciehp/contrib/binutils/ld/ldmain.c projects/pciehp/contrib/binutils/opcodes/i386-dis.c projects/pciehp/contrib/binutils/opcodes/i386-opc.tbl projects/pciehp/contrib/binutils/opcodes/i386-tbl.h projects/pciehp/contrib/bmake/ChangeLog projects/pciehp/contrib/bmake/FILES projects/pciehp/contrib/bmake/Makefile projects/pciehp/contrib/bmake/bmake.1 projects/pciehp/contrib/bmake/bmake.cat1 projects/pciehp/contrib/bmake/compat.c projects/pciehp/contrib/bmake/configure projects/pciehp/contrib/bmake/configure.in projects/pciehp/contrib/bmake/job.c projects/pciehp/contrib/bmake/job.h projects/pciehp/contrib/bmake/main.c projects/pciehp/contrib/bmake/make.1 projects/pciehp/contrib/bmake/make.h projects/pciehp/contrib/bmake/meta.c projects/pciehp/contrib/bmake/mk/ChangeLog projects/pciehp/contrib/bmake/mk/FILES projects/pciehp/contrib/bmake/mk/gendirdeps.mk projects/pciehp/contrib/bmake/mk/init.mk projects/pciehp/contrib/bmake/mk/install-mk projects/pciehp/contrib/bmake/mk/lib.mk projects/pciehp/contrib/bmake/mk/libs.mk projects/pciehp/contrib/bmake/mk/meta.stage.mk projects/pciehp/contrib/bmake/mk/meta2deps.py projects/pciehp/contrib/bmake/mk/meta2deps.sh projects/pciehp/contrib/bmake/mk/options.mk projects/pciehp/contrib/bmake/mk/own.mk projects/pciehp/contrib/bmake/mk/prog.mk projects/pciehp/contrib/bmake/mk/progs.mk projects/pciehp/contrib/bmake/parse.c projects/pciehp/contrib/bmake/suff.c projects/pciehp/contrib/bmake/unit-tests/Makefile.in projects/pciehp/contrib/bmake/unit-tests/test.exp projects/pciehp/contrib/bmake/var.c projects/pciehp/contrib/bsnmp/oid-list projects/pciehp/contrib/byacc/CHANGES projects/pciehp/contrib/byacc/VERSION projects/pciehp/contrib/byacc/aclocal.m4 projects/pciehp/contrib/byacc/config.guess projects/pciehp/contrib/byacc/config.sub projects/pciehp/contrib/byacc/config_h.in projects/pciehp/contrib/byacc/configure projects/pciehp/contrib/byacc/configure.in projects/pciehp/contrib/byacc/main.c projects/pciehp/contrib/byacc/makefile.in projects/pciehp/contrib/byacc/output.c projects/pciehp/contrib/byacc/package/byacc.spec projects/pciehp/contrib/byacc/package/debian/changelog projects/pciehp/contrib/byacc/skeleton.c projects/pciehp/contrib/byacc/test/calc.tab.c projects/pciehp/contrib/byacc/test/calc1.tab.c projects/pciehp/contrib/byacc/test/calc1.y projects/pciehp/contrib/byacc/test/calc2.tab.c projects/pciehp/contrib/byacc/test/calc3.tab.c projects/pciehp/contrib/byacc/test/code_calc.code.c projects/pciehp/contrib/byacc/test/code_error.code.c projects/pciehp/contrib/byacc/test/error.tab.c projects/pciehp/contrib/byacc/test/ftp.output projects/pciehp/contrib/byacc/test/ftp.tab.c projects/pciehp/contrib/byacc/test/ftp.tab.h projects/pciehp/contrib/byacc/test/ftp.y projects/pciehp/contrib/byacc/test/grammar.tab.c projects/pciehp/contrib/byacc/test/pure_calc.tab.c projects/pciehp/contrib/byacc/test/pure_error.tab.c projects/pciehp/contrib/byacc/test/quote_calc-s.tab.c projects/pciehp/contrib/byacc/test/quote_calc.tab.c projects/pciehp/contrib/byacc/test/quote_calc2-s.tab.c projects/pciehp/contrib/byacc/test/quote_calc2.tab.c projects/pciehp/contrib/byacc/test/quote_calc3-s.tab.c projects/pciehp/contrib/byacc/test/quote_calc3.tab.c projects/pciehp/contrib/byacc/test/quote_calc4-s.tab.c projects/pciehp/contrib/byacc/test/quote_calc4.tab.c projects/pciehp/contrib/dialog/CHANGES projects/pciehp/contrib/dialog/VERSION projects/pciehp/contrib/dialog/aclocal.m4 projects/pciehp/contrib/dialog/argv.c projects/pciehp/contrib/dialog/arrows.c projects/pciehp/contrib/dialog/buttons.c projects/pciehp/contrib/dialog/calendar.c projects/pciehp/contrib/dialog/checklist.c projects/pciehp/contrib/dialog/columns.c projects/pciehp/contrib/dialog/config.guess projects/pciehp/contrib/dialog/config.sub projects/pciehp/contrib/dialog/configure projects/pciehp/contrib/dialog/configure.in projects/pciehp/contrib/dialog/dialog-config.in projects/pciehp/contrib/dialog/dialog.1 projects/pciehp/contrib/dialog/dialog.3 projects/pciehp/contrib/dialog/dialog.c projects/pciehp/contrib/dialog/dialog.h projects/pciehp/contrib/dialog/dlg_colors.h projects/pciehp/contrib/dialog/dlg_keys.c projects/pciehp/contrib/dialog/dlg_keys.h projects/pciehp/contrib/dialog/editbox.c projects/pciehp/contrib/dialog/formbox.c projects/pciehp/contrib/dialog/fselect.c projects/pciehp/contrib/dialog/guage.c projects/pciehp/contrib/dialog/headers-sh.in projects/pciehp/contrib/dialog/help.c projects/pciehp/contrib/dialog/inputbox.c projects/pciehp/contrib/dialog/inputstr.c projects/pciehp/contrib/dialog/makefile.in projects/pciehp/contrib/dialog/menubox.c projects/pciehp/contrib/dialog/mixedform.c projects/pciehp/contrib/dialog/mixedgauge.c projects/pciehp/contrib/dialog/mouse.c projects/pciehp/contrib/dialog/mousewget.c projects/pciehp/contrib/dialog/msgbox.c projects/pciehp/contrib/dialog/package/debian/changelog projects/pciehp/contrib/dialog/package/dialog.spec projects/pciehp/contrib/dialog/pause.c projects/pciehp/contrib/dialog/po/cs.po projects/pciehp/contrib/dialog/po/el.po projects/pciehp/contrib/dialog/po/gl.po projects/pciehp/contrib/dialog/po/hr.po projects/pciehp/contrib/dialog/po/sr.po projects/pciehp/contrib/dialog/po/zh_TW.po projects/pciehp/contrib/dialog/prgbox.c projects/pciehp/contrib/dialog/progressbox.c projects/pciehp/contrib/dialog/rc.c projects/pciehp/contrib/dialog/rename.sh projects/pciehp/contrib/dialog/samples/README projects/pciehp/contrib/dialog/samples/debian.rc projects/pciehp/contrib/dialog/samples/dialog.py projects/pciehp/contrib/dialog/samples/form1 projects/pciehp/contrib/dialog/samples/inputmenu projects/pciehp/contrib/dialog/samples/inputmenu-stdout projects/pciehp/contrib/dialog/samples/inputmenu1 projects/pciehp/contrib/dialog/samples/inputmenu2 projects/pciehp/contrib/dialog/samples/inputmenu3 projects/pciehp/contrib/dialog/samples/inputmenu4 projects/pciehp/contrib/dialog/samples/killall projects/pciehp/contrib/dialog/samples/prgbox projects/pciehp/contrib/dialog/samples/prgbox2 projects/pciehp/contrib/dialog/samples/report-button projects/pciehp/contrib/dialog/samples/report-edit projects/pciehp/contrib/dialog/samples/report-string projects/pciehp/contrib/dialog/samples/report-tempfile projects/pciehp/contrib/dialog/samples/report-yesno projects/pciehp/contrib/dialog/samples/setup-edit projects/pciehp/contrib/dialog/samples/setup-tempfile projects/pciehp/contrib/dialog/samples/setup-utf8 projects/pciehp/contrib/dialog/samples/setup-vars projects/pciehp/contrib/dialog/samples/slackware.rc projects/pciehp/contrib/dialog/samples/sourcemage.rc projects/pciehp/contrib/dialog/samples/suse.rc projects/pciehp/contrib/dialog/samples/tailboxbg projects/pciehp/contrib/dialog/samples/tailboxbg1 projects/pciehp/contrib/dialog/samples/tailboxbg2 projects/pciehp/contrib/dialog/samples/testdata-8bit projects/pciehp/contrib/dialog/samples/wheel projects/pciehp/contrib/dialog/samples/whiptail.rc projects/pciehp/contrib/dialog/tailbox.c projects/pciehp/contrib/dialog/textbox.c projects/pciehp/contrib/dialog/timebox.c projects/pciehp/contrib/dialog/trace.c projects/pciehp/contrib/dialog/ui_getc.c projects/pciehp/contrib/dialog/util.c projects/pciehp/contrib/dialog/yesno.c projects/pciehp/contrib/gcc/ChangeLog.gcc43 projects/pciehp/contrib/gcc/c-lex.c projects/pciehp/contrib/gcc/config.gcc projects/pciehp/contrib/gcc/config/arm/ieee754-df.S projects/pciehp/contrib/gcc/config/arm/libunwind.S projects/pciehp/contrib/gcc/config/arm/unwind-arm.c projects/pciehp/contrib/gcc/config/arm/unwind-arm.h projects/pciehp/contrib/gcc/config/i386/athlon.md projects/pciehp/contrib/gcc/config/i386/driver-i386.c projects/pciehp/contrib/gcc/config/i386/emmintrin.h projects/pciehp/contrib/gcc/config/i386/i386.c projects/pciehp/contrib/gcc/config/i386/i386.h projects/pciehp/contrib/gcc/config/i386/i386.md projects/pciehp/contrib/gcc/config/i386/i386.opt projects/pciehp/contrib/gcc/config/i386/pmmintrin.h projects/pciehp/contrib/gcc/config/i386/sse.md projects/pciehp/contrib/gcc/config/i386/tmmintrin.h projects/pciehp/contrib/gcc/doc/extend.texi projects/pciehp/contrib/gcc/doc/invoke.texi projects/pciehp/contrib/gcc/gthr-posix95.h projects/pciehp/contrib/gcc/opth-gen.awk projects/pciehp/contrib/gcc/opts.c projects/pciehp/contrib/gcc/unwind-dw2.c projects/pciehp/contrib/gcclibs/libcpp/expr.c projects/pciehp/contrib/gcclibs/libcpp/include/cpplib.h projects/pciehp/contrib/gdb/gdb/dwarf2read.c projects/pciehp/contrib/gdb/gdb/frame-unwind.c projects/pciehp/contrib/ipfilter/BNF projects/pciehp/contrib/ipfilter/BSD/Makefile projects/pciehp/contrib/ipfilter/BSD/Makefile.ipsend projects/pciehp/contrib/ipfilter/BSD/ipfadm-rcd projects/pciehp/contrib/ipfilter/BSD/kupgrade projects/pciehp/contrib/ipfilter/FAQ.FreeBSD projects/pciehp/contrib/ipfilter/FWTK/ftp-gw.diff projects/pciehp/contrib/ipfilter/FWTK/fwtk_transparent.diff projects/pciehp/contrib/ipfilter/FreeBSD-2.2/kinstall projects/pciehp/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 projects/pciehp/contrib/ipfilter/FreeBSD-3/kinstall projects/pciehp/contrib/ipfilter/FreeBSD-4.0/kinstall projects/pciehp/contrib/ipfilter/FreeBSD/kinstall projects/pciehp/contrib/ipfilter/HISTORY projects/pciehp/contrib/ipfilter/INSTALL.FreeBSD projects/pciehp/contrib/ipfilter/Makefile projects/pciehp/contrib/ipfilter/NAT.FreeBSD projects/pciehp/contrib/ipfilter/etc/protocols projects/pciehp/contrib/ipfilter/etc/services projects/pciehp/contrib/ipfilter/ip_fil.c projects/pciehp/contrib/ipfilter/ipf.h projects/pciehp/contrib/ipfilter/iplang/Makefile projects/pciehp/contrib/ipfilter/iplang/iplang.h projects/pciehp/contrib/ipfilter/iplang/iplang.tst projects/pciehp/contrib/ipfilter/iplang/iplang_l.l projects/pciehp/contrib/ipfilter/iplang/iplang_y.y projects/pciehp/contrib/ipfilter/ipmon.h projects/pciehp/contrib/ipfilter/ipsd/Makefile projects/pciehp/contrib/ipfilter/ipsd/ipsd.c projects/pciehp/contrib/ipfilter/ipsd/ipsdr.c projects/pciehp/contrib/ipfilter/ipsd/linux.h projects/pciehp/contrib/ipfilter/ipsd/sbpf.c projects/pciehp/contrib/ipfilter/ipsd/sdlpi.c projects/pciehp/contrib/ipfilter/ipsd/slinux.c projects/pciehp/contrib/ipfilter/ipsd/snit.c projects/pciehp/contrib/ipfilter/ipsend/44arp.c projects/pciehp/contrib/ipfilter/ipsend/Makefile projects/pciehp/contrib/ipfilter/ipsend/arp.c projects/pciehp/contrib/ipfilter/ipsend/dlcommon.c projects/pciehp/contrib/ipfilter/ipsend/ip.c projects/pciehp/contrib/ipfilter/ipsend/ipresend.c projects/pciehp/contrib/ipfilter/ipsend/ipsend.5 projects/pciehp/contrib/ipfilter/ipsend/ipsend.c projects/pciehp/contrib/ipfilter/ipsend/ipsend.h projects/pciehp/contrib/ipfilter/ipsend/ipsopt.c projects/pciehp/contrib/ipfilter/ipsend/iptest.c projects/pciehp/contrib/ipfilter/ipsend/iptests.c projects/pciehp/contrib/ipfilter/ipsend/larp.c projects/pciehp/contrib/ipfilter/ipsend/linux.h projects/pciehp/contrib/ipfilter/ipsend/lsock.c projects/pciehp/contrib/ipfilter/ipsend/resend.c projects/pciehp/contrib/ipfilter/ipsend/sbpf.c projects/pciehp/contrib/ipfilter/ipsend/sdlpi.c projects/pciehp/contrib/ipfilter/ipsend/sirix.c projects/pciehp/contrib/ipfilter/ipsend/slinux.c projects/pciehp/contrib/ipfilter/ipsend/snit.c projects/pciehp/contrib/ipfilter/ipsend/sock.c projects/pciehp/contrib/ipfilter/ipt.h projects/pciehp/contrib/ipfilter/kmem.h projects/pciehp/contrib/ipfilter/l4check/Makefile projects/pciehp/contrib/ipfilter/l4check/l4check.c projects/pciehp/contrib/ipfilter/lib/Makefile projects/pciehp/contrib/ipfilter/lib/addicmp.c projects/pciehp/contrib/ipfilter/lib/addipopt.c projects/pciehp/contrib/ipfilter/lib/alist_free.c projects/pciehp/contrib/ipfilter/lib/alist_new.c projects/pciehp/contrib/ipfilter/lib/bcopywrap.c projects/pciehp/contrib/ipfilter/lib/binprint.c projects/pciehp/contrib/ipfilter/lib/buildopts.c projects/pciehp/contrib/ipfilter/lib/checkrev.c projects/pciehp/contrib/ipfilter/lib/count4bits.c projects/pciehp/contrib/ipfilter/lib/count6bits.c projects/pciehp/contrib/ipfilter/lib/debug.c projects/pciehp/contrib/ipfilter/lib/facpri.c projects/pciehp/contrib/ipfilter/lib/facpri.h projects/pciehp/contrib/ipfilter/lib/fill6bits.c projects/pciehp/contrib/ipfilter/lib/flags.c projects/pciehp/contrib/ipfilter/lib/gethost.c projects/pciehp/contrib/ipfilter/lib/getifname.c projects/pciehp/contrib/ipfilter/lib/getnattype.c projects/pciehp/contrib/ipfilter/lib/getport.c projects/pciehp/contrib/ipfilter/lib/getportproto.c projects/pciehp/contrib/ipfilter/lib/getproto.c projects/pciehp/contrib/ipfilter/lib/getsumd.c projects/pciehp/contrib/ipfilter/lib/hostname.c projects/pciehp/contrib/ipfilter/lib/icmpcode.c projects/pciehp/contrib/ipfilter/lib/initparse.c projects/pciehp/contrib/ipfilter/lib/ionames.c projects/pciehp/contrib/ipfilter/lib/ipf_dotuning.c projects/pciehp/contrib/ipfilter/lib/ipft_hx.c projects/pciehp/contrib/ipfilter/lib/ipft_pc.c projects/pciehp/contrib/ipfilter/lib/ipft_tx.c projects/pciehp/contrib/ipfilter/lib/ipoptsec.c projects/pciehp/contrib/ipfilter/lib/kmem.c projects/pciehp/contrib/ipfilter/lib/kmem.h projects/pciehp/contrib/ipfilter/lib/kmemcpywrap.c projects/pciehp/contrib/ipfilter/lib/kvatoname.c projects/pciehp/contrib/ipfilter/lib/load_file.c projects/pciehp/contrib/ipfilter/lib/load_hash.c projects/pciehp/contrib/ipfilter/lib/load_hashnode.c projects/pciehp/contrib/ipfilter/lib/load_http.c projects/pciehp/contrib/ipfilter/lib/load_pool.c projects/pciehp/contrib/ipfilter/lib/load_poolnode.c projects/pciehp/contrib/ipfilter/lib/load_url.c projects/pciehp/contrib/ipfilter/lib/mutex_emul.c projects/pciehp/contrib/ipfilter/lib/nametokva.c projects/pciehp/contrib/ipfilter/lib/nat_setgroupmap.c projects/pciehp/contrib/ipfilter/lib/ntomask.c projects/pciehp/contrib/ipfilter/lib/optname.c projects/pciehp/contrib/ipfilter/lib/optprint.c projects/pciehp/contrib/ipfilter/lib/optprintv6.c projects/pciehp/contrib/ipfilter/lib/optvalue.c projects/pciehp/contrib/ipfilter/lib/portname.c projects/pciehp/contrib/ipfilter/lib/print_toif.c projects/pciehp/contrib/ipfilter/lib/printactivenat.c projects/pciehp/contrib/ipfilter/lib/printaps.c projects/pciehp/contrib/ipfilter/lib/printbuf.c projects/pciehp/contrib/ipfilter/lib/printfr.c projects/pciehp/contrib/ipfilter/lib/printfraginfo.c projects/pciehp/contrib/ipfilter/lib/printhash.c projects/pciehp/contrib/ipfilter/lib/printhash_live.c projects/pciehp/contrib/ipfilter/lib/printhashdata.c projects/pciehp/contrib/ipfilter/lib/printhashnode.c projects/pciehp/contrib/ipfilter/lib/printhostmap.c projects/pciehp/contrib/ipfilter/lib/printhostmask.c projects/pciehp/contrib/ipfilter/lib/printifname.c projects/pciehp/contrib/ipfilter/lib/printip.c projects/pciehp/contrib/ipfilter/lib/printlog.c projects/pciehp/contrib/ipfilter/lib/printmask.c projects/pciehp/contrib/ipfilter/lib/printnat.c projects/pciehp/contrib/ipfilter/lib/printpacket.c projects/pciehp/contrib/ipfilter/lib/printpacket6.c projects/pciehp/contrib/ipfilter/lib/printpool.c projects/pciehp/contrib/ipfilter/lib/printpool_live.c projects/pciehp/contrib/ipfilter/lib/printpooldata.c projects/pciehp/contrib/ipfilter/lib/printpoolnode.c projects/pciehp/contrib/ipfilter/lib/printportcmp.c projects/pciehp/contrib/ipfilter/lib/printproto.c projects/pciehp/contrib/ipfilter/lib/printsbuf.c projects/pciehp/contrib/ipfilter/lib/printstate.c projects/pciehp/contrib/ipfilter/lib/printtqtable.c projects/pciehp/contrib/ipfilter/lib/printtunable.c projects/pciehp/contrib/ipfilter/lib/remove_hash.c projects/pciehp/contrib/ipfilter/lib/remove_hashnode.c projects/pciehp/contrib/ipfilter/lib/remove_pool.c projects/pciehp/contrib/ipfilter/lib/remove_poolnode.c projects/pciehp/contrib/ipfilter/lib/resetlexer.c projects/pciehp/contrib/ipfilter/lib/rwlock_emul.c projects/pciehp/contrib/ipfilter/lib/tcpflags.c projects/pciehp/contrib/ipfilter/lib/tcpoptnames.c projects/pciehp/contrib/ipfilter/lib/v6ionames.c projects/pciehp/contrib/ipfilter/lib/v6optvalue.c projects/pciehp/contrib/ipfilter/lib/var.c projects/pciehp/contrib/ipfilter/lib/verbose.c projects/pciehp/contrib/ipfilter/man/Makefile projects/pciehp/contrib/ipfilter/man/ipf.4 projects/pciehp/contrib/ipfilter/man/ipf.5 projects/pciehp/contrib/ipfilter/man/ipfilter.4 projects/pciehp/contrib/ipfilter/man/ipfilter.4.mandoc projects/pciehp/contrib/ipfilter/man/ipfstat.8 projects/pciehp/contrib/ipfilter/man/ipftest.1 projects/pciehp/contrib/ipfilter/man/ipmon.5 projects/pciehp/contrib/ipfilter/man/ipnat.4 projects/pciehp/contrib/ipfilter/man/ipnat.5 projects/pciehp/contrib/ipfilter/man/ipnat.8 projects/pciehp/contrib/ipfilter/man/ippool.5 projects/pciehp/contrib/ipfilter/man/ippool.8 projects/pciehp/contrib/ipfilter/md5.c projects/pciehp/contrib/ipfilter/mkfilters projects/pciehp/contrib/ipfilter/mlf_ipl.c projects/pciehp/contrib/ipfilter/mlf_rule.c projects/pciehp/contrib/ipfilter/mlfk_rule.c projects/pciehp/contrib/ipfilter/mlh_rule.c (contents, props changed) projects/pciehp/contrib/ipfilter/opts.h projects/pciehp/contrib/ipfilter/pcap-ipf.h projects/pciehp/contrib/ipfilter/perl/Ipfanaly.pl projects/pciehp/contrib/ipfilter/perl/Isbgraph projects/pciehp/contrib/ipfilter/perl/Services projects/pciehp/contrib/ipfilter/perl/ipfmeta.pl projects/pciehp/contrib/ipfilter/perl/logfilter.pl projects/pciehp/contrib/ipfilter/radix_ipf.h projects/pciehp/contrib/ipfilter/rules/BASIC_1.FW projects/pciehp/contrib/ipfilter/rules/BASIC_2.FW projects/pciehp/contrib/ipfilter/rules/firewall projects/pciehp/contrib/ipfilter/rules/ipmon.conf projects/pciehp/contrib/ipfilter/rules/server projects/pciehp/contrib/ipfilter/samples/proxy.c projects/pciehp/contrib/ipfilter/samples/relay.c projects/pciehp/contrib/ipfilter/snoop.h projects/pciehp/contrib/ipfilter/test/Makefile projects/pciehp/contrib/ipfilter/test/bpftest projects/pciehp/contrib/ipfilter/test/dotest projects/pciehp/contrib/ipfilter/test/expected/f11 projects/pciehp/contrib/ipfilter/test/expected/f13 projects/pciehp/contrib/ipfilter/test/expected/f18 projects/pciehp/contrib/ipfilter/test/expected/i1 projects/pciehp/contrib/ipfilter/test/expected/i10 projects/pciehp/contrib/ipfilter/test/expected/i11 projects/pciehp/contrib/ipfilter/test/expected/i12 projects/pciehp/contrib/ipfilter/test/expected/i14 projects/pciehp/contrib/ipfilter/test/expected/i17 projects/pciehp/contrib/ipfilter/test/expected/i18 projects/pciehp/contrib/ipfilter/test/expected/i2 projects/pciehp/contrib/ipfilter/test/expected/i20 projects/pciehp/contrib/ipfilter/test/expected/i3 projects/pciehp/contrib/ipfilter/test/expected/i4 projects/pciehp/contrib/ipfilter/test/expected/i5 projects/pciehp/contrib/ipfilter/test/expected/i6 projects/pciehp/contrib/ipfilter/test/expected/i7 projects/pciehp/contrib/ipfilter/test/expected/i8 projects/pciehp/contrib/ipfilter/test/expected/i9 projects/pciehp/contrib/ipfilter/test/expected/in1 projects/pciehp/contrib/ipfilter/test/expected/in2 projects/pciehp/contrib/ipfilter/test/expected/in3 projects/pciehp/contrib/ipfilter/test/expected/in5 projects/pciehp/contrib/ipfilter/test/expected/in6 projects/pciehp/contrib/ipfilter/test/expected/ip1 projects/pciehp/contrib/ipfilter/test/expected/ip2 projects/pciehp/contrib/ipfilter/test/expected/ipv6.6 projects/pciehp/contrib/ipfilter/test/expected/l1 projects/pciehp/contrib/ipfilter/test/expected/l1.b projects/pciehp/contrib/ipfilter/test/expected/n1 projects/pciehp/contrib/ipfilter/test/expected/n10 projects/pciehp/contrib/ipfilter/test/expected/n11 projects/pciehp/contrib/ipfilter/test/expected/n12 projects/pciehp/contrib/ipfilter/test/expected/n13 projects/pciehp/contrib/ipfilter/test/expected/n14 projects/pciehp/contrib/ipfilter/test/expected/n16 projects/pciehp/contrib/ipfilter/test/expected/n2 projects/pciehp/contrib/ipfilter/test/expected/n3 projects/pciehp/contrib/ipfilter/test/expected/n4 projects/pciehp/contrib/ipfilter/test/expected/n5 projects/pciehp/contrib/ipfilter/test/expected/n6 projects/pciehp/contrib/ipfilter/test/expected/n7 projects/pciehp/contrib/ipfilter/test/expected/n8 projects/pciehp/contrib/ipfilter/test/expected/n9 projects/pciehp/contrib/ipfilter/test/expected/ni10 projects/pciehp/contrib/ipfilter/test/expected/ni11 projects/pciehp/contrib/ipfilter/test/expected/ni12 projects/pciehp/contrib/ipfilter/test/expected/ni19 projects/pciehp/contrib/ipfilter/test/expected/ni2 projects/pciehp/contrib/ipfilter/test/expected/ni20 projects/pciehp/contrib/ipfilter/test/expected/ni21 projects/pciehp/contrib/ipfilter/test/expected/ni23 projects/pciehp/contrib/ipfilter/test/expected/ni4 projects/pciehp/contrib/ipfilter/test/expected/ni5 projects/pciehp/contrib/ipfilter/test/expected/ni6 projects/pciehp/contrib/ipfilter/test/expected/ni8 projects/pciehp/contrib/ipfilter/test/expected/p1 projects/pciehp/contrib/ipfilter/test/expected/p2 projects/pciehp/contrib/ipfilter/test/expected/p3 projects/pciehp/contrib/ipfilter/test/expected/p5 projects/pciehp/contrib/ipfilter/test/input/f13 projects/pciehp/contrib/ipfilter/test/input/f24 projects/pciehp/contrib/ipfilter/test/input/ipv6.1 projects/pciehp/contrib/ipfilter/test/input/ipv6.3 projects/pciehp/contrib/ipfilter/test/input/ipv6.6 projects/pciehp/contrib/ipfilter/test/input/n10 projects/pciehp/contrib/ipfilter/test/input/n12 projects/pciehp/contrib/ipfilter/test/input/n16 projects/pciehp/contrib/ipfilter/test/input/n8 projects/pciehp/contrib/ipfilter/test/input/n9 projects/pciehp/contrib/ipfilter/test/input/ni1 projects/pciehp/contrib/ipfilter/test/input/ni10 projects/pciehp/contrib/ipfilter/test/input/ni11 projects/pciehp/contrib/ipfilter/test/input/ni12 projects/pciehp/contrib/ipfilter/test/input/ni13 projects/pciehp/contrib/ipfilter/test/input/ni14 projects/pciehp/contrib/ipfilter/test/input/ni15 projects/pciehp/contrib/ipfilter/test/input/ni16 projects/pciehp/contrib/ipfilter/test/input/ni19 projects/pciehp/contrib/ipfilter/test/input/ni2 projects/pciehp/contrib/ipfilter/test/input/ni20 projects/pciehp/contrib/ipfilter/test/input/ni3 projects/pciehp/contrib/ipfilter/test/input/ni4 projects/pciehp/contrib/ipfilter/test/input/ni5 projects/pciehp/contrib/ipfilter/test/input/ni7 projects/pciehp/contrib/ipfilter/test/input/ni8 projects/pciehp/contrib/ipfilter/test/input/ni9 projects/pciehp/contrib/ipfilter/test/intest projects/pciehp/contrib/ipfilter/test/iptest projects/pciehp/contrib/ipfilter/test/itest projects/pciehp/contrib/ipfilter/test/logtest projects/pciehp/contrib/ipfilter/test/mtest projects/pciehp/contrib/ipfilter/test/natipftest projects/pciehp/contrib/ipfilter/test/nattest projects/pciehp/contrib/ipfilter/test/ptest projects/pciehp/contrib/ipfilter/test/regress/f13 projects/pciehp/contrib/ipfilter/test/regress/i11 projects/pciehp/contrib/ipfilter/test/regress/i12 projects/pciehp/contrib/ipfilter/test/regress/i14 projects/pciehp/contrib/ipfilter/test/regress/i17 projects/pciehp/contrib/ipfilter/test/regress/i18 projects/pciehp/contrib/ipfilter/test/regress/i2 projects/pciehp/contrib/ipfilter/test/regress/i21 projects/pciehp/contrib/ipfilter/test/regress/i7 projects/pciehp/contrib/ipfilter/test/regress/i8 projects/pciehp/contrib/ipfilter/test/regress/in2 projects/pciehp/contrib/ipfilter/test/regress/ipv6.5 projects/pciehp/contrib/ipfilter/test/regress/ipv6.6 projects/pciehp/contrib/ipfilter/test/regress/ni13.nat projects/pciehp/contrib/ipfilter/test/regress/ni14.nat projects/pciehp/contrib/ipfilter/test/regress/p1.pool projects/pciehp/contrib/ipfilter/test/regress/p3.ipf projects/pciehp/contrib/ipfilter/test/test.format projects/pciehp/contrib/ipfilter/test/vfycksum.pl projects/pciehp/contrib/ipfilter/todo projects/pciehp/contrib/ipfilter/tools/BNF.ipf projects/pciehp/contrib/ipfilter/tools/Makefile projects/pciehp/contrib/ipfilter/tools/ipf.c projects/pciehp/contrib/ipfilter/tools/ipf_y.y projects/pciehp/contrib/ipfilter/tools/ipfcomp.c projects/pciehp/contrib/ipfilter/tools/ipfs.c projects/pciehp/contrib/ipfilter/tools/ipfstat.c projects/pciehp/contrib/ipfilter/tools/ipftest.c projects/pciehp/contrib/ipfilter/tools/ipmon.c projects/pciehp/contrib/ipfilter/tools/ipmon_y.y projects/pciehp/contrib/ipfilter/tools/ipnat.c projects/pciehp/contrib/ipfilter/tools/ipnat_y.y projects/pciehp/contrib/ipfilter/tools/ippool.c projects/pciehp/contrib/ipfilter/tools/ippool_y.y projects/pciehp/contrib/ipfilter/tools/ipscan_y.y projects/pciehp/contrib/ipfilter/tools/ipsyncm.c projects/pciehp/contrib/ipfilter/tools/ipsyncs.c projects/pciehp/contrib/ipfilter/tools/lex_var.h projects/pciehp/contrib/ipfilter/tools/lexer.c projects/pciehp/contrib/ipfilter/tools/lexer.h projects/pciehp/contrib/jemalloc/ChangeLog projects/pciehp/contrib/jemalloc/FREEBSD-diffs projects/pciehp/contrib/jemalloc/VERSION projects/pciehp/contrib/jemalloc/doc/jemalloc.3 projects/pciehp/contrib/jemalloc/include/jemalloc/internal/arena.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/prof.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/quarantine.h projects/pciehp/contrib/jemalloc/include/jemalloc/internal/tcache.h projects/pciehp/contrib/jemalloc/include/jemalloc/jemalloc.h projects/pciehp/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h projects/pciehp/contrib/jemalloc/src/arena.c projects/pciehp/contrib/jemalloc/src/base.c projects/pciehp/contrib/jemalloc/src/chunk.c projects/pciehp/contrib/jemalloc/src/chunk_dss.c projects/pciehp/contrib/jemalloc/src/jemalloc.c projects/pciehp/contrib/jemalloc/src/prof.c projects/pciehp/contrib/jemalloc/src/quarantine.c projects/pciehp/contrib/jemalloc/src/tcache.c projects/pciehp/contrib/ldns/ldns/dnssec_verify.h projects/pciehp/contrib/ldns/ldns/util.h projects/pciehp/contrib/less/NEWS projects/pciehp/contrib/less/README projects/pciehp/contrib/less/cmdbuf.c projects/pciehp/contrib/less/help.c projects/pciehp/contrib/less/less.h projects/pciehp/contrib/less/less.hlp projects/pciehp/contrib/less/less.nro projects/pciehp/contrib/less/lessecho.nro projects/pciehp/contrib/less/lesskey.nro projects/pciehp/contrib/less/line.c projects/pciehp/contrib/less/option.c projects/pciehp/contrib/less/opttbl.c projects/pciehp/contrib/less/prompt.c projects/pciehp/contrib/less/screen.c projects/pciehp/contrib/less/search.c projects/pciehp/contrib/less/version.c projects/pciehp/contrib/libc++/include/__bit_reference projects/pciehp/contrib/libc++/include/__config projects/pciehp/contrib/libc++/include/__functional_base projects/pciehp/contrib/libc++/include/__hash_table projects/pciehp/contrib/libc++/include/__locale projects/pciehp/contrib/libc++/include/__split_buffer projects/pciehp/contrib/libc++/include/__std_stream projects/pciehp/contrib/libc++/include/__tree projects/pciehp/contrib/libc++/include/algorithm projects/pciehp/contrib/libc++/include/atomic projects/pciehp/contrib/libc++/include/chrono projects/pciehp/contrib/libc++/include/deque projects/pciehp/contrib/libc++/include/forward_list projects/pciehp/contrib/libc++/include/functional projects/pciehp/contrib/libc++/include/future projects/pciehp/contrib/libc++/include/istream projects/pciehp/contrib/libc++/include/iterator projects/pciehp/contrib/libc++/include/list projects/pciehp/contrib/libc++/include/locale projects/pciehp/contrib/libc++/include/map projects/pciehp/contrib/libc++/include/memory projects/pciehp/contrib/libc++/include/random projects/pciehp/contrib/libc++/include/regex projects/pciehp/contrib/libc++/include/string projects/pciehp/contrib/libc++/include/type_traits projects/pciehp/contrib/libc++/include/unordered_map projects/pciehp/contrib/libc++/include/utility projects/pciehp/contrib/libc++/include/vector projects/pciehp/contrib/libc++/src/debug.cpp projects/pciehp/contrib/libc++/src/hash.cpp projects/pciehp/contrib/libc++/src/iostream.cpp projects/pciehp/contrib/libc++/src/locale.cpp projects/pciehp/contrib/libc++/src/stdexcept.cpp projects/pciehp/contrib/libc++/src/string.cpp projects/pciehp/contrib/libc++/src/thread.cpp projects/pciehp/contrib/libcxxrt/atomic.h projects/pciehp/contrib/libcxxrt/auxhelper.cc projects/pciehp/contrib/libcxxrt/cxxabi.h projects/pciehp/contrib/libcxxrt/dwarf_eh.h projects/pciehp/contrib/libcxxrt/exception.cc projects/pciehp/contrib/libcxxrt/guard.cc projects/pciehp/contrib/libcxxrt/memory.cc projects/pciehp/contrib/libcxxrt/unwind-itanium.h projects/pciehp/contrib/libpcap/CHANGES projects/pciehp/contrib/libpcap/CREDITS projects/pciehp/contrib/libpcap/README projects/pciehp/contrib/libpcap/VERSION projects/pciehp/contrib/libpcap/bpf_image.c projects/pciehp/contrib/libpcap/config.h.in projects/pciehp/contrib/libpcap/configure projects/pciehp/contrib/libpcap/configure.in projects/pciehp/contrib/libpcap/fad-getad.c projects/pciehp/contrib/libpcap/fad-gifc.c projects/pciehp/contrib/libpcap/fad-glifc.c projects/pciehp/contrib/libpcap/fad-sita.c projects/pciehp/contrib/libpcap/gencode.c projects/pciehp/contrib/libpcap/grammar.y projects/pciehp/contrib/libpcap/nametoaddr.c projects/pciehp/contrib/libpcap/optimize.c projects/pciehp/contrib/libpcap/pcap-bpf.c projects/pciehp/contrib/libpcap/pcap-bt-linux.c projects/pciehp/contrib/libpcap/pcap-bt-linux.h projects/pciehp/contrib/libpcap/pcap-can-linux.c projects/pciehp/contrib/libpcap/pcap-can-linux.h projects/pciehp/contrib/libpcap/pcap-canusb-linux.c projects/pciehp/contrib/libpcap/pcap-canusb-linux.h projects/pciehp/contrib/libpcap/pcap-common.c projects/pciehp/contrib/libpcap/pcap-dag.c projects/pciehp/contrib/libpcap/pcap-dag.h projects/pciehp/contrib/libpcap/pcap-dlpi.c projects/pciehp/contrib/libpcap/pcap-filter.manmisc projects/pciehp/contrib/libpcap/pcap-filter.manmisc.in projects/pciehp/contrib/libpcap/pcap-int.h projects/pciehp/contrib/libpcap/pcap-libdlpi.c projects/pciehp/contrib/libpcap/pcap-linux.c projects/pciehp/contrib/libpcap/pcap-netfilter-linux.c projects/pciehp/contrib/libpcap/pcap-netfilter-linux.h projects/pciehp/contrib/libpcap/pcap-nit.c projects/pciehp/contrib/libpcap/pcap-null.c projects/pciehp/contrib/libpcap/pcap-pf.c projects/pciehp/contrib/libpcap/pcap-septel.c projects/pciehp/contrib/libpcap/pcap-septel.h projects/pciehp/contrib/libpcap/pcap-sita.c projects/pciehp/contrib/libpcap/pcap-snf.c projects/pciehp/contrib/libpcap/pcap-snf.h projects/pciehp/contrib/libpcap/pcap-snit.c projects/pciehp/contrib/libpcap/pcap-snoop.c projects/pciehp/contrib/libpcap/pcap-usb-linux.c projects/pciehp/contrib/libpcap/pcap-usb-linux.h projects/pciehp/contrib/libpcap/pcap-win32.c projects/pciehp/contrib/libpcap/pcap.c projects/pciehp/contrib/libpcap/pcap/bpf.h projects/pciehp/contrib/libpcap/pcap/pcap.h projects/pciehp/contrib/libpcap/pcap_breakloop.3pcap projects/pciehp/contrib/libpcap/pcap_loop.3pcap projects/pciehp/contrib/libpcap/pcap_offline_filter.3pcap projects/pciehp/contrib/libpcap/scanner.l projects/pciehp/contrib/libstdc++/include/c_std/std_cmath.h projects/pciehp/contrib/libstdc++/libsupc++/unwind-cxx.h projects/pciehp/contrib/llvm/include/llvm-c/Core.h projects/pciehp/contrib/llvm/include/llvm-c/ExecutionEngine.h projects/pciehp/contrib/llvm/include/llvm-c/Object.h projects/pciehp/contrib/llvm/include/llvm-c/Target.h projects/pciehp/contrib/llvm/include/llvm-c/TargetMachine.h projects/pciehp/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h projects/pciehp/contrib/llvm/include/llvm-c/Transforms/Vectorize.h projects/pciehp/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/pciehp/contrib/llvm/include/llvm/ADT/DenseMap.h projects/pciehp/contrib/llvm/include/llvm/ADT/Hashing.h projects/pciehp/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/pciehp/contrib/llvm/include/llvm/ADT/StringRef.h projects/pciehp/contrib/llvm/include/llvm/ADT/Triple.h projects/pciehp/contrib/llvm/include/llvm/ADT/Twine.h projects/pciehp/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/pciehp/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/pciehp/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/Passes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/pciehp/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/pciehp/contrib/llvm/include/llvm/DIBuilder.h projects/pciehp/contrib/llvm/include/llvm/DebugInfo.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/pciehp/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h projects/pciehp/contrib/llvm/include/llvm/IR/Argument.h projects/pciehp/contrib/llvm/include/llvm/IR/Attributes.h projects/pciehp/contrib/llvm/include/llvm/IR/BasicBlock.h projects/pciehp/contrib/llvm/include/llvm/IR/Constants.h projects/pciehp/contrib/llvm/include/llvm/IR/DataLayout.h projects/pciehp/contrib/llvm/include/llvm/IR/DerivedTypes.h projects/pciehp/contrib/llvm/include/llvm/IR/GlobalValue.h projects/pciehp/contrib/llvm/include/llvm/IR/IRBuilder.h projects/pciehp/contrib/llvm/include/llvm/IR/Intrinsics.h projects/pciehp/contrib/llvm/include/llvm/IR/IntrinsicsMips.td projects/pciehp/contrib/llvm/include/llvm/IR/IntrinsicsNVVM.td projects/pciehp/contrib/llvm/include/llvm/IR/IntrinsicsPowerPC.td projects/pciehp/contrib/llvm/include/llvm/IR/LLVMContext.h projects/pciehp/contrib/llvm/include/llvm/IR/MDBuilder.h projects/pciehp/contrib/llvm/include/llvm/IR/Module.h projects/pciehp/contrib/llvm/include/llvm/IR/Type.h projects/pciehp/contrib/llvm/include/llvm/IR/Use.h projects/pciehp/contrib/llvm/include/llvm/IR/Value.h projects/pciehp/contrib/llvm/include/llvm/InitializePasses.h projects/pciehp/contrib/llvm/include/llvm/LinkAllPasses.h projects/pciehp/contrib/llvm/include/llvm/Linker.h projects/pciehp/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCAssembler.h projects/pciehp/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCELFStreamer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCExpr.h projects/pciehp/contrib/llvm/include/llvm/MC/MCInst.h projects/pciehp/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/pciehp/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/pciehp/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/pciehp/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSection.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionCOFF.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionELF.h projects/pciehp/contrib/llvm/include/llvm/MC/MCSectionMachO.h projects/pciehp/contrib/llvm/include/llvm/MC/MCStreamer.h projects/pciehp/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/pciehp/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h projects/pciehp/contrib/llvm/include/llvm/MC/MachineLocation.h projects/pciehp/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/pciehp/contrib/llvm/include/llvm/Object/Binary.h projects/pciehp/contrib/llvm/include/llvm/Object/ELF.h projects/pciehp/contrib/llvm/include/llvm/Object/MachO.h projects/pciehp/contrib/llvm/include/llvm/Object/ObjectFile.h projects/pciehp/contrib/llvm/include/llvm/Object/RelocVisitor.h projects/pciehp/contrib/llvm/include/llvm/PassManager.h projects/pciehp/contrib/llvm/include/llvm/PassRegistry.h projects/pciehp/contrib/llvm/include/llvm/Support/CodeGen.h projects/pciehp/contrib/llvm/include/llvm/Support/CommandLine.h projects/pciehp/contrib/llvm/include/llvm/Support/ELF.h projects/pciehp/contrib/llvm/include/llvm/Support/Endian.h projects/pciehp/contrib/llvm/include/llvm/Support/Host.h projects/pciehp/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/pciehp/contrib/llvm/include/llvm/Support/PatternMatch.h projects/pciehp/contrib/llvm/include/llvm/Support/Program.h projects/pciehp/contrib/llvm/include/llvm/Support/SourceMgr.h projects/pciehp/contrib/llvm/include/llvm/Target/Target.td projects/pciehp/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetLowering.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetMachine.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetOptions.h projects/pciehp/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/pciehp/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/pciehp/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/pciehp/contrib/llvm/lib/Analysis/Analysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/pciehp/contrib/llvm/lib/Analysis/IPA/IPA.cpp projects/pciehp/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/pciehp/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/pciehp/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/pciehp/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/pciehp/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/pciehp/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLParser.cpp projects/pciehp/contrib/llvm/lib/AsmParser/LLToken.h projects/pciehp/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp projects/pciehp/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/pciehp/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/Analysis.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/pciehp/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/pciehp/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/pciehp/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/pciehp/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/pciehp/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/pciehp/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/pciehp/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/pciehp/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/pciehp/contrib/llvm/lib/CodeGen/Passes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/pciehp/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/pciehp/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/pciehp/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TargetSchedule.cpp projects/pciehp/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/pciehp/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/pciehp/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/pciehp/contrib/llvm/lib/IR/AsmWriter.cpp projects/pciehp/contrib/llvm/lib/IR/AttributeImpl.h projects/pciehp/contrib/llvm/lib/IR/Attributes.cpp projects/pciehp/contrib/llvm/lib/IR/Constants.cpp projects/pciehp/contrib/llvm/lib/IR/ConstantsContext.h projects/pciehp/contrib/llvm/lib/IR/Core.cpp projects/pciehp/contrib/llvm/lib/IR/DIBuilder.cpp projects/pciehp/contrib/llvm/lib/IR/DataLayout.cpp projects/pciehp/contrib/llvm/lib/IR/DebugInfo.cpp projects/pciehp/contrib/llvm/lib/IR/Function.cpp projects/pciehp/contrib/llvm/lib/IR/Metadata.cpp projects/pciehp/contrib/llvm/lib/IR/PassManager.cpp projects/pciehp/contrib/llvm/lib/IR/Type.cpp projects/pciehp/contrib/llvm/lib/IR/Value.cpp projects/pciehp/contrib/llvm/lib/IR/Verifier.cpp projects/pciehp/contrib/llvm/lib/Linker/LinkModules.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/pciehp/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCAssembler.cpp projects/pciehp/contrib/llvm/lib/MC/MCDwarf.cpp projects/pciehp/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCExpr.cpp projects/pciehp/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/pciehp/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/pciehp/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/pciehp/contrib/llvm/lib/MC/MCPureStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/MCSectionCOFF.cpp projects/pciehp/contrib/llvm/lib/MC/MCSectionELF.cpp projects/pciehp/contrib/llvm/lib/MC/MCSectionMachO.cpp projects/pciehp/contrib/llvm/lib/MC/MCStreamer.cpp projects/pciehp/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/pciehp/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/pciehp/contrib/llvm/lib/Object/Object.cpp projects/pciehp/contrib/llvm/lib/Object/ObjectFile.cpp projects/pciehp/contrib/llvm/lib/Support/CommandLine.cpp projects/pciehp/contrib/llvm/lib/Support/DataExtractor.cpp projects/pciehp/contrib/llvm/lib/Support/FoldingSet.cpp projects/pciehp/contrib/llvm/lib/Support/Host.cpp projects/pciehp/contrib/llvm/lib/Support/LockFileManager.cpp projects/pciehp/contrib/llvm/lib/Support/PathV2.cpp projects/pciehp/contrib/llvm/lib/Support/Triple.cpp projects/pciehp/contrib/llvm/lib/Support/Unix/Memory.inc projects/pciehp/contrib/llvm/lib/Support/Unix/PathV2.inc projects/pciehp/contrib/llvm/lib/Support/Unix/Program.inc projects/pciehp/contrib/llvm/lib/Support/Unix/Signals.inc projects/pciehp/contrib/llvm/lib/Support/Windows/Program.inc projects/pciehp/contrib/llvm/lib/Support/Windows/Signals.inc projects/pciehp/contrib/llvm/lib/Support/YAMLParser.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64ISelLowering.h projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64InstrFormats.td projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h projects/pciehp/contrib/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp projects/pciehp/contrib/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARM.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMCallingConv.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/pciehp/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/pciehp/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOp.h projects/pciehp/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/Hexagon.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/Hexagon.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mangler.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/pciehp/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTX.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPC.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPC.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/pciehp/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPU.h projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUAsmPrinter.h projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUCallingConv.td projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUISelLowering.h projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUInstructions.td projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUMachineFunction.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUSubtarget.h projects/pciehp/contrib/llvm/lib/Target/R600/AMDGPUTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDILBase.td projects/pciehp/contrib/llvm/lib/Target/R600/AMDILDeviceInfo.cpp projects/pciehp/contrib/llvm/lib/Target/R600/AMDILISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/R600/InstPrinter/AMDGPUInstPrinter.h projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUAsmBackend.cpp projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCAsmInfo.cpp projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/AMDGPUMCTargetDesc.h projects/pciehp/contrib/llvm/lib/Target/R600/MCTargetDesc/R600MCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/R600/Processors.td projects/pciehp/contrib/llvm/lib/Target/R600/R600ControlFlowFinalizer.cpp projects/pciehp/contrib/llvm/lib/Target/R600/R600Defines.h projects/pciehp/contrib/llvm/lib/Target/R600/R600ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/R600/R600InstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/R600/R600InstrInfo.h projects/pciehp/contrib/llvm/lib/Target/R600/R600Instructions.td projects/pciehp/contrib/llvm/lib/Target/R600/R600MachineFunctionInfo.h projects/pciehp/contrib/llvm/lib/Target/R600/R600RegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/R600/R600Schedule.td projects/pciehp/contrib/llvm/lib/Target/R600/SIISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/R600/SIISelLowering.h projects/pciehp/contrib/llvm/lib/Target/R600/SIInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/R600/SIInstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/R600/SIInstrInfo.h projects/pciehp/contrib/llvm/lib/Target/R600/SIInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/R600/SIInstructions.td projects/pciehp/contrib/llvm/lib/Target/R600/SIIntrinsics.td projects/pciehp/contrib/llvm/lib/Target/R600/SIRegisterInfo.td projects/pciehp/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/pciehp/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h projects/pciehp/contrib/llvm/lib/Target/Target.cpp projects/pciehp/contrib/llvm/lib/Target/TargetMachineC.cpp projects/pciehp/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86.h projects/pciehp/contrib/llvm/lib/Target/X86/X86.td projects/pciehp/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/pciehp/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/pciehp/contrib/llvm/lib/Target/X86/X86SchedHaswell.td projects/pciehp/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td projects/pciehp/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/pciehp/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCore.h projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/pciehp/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/pciehp/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/pciehp/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp projects/pciehp/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/pciehp/contrib/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp projects/pciehp/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp projects/pciehp/contrib/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/SROA.cpp projects/pciehp/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/Utils.cpp projects/pciehp/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp projects/pciehp/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp projects/pciehp/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/pciehp/contrib/llvm/tools/clang/include/clang-c/Index.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/pciehp/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def projects/pciehp/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/pciehp/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Format/Format.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/pciehp/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/pciehp/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/pciehp/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/pciehp/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/Format.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/TokenAnnotator.h projects/pciehp/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Format/UnwrappedLineParser.h projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Headers/avxintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/cpuid.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/stddef.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/stdint.h projects/pciehp/contrib/llvm/tools/clang/lib/Headers/xopintrin.h projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/Frontend/FixItRewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/pciehp/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/pciehp/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/pciehp/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/pciehp/contrib/llvm/tools/llc/llc.cpp projects/pciehp/contrib/llvm/tools/llvm-as/llvm-as.cpp projects/pciehp/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/pciehp/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/pciehp/contrib/llvm/tools/llvm-link/llvm-link.cpp projects/pciehp/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/pciehp/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/pciehp/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/pciehp/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp projects/pciehp/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp projects/pciehp/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp projects/pciehp/contrib/llvm/tools/llvm-readobj/MachODumper.cpp projects/pciehp/contrib/llvm/tools/llvm-readobj/ObjDumper.h projects/pciehp/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp projects/pciehp/contrib/llvm/tools/llvm-readobj/llvm-readobj.h projects/pciehp/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/pciehp/contrib/llvm/tools/macho-dump/macho-dump.cpp projects/pciehp/contrib/llvm/tools/opt/opt.cpp projects/pciehp/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/pciehp/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/pciehp/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/pciehp/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/pciehp/contrib/nvi/LICENSE projects/pciehp/contrib/nvi/README projects/pciehp/contrib/nvi/catalog/Makefile projects/pciehp/contrib/nvi/catalog/README projects/pciehp/contrib/nvi/catalog/dump.c projects/pciehp/contrib/nvi/catalog/dutch.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/french.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/german.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/german.owner projects/pciehp/contrib/nvi/catalog/polish.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/ru_RU.KOI8-R.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/ru_RU.KOI8-R.owner projects/pciehp/contrib/nvi/catalog/spanish.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/swedish.base (contents, props changed) projects/pciehp/contrib/nvi/catalog/uk_UA.KOI8-U.base (contents, props changed) projects/pciehp/contrib/nvi/cl/README.signal projects/pciehp/contrib/nvi/cl/cl.h projects/pciehp/contrib/nvi/cl/cl_funcs.c projects/pciehp/contrib/nvi/cl/cl_main.c projects/pciehp/contrib/nvi/cl/cl_read.c projects/pciehp/contrib/nvi/cl/cl_screen.c projects/pciehp/contrib/nvi/cl/cl_term.c projects/pciehp/contrib/nvi/common/args.h projects/pciehp/contrib/nvi/common/common.h projects/pciehp/contrib/nvi/common/cut.c projects/pciehp/contrib/nvi/common/cut.h projects/pciehp/contrib/nvi/common/delete.c projects/pciehp/contrib/nvi/common/exf.c projects/pciehp/contrib/nvi/common/exf.h projects/pciehp/contrib/nvi/common/gs.h projects/pciehp/contrib/nvi/common/key.c projects/pciehp/contrib/nvi/common/key.h projects/pciehp/contrib/nvi/common/line.c projects/pciehp/contrib/nvi/common/log.c projects/pciehp/contrib/nvi/common/main.c projects/pciehp/contrib/nvi/common/mark.c projects/pciehp/contrib/nvi/common/mark.h projects/pciehp/contrib/nvi/common/mem.h projects/pciehp/contrib/nvi/common/msg.c projects/pciehp/contrib/nvi/common/msg.h projects/pciehp/contrib/nvi/common/options.c projects/pciehp/contrib/nvi/common/options.h projects/pciehp/contrib/nvi/common/options_f.c projects/pciehp/contrib/nvi/common/put.c projects/pciehp/contrib/nvi/common/recover.c projects/pciehp/contrib/nvi/common/screen.c projects/pciehp/contrib/nvi/common/screen.h projects/pciehp/contrib/nvi/common/search.c projects/pciehp/contrib/nvi/common/seq.c projects/pciehp/contrib/nvi/common/seq.h projects/pciehp/contrib/nvi/common/util.c projects/pciehp/contrib/nvi/common/util.h projects/pciehp/contrib/nvi/docs/USD.doc/vi.man/vi.1 projects/pciehp/contrib/nvi/ex/ex.c projects/pciehp/contrib/nvi/ex/ex.h projects/pciehp/contrib/nvi/ex/ex_abbrev.c projects/pciehp/contrib/nvi/ex/ex_append.c projects/pciehp/contrib/nvi/ex/ex_args.c projects/pciehp/contrib/nvi/ex/ex_argv.c projects/pciehp/contrib/nvi/ex/ex_at.c projects/pciehp/contrib/nvi/ex/ex_bang.c projects/pciehp/contrib/nvi/ex/ex_cd.c projects/pciehp/contrib/nvi/ex/ex_cmd.c projects/pciehp/contrib/nvi/ex/ex_cscope.c projects/pciehp/contrib/nvi/ex/ex_delete.c projects/pciehp/contrib/nvi/ex/ex_display.c projects/pciehp/contrib/nvi/ex/ex_edit.c projects/pciehp/contrib/nvi/ex/ex_equal.c projects/pciehp/contrib/nvi/ex/ex_file.c projects/pciehp/contrib/nvi/ex/ex_filter.c projects/pciehp/contrib/nvi/ex/ex_global.c projects/pciehp/contrib/nvi/ex/ex_init.c projects/pciehp/contrib/nvi/ex/ex_join.c projects/pciehp/contrib/nvi/ex/ex_map.c projects/pciehp/contrib/nvi/ex/ex_mark.c projects/pciehp/contrib/nvi/ex/ex_mkexrc.c projects/pciehp/contrib/nvi/ex/ex_move.c projects/pciehp/contrib/nvi/ex/ex_open.c projects/pciehp/contrib/nvi/ex/ex_preserve.c projects/pciehp/contrib/nvi/ex/ex_print.c projects/pciehp/contrib/nvi/ex/ex_put.c projects/pciehp/contrib/nvi/ex/ex_quit.c projects/pciehp/contrib/nvi/ex/ex_read.c projects/pciehp/contrib/nvi/ex/ex_screen.c projects/pciehp/contrib/nvi/ex/ex_script.c projects/pciehp/contrib/nvi/ex/ex_set.c projects/pciehp/contrib/nvi/ex/ex_shell.c projects/pciehp/contrib/nvi/ex/ex_shift.c projects/pciehp/contrib/nvi/ex/ex_source.c projects/pciehp/contrib/nvi/ex/ex_stop.c projects/pciehp/contrib/nvi/ex/ex_subst.c projects/pciehp/contrib/nvi/ex/ex_tag.c projects/pciehp/contrib/nvi/ex/ex_txt.c projects/pciehp/contrib/nvi/ex/ex_undo.c projects/pciehp/contrib/nvi/ex/ex_usage.c projects/pciehp/contrib/nvi/ex/ex_util.c projects/pciehp/contrib/nvi/ex/ex_version.c projects/pciehp/contrib/nvi/ex/ex_visual.c projects/pciehp/contrib/nvi/ex/ex_write.c projects/pciehp/contrib/nvi/ex/ex_yank.c projects/pciehp/contrib/nvi/ex/ex_z.c projects/pciehp/contrib/nvi/ex/script.h projects/pciehp/contrib/nvi/ex/tag.h projects/pciehp/contrib/nvi/ex/version.h projects/pciehp/contrib/nvi/vi/getc.c projects/pciehp/contrib/nvi/vi/v_at.c projects/pciehp/contrib/nvi/vi/v_ch.c projects/pciehp/contrib/nvi/vi/v_cmd.c projects/pciehp/contrib/nvi/vi/v_delete.c projects/pciehp/contrib/nvi/vi/v_ex.c projects/pciehp/contrib/nvi/vi/v_increment.c projects/pciehp/contrib/nvi/vi/v_init.c projects/pciehp/contrib/nvi/vi/v_itxt.c projects/pciehp/contrib/nvi/vi/v_left.c projects/pciehp/contrib/nvi/vi/v_mark.c projects/pciehp/contrib/nvi/vi/v_match.c projects/pciehp/contrib/nvi/vi/v_paragraph.c projects/pciehp/contrib/nvi/vi/v_put.c projects/pciehp/contrib/nvi/vi/v_redraw.c projects/pciehp/contrib/nvi/vi/v_replace.c projects/pciehp/contrib/nvi/vi/v_right.c projects/pciehp/contrib/nvi/vi/v_screen.c projects/pciehp/contrib/nvi/vi/v_scroll.c projects/pciehp/contrib/nvi/vi/v_search.c projects/pciehp/contrib/nvi/vi/v_section.c projects/pciehp/contrib/nvi/vi/v_sentence.c projects/pciehp/contrib/nvi/vi/v_status.c projects/pciehp/contrib/nvi/vi/v_txt.c projects/pciehp/contrib/nvi/vi/v_ulcase.c projects/pciehp/contrib/nvi/vi/v_undo.c projects/pciehp/contrib/nvi/vi/v_util.c projects/pciehp/contrib/nvi/vi/v_word.c projects/pciehp/contrib/nvi/vi/v_xchar.c projects/pciehp/contrib/nvi/vi/v_yank.c projects/pciehp/contrib/nvi/vi/v_z.c projects/pciehp/contrib/nvi/vi/v_zexit.c projects/pciehp/contrib/nvi/vi/vi.c projects/pciehp/contrib/nvi/vi/vi.h projects/pciehp/contrib/nvi/vi/vs_line.c projects/pciehp/contrib/nvi/vi/vs_msg.c projects/pciehp/contrib/nvi/vi/vs_refresh.c projects/pciehp/contrib/nvi/vi/vs_relative.c projects/pciehp/contrib/nvi/vi/vs_smap.c projects/pciehp/contrib/nvi/vi/vs_split.c projects/pciehp/contrib/ofed/libsdp/src/linux/sdp_inet.h projects/pciehp/contrib/ofed/management/infiniband-diags/src/sminfo.c projects/pciehp/contrib/ofed/management/opensm/opensm/osm_console.c projects/pciehp/contrib/ofed/management/opensm/opensm/osm_subnet.c projects/pciehp/contrib/openbsm/bin/auditdistd/token.l projects/pciehp/contrib/openpam/CREDITS projects/pciehp/contrib/openpam/HISTORY projects/pciehp/contrib/openpam/INSTALL projects/pciehp/contrib/openpam/LICENSE projects/pciehp/contrib/openpam/Makefile.am projects/pciehp/contrib/openpam/Makefile.in projects/pciehp/contrib/openpam/README projects/pciehp/contrib/openpam/RELNOTES projects/pciehp/contrib/openpam/TODO projects/pciehp/contrib/openpam/aclocal.m4 projects/pciehp/contrib/openpam/autogen.sh projects/pciehp/contrib/openpam/bin/Makefile.am projects/pciehp/contrib/openpam/bin/Makefile.in projects/pciehp/contrib/openpam/bin/openpam_dump_policy/Makefile.am projects/pciehp/contrib/openpam/bin/openpam_dump_policy/Makefile.in projects/pciehp/contrib/openpam/bin/openpam_dump_policy/openpam_dump_policy.c projects/pciehp/contrib/openpam/bin/pamtest/Makefile.am projects/pciehp/contrib/openpam/bin/pamtest/Makefile.in projects/pciehp/contrib/openpam/bin/pamtest/pamtest.1 projects/pciehp/contrib/openpam/bin/pamtest/pamtest.c projects/pciehp/contrib/openpam/bin/su/Makefile.am projects/pciehp/contrib/openpam/bin/su/Makefile.in projects/pciehp/contrib/openpam/bin/su/su.1 projects/pciehp/contrib/openpam/bin/su/su.c projects/pciehp/contrib/openpam/compile projects/pciehp/contrib/openpam/config.guess projects/pciehp/contrib/openpam/config.h.in projects/pciehp/contrib/openpam/config.sub projects/pciehp/contrib/openpam/configure projects/pciehp/contrib/openpam/configure.ac projects/pciehp/contrib/openpam/depcomp projects/pciehp/contrib/openpam/doc/Makefile.am projects/pciehp/contrib/openpam/doc/Makefile.in projects/pciehp/contrib/openpam/doc/man/Makefile.am projects/pciehp/contrib/openpam/doc/man/Makefile.in projects/pciehp/contrib/openpam/doc/man/openpam.3 projects/pciehp/contrib/openpam/doc/man/openpam.man projects/pciehp/contrib/openpam/doc/man/openpam_borrow_cred.3 projects/pciehp/contrib/openpam/doc/man/openpam_free_data.3 projects/pciehp/contrib/openpam/doc/man/openpam_free_envlist.3 projects/pciehp/contrib/openpam/doc/man/openpam_get_feature.3 projects/pciehp/contrib/openpam/doc/man/openpam_get_option.3 projects/pciehp/contrib/openpam/doc/man/openpam_log.3 projects/pciehp/contrib/openpam/doc/man/openpam_nullconv.3 projects/pciehp/contrib/openpam/doc/man/openpam_readline.3 projects/pciehp/contrib/openpam/doc/man/openpam_readlinev.3 projects/pciehp/contrib/openpam/doc/man/openpam_readword.3 projects/pciehp/contrib/openpam/doc/man/openpam_restore_cred.3 projects/pciehp/contrib/openpam/doc/man/openpam_set_feature.3 projects/pciehp/contrib/openpam/doc/man/openpam_set_option.3 projects/pciehp/contrib/openpam/doc/man/openpam_straddch.3 projects/pciehp/contrib/openpam/doc/man/openpam_subst.3 projects/pciehp/contrib/openpam/doc/man/openpam_ttyconv.3 projects/pciehp/contrib/openpam/doc/man/pam.3 projects/pciehp/contrib/openpam/doc/man/pam.conf.5 projects/pciehp/contrib/openpam/doc/man/pam.man projects/pciehp/contrib/openpam/doc/man/pam_acct_mgmt.3 projects/pciehp/contrib/openpam/doc/man/pam_authenticate.3 projects/pciehp/contrib/openpam/doc/man/pam_chauthtok.3 projects/pciehp/contrib/openpam/doc/man/pam_close_session.3 projects/pciehp/contrib/openpam/doc/man/pam_conv.3 projects/pciehp/contrib/openpam/doc/man/pam_end.3 projects/pciehp/contrib/openpam/doc/man/pam_error.3 projects/pciehp/contrib/openpam/doc/man/pam_get_authtok.3 projects/pciehp/contrib/openpam/doc/man/pam_get_data.3 projects/pciehp/contrib/openpam/doc/man/pam_get_item.3 projects/pciehp/contrib/openpam/doc/man/pam_get_user.3 projects/pciehp/contrib/openpam/doc/man/pam_getenv.3 projects/pciehp/contrib/openpam/doc/man/pam_getenvlist.3 projects/pciehp/contrib/openpam/doc/man/pam_info.3 projects/pciehp/contrib/openpam/doc/man/pam_open_session.3 projects/pciehp/contrib/openpam/doc/man/pam_prompt.3 projects/pciehp/contrib/openpam/doc/man/pam_putenv.3 projects/pciehp/contrib/openpam/doc/man/pam_set_data.3 projects/pciehp/contrib/openpam/doc/man/pam_set_item.3 projects/pciehp/contrib/openpam/doc/man/pam_setcred.3 projects/pciehp/contrib/openpam/doc/man/pam_setenv.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_authenticate.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_chauthtok.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_close_session.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_open_session.3 projects/pciehp/contrib/openpam/doc/man/pam_sm_setcred.3 projects/pciehp/contrib/openpam/doc/man/pam_start.3 projects/pciehp/contrib/openpam/doc/man/pam_strerror.3 projects/pciehp/contrib/openpam/doc/man/pam_verror.3 projects/pciehp/contrib/openpam/doc/man/pam_vinfo.3 projects/pciehp/contrib/openpam/doc/man/pam_vprompt.3 projects/pciehp/contrib/openpam/include/Makefile.am projects/pciehp/contrib/openpam/include/Makefile.in projects/pciehp/contrib/openpam/include/security/Makefile.am projects/pciehp/contrib/openpam/include/security/Makefile.in projects/pciehp/contrib/openpam/include/security/openpam.h projects/pciehp/contrib/openpam/include/security/openpam_attr.h projects/pciehp/contrib/openpam/include/security/openpam_version.h projects/pciehp/contrib/openpam/include/security/pam_appl.h projects/pciehp/contrib/openpam/include/security/pam_constants.h projects/pciehp/contrib/openpam/include/security/pam_modules.h projects/pciehp/contrib/openpam/include/security/pam_types.h projects/pciehp/contrib/openpam/install-sh projects/pciehp/contrib/openpam/misc/gendoc.pl projects/pciehp/contrib/openpam/missing projects/pciehp/contrib/openpam/modules/Makefile.am projects/pciehp/contrib/openpam/modules/Makefile.in projects/pciehp/contrib/openpam/modules/pam_deny/Makefile.am projects/pciehp/contrib/openpam/modules/pam_deny/Makefile.in projects/pciehp/contrib/openpam/modules/pam_deny/pam_deny.c projects/pciehp/contrib/openpam/modules/pam_permit/Makefile.am projects/pciehp/contrib/openpam/modules/pam_permit/Makefile.in projects/pciehp/contrib/openpam/modules/pam_permit/pam_permit.c projects/pciehp/contrib/openpam/modules/pam_unix/Makefile.am projects/pciehp/contrib/openpam/modules/pam_unix/Makefile.in projects/pciehp/contrib/openpam/modules/pam_unix/pam_unix.c projects/pciehp/contrib/openpam/pamgdb.in projects/pciehp/contrib/openpam/t/Makefile.am projects/pciehp/contrib/openpam/t/Makefile.in projects/pciehp/contrib/openpam/t/t.h projects/pciehp/contrib/openpam/t/t_main.c projects/pciehp/contrib/openpam/t/t_openpam_readlinev.c projects/pciehp/contrib/openpam/t/t_openpam_readword.c projects/pciehp/contrib/pam_modules/pam_passwdqc/pam_passwdqc.c projects/pciehp/contrib/sendmail/include/sm/os/sm_os_freebsd.h projects/pciehp/contrib/tcpdump/CHANGES projects/pciehp/contrib/tcpdump/CREDITS projects/pciehp/contrib/tcpdump/Makefile.in projects/pciehp/contrib/tcpdump/README projects/pciehp/contrib/tcpdump/VERSION projects/pciehp/contrib/tcpdump/addrtoname.c projects/pciehp/contrib/tcpdump/checksum.c projects/pciehp/contrib/tcpdump/configure projects/pciehp/contrib/tcpdump/configure.in projects/pciehp/contrib/tcpdump/ethertype.h projects/pciehp/contrib/tcpdump/icmp6.h projects/pciehp/contrib/tcpdump/interface.h projects/pciehp/contrib/tcpdump/netdissect.h projects/pciehp/contrib/tcpdump/nlpid.c projects/pciehp/contrib/tcpdump/nlpid.h projects/pciehp/contrib/tcpdump/print-802_11.c projects/pciehp/contrib/tcpdump/print-babel.c projects/pciehp/contrib/tcpdump/print-bgp.c projects/pciehp/contrib/tcpdump/print-dhcp6.c projects/pciehp/contrib/tcpdump/print-domain.c projects/pciehp/contrib/tcpdump/print-ether.c projects/pciehp/contrib/tcpdump/print-icmp6.c projects/pciehp/contrib/tcpdump/print-isoclns.c projects/pciehp/contrib/tcpdump/print-lldp.c projects/pciehp/contrib/tcpdump/print-ntp.c projects/pciehp/contrib/tcpdump/print-pppoe.c projects/pciehp/contrib/tcpdump/print-rip.c projects/pciehp/contrib/tcpdump/print-rpki-rtr.c projects/pciehp/contrib/tcpdump/print-stp.c projects/pciehp/contrib/tcpdump/print-tcp.c projects/pciehp/contrib/tcpdump/print-udp.c projects/pciehp/contrib/tcpdump/tcp.h projects/pciehp/contrib/tcpdump/tcpdump.1.in projects/pciehp/contrib/tcpdump/tcpdump.c projects/pciehp/contrib/tcpdump/udp.h projects/pciehp/contrib/telnet/telnetd/sys_term.c projects/pciehp/contrib/tzdata/africa projects/pciehp/contrib/tzdata/asia projects/pciehp/contrib/tzdata/australasia projects/pciehp/contrib/tzdata/europe projects/pciehp/contrib/tzdata/southamerica projects/pciehp/contrib/tzdata/zone.tab projects/pciehp/contrib/unbound/configure projects/pciehp/contrib/unbound/configure.ac projects/pciehp/contrib/unbound/daemon/cachedump.c projects/pciehp/contrib/unbound/daemon/remote.c projects/pciehp/contrib/unbound/daemon/remote.h projects/pciehp/contrib/unbound/daemon/unbound.c projects/pciehp/contrib/unbound/daemon/worker.c projects/pciehp/contrib/unbound/daemon/worker.h projects/pciehp/contrib/unbound/libunbound/context.c projects/pciehp/contrib/unbound/libunbound/context.h projects/pciehp/contrib/unbound/libunbound/libunbound.c projects/pciehp/contrib/unbound/libunbound/libworker.c projects/pciehp/contrib/unbound/libunbound/libworker.h projects/pciehp/contrib/unbound/libunbound/unbound.h projects/pciehp/contrib/unbound/smallapp/unbound-anchor.c projects/pciehp/contrib/unbound/smallapp/unbound-control-setup.sh projects/pciehp/contrib/unbound/smallapp/worker_cb.c projects/pciehp/contrib/unbound/util/config_file.c projects/pciehp/contrib/unbound/util/config_file.h projects/pciehp/contrib/unbound/util/configlexer.c projects/pciehp/contrib/unbound/util/configparser.c projects/pciehp/contrib/unbound/util/fptr_wlist.c projects/pciehp/contrib/wpa/COPYING projects/pciehp/contrib/wpa/README projects/pciehp/contrib/wpa/hostapd/ChangeLog projects/pciehp/contrib/wpa/hostapd/README projects/pciehp/contrib/wpa/hostapd/README-WPS projects/pciehp/contrib/wpa/hostapd/config_file.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/config_file.h (contents, props changed) projects/pciehp/contrib/wpa/hostapd/ctrl_iface.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/ctrl_iface.h (contents, props changed) projects/pciehp/contrib/wpa/hostapd/defconfig projects/pciehp/contrib/wpa/hostapd/dump_state.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/dump_state.h (contents, props changed) projects/pciehp/contrib/wpa/hostapd/eap_register.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/eap_register.h (contents, props changed) projects/pciehp/contrib/wpa/hostapd/hlr_auc_gw.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/hostapd.conf (contents, props changed) projects/pciehp/contrib/wpa/hostapd/hostapd.eap_user projects/pciehp/contrib/wpa/hostapd/hostapd_cli.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/main.c (contents, props changed) projects/pciehp/contrib/wpa/hostapd/nt_password_hash.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/accounting.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/accounting.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_config.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_config.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_drv_ops.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_drv_ops.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_list.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_list.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_mlme.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ap_mlme.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/authsrv.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/authsrv.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/beacon.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/beacon.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ctrl_iface_ap.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ctrl_iface_ap.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/drv_callbacks.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/hostapd.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/hostapd.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/hw_features.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/hw_features.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/iapp.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/iapp.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_11.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_11.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_11_auth.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_11_auth.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_11_ht.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_1x.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/ieee802_1x.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/peerkey_auth.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/pmksa_cache_auth.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/pmksa_cache_auth.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/preauth_auth.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/preauth_auth.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/sta_info.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/sta_info.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/tkip_countermeasures.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/tkip_countermeasures.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/utils.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/vlan_init.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wmm.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_ft.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_glue.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_glue.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_ie.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wpa_auth_ie.h (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wps_hostapd.c (contents, props changed) projects/pciehp/contrib/wpa/src/ap/wps_hostapd.h (contents, props changed) projects/pciehp/contrib/wpa/src/common/defs.h projects/pciehp/contrib/wpa/src/common/eapol_common.h projects/pciehp/contrib/wpa/src/common/ieee802_11_common.c projects/pciehp/contrib/wpa/src/common/ieee802_11_common.h projects/pciehp/contrib/wpa/src/common/ieee802_11_defs.h projects/pciehp/contrib/wpa/src/common/privsep_commands.h projects/pciehp/contrib/wpa/src/common/version.h projects/pciehp/contrib/wpa/src/common/wpa_common.c projects/pciehp/contrib/wpa/src/common/wpa_common.h projects/pciehp/contrib/wpa/src/common/wpa_ctrl.c projects/pciehp/contrib/wpa/src/common/wpa_ctrl.h projects/pciehp/contrib/wpa/src/crypto/aes-cbc.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-ctr.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-eax.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-encblock.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-internal-dec.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-internal-enc.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-omac1.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-unwrap.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes-wrap.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes.h projects/pciehp/contrib/wpa/src/crypto/aes_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/aes_wrap.h projects/pciehp/contrib/wpa/src/crypto/crypto.h projects/pciehp/contrib/wpa/src/crypto/crypto_cryptoapi.c projects/pciehp/contrib/wpa/src/crypto/crypto_gnutls.c projects/pciehp/contrib/wpa/src/crypto/crypto_internal-cipher.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/crypto_internal-modexp.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/crypto_internal-rsa.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/crypto_internal.c projects/pciehp/contrib/wpa/src/crypto/crypto_libtomcrypt.c projects/pciehp/contrib/wpa/src/crypto/crypto_none.c projects/pciehp/contrib/wpa/src/crypto/crypto_nss.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/crypto_openssl.c projects/pciehp/contrib/wpa/src/crypto/des-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/des_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/dh_group5.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/dh_group5.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/dh_groups.c projects/pciehp/contrib/wpa/src/crypto/dh_groups.h projects/pciehp/contrib/wpa/src/crypto/fips_prf_cryptoapi.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/fips_prf_gnutls.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/fips_prf_internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/fips_prf_nss.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/fips_prf_openssl.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/md4-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/md5-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/md5.c projects/pciehp/contrib/wpa/src/crypto/md5.h projects/pciehp/contrib/wpa/src/crypto/md5_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/milenage.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/milenage.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/ms_funcs.c projects/pciehp/contrib/wpa/src/crypto/ms_funcs.h projects/pciehp/contrib/wpa/src/crypto/rc4.c projects/pciehp/contrib/wpa/src/crypto/sha1-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha1-pbkdf2.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha1-tlsprf.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha1-tprf.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha1.c projects/pciehp/contrib/wpa/src/crypto/sha1.h projects/pciehp/contrib/wpa/src/crypto/sha1_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha256-internal.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/sha256.c projects/pciehp/contrib/wpa/src/crypto/sha256.h projects/pciehp/contrib/wpa/src/crypto/tls.h projects/pciehp/contrib/wpa/src/crypto/tls_gnutls.c projects/pciehp/contrib/wpa/src/crypto/tls_internal.c projects/pciehp/contrib/wpa/src/crypto/tls_none.c projects/pciehp/contrib/wpa/src/crypto/tls_nss.c (contents, props changed) projects/pciehp/contrib/wpa/src/crypto/tls_openssl.c projects/pciehp/contrib/wpa/src/crypto/tls_schannel.c projects/pciehp/contrib/wpa/src/drivers/driver.h projects/pciehp/contrib/wpa/src/drivers/driver_ndis.c projects/pciehp/contrib/wpa/src/drivers/driver_ndis.h projects/pciehp/contrib/wpa/src/drivers/driver_ndis_.c projects/pciehp/contrib/wpa/src/drivers/driver_wired.c projects/pciehp/contrib/wpa/src/drivers/drivers.c projects/pciehp/contrib/wpa/src/drivers/ndis_events.c projects/pciehp/contrib/wpa/src/eap_common/chap.c projects/pciehp/contrib/wpa/src/eap_common/chap.h projects/pciehp/contrib/wpa/src/eap_common/eap_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_defs.h projects/pciehp/contrib/wpa/src/eap_common/eap_fast_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_fast_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_gpsk_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_gpsk_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_ikev2_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_ikev2_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_pax_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_pax_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_peap_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_peap_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_psk_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_psk_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_sake_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_sake_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_sim_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_sim_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_tlv_common.h projects/pciehp/contrib/wpa/src/eap_common/eap_ttls.h projects/pciehp/contrib/wpa/src/eap_common/eap_wsc_common.c projects/pciehp/contrib/wpa/src/eap_common/eap_wsc_common.h projects/pciehp/contrib/wpa/src/eap_common/ikev2_common.c projects/pciehp/contrib/wpa/src/eap_common/ikev2_common.h projects/pciehp/contrib/wpa/src/eap_peer/eap.c projects/pciehp/contrib/wpa/src/eap_peer/eap.h projects/pciehp/contrib/wpa/src/eap_peer/eap_aka.c projects/pciehp/contrib/wpa/src/eap_peer/eap_config.h projects/pciehp/contrib/wpa/src/eap_peer/eap_fast.c projects/pciehp/contrib/wpa/src/eap_peer/eap_fast_pac.c projects/pciehp/contrib/wpa/src/eap_peer/eap_fast_pac.h projects/pciehp/contrib/wpa/src/eap_peer/eap_gpsk.c projects/pciehp/contrib/wpa/src/eap_peer/eap_gtc.c projects/pciehp/contrib/wpa/src/eap_peer/eap_i.h projects/pciehp/contrib/wpa/src/eap_peer/eap_ikev2.c projects/pciehp/contrib/wpa/src/eap_peer/eap_leap.c projects/pciehp/contrib/wpa/src/eap_peer/eap_md5.c projects/pciehp/contrib/wpa/src/eap_peer/eap_methods.c projects/pciehp/contrib/wpa/src/eap_peer/eap_methods.h projects/pciehp/contrib/wpa/src/eap_peer/eap_mschapv2.c projects/pciehp/contrib/wpa/src/eap_peer/eap_otp.c projects/pciehp/contrib/wpa/src/eap_peer/eap_pax.c projects/pciehp/contrib/wpa/src/eap_peer/eap_peap.c projects/pciehp/contrib/wpa/src/eap_peer/eap_psk.c projects/pciehp/contrib/wpa/src/eap_peer/eap_sake.c projects/pciehp/contrib/wpa/src/eap_peer/eap_sim.c projects/pciehp/contrib/wpa/src/eap_peer/eap_tls.c projects/pciehp/contrib/wpa/src/eap_peer/eap_tls_common.c projects/pciehp/contrib/wpa/src/eap_peer/eap_tls_common.h projects/pciehp/contrib/wpa/src/eap_peer/eap_tnc.c projects/pciehp/contrib/wpa/src/eap_peer/eap_ttls.c projects/pciehp/contrib/wpa/src/eap_peer/eap_vendor_test.c projects/pciehp/contrib/wpa/src/eap_peer/eap_wsc.c projects/pciehp/contrib/wpa/src/eap_peer/ikev2.c projects/pciehp/contrib/wpa/src/eap_peer/ikev2.h projects/pciehp/contrib/wpa/src/eap_peer/mschapv2.c projects/pciehp/contrib/wpa/src/eap_peer/mschapv2.h projects/pciehp/contrib/wpa/src/eap_peer/tncc.c projects/pciehp/contrib/wpa/src/eap_peer/tncc.h projects/pciehp/contrib/wpa/src/eap_server/eap.h projects/pciehp/contrib/wpa/src/eap_server/eap_i.h projects/pciehp/contrib/wpa/src/eap_server/eap_methods.h projects/pciehp/contrib/wpa/src/eap_server/eap_server.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_aka.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_fast.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_gpsk.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_gtc.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_identity.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_ikev2.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_md5.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_methods.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_mschapv2.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_pax.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_peap.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_psk.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_sake.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_sim.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_tls.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_tls_common.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_tnc.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_ttls.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_vendor_test.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_server_wsc.c (contents, props changed) projects/pciehp/contrib/wpa/src/eap_server/eap_sim_db.c projects/pciehp/contrib/wpa/src/eap_server/eap_sim_db.h projects/pciehp/contrib/wpa/src/eap_server/eap_tls_common.h projects/pciehp/contrib/wpa/src/eap_server/ikev2.c projects/pciehp/contrib/wpa/src/eap_server/ikev2.h projects/pciehp/contrib/wpa/src/eap_server/tncs.c projects/pciehp/contrib/wpa/src/eap_server/tncs.h projects/pciehp/contrib/wpa/src/eapol_auth/eapol_auth_dump.c (contents, props changed) projects/pciehp/contrib/wpa/src/eapol_auth/eapol_auth_sm.c (contents, props changed) projects/pciehp/contrib/wpa/src/eapol_auth/eapol_auth_sm.h (contents, props changed) projects/pciehp/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h (contents, props changed) projects/pciehp/contrib/wpa/src/eapol_supp/eapol_supp_sm.c projects/pciehp/contrib/wpa/src/eapol_supp/eapol_supp_sm.h projects/pciehp/contrib/wpa/src/l2_packet/l2_packet.h projects/pciehp/contrib/wpa/src/l2_packet/l2_packet_freebsd.c projects/pciehp/contrib/wpa/src/l2_packet/l2_packet_ndis.c projects/pciehp/contrib/wpa/src/l2_packet/l2_packet_none.c projects/pciehp/contrib/wpa/src/radius/radius.c projects/pciehp/contrib/wpa/src/radius/radius.h projects/pciehp/contrib/wpa/src/radius/radius_client.c projects/pciehp/contrib/wpa/src/radius/radius_client.h projects/pciehp/contrib/wpa/src/radius/radius_server.c projects/pciehp/contrib/wpa/src/radius/radius_server.h projects/pciehp/contrib/wpa/src/rsn_supp/peerkey.c projects/pciehp/contrib/wpa/src/rsn_supp/peerkey.h projects/pciehp/contrib/wpa/src/rsn_supp/pmksa_cache.c projects/pciehp/contrib/wpa/src/rsn_supp/pmksa_cache.h projects/pciehp/contrib/wpa/src/rsn_supp/preauth.c projects/pciehp/contrib/wpa/src/rsn_supp/preauth.h projects/pciehp/contrib/wpa/src/rsn_supp/wpa.c projects/pciehp/contrib/wpa/src/rsn_supp/wpa.h projects/pciehp/contrib/wpa/src/rsn_supp/wpa_ft.c projects/pciehp/contrib/wpa/src/rsn_supp/wpa_i.h projects/pciehp/contrib/wpa/src/rsn_supp/wpa_ie.c projects/pciehp/contrib/wpa/src/rsn_supp/wpa_ie.h projects/pciehp/contrib/wpa/src/tls/asn1.c projects/pciehp/contrib/wpa/src/tls/asn1.h projects/pciehp/contrib/wpa/src/tls/bignum.c projects/pciehp/contrib/wpa/src/tls/bignum.h projects/pciehp/contrib/wpa/src/tls/libtommath.c projects/pciehp/contrib/wpa/src/tls/pkcs1.c (contents, props changed) projects/pciehp/contrib/wpa/src/tls/pkcs1.h (contents, props changed) projects/pciehp/contrib/wpa/src/tls/pkcs5.c (contents, props changed) projects/pciehp/contrib/wpa/src/tls/pkcs5.h (contents, props changed) projects/pciehp/contrib/wpa/src/tls/pkcs8.c (contents, props changed) projects/pciehp/contrib/wpa/src/tls/pkcs8.h (contents, props changed) projects/pciehp/contrib/wpa/src/tls/rsa.c projects/pciehp/contrib/wpa/src/tls/rsa.h projects/pciehp/contrib/wpa/src/tls/tlsv1_client.c projects/pciehp/contrib/wpa/src/tls/tlsv1_client.h projects/pciehp/contrib/wpa/src/tls/tlsv1_client_i.h projects/pciehp/contrib/wpa/src/tls/tlsv1_client_read.c projects/pciehp/contrib/wpa/src/tls/tlsv1_client_write.c projects/pciehp/contrib/wpa/src/tls/tlsv1_common.c projects/pciehp/contrib/wpa/src/tls/tlsv1_common.h projects/pciehp/contrib/wpa/src/tls/tlsv1_cred.c projects/pciehp/contrib/wpa/src/tls/tlsv1_cred.h projects/pciehp/contrib/wpa/src/tls/tlsv1_record.c projects/pciehp/contrib/wpa/src/tls/tlsv1_record.h projects/pciehp/contrib/wpa/src/tls/tlsv1_server.c projects/pciehp/contrib/wpa/src/tls/tlsv1_server.h projects/pciehp/contrib/wpa/src/tls/tlsv1_server_i.h projects/pciehp/contrib/wpa/src/tls/tlsv1_server_read.c projects/pciehp/contrib/wpa/src/tls/tlsv1_server_write.c projects/pciehp/contrib/wpa/src/tls/x509v3.c projects/pciehp/contrib/wpa/src/tls/x509v3.h projects/pciehp/contrib/wpa/src/utils/base64.c projects/pciehp/contrib/wpa/src/utils/base64.h projects/pciehp/contrib/wpa/src/utils/build_config.h projects/pciehp/contrib/wpa/src/utils/common.c projects/pciehp/contrib/wpa/src/utils/common.h projects/pciehp/contrib/wpa/src/utils/eloop.c projects/pciehp/contrib/wpa/src/utils/eloop.h projects/pciehp/contrib/wpa/src/utils/eloop_none.c projects/pciehp/contrib/wpa/src/utils/eloop_win.c projects/pciehp/contrib/wpa/src/utils/includes.h projects/pciehp/contrib/wpa/src/utils/ip_addr.c projects/pciehp/contrib/wpa/src/utils/ip_addr.h projects/pciehp/contrib/wpa/src/utils/list.h (contents, props changed) projects/pciehp/contrib/wpa/src/utils/os.h projects/pciehp/contrib/wpa/src/utils/os_internal.c projects/pciehp/contrib/wpa/src/utils/os_none.c projects/pciehp/contrib/wpa/src/utils/os_unix.c projects/pciehp/contrib/wpa/src/utils/os_win32.c projects/pciehp/contrib/wpa/src/utils/pcsc_funcs.c projects/pciehp/contrib/wpa/src/utils/pcsc_funcs.h projects/pciehp/contrib/wpa/src/utils/radiotap.h (contents, props changed) projects/pciehp/contrib/wpa/src/utils/radiotap_iter.h (contents, props changed) projects/pciehp/contrib/wpa/src/utils/state_machine.h projects/pciehp/contrib/wpa/src/utils/trace.c (contents, props changed) projects/pciehp/contrib/wpa/src/utils/trace.h (contents, props changed) projects/pciehp/contrib/wpa/src/utils/uuid.c projects/pciehp/contrib/wpa/src/utils/uuid.h projects/pciehp/contrib/wpa/src/utils/wpa_debug.c projects/pciehp/contrib/wpa/src/utils/wpa_debug.h projects/pciehp/contrib/wpa/src/utils/wpabuf.c projects/pciehp/contrib/wpa/src/utils/wpabuf.h projects/pciehp/contrib/wpa/src/wps/http_client.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/http_client.h (contents, props changed) projects/pciehp/contrib/wpa/src/wps/http_server.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/http_server.h (contents, props changed) projects/pciehp/contrib/wpa/src/wps/httpread.c projects/pciehp/contrib/wpa/src/wps/httpread.h projects/pciehp/contrib/wpa/src/wps/ndef.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/upnp_xml.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/upnp_xml.h (contents, props changed) projects/pciehp/contrib/wpa/src/wps/wps.c projects/pciehp/contrib/wpa/src/wps/wps.h projects/pciehp/contrib/wpa/src/wps/wps_attr_build.c projects/pciehp/contrib/wpa/src/wps/wps_attr_parse.c projects/pciehp/contrib/wpa/src/wps/wps_attr_process.c projects/pciehp/contrib/wpa/src/wps/wps_common.c projects/pciehp/contrib/wpa/src/wps/wps_defs.h projects/pciehp/contrib/wpa/src/wps/wps_dev_attr.c projects/pciehp/contrib/wpa/src/wps/wps_dev_attr.h projects/pciehp/contrib/wpa/src/wps/wps_enrollee.c projects/pciehp/contrib/wpa/src/wps/wps_er.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/wps_er.h (contents, props changed) projects/pciehp/contrib/wpa/src/wps/wps_er_ssdp.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/wps_i.h projects/pciehp/contrib/wpa/src/wps/wps_registrar.c projects/pciehp/contrib/wpa/src/wps/wps_upnp.c projects/pciehp/contrib/wpa/src/wps/wps_upnp.h projects/pciehp/contrib/wpa/src/wps/wps_upnp_ap.c (contents, props changed) projects/pciehp/contrib/wpa/src/wps/wps_upnp_event.c projects/pciehp/contrib/wpa/src/wps/wps_upnp_i.h projects/pciehp/contrib/wpa/src/wps/wps_upnp_ssdp.c projects/pciehp/contrib/wpa/src/wps/wps_upnp_web.c projects/pciehp/contrib/wpa/wpa_supplicant/ChangeLog projects/pciehp/contrib/wpa/wpa_supplicant/README projects/pciehp/contrib/wpa/wpa_supplicant/README-WPS projects/pciehp/contrib/wpa/wpa_supplicant/ap.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/ap.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/bgscan.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/bgscan.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/bgscan_simple.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/blacklist.c projects/pciehp/contrib/wpa/wpa_supplicant/blacklist.h projects/pciehp/contrib/wpa/wpa_supplicant/bss.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/bss.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/config.c projects/pciehp/contrib/wpa/wpa_supplicant/config.h projects/pciehp/contrib/wpa/wpa_supplicant/config_file.c projects/pciehp/contrib/wpa/wpa_supplicant/config_none.c projects/pciehp/contrib/wpa/wpa_supplicant/config_ssid.h projects/pciehp/contrib/wpa/wpa_supplicant/ctrl_iface.c projects/pciehp/contrib/wpa/wpa_supplicant/ctrl_iface.h projects/pciehp/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c projects/pciehp/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c projects/pciehp/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c projects/pciehp/contrib/wpa/wpa_supplicant/dbus/Makefile (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_common.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_common.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_common_i.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_old.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_old.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/defconfig projects/pciehp/contrib/wpa/wpa_supplicant/driver_i.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/eap_register.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/eapol_test.c projects/pciehp/contrib/wpa/wpa_supplicant/events.c projects/pciehp/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-signals.py (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/ibss_rsn.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/ibss_rsn.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/main.c projects/pciehp/contrib/wpa/wpa_supplicant/main_none.c projects/pciehp/contrib/wpa/wpa_supplicant/notify.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/notify.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/preauth_test.c projects/pciehp/contrib/wpa/wpa_supplicant/scan.c projects/pciehp/contrib/wpa/wpa_supplicant/scan.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/sme.c (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/sme.h (contents, props changed) projects/pciehp/contrib/wpa/wpa_supplicant/tests/test_eap_sim_common.c projects/pciehp/contrib/wpa/wpa_supplicant/tests/test_wpa.c projects/pciehp/contrib/wpa/wpa_supplicant/wpa_cli.c projects/pciehp/contrib/wpa/wpa_supplicant/wpa_passphrase.c projects/pciehp/contrib/wpa/wpa_supplicant/wpa_priv.c projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant.c projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant.conf projects/pciehp/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h projects/pciehp/contrib/wpa/wpa_supplicant/wpas_glue.c projects/pciehp/contrib/wpa/wpa_supplicant/wpas_glue.h projects/pciehp/contrib/wpa/wpa_supplicant/wps_supplicant.c projects/pciehp/contrib/wpa/wpa_supplicant/wps_supplicant.h projects/pciehp/crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h projects/pciehp/crypto/heimdal/lib/kadm5/ipropd_master.c projects/pciehp/crypto/openssh/ChangeLog projects/pciehp/crypto/openssh/README projects/pciehp/crypto/openssh/compat.h projects/pciehp/crypto/openssh/krl.c projects/pciehp/crypto/openssh/openbsd-compat/bsd-cygwin_util.c projects/pciehp/crypto/openssh/openbsd-compat/bsd-cygwin_util.h projects/pciehp/crypto/openssh/packet.c projects/pciehp/crypto/openssh/readconf.c projects/pciehp/crypto/openssh/servconf.c projects/pciehp/crypto/openssh/sftp.c projects/pciehp/crypto/openssh/ssh_config projects/pciehp/crypto/openssh/ssh_config.5 projects/pciehp/crypto/openssh/sshconnect.c projects/pciehp/crypto/openssh/sshd_config projects/pciehp/crypto/openssh/sshd_config.5 projects/pciehp/crypto/openssh/version.h projects/pciehp/crypto/openssl/ssl/s3_cbc.c projects/pciehp/etc/Makefile projects/pciehp/etc/defaults/periodic.conf projects/pciehp/etc/defaults/rc.conf projects/pciehp/etc/devd/usb.conf projects/pciehp/etc/group projects/pciehp/etc/inetd.conf projects/pciehp/etc/master.passwd projects/pciehp/etc/mtree/BSD.include.dist projects/pciehp/etc/mtree/BSD.root.dist projects/pciehp/etc/mtree/BSD.usr.dist projects/pciehp/etc/mtree/BSD.var.dist projects/pciehp/etc/mtree/Makefile projects/pciehp/etc/namedb/named.conf projects/pciehp/etc/network.subr projects/pciehp/etc/newsyslog.conf projects/pciehp/etc/periodic/daily/450.status-security projects/pciehp/etc/periodic/daily/Makefile projects/pciehp/etc/periodic/monthly/Makefile projects/pciehp/etc/periodic/security/100.chksetuid projects/pciehp/etc/periodic/security/110.neggrpperm projects/pciehp/etc/periodic/security/200.chkmounts projects/pciehp/etc/periodic/security/300.chkuid0 projects/pciehp/etc/periodic/security/400.passwdless projects/pciehp/etc/periodic/security/410.logincheck projects/pciehp/etc/periodic/security/460.chkportsum projects/pciehp/etc/periodic/security/500.ipfwdenied projects/pciehp/etc/periodic/security/510.ipfdenied projects/pciehp/etc/periodic/security/520.pfdenied projects/pciehp/etc/periodic/security/550.ipfwlimit projects/pciehp/etc/periodic/security/610.ipf6denied projects/pciehp/etc/periodic/security/700.kernelmsg projects/pciehp/etc/periodic/security/800.loginfail projects/pciehp/etc/periodic/security/900.tcpwrap projects/pciehp/etc/periodic/security/security.functions projects/pciehp/etc/periodic/weekly/Makefile projects/pciehp/etc/protocols projects/pciehp/etc/rc projects/pciehp/etc/rc.d/Makefile projects/pciehp/etc/rc.d/addswap projects/pciehp/etc/rc.d/bsnmpd projects/pciehp/etc/rc.d/fsck projects/pciehp/etc/rc.d/hostapd projects/pciehp/etc/rc.d/ipfilter projects/pciehp/etc/rc.d/ipfs projects/pciehp/etc/rc.d/ipfw projects/pciehp/etc/rc.d/ipmon projects/pciehp/etc/rc.d/mdconfig projects/pciehp/etc/rc.d/netif projects/pciehp/etc/rc.d/ntpdate projects/pciehp/etc/rc.d/pfsync projects/pciehp/etc/rc.d/routing projects/pciehp/etc/rc.d/savecore projects/pciehp/etc/rc.d/sshd projects/pciehp/etc/rc.d/syslogd projects/pciehp/etc/rc.d/zfs projects/pciehp/etc/rc.resume projects/pciehp/etc/rc.shutdown projects/pciehp/etc/syslog.conf projects/pciehp/gnu/lib/Makefile projects/pciehp/gnu/lib/libdialog/Makefile projects/pciehp/gnu/lib/libdialog/dlg_config.h projects/pciehp/gnu/lib/libregex/Makefile projects/pciehp/gnu/lib/libregex/config.h projects/pciehp/gnu/lib/libregex/regex.h projects/pciehp/gnu/lib/libstdc++/Makefile projects/pciehp/gnu/lib/libstdc++/config.h projects/pciehp/gnu/lib/libsupc++/Makefile projects/pciehp/gnu/lib/libsupc++/Version.map projects/pciehp/gnu/usr.bin/Makefile projects/pciehp/gnu/usr.bin/cc/Makefile projects/pciehp/gnu/usr.bin/cc/include/Makefile projects/pciehp/gnu/usr.bin/dialog/Makefile projects/pciehp/gnu/usr.bin/diff/Makefile projects/pciehp/gnu/usr.bin/gdb/Makefile.inc projects/pciehp/gnu/usr.bin/gdb/arch/amd64/config.h projects/pciehp/gnu/usr.bin/gdb/arch/arm/config.h projects/pciehp/gnu/usr.bin/gdb/arch/i386/config.h projects/pciehp/gnu/usr.bin/gdb/arch/ia64/config.h projects/pciehp/gnu/usr.bin/gdb/arch/mips/config.h projects/pciehp/gnu/usr.bin/gdb/arch/powerpc/config.h projects/pciehp/gnu/usr.bin/gdb/arch/powerpc64/config.h projects/pciehp/gnu/usr.bin/gdb/arch/sparc64/config.h projects/pciehp/gnu/usr.bin/gdb/gdb/Makefile projects/pciehp/gnu/usr.bin/gdb/libgdb/Makefile projects/pciehp/gnu/usr.bin/grep/dfa.c projects/pciehp/gnu/usr.bin/grep/grep.c projects/pciehp/gnu/usr.bin/grep/search.c projects/pciehp/gnu/usr.bin/groff/tmac/mdoc.local projects/pciehp/include/Makefile projects/pciehp/include/arpa/tftp.h projects/pciehp/include/complex.h projects/pciehp/include/dirent.h projects/pciehp/include/fts.h projects/pciehp/include/gssapi/gssapi.h projects/pciehp/include/iconv.h projects/pciehp/include/ifaddrs.h projects/pciehp/include/malloc_np.h projects/pciehp/include/paths.h projects/pciehp/include/protocols/rwhod.h projects/pciehp/include/stdlib.h projects/pciehp/include/unistd.h projects/pciehp/include/xlocale/Makefile projects/pciehp/kerberos5/Makefile.inc projects/pciehp/kerberos5/lib/libheimipcc/Makefile projects/pciehp/kerberos5/lib/libheimipcs/Makefile projects/pciehp/kerberos5/lib/libkrb5/Makefile projects/pciehp/kerberos5/libexec/digest-service/Makefile projects/pciehp/kerberos5/libexec/kcm/Makefile projects/pciehp/lib/Makefile projects/pciehp/lib/bind/config.h projects/pciehp/lib/bind/dns/Makefile projects/pciehp/lib/bind/dns/code.h projects/pciehp/lib/bind/dns/dns/enumtype.h projects/pciehp/lib/bind/dns/dns/rdatastruct.h projects/pciehp/lib/bind/isc/Makefile projects/pciehp/lib/clang/clang.build.mk projects/pciehp/lib/clang/include/clang/Basic/Version.inc projects/pciehp/lib/clang/include/llvm/Config/config.h projects/pciehp/lib/clang/include/llvm/Config/llvm-config.h projects/pciehp/lib/clang/libclangparse/Makefile projects/pciehp/lib/clang/libclangstaticanalyzercheckers/Makefile projects/pciehp/lib/clang/libllvmarmdesc/Makefile projects/pciehp/lib/clang/libllvmlinker/Makefile projects/pciehp/lib/clang/libllvmmipscodegen/Makefile projects/pciehp/lib/clang/libllvmobject/Makefile projects/pciehp/lib/clang/libllvmsupport/Makefile projects/pciehp/lib/clang/libllvmvectorize/Makefile projects/pciehp/lib/clang/libllvmx86codegen/Makefile projects/pciehp/lib/libc++/Makefile projects/pciehp/lib/libc/Makefile projects/pciehp/lib/libc/amd64/gen/getcontextx.c projects/pciehp/lib/libc/amd64/sys/setlogin.S projects/pciehp/lib/libc/arm/_fpmath.h projects/pciehp/lib/libc/arm/arith.h projects/pciehp/lib/libc/arm/gen/Makefile.inc projects/pciehp/lib/libc/arm/gen/_setjmp.S projects/pciehp/lib/libc/arm/gen/getcontextx.c projects/pciehp/lib/libc/arm/gen/setjmp.S projects/pciehp/lib/libc/arm/gen/sigsetjmp.S projects/pciehp/lib/libc/arm/softfloat/arm-gcc.h projects/pciehp/lib/libc/db/btree/bt_open.c projects/pciehp/lib/libc/db/hash/hash.c projects/pciehp/lib/libc/db/hash/hash_page.c projects/pciehp/lib/libc/gen/Makefile.inc projects/pciehp/lib/libc/gen/Symbol.map projects/pciehp/lib/libc/gen/closedir.c projects/pciehp/lib/libc/gen/directory.3 projects/pciehp/lib/libc/gen/dl_iterate_phdr.3 projects/pciehp/lib/libc/gen/errlst.c projects/pciehp/lib/libc/gen/fnmatch.c projects/pciehp/lib/libc/gen/fts-compat.h projects/pciehp/lib/libc/gen/fts.3 projects/pciehp/lib/libc/gen/getlogin.c projects/pciehp/lib/libc/gen/lockf.3 projects/pciehp/lib/libc/gen/popen.3 projects/pciehp/lib/libc/gen/popen.c projects/pciehp/lib/libc/gen/posix_spawn_file_actions_addopen.3 projects/pciehp/lib/libc/gen/siginterrupt.c projects/pciehp/lib/libc/gen/signal.3 projects/pciehp/lib/libc/gen/signal.c projects/pciehp/lib/libc/gen/strtofflags.c projects/pciehp/lib/libc/gen/sysctl.3 projects/pciehp/lib/libc/gen/wordexp.c projects/pciehp/lib/libc/gmon/gmon.c projects/pciehp/lib/libc/i386/gen/getcontextx.c projects/pciehp/lib/libc/i386/sys/setlogin.S projects/pciehp/lib/libc/ia64/gen/getcontextx.c projects/pciehp/lib/libc/iconv/Symbol.map projects/pciehp/lib/libc/iconv/citrus_csmapper.c projects/pciehp/lib/libc/iconv/citrus_iconv.c projects/pciehp/lib/libc/iconv/citrus_iconv.h projects/pciehp/lib/libc/iconv/citrus_iconv_local.h projects/pciehp/lib/libc/iconv/citrus_lock.h projects/pciehp/lib/libc/iconv/citrus_mapper.c projects/pciehp/lib/libc/iconv/citrus_mapper_local.h projects/pciehp/lib/libc/iconv/citrus_none.c projects/pciehp/lib/libc/iconv/citrus_stdenc.h projects/pciehp/lib/libc/iconv/citrus_stdenc_local.h projects/pciehp/lib/libc/iconv/citrus_stdenc_template.h projects/pciehp/lib/libc/iconv/iconv.c projects/pciehp/lib/libc/include/compat.h projects/pciehp/lib/libc/include/libc_private.h projects/pciehp/lib/libc/locale/Makefile.inc projects/pciehp/lib/libc/locale/Symbol.map projects/pciehp/lib/libc/locale/mbrtowc.3 projects/pciehp/lib/libc/locale/wcrtomb.3 projects/pciehp/lib/libc/locale/xlocale_private.h projects/pciehp/lib/libc/mips/gen/getcontextx.c projects/pciehp/lib/libc/mips/gen/longjmp.c projects/pciehp/lib/libc/mips/net/htonl.S projects/pciehp/lib/libc/mips/net/htons.S projects/pciehp/lib/libc/mips/net/ntohl.S projects/pciehp/lib/libc/mips/net/ntohs.S projects/pciehp/lib/libc/net/ether_addr.c projects/pciehp/lib/libc/net/eui64.c projects/pciehp/lib/libc/net/getaddrinfo.3 projects/pciehp/lib/libc/net/getaddrinfo.c projects/pciehp/lib/libc/net/gethostbyht.c projects/pciehp/lib/libc/net/gethostbyname.3 projects/pciehp/lib/libc/net/getifaddrs.3 projects/pciehp/lib/libc/net/getifmaddrs.3 projects/pciehp/lib/libc/net/getifmaddrs.c projects/pciehp/lib/libc/net/getnameinfo.3 projects/pciehp/lib/libc/net/getnetbyht.c projects/pciehp/lib/libc/net/getprotoent.c projects/pciehp/lib/libc/net/getservent.c projects/pciehp/lib/libc/net/hesiod.c projects/pciehp/lib/libc/net/if_nametoindex.c projects/pciehp/lib/libc/net/name6.c projects/pciehp/lib/libc/net/nscachedcli.c projects/pciehp/lib/libc/net/nsdispatch.c projects/pciehp/lib/libc/net/nslexer.l projects/pciehp/lib/libc/net/nsparser.y projects/pciehp/lib/libc/net/rcmd.c projects/pciehp/lib/libc/net/recv.c projects/pciehp/lib/libc/net/sctp_bindx.3 projects/pciehp/lib/libc/net/sctp_connectx.3 projects/pciehp/lib/libc/net/sctp_freepaddrs.3 projects/pciehp/lib/libc/net/sctp_getaddrlen.3 projects/pciehp/lib/libc/net/sctp_getassocid.3 projects/pciehp/lib/libc/net/sctp_getpaddrs.3 projects/pciehp/lib/libc/net/sctp_opt_info.3 projects/pciehp/lib/libc/net/sctp_recvmsg.3 projects/pciehp/lib/libc/net/sctp_send.3 projects/pciehp/lib/libc/net/sctp_sendmsg.3 projects/pciehp/lib/libc/net/sctp_sys_calls.c projects/pciehp/lib/libc/net/send.c projects/pciehp/lib/libc/posix1e/acl_is_trivial_np.3 projects/pciehp/lib/libc/posix1e/mac.c projects/pciehp/lib/libc/powerpc/gen/getcontextx.c projects/pciehp/lib/libc/powerpc64/gen/fpgetmask.c projects/pciehp/lib/libc/powerpc64/gen/fpgetround.c projects/pciehp/lib/libc/powerpc64/gen/fpgetsticky.c projects/pciehp/lib/libc/powerpc64/gen/fpsetmask.c projects/pciehp/lib/libc/powerpc64/gen/fpsetround.c projects/pciehp/lib/libc/powerpc64/gen/getcontextx.c projects/pciehp/lib/libc/resolv/res_init.c projects/pciehp/lib/libc/resolv/res_query.c projects/pciehp/lib/libc/resolv/res_send.c projects/pciehp/lib/libc/sparc64/gen/getcontextx.c projects/pciehp/lib/libc/sparc64/gen/makecontext.c projects/pciehp/lib/libc/sparc64/gen/signalcontext.c projects/pciehp/lib/libc/stdio/Makefile.inc projects/pciehp/lib/libc/stdio/Symbol.map projects/pciehp/lib/libc/stdio/flags.c projects/pciehp/lib/libc/stdio/fwrite.c projects/pciehp/lib/libc/stdio/mktemp.3 projects/pciehp/lib/libc/stdio/mktemp.c projects/pciehp/lib/libc/stdio/xprintf_errno.c projects/pciehp/lib/libc/stdlib/abort.3 projects/pciehp/lib/libc/stdlib/abort.c projects/pciehp/lib/libc/stdlib/abs.3 projects/pciehp/lib/libc/stdlib/abs.c projects/pciehp/lib/libc/stdlib/alloca.3 projects/pciehp/lib/libc/stdlib/atexit.3 projects/pciehp/lib/libc/stdlib/atexit.c projects/pciehp/lib/libc/stdlib/atexit.h projects/pciehp/lib/libc/stdlib/atof.3 projects/pciehp/lib/libc/stdlib/atof.c projects/pciehp/lib/libc/stdlib/atoi.3 projects/pciehp/lib/libc/stdlib/atoi.c projects/pciehp/lib/libc/stdlib/atol.3 projects/pciehp/lib/libc/stdlib/atol.c projects/pciehp/lib/libc/stdlib/atoll.c projects/pciehp/lib/libc/stdlib/bsearch.3 projects/pciehp/lib/libc/stdlib/bsearch.c projects/pciehp/lib/libc/stdlib/div.3 projects/pciehp/lib/libc/stdlib/div.c projects/pciehp/lib/libc/stdlib/exit.3 projects/pciehp/lib/libc/stdlib/exit.c projects/pciehp/lib/libc/stdlib/getenv.3 projects/pciehp/lib/libc/stdlib/getenv.c projects/pciehp/lib/libc/stdlib/getopt.3 projects/pciehp/lib/libc/stdlib/getopt.c projects/pciehp/lib/libc/stdlib/getsubopt.3 projects/pciehp/lib/libc/stdlib/getsubopt.c projects/pciehp/lib/libc/stdlib/heapsort.c projects/pciehp/lib/libc/stdlib/jemalloc/Symbol.map projects/pciehp/lib/libc/stdlib/labs.3 projects/pciehp/lib/libc/stdlib/labs.c projects/pciehp/lib/libc/stdlib/ldiv.3 projects/pciehp/lib/libc/stdlib/ldiv.c projects/pciehp/lib/libc/stdlib/memory.3 projects/pciehp/lib/libc/stdlib/merge.c projects/pciehp/lib/libc/stdlib/qsort.3 projects/pciehp/lib/libc/stdlib/qsort.c projects/pciehp/lib/libc/stdlib/radixsort.3 projects/pciehp/lib/libc/stdlib/radixsort.c projects/pciehp/lib/libc/stdlib/rand.3 projects/pciehp/lib/libc/stdlib/rand.c projects/pciehp/lib/libc/stdlib/random.3 projects/pciehp/lib/libc/stdlib/random.c projects/pciehp/lib/libc/stdlib/realpath.3 projects/pciehp/lib/libc/stdlib/strtod.3 projects/pciehp/lib/libc/stdlib/strtoimax.c projects/pciehp/lib/libc/stdlib/strtol.3 projects/pciehp/lib/libc/stdlib/strtol.c projects/pciehp/lib/libc/stdlib/strtoll.c projects/pciehp/lib/libc/stdlib/strtonum.3 projects/pciehp/lib/libc/stdlib/strtoq.c projects/pciehp/lib/libc/stdlib/strtoul.3 projects/pciehp/lib/libc/stdlib/strtoul.c projects/pciehp/lib/libc/stdlib/strtoull.c projects/pciehp/lib/libc/stdlib/strtoumax.c projects/pciehp/lib/libc/stdlib/strtouq.c projects/pciehp/lib/libc/stdlib/system.3 projects/pciehp/lib/libc/stdlib/system.c projects/pciehp/lib/libc/string/bcmp.3 projects/pciehp/lib/libc/string/bcmp.c projects/pciehp/lib/libc/string/bcopy.3 projects/pciehp/lib/libc/string/bcopy.c projects/pciehp/lib/libc/string/bstring.3 projects/pciehp/lib/libc/string/bzero.3 projects/pciehp/lib/libc/string/ffs.3 projects/pciehp/lib/libc/string/ffs.c projects/pciehp/lib/libc/string/ffsl.c projects/pciehp/lib/libc/string/ffsll.c projects/pciehp/lib/libc/string/fls.c projects/pciehp/lib/libc/string/flsl.c projects/pciehp/lib/libc/string/flsll.c projects/pciehp/lib/libc/string/index.3 projects/pciehp/lib/libc/string/memccpy.3 projects/pciehp/lib/libc/string/memccpy.c projects/pciehp/lib/libc/string/memchr.3 projects/pciehp/lib/libc/string/memchr.c projects/pciehp/lib/libc/string/memcmp.3 projects/pciehp/lib/libc/string/memcmp.c projects/pciehp/lib/libc/string/memcpy.3 projects/pciehp/lib/libc/string/memmove.3 projects/pciehp/lib/libc/string/memset.3 projects/pciehp/lib/libc/string/memset.c projects/pciehp/lib/libc/string/strcasecmp.3 projects/pciehp/lib/libc/string/strcasecmp.c projects/pciehp/lib/libc/string/strcasestr.c projects/pciehp/lib/libc/string/strcat.3 projects/pciehp/lib/libc/string/strcat.c projects/pciehp/lib/libc/string/strchr.3 projects/pciehp/lib/libc/string/strchr.c projects/pciehp/lib/libc/string/strcmp.3 projects/pciehp/lib/libc/string/strcmp.c projects/pciehp/lib/libc/string/strcoll.3 projects/pciehp/lib/libc/string/strcpy.3 projects/pciehp/lib/libc/string/strcpy.c projects/pciehp/lib/libc/string/strcspn.3 projects/pciehp/lib/libc/string/strdup.3 projects/pciehp/lib/libc/string/strdup.c projects/pciehp/lib/libc/string/strerror.3 projects/pciehp/lib/libc/string/strerror.c projects/pciehp/lib/libc/string/string.3 projects/pciehp/lib/libc/string/strlen.3 projects/pciehp/lib/libc/string/strmode.3 projects/pciehp/lib/libc/string/strmode.c projects/pciehp/lib/libc/string/strncat.c projects/pciehp/lib/libc/string/strncmp.c projects/pciehp/lib/libc/string/strncpy.c projects/pciehp/lib/libc/string/strndup.c projects/pciehp/lib/libc/string/strnstr.c projects/pciehp/lib/libc/string/strpbrk.3 projects/pciehp/lib/libc/string/strpbrk.c projects/pciehp/lib/libc/string/strrchr.c projects/pciehp/lib/libc/string/strsep.3 projects/pciehp/lib/libc/string/strsep.c projects/pciehp/lib/libc/string/strsignal.c projects/pciehp/lib/libc/string/strspn.3 projects/pciehp/lib/libc/string/strstr.3 projects/pciehp/lib/libc/string/strstr.c projects/pciehp/lib/libc/string/strtok.3 projects/pciehp/lib/libc/string/strtok.c projects/pciehp/lib/libc/string/strxfrm.3 projects/pciehp/lib/libc/string/swab.3 projects/pciehp/lib/libc/string/swab.c projects/pciehp/lib/libc/string/wcscmp.c projects/pciehp/lib/libc/string/wcscoll.3 projects/pciehp/lib/libc/string/wcsncmp.c projects/pciehp/lib/libc/string/wcsncpy.c projects/pciehp/lib/libc/string/wcsstr.c projects/pciehp/lib/libc/string/wcstok.c projects/pciehp/lib/libc/string/wcswidth.c projects/pciehp/lib/libc/string/wcsxfrm.3 projects/pciehp/lib/libc/string/wmemchr.3 projects/pciehp/lib/libc/sys/Makefile.inc projects/pciehp/lib/libc/sys/Symbol.map projects/pciehp/lib/libc/sys/cap_ioctls_limit.2 projects/pciehp/lib/libc/sys/cap_rights_limit.2 projects/pciehp/lib/libc/sys/chflags.2 projects/pciehp/lib/libc/sys/close.2 projects/pciehp/lib/libc/sys/dup.2 projects/pciehp/lib/libc/sys/fork.2 projects/pciehp/lib/libc/sys/ioctl.2 projects/pciehp/lib/libc/sys/kqueue.2 projects/pciehp/lib/libc/sys/mmap.2 projects/pciehp/lib/libc/sys/pdfork.2 projects/pciehp/lib/libc/sys/pselect.2 projects/pciehp/lib/libc/sys/ptrace.2 projects/pciehp/lib/libc/sys/read.2 projects/pciehp/lib/libc/sys/sctp_generic_recvmsg.2 projects/pciehp/lib/libc/sys/sctp_generic_sendmsg.2 projects/pciehp/lib/libc/sys/sctp_peeloff.2 projects/pciehp/lib/libc/sys/setfib.2 projects/pciehp/lib/libc/sys/sigaction.2 projects/pciehp/lib/libc/sys/sigpending.2 projects/pciehp/lib/libc/sys/sigreturn.2 projects/pciehp/lib/libc/sys/sigsuspend.2 projects/pciehp/lib/libc/sys/sigwait.2 projects/pciehp/lib/libc/sys/socketpair.2 projects/pciehp/lib/libc/sys/wait.2 projects/pciehp/lib/libc/sys/write.2 projects/pciehp/lib/libcam/camlib.c projects/pciehp/lib/libcompiler_rt/Makefile projects/pciehp/lib/libdwarf/dwarf_init.c projects/pciehp/lib/libdwarf/dwarf_loc.c projects/pciehp/lib/libelf/libelf_data.c projects/pciehp/lib/libfetch/common.c projects/pciehp/lib/libfetch/common.h projects/pciehp/lib/libfetch/fetch.3 projects/pciehp/lib/libfetch/fetch.c projects/pciehp/lib/libfetch/http.c projects/pciehp/lib/libgeom/geom_xml2tree.c projects/pciehp/lib/libgeom/libgeom.h projects/pciehp/lib/libiconv_modules/BIG5/citrus_big5.c projects/pciehp/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c projects/pciehp/lib/libiconv_modules/EUC/citrus_euc.c projects/pciehp/lib/libiconv_modules/EUCTW/citrus_euctw.c projects/pciehp/lib/libiconv_modules/GBK2K/citrus_gbk2k.c projects/pciehp/lib/libiconv_modules/HZ/citrus_hz.c projects/pciehp/lib/libiconv_modules/ISO2022/citrus_iso2022.c projects/pciehp/lib/libiconv_modules/JOHAB/citrus_johab.c projects/pciehp/lib/libiconv_modules/MSKanji/citrus_mskanji.c projects/pciehp/lib/libiconv_modules/Makefile.inc projects/pciehp/lib/libiconv_modules/UES/citrus_ues.c projects/pciehp/lib/libiconv_modules/UTF1632/citrus_utf1632.c projects/pciehp/lib/libiconv_modules/UTF7/citrus_utf7.c projects/pciehp/lib/libiconv_modules/UTF8/citrus_utf8.c projects/pciehp/lib/libiconv_modules/VIQR/citrus_viqr.c projects/pciehp/lib/libiconv_modules/ZW/citrus_zw.c projects/pciehp/lib/libiconv_modules/iconv_none/citrus_iconv_none.c projects/pciehp/lib/libiconv_modules/iconv_std/citrus_iconv_std.c projects/pciehp/lib/libkiconv/xlat16_iconv.c projects/pciehp/lib/libkvm/Makefile projects/pciehp/lib/libkvm/kvm.h projects/pciehp/lib/libkvm/kvm_mips.c projects/pciehp/lib/libldns/Makefile projects/pciehp/lib/libmemstat/memstat_uma.c projects/pciehp/lib/libpam/libpam/Makefile projects/pciehp/lib/libpam/modules/pam_passwdqc/Makefile projects/pciehp/lib/libpam/modules/pam_ssh/Makefile projects/pciehp/lib/libpcap/config.h projects/pciehp/lib/libproc/proc_sym.c projects/pciehp/lib/libprocstat/Makefile projects/pciehp/lib/libprocstat/common_kvm.h projects/pciehp/lib/libprocstat/libprocstat.c projects/pciehp/lib/libprocstat/libprocstat.h projects/pciehp/lib/libradius/radius.conf.5 projects/pciehp/lib/librt/sigev_thread.c projects/pciehp/lib/libstand/ext2fs.c projects/pciehp/lib/libstand/nfs.c projects/pciehp/lib/libtacplus/libtacplus.3 projects/pciehp/lib/libtacplus/tacplus.conf.5 projects/pciehp/lib/libthr/thread/thr_cancel.c projects/pciehp/lib/libthr/thread/thr_sig.c projects/pciehp/lib/libthr/thread/thr_spec.c projects/pciehp/lib/libthread_db/arch/arm/libpthread_md.c projects/pciehp/lib/libthread_db/arch/sparc64/libpthread_md.c projects/pciehp/lib/libusb/Makefile projects/pciehp/lib/libusb/libusb.3 projects/pciehp/lib/libusb/libusb.h projects/pciehp/lib/libusb/libusb10.c projects/pciehp/lib/libusb/libusb10_io.c projects/pciehp/lib/libusb/libusb20.3 projects/pciehp/lib/libusb/libusb20.c projects/pciehp/lib/libusb/libusb20_ugen20.c projects/pciehp/lib/libusb/libusb_global_linux.h projects/pciehp/lib/libutil/expand_number.c projects/pciehp/lib/libutil/login_auth.c projects/pciehp/lib/libutil/login_cap.c projects/pciehp/lib/libutil/login_times.c projects/pciehp/lib/libutil/pidfile.c projects/pciehp/lib/libutil/quotafile.c projects/pciehp/lib/libutil/uucplock.c projects/pciehp/lib/msun/Makefile projects/pciehp/lib/msun/Symbol.map projects/pciehp/lib/msun/ld128/s_exp2l.c projects/pciehp/lib/msun/ld128/s_expl.c projects/pciehp/lib/msun/ld80/s_exp2l.c projects/pciehp/lib/msun/ld80/s_expl.c projects/pciehp/lib/msun/man/acosh.3 projects/pciehp/lib/msun/man/asinh.3 projects/pciehp/lib/msun/man/atanh.3 projects/pciehp/lib/msun/man/ccos.3 projects/pciehp/lib/msun/man/ccosh.3 projects/pciehp/lib/msun/man/complex.3 projects/pciehp/lib/msun/man/exp.3 projects/pciehp/lib/msun/man/log.3 projects/pciehp/lib/msun/src/e_acosh.c projects/pciehp/lib/msun/src/e_atanh.c projects/pciehp/lib/msun/src/e_exp.c projects/pciehp/lib/msun/src/e_expf.c projects/pciehp/lib/msun/src/e_log.c projects/pciehp/lib/msun/src/e_log10.c projects/pciehp/lib/msun/src/e_log10f.c projects/pciehp/lib/msun/src/e_log2.c projects/pciehp/lib/msun/src/e_log2f.c projects/pciehp/lib/msun/src/e_logf.c projects/pciehp/lib/msun/src/math.h projects/pciehp/lib/msun/src/math_private.h projects/pciehp/lib/msun/src/s_asinh.c projects/pciehp/lib/msun/src/s_erf.c projects/pciehp/lib/msun/src/s_erff.c projects/pciehp/lib/msun/src/s_exp2.c projects/pciehp/lib/msun/src/s_exp2f.c projects/pciehp/lib/msun/src/s_expm1.c projects/pciehp/lib/msun/src/s_expm1f.c projects/pciehp/lib/msun/src/s_fma.c projects/pciehp/lib/msun/src/s_fmal.c projects/pciehp/lib/msun/src/s_log1p.c projects/pciehp/lib/msun/src/s_log1pf.c projects/pciehp/lib/msun/src/s_nearbyint.c projects/pciehp/lib/ncurses/form/Makefile projects/pciehp/lib/ncurses/menu/Makefile projects/pciehp/lib/ncurses/panel/Makefile projects/pciehp/libexec/atrun/atrun.c projects/pciehp/libexec/bootpd/bootptab.5 projects/pciehp/release/Makefile projects/pciehp/release/doc/Makefile projects/pciehp/release/doc/de_DE.ISO8859-1/early-adopter/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/errata/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/installation/i386/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/readme/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml projects/pciehp/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml projects/pciehp/release/doc/en_US.ISO8859-1/Makefile projects/pciehp/release/doc/en_US.ISO8859-1/errata/article.xml projects/pciehp/release/doc/en_US.ISO8859-1/hardware/Makefile projects/pciehp/release/doc/en_US.ISO8859-1/hardware/article.xml projects/pciehp/release/doc/en_US.ISO8859-1/readme/article.xml projects/pciehp/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/errata/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/common/install.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml projects/pciehp/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml projects/pciehp/release/doc/ja_JP.eucJP/errata/article.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/alpha/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/alpha/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/amd64/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/amd64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/common/artheader.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/common/dev.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/common/intro.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/i386/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/i386/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/ia64/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/ia64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/pc98/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/pc98/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml (contents, props changed) projects/pciehp/release/doc/ja_JP.eucJP/hardware/sparc64/Makefile projects/pciehp/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/common/new.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/common/relnotes.ent projects/pciehp/release/doc/ja_JP.eucJP/relnotes/i386/article.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml projects/pciehp/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml projects/pciehp/release/doc/ja_JP.eucJP/share/xml/catalog projects/pciehp/release/doc/ru_RU.KOI8-R/errata/article.xml (contents, props changed) projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/install.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/layout.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/i386/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/readme/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml projects/pciehp/release/doc/ru_RU.KOI8-R/share/xml/catalog projects/pciehp/release/doc/share/mk/doc.relnotes.mk projects/pciehp/release/doc/share/xml/Makefile projects/pciehp/release/doc/share/xml/release.ent projects/pciehp/release/doc/zh_CN.GB2312/errata/article.xml projects/pciehp/release/doc/zh_CN.GB2312/hardware/Makefile projects/pciehp/release/doc/zh_CN.GB2312/hardware/article.xml projects/pciehp/release/doc/zh_CN.GB2312/readme/article.xml projects/pciehp/release/doc/zh_CN.GB2312/relnotes/article.xml projects/pciehp/release/generate-release.sh projects/pciehp/release/ia64/mkisoimages.sh projects/pciehp/release/picobsd/build/picobsd projects/pciehp/release/scripts/mm-mtree.sh projects/pciehp/release/sparc64/mkisoimages.sh projects/pciehp/rescue/rescue/Makefile projects/pciehp/sbin/camcontrol/camcontrol.8 projects/pciehp/sbin/camcontrol/camcontrol.c projects/pciehp/sbin/camcontrol/fwdownload.c projects/pciehp/sbin/devd/devd.8 projects/pciehp/sbin/devd/devd.cc projects/pciehp/sbin/devfs/devfs.8 projects/pciehp/sbin/dhclient/bpf.c projects/pciehp/sbin/dhclient/clparse.c projects/pciehp/sbin/dhclient/dhclient.c projects/pciehp/sbin/dhclient/dhcpd.h projects/pciehp/sbin/dhclient/packet.c projects/pciehp/sbin/dhclient/privsep.c projects/pciehp/sbin/dhclient/privsep.h projects/pciehp/sbin/dmesg/dmesg.8 projects/pciehp/sbin/dmesg/dmesg.c projects/pciehp/sbin/dumpfs/dumpfs.8 projects/pciehp/sbin/dumpfs/dumpfs.c projects/pciehp/sbin/etherswitchcfg/etherswitchcfg.8 projects/pciehp/sbin/etherswitchcfg/etherswitchcfg.c projects/pciehp/sbin/fdisk_pc98/fdisk.c projects/pciehp/sbin/fsck_ffs/fsck.h projects/pciehp/sbin/fsck_ffs/fsck_ffs.8 projects/pciehp/sbin/fsck_ffs/fsutil.c projects/pciehp/sbin/fsck_ffs/main.c projects/pciehp/sbin/geom/class/eli/geli.8 projects/pciehp/sbin/geom/class/part/geom_part.c projects/pciehp/sbin/geom/class/part/gpart.8 projects/pciehp/sbin/growfs/growfs.c projects/pciehp/sbin/hastctl/Makefile projects/pciehp/sbin/hastctl/hastctl.c projects/pciehp/sbin/hastd/Makefile projects/pciehp/sbin/hastd/control.c projects/pciehp/sbin/hastd/hast.h projects/pciehp/sbin/hastd/hastd.8 projects/pciehp/sbin/hastd/parse.y projects/pciehp/sbin/hastd/subr.c projects/pciehp/sbin/hastd/token.l projects/pciehp/sbin/ifconfig/af_nd6.c projects/pciehp/sbin/ifconfig/ifconfig.8 projects/pciehp/sbin/init/init.c projects/pciehp/sbin/ipf/ipf/Makefile projects/pciehp/sbin/ipf/ipftest/Makefile projects/pciehp/sbin/ipf/libipf/Makefile projects/pciehp/sbin/ipfw/ipfw.8 projects/pciehp/sbin/ipfw/ipfw2.c projects/pciehp/sbin/iscontrol/auth_subr.c projects/pciehp/sbin/iscontrol/config.c projects/pciehp/sbin/iscontrol/fsm.c projects/pciehp/sbin/iscontrol/iscontrol.8 projects/pciehp/sbin/iscontrol/iscontrol.c projects/pciehp/sbin/iscontrol/iscsi.conf.5 projects/pciehp/sbin/iscontrol/login.c projects/pciehp/sbin/iscontrol/misc.c projects/pciehp/sbin/iscontrol/pdu.c projects/pciehp/sbin/mdconfig/mdconfig.8 projects/pciehp/sbin/mdconfig/mdconfig.c projects/pciehp/sbin/mount/Makefile (contents, props changed) projects/pciehp/sbin/mount/mount.8 projects/pciehp/sbin/mount/mount.c projects/pciehp/sbin/mount_nfs/mount_nfs.8 projects/pciehp/sbin/newfs_msdos/newfs_msdos.c projects/pciehp/sbin/nvmecontrol/Makefile projects/pciehp/sbin/nvmecontrol/nvmecontrol.8 projects/pciehp/sbin/nvmecontrol/nvmecontrol.c projects/pciehp/sbin/ping6/ping6.8 projects/pciehp/sbin/reboot/boot_i386.8 projects/pciehp/sbin/recoverdisk/recoverdisk.1 projects/pciehp/sbin/route/Makefile projects/pciehp/sbin/route/route.c projects/pciehp/sbin/routed/routed.8 projects/pciehp/sbin/swapon/swapon.8 projects/pciehp/sbin/swapon/swapon.c projects/pciehp/sbin/tunefs/tunefs.c projects/pciehp/secure/lib/libssh/Makefile projects/pciehp/secure/libexec/sftp-server/Makefile projects/pciehp/secure/libexec/ssh-keysign/Makefile projects/pciehp/secure/libexec/ssh-pkcs11-helper/Makefile projects/pciehp/secure/usr.bin/scp/Makefile projects/pciehp/secure/usr.bin/sftp/Makefile projects/pciehp/secure/usr.bin/ssh-add/Makefile projects/pciehp/secure/usr.bin/ssh-agent/Makefile projects/pciehp/secure/usr.bin/ssh-keygen/Makefile projects/pciehp/secure/usr.bin/ssh-keyscan/Makefile projects/pciehp/secure/usr.bin/ssh/Makefile projects/pciehp/secure/usr.sbin/sshd/Makefile projects/pciehp/share/doc/bind9/Makefile projects/pciehp/share/doc/legal/Makefile projects/pciehp/share/doc/psd/Makefile projects/pciehp/share/examples/Makefile projects/pciehp/share/examples/etc/README.examples projects/pciehp/share/examples/etc/make.conf projects/pciehp/share/examples/kld/Makefile projects/pciehp/share/examples/kld/syscall/test/call.c projects/pciehp/share/examples/ppi/ppilcd.c projects/pciehp/share/examples/scsi_target/scsi_target.c projects/pciehp/share/i18n/csmapper/Makefile projects/pciehp/share/i18n/esdb/Makefile projects/pciehp/share/man/man3/offsetof.3 projects/pciehp/share/man/man3/pthread_testcancel.3 projects/pciehp/share/man/man3/queue.3 projects/pciehp/share/man/man4/Makefile projects/pciehp/share/man/man4/ath_hal.4 projects/pciehp/share/man/man4/axe.4 projects/pciehp/share/man/man4/bce.4 projects/pciehp/share/man/man4/bridge.4 projects/pciehp/share/man/man4/capsicum.4 projects/pciehp/share/man/man4/cd.4 projects/pciehp/share/man/man4/ciss.4 projects/pciehp/share/man/man4/ctl.4 projects/pciehp/share/man/man4/cxgbe.4 projects/pciehp/share/man/man4/filemon.4 projects/pciehp/share/man/man4/geom.4 projects/pciehp/share/man/man4/hptiop.4 projects/pciehp/share/man/man4/igb.4 projects/pciehp/share/man/man4/man4.i386/pnp.4 projects/pciehp/share/man/man4/mfi.4 projects/pciehp/share/man/man4/netgraph.4 projects/pciehp/share/man/man4/ntb.4 projects/pciehp/share/man/man4/nvd.4 projects/pciehp/share/man/man4/nvme.4 projects/pciehp/share/man/man4/oce.4 projects/pciehp/share/man/man4/random.4 projects/pciehp/share/man/man4/sa.4 projects/pciehp/share/man/man4/sysmouse.4 projects/pciehp/share/man/man4/udav.4 projects/pciehp/share/man/man4/usb_quirk.4 projects/pciehp/share/man/man4/virtio.4 projects/pciehp/share/man/man4/virtio_balloon.4 projects/pciehp/share/man/man4/virtio_blk.4 projects/pciehp/share/man/man4/virtio_scsi.4 projects/pciehp/share/man/man4/vtnet.4 projects/pciehp/share/man/man5/Makefile projects/pciehp/share/man/man5/freebsd-update.conf.5 projects/pciehp/share/man/man5/fstab.5 projects/pciehp/share/man/man5/mailer.conf.5 projects/pciehp/share/man/man5/make.conf.5 projects/pciehp/share/man/man5/periodic.conf.5 projects/pciehp/share/man/man5/pf.conf.5 projects/pciehp/share/man/man5/portsnap.conf.5 projects/pciehp/share/man/man5/rc.conf.5 projects/pciehp/share/man/man5/src.conf.5 projects/pciehp/share/man/man7/c99.7 projects/pciehp/share/man/man7/firewall.7 projects/pciehp/share/man/man7/hier.7 projects/pciehp/share/man/man7/ports.7 projects/pciehp/share/man/man7/release.7 projects/pciehp/share/man/man8/rc.8 projects/pciehp/share/man/man9/EVENTHANDLER.9 projects/pciehp/share/man/man9/Makefile projects/pciehp/share/man/man9/VOP_GETPAGES.9 projects/pciehp/share/man/man9/atomic.9 projects/pciehp/share/man/man9/bus_dma.9 projects/pciehp/share/man/man9/hhook.9 projects/pciehp/share/man/man9/kernel_mount.9 projects/pciehp/share/man/man9/locking.9 projects/pciehp/share/man/man9/microuptime.9 projects/pciehp/share/man/man9/mutex.9 projects/pciehp/share/man/man9/netisr.9 projects/pciehp/share/man/man9/pci.9 projects/pciehp/share/man/man9/pfil.9 projects/pciehp/share/man/man9/rmlock.9 projects/pciehp/share/man/man9/rwlock.9 projects/pciehp/share/man/man9/signal.9 projects/pciehp/share/man/man9/sleep.9 projects/pciehp/share/man/man9/sysctl.9 projects/pciehp/share/man/man9/sysctl_add_oid.9 projects/pciehp/share/man/man9/timeout.9 projects/pciehp/share/man/man9/vfsconf.9 projects/pciehp/share/man/man9/vm_map_find.9 projects/pciehp/share/man/man9/vm_page_alloc.9 projects/pciehp/share/man/man9/vm_page_grab.9 projects/pciehp/share/misc/bsd-family-tree projects/pciehp/share/misc/committers-doc.dot projects/pciehp/share/misc/committers-ports.dot projects/pciehp/share/misc/committers-src.dot projects/pciehp/share/misc/pci_vendors projects/pciehp/share/mk/bsd.cpu.mk projects/pciehp/share/mk/bsd.crunchgen.mk projects/pciehp/share/mk/bsd.lib.mk projects/pciehp/share/mk/bsd.libnames.mk projects/pciehp/share/mk/bsd.own.mk projects/pciehp/share/mk/bsd.prog.mk projects/pciehp/share/mk/bsd.subdir.mk projects/pciehp/share/mk/sys.mk projects/pciehp/share/monetdef/Makefile projects/pciehp/share/syscons/fonts/iso04-wide-8x16.fnt projects/pciehp/share/syscons/fonts/iso05-8x16.fnt projects/pciehp/sys/amd64/amd64/apic_vector.S projects/pciehp/sys/amd64/amd64/cpu_switch.S projects/pciehp/sys/amd64/amd64/db_disasm.c projects/pciehp/sys/amd64/amd64/db_trace.c projects/pciehp/sys/amd64/amd64/exception.S projects/pciehp/sys/amd64/amd64/fpu.c projects/pciehp/sys/amd64/amd64/genassym.c projects/pciehp/sys/amd64/amd64/identcpu.c projects/pciehp/sys/amd64/amd64/initcpu.c projects/pciehp/sys/amd64/amd64/machdep.c projects/pciehp/sys/amd64/amd64/minidump_machdep.c projects/pciehp/sys/amd64/amd64/mp_machdep.c projects/pciehp/sys/amd64/amd64/pmap.c projects/pciehp/sys/amd64/amd64/sys_machdep.c projects/pciehp/sys/amd64/amd64/trap.c projects/pciehp/sys/amd64/amd64/vm_machdep.c projects/pciehp/sys/amd64/conf/GENERIC projects/pciehp/sys/amd64/conf/NOTES projects/pciehp/sys/amd64/ia32/ia32_signal.c projects/pciehp/sys/amd64/include/acpica_machdep.h projects/pciehp/sys/amd64/include/apicvar.h projects/pciehp/sys/amd64/include/asm.h projects/pciehp/sys/amd64/include/atomic.h projects/pciehp/sys/amd64/include/counter.h projects/pciehp/sys/amd64/include/cpu.h projects/pciehp/sys/amd64/include/cpufunc.h projects/pciehp/sys/amd64/include/intr_machdep.h projects/pciehp/sys/amd64/include/md_var.h projects/pciehp/sys/amd64/include/metadata.h projects/pciehp/sys/amd64/include/param.h projects/pciehp/sys/amd64/include/pcb.h projects/pciehp/sys/amd64/include/pcpu.h projects/pciehp/sys/amd64/include/pmap.h projects/pciehp/sys/amd64/include/sf_buf.h projects/pciehp/sys/amd64/include/smp.h projects/pciehp/sys/amd64/include/vmm.h (contents, props changed) projects/pciehp/sys/amd64/include/vmparam.h projects/pciehp/sys/amd64/include/xen/hypercall.h projects/pciehp/sys/amd64/include/xen/xen-os.h projects/pciehp/sys/amd64/linux32/linux32_machdep.c projects/pciehp/sys/amd64/linux32/linux32_sysvec.c projects/pciehp/sys/amd64/vmm/intel/ept.c projects/pciehp/sys/amd64/vmm/intel/vmx.c projects/pciehp/sys/amd64/vmm/intel/vtd.c projects/pciehp/sys/amd64/vmm/io/ppt.c projects/pciehp/sys/amd64/vmm/io/ppt.h projects/pciehp/sys/amd64/vmm/io/vlapic.c projects/pciehp/sys/amd64/vmm/vmm.c projects/pciehp/sys/amd64/vmm/vmm_dev.c projects/pciehp/sys/amd64/vmm/vmm_instruction_emul.c projects/pciehp/sys/amd64/vmm/vmm_msr.c projects/pciehp/sys/amd64/vmm/vmm_stat.c projects/pciehp/sys/amd64/vmm/vmm_stat.h projects/pciehp/sys/amd64/vmm/x86.c projects/pciehp/sys/amd64/vmm/x86.h projects/pciehp/sys/arm/allwinner/common.c projects/pciehp/sys/arm/allwinner/files.a10 projects/pciehp/sys/arm/allwinner/timer.c projects/pciehp/sys/arm/arm/bus_space_generic.c projects/pciehp/sys/arm/arm/busdma_machdep-v6.c projects/pciehp/sys/arm/arm/busdma_machdep.c projects/pciehp/sys/arm/arm/cpufunc.c projects/pciehp/sys/arm/arm/cpufunc_asm_pj4b.S projects/pciehp/sys/arm/arm/cpufunc_asm_sheeva.S projects/pciehp/sys/arm/arm/db_trace.c projects/pciehp/sys/arm/arm/elf_trampoline.c projects/pciehp/sys/arm/arm/exception.S projects/pciehp/sys/arm/arm/genassym.c projects/pciehp/sys/arm/arm/gic.c projects/pciehp/sys/arm/arm/identcpu.c projects/pciehp/sys/arm/arm/irq_dispatch.S projects/pciehp/sys/arm/arm/locore.S projects/pciehp/sys/arm/arm/machdep.c projects/pciehp/sys/arm/arm/mp_machdep.c projects/pciehp/sys/arm/arm/mpcore_timer.c projects/pciehp/sys/arm/arm/pl310.c projects/pciehp/sys/arm/arm/pmap-v6.c projects/pciehp/sys/arm/arm/pmap.c projects/pciehp/sys/arm/arm/stack_machdep.c projects/pciehp/sys/arm/arm/swtch.S projects/pciehp/sys/arm/arm/trap.c projects/pciehp/sys/arm/arm/undefined.c projects/pciehp/sys/arm/arm/vfp.c projects/pciehp/sys/arm/arm/vm_machdep.c projects/pciehp/sys/arm/at91/at91.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_mbox.c projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_mbox.h projects/pciehp/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/pciehp/sys/arm/broadcom/bcm2835/files.bcm2835 projects/pciehp/sys/arm/conf/ARMADAXP projects/pciehp/sys/arm/conf/BEAGLEBONE projects/pciehp/sys/arm/conf/CUBIEBOARD projects/pciehp/sys/arm/conf/EFIKA_MX projects/pciehp/sys/arm/conf/PANDABOARD projects/pciehp/sys/arm/conf/RPI-B projects/pciehp/sys/arm/conf/VERSATILEPB projects/pciehp/sys/arm/conf/ZEDBOARD projects/pciehp/sys/arm/freescale/imx/bus_space.c projects/pciehp/sys/arm/freescale/imx/common.c projects/pciehp/sys/arm/freescale/imx/console.c projects/pciehp/sys/arm/freescale/imx/i2c.c projects/pciehp/sys/arm/freescale/imx/imx51_ccm.c projects/pciehp/sys/arm/freescale/imx/imx51_ccmreg.h projects/pciehp/sys/arm/freescale/imx/imx51_ccmvar.h projects/pciehp/sys/arm/freescale/imx/imx51_dpllreg.h projects/pciehp/sys/arm/freescale/imx/imx51_gpio.c projects/pciehp/sys/arm/freescale/imx/imx51_iomux.c projects/pciehp/sys/arm/freescale/imx/imx51_iomuxreg.h projects/pciehp/sys/arm/freescale/imx/imx51_iomuxvar.h projects/pciehp/sys/arm/freescale/imx/imx51_ipuv3.c projects/pciehp/sys/arm/freescale/imx/imx51_ipuv3reg.h projects/pciehp/sys/arm/freescale/imx/imx51_sdmareg.h projects/pciehp/sys/arm/freescale/imx/imx51_ssireg.h projects/pciehp/sys/arm/freescale/imx/imx51_tzicreg.h projects/pciehp/sys/arm/freescale/imx/imx_gpt.c projects/pciehp/sys/arm/freescale/imx/imx_gptreg.h projects/pciehp/sys/arm/freescale/imx/imx_gptvar.h projects/pciehp/sys/arm/freescale/imx/imx_wdog.c projects/pciehp/sys/arm/freescale/imx/imx_wdogreg.h projects/pciehp/sys/arm/freescale/imx/tzic.c projects/pciehp/sys/arm/include/armreg.h projects/pciehp/sys/arm/include/asm.h projects/pciehp/sys/arm/include/asmacros.h projects/pciehp/sys/arm/include/atomic.h projects/pciehp/sys/arm/include/counter.h projects/pciehp/sys/arm/include/fp.h projects/pciehp/sys/arm/include/frame.h projects/pciehp/sys/arm/include/ieee.h projects/pciehp/sys/arm/include/intr.h projects/pciehp/sys/arm/include/kdb.h projects/pciehp/sys/arm/include/param.h projects/pciehp/sys/arm/include/pcb.h projects/pciehp/sys/arm/include/pcpu.h projects/pciehp/sys/arm/include/pmap.h projects/pciehp/sys/arm/include/pte.h projects/pciehp/sys/arm/include/setjmp.h projects/pciehp/sys/arm/include/sf_buf.h projects/pciehp/sys/arm/include/smp.h projects/pciehp/sys/arm/include/vfp.h projects/pciehp/sys/arm/include/vmparam.h projects/pciehp/sys/arm/mv/armadaxp/armadaxp.c projects/pciehp/sys/arm/mv/armadaxp/armadaxp_mp.c projects/pciehp/sys/arm/mv/armadaxp/std.armadaxp projects/pciehp/sys/arm/mv/common.c projects/pciehp/sys/arm/mv/mv_machdep.c projects/pciehp/sys/arm/mv/mvreg.h projects/pciehp/sys/arm/mv/mvvar.h projects/pciehp/sys/arm/mv/mvwin.h projects/pciehp/sys/arm/mv/timer.c projects/pciehp/sys/arm/s3c2xx0/s3c2xx0_space.c projects/pciehp/sys/arm/ti/am335x/am335x_pmic.c projects/pciehp/sys/arm/ti/am335x/am335x_prcm.c projects/pciehp/sys/arm/ti/am335x/files.am335x projects/pciehp/sys/arm/ti/files.ti projects/pciehp/sys/arm/ti/omap4/omap4_prcm_clks.c projects/pciehp/sys/arm/ti/ti_machdep.c projects/pciehp/sys/arm/ti/ti_mmchs.c projects/pciehp/sys/arm/ti/ti_mmchs.h projects/pciehp/sys/arm/ti/ti_prcm.h projects/pciehp/sys/arm/ti/ti_scm.c projects/pciehp/sys/arm/versatile/versatile_pci.c projects/pciehp/sys/arm/versatile/versatile_sic.c projects/pciehp/sys/arm/xscale/i80321/i80321_space.c projects/pciehp/sys/arm/xscale/i8134x/i81342_space.c projects/pciehp/sys/arm/xscale/ixp425/ixp425_pci_space.c projects/pciehp/sys/boot/arm/at91/Makefile.inc projects/pciehp/sys/boot/arm/at91/boot2/Makefile projects/pciehp/sys/boot/arm/ixp425/Makefile.inc projects/pciehp/sys/boot/arm/ixp425/boot2/Makefile projects/pciehp/sys/boot/arm/uboot/Makefile projects/pciehp/sys/boot/common/part.c projects/pciehp/sys/boot/fdt/dts/am335x.dtsi projects/pciehp/sys/boot/fdt/dts/beaglebone.dts projects/pciehp/sys/boot/fdt/dts/db78460.dts projects/pciehp/sys/boot/fdt/dts/pandaboard.dts projects/pciehp/sys/boot/ficl/loader.c projects/pciehp/sys/boot/forth/beastie.4th projects/pciehp/sys/boot/forth/color.4th projects/pciehp/sys/boot/forth/color.4th.8 projects/pciehp/sys/boot/forth/loader.conf projects/pciehp/sys/boot/forth/loader.conf.5 projects/pciehp/sys/boot/forth/loader.rc projects/pciehp/sys/boot/forth/menu.4th projects/pciehp/sys/boot/forth/menu.4th.8 projects/pciehp/sys/boot/forth/menu.rc projects/pciehp/sys/boot/forth/version.4th projects/pciehp/sys/boot/forth/version.4th.8 projects/pciehp/sys/boot/i386/gptboot/Makefile projects/pciehp/sys/boot/i386/libi386/biosacpi.c projects/pciehp/sys/boot/pc98/boot2/boot2.c projects/pciehp/sys/boot/pc98/libpc98/biosdisk.c projects/pciehp/sys/boot/pc98/libpc98/comconsole.c projects/pciehp/sys/boot/sparc64/loader/main.c projects/pciehp/sys/bsm/audit_kevents.h projects/pciehp/sys/bsm/audit_record.h projects/pciehp/sys/cam/ata/ata_da.c projects/pciehp/sys/cam/ata/ata_pmp.c projects/pciehp/sys/cam/ata/ata_xpt.c projects/pciehp/sys/cam/cam.h projects/pciehp/sys/cam/cam_ccb.h projects/pciehp/sys/cam/cam_debug.h projects/pciehp/sys/cam/cam_periph.c projects/pciehp/sys/cam/cam_queue.c projects/pciehp/sys/cam/cam_queue.h projects/pciehp/sys/cam/cam_xpt.c projects/pciehp/sys/cam/cam_xpt.h projects/pciehp/sys/cam/cam_xpt_internal.h projects/pciehp/sys/cam/cam_xpt_periph.h projects/pciehp/sys/cam/ctl/ctl.c projects/pciehp/sys/cam/ctl/ctl.h projects/pciehp/sys/cam/ctl/ctl_backend.h projects/pciehp/sys/cam/ctl/ctl_backend_block.c projects/pciehp/sys/cam/ctl/ctl_backend_ramdisk.c projects/pciehp/sys/cam/ctl/ctl_frontend.h projects/pciehp/sys/cam/ctl/ctl_frontend_internal.c projects/pciehp/sys/cam/ctl/ctl_io.h projects/pciehp/sys/cam/ctl/ctl_ioctl.h projects/pciehp/sys/cam/ctl/scsi_ctl.c projects/pciehp/sys/cam/scsi/scsi_all.c projects/pciehp/sys/cam/scsi/scsi_all.h projects/pciehp/sys/cam/scsi/scsi_cd.c projects/pciehp/sys/cam/scsi/scsi_ch.c projects/pciehp/sys/cam/scsi/scsi_da.c projects/pciehp/sys/cam/scsi/scsi_da.h projects/pciehp/sys/cam/scsi/scsi_enc.c projects/pciehp/sys/cam/scsi/scsi_enc_ses.c projects/pciehp/sys/cam/scsi/scsi_pass.c projects/pciehp/sys/cam/scsi/scsi_pt.c projects/pciehp/sys/cam/scsi/scsi_sa.c projects/pciehp/sys/cam/scsi/scsi_sg.c projects/pciehp/sys/cam/scsi/scsi_targ_bh.c projects/pciehp/sys/cam/scsi/scsi_target.c projects/pciehp/sys/cam/scsi/scsi_xpt.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/pciehp/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c projects/pciehp/sys/cddl/compat/opensolaris/sys/file.h projects/pciehp/sys/cddl/compat/opensolaris/sys/kcondvar.h projects/pciehp/sys/cddl/compat/opensolaris/sys/kmem.h projects/pciehp/sys/cddl/compat/opensolaris/sys/mutex.h projects/pciehp/sys/cddl/compat/opensolaris/sys/rwlock.h projects/pciehp/sys/cddl/compat/opensolaris/sys/time.h projects/pciehp/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_destroy.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_userhold.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/unique.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_leaf.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_rlock.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zvol.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_onexit.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_sa.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/zfs.h projects/pciehp/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/pciehp/sys/cddl/dev/dtmalloc/dtmalloc.c projects/pciehp/sys/cddl/dev/dtrace/amd64/dis_tables.c projects/pciehp/sys/cddl/dev/dtrace/amd64/dis_tables.h projects/pciehp/sys/cddl/dev/dtrace/amd64/dtrace_isa.c projects/pciehp/sys/cddl/dev/dtrace/dtrace_clone.c projects/pciehp/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/pciehp/sys/cddl/dev/dtrace/dtrace_load.c projects/pciehp/sys/cddl/dev/dtrace/dtrace_test.c projects/pciehp/sys/cddl/dev/dtrace/dtrace_unload.c projects/pciehp/sys/cddl/dev/dtrace/i386/dis_tables.c projects/pciehp/sys/cddl/dev/dtrace/i386/dis_tables.h projects/pciehp/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S projects/pciehp/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c projects/pciehp/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c projects/pciehp/sys/cddl/dev/fbt/fbt.c projects/pciehp/sys/cddl/dev/fbt/fbt_powerpc.c projects/pciehp/sys/cddl/dev/sdt/sdt.c projects/pciehp/sys/compat/freebsd32/freebsd32.h projects/pciehp/sys/compat/freebsd32/freebsd32_ioctl.c projects/pciehp/sys/compat/freebsd32/freebsd32_misc.c projects/pciehp/sys/compat/freebsd32/freebsd32_proto.h projects/pciehp/sys/compat/freebsd32/freebsd32_signal.h projects/pciehp/sys/compat/freebsd32/freebsd32_syscall.h projects/pciehp/sys/compat/freebsd32/freebsd32_syscalls.c projects/pciehp/sys/compat/freebsd32/freebsd32_sysent.c projects/pciehp/sys/compat/freebsd32/freebsd32_systrace_args.c projects/pciehp/sys/compat/freebsd32/syscalls.master projects/pciehp/sys/compat/linprocfs/linprocfs.c projects/pciehp/sys/compat/linux/linux_dtrace.h projects/pciehp/sys/compat/linux/linux_file.c projects/pciehp/sys/compat/linux/linux_ioctl.c projects/pciehp/sys/compat/linux/linux_ioctl.h projects/pciehp/sys/compat/linux/linux_misc.c projects/pciehp/sys/compat/linux/linux_socket.c projects/pciehp/sys/compat/ndis/kern_ndis.c projects/pciehp/sys/compat/ndis/ndis_var.h projects/pciehp/sys/compat/ndis/subr_ntoskrnl.c projects/pciehp/sys/compat/svr4/imgact_svr4.c projects/pciehp/sys/compat/svr4/svr4_fcntl.c projects/pciehp/sys/compat/svr4/svr4_filio.c projects/pciehp/sys/compat/svr4/svr4_ioctl.c projects/pciehp/sys/compat/svr4/svr4_misc.c projects/pciehp/sys/compat/svr4/svr4_stream.c projects/pciehp/sys/conf/Makefile.amd64 projects/pciehp/sys/conf/Makefile.arm projects/pciehp/sys/conf/Makefile.i386 projects/pciehp/sys/conf/NOTES projects/pciehp/sys/conf/WITHOUT_SOURCELESS_HOST projects/pciehp/sys/conf/WITHOUT_SOURCELESS_UCODE projects/pciehp/sys/conf/files projects/pciehp/sys/conf/files.amd64 projects/pciehp/sys/conf/files.arm projects/pciehp/sys/conf/files.i386 projects/pciehp/sys/conf/files.ia64 projects/pciehp/sys/conf/files.mips projects/pciehp/sys/conf/files.pc98 projects/pciehp/sys/conf/files.powerpc projects/pciehp/sys/conf/files.sparc64 projects/pciehp/sys/conf/kern.mk projects/pciehp/sys/conf/kern.post.mk projects/pciehp/sys/conf/kern.pre.mk projects/pciehp/sys/conf/kmod.mk projects/pciehp/sys/conf/newvers.sh projects/pciehp/sys/conf/options projects/pciehp/sys/conf/options.amd64 projects/pciehp/sys/conf/options.arm projects/pciehp/sys/conf/options.i386 projects/pciehp/sys/contrib/dev/acpica/acpica_prep.sh projects/pciehp/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/pciehp/sys/contrib/dev/acpica/common/adisasm.c projects/pciehp/sys/contrib/dev/acpica/common/adwalk.c projects/pciehp/sys/contrib/dev/acpica/common/dmextern.c projects/pciehp/sys/contrib/dev/acpica/common/dmrestag.c projects/pciehp/sys/contrib/dev/acpica/common/dmtable.c projects/pciehp/sys/contrib/dev/acpica/common/dmtbdump.c projects/pciehp/sys/contrib/dev/acpica/common/dmtbinfo.c projects/pciehp/sys/contrib/dev/acpica/common/getopt.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslanalyze.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslbtypes.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompile.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/pciehp/sys/contrib/dev/acpica/compiler/aslerror.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslfold.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslglobal.h projects/pciehp/sys/contrib/dev/acpica/compiler/aslhex.c projects/pciehp/sys/contrib/dev/acpica/compiler/asllength.c projects/pciehp/sys/contrib/dev/acpica/compiler/asllisting.c projects/pciehp/sys/contrib/dev/acpica/compiler/asllistsup.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslload.c projects/pciehp/sys/contrib/dev/acpica/compiler/asllookup.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslmain.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslmessages.h projects/pciehp/sys/contrib/dev/acpica/compiler/aslmethod.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslnamesp.c projects/pciehp/sys/contrib/dev/acpica/compiler/asloffset.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslopcodes.c projects/pciehp/sys/contrib/dev/acpica/compiler/asloperands.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslpredef.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslresource.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype1i.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslrestype2s.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslstartup.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslsupport.l projects/pciehp/sys/contrib/dev/acpica/compiler/asltransform.c projects/pciehp/sys/contrib/dev/acpica/compiler/asltree.c projects/pciehp/sys/contrib/dev/acpica/compiler/asltypes.h projects/pciehp/sys/contrib/dev/acpica/compiler/aslutils.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslwalks.c projects/pciehp/sys/contrib/dev/acpica/compiler/aslxref.c projects/pciehp/sys/contrib/dev/acpica/compiler/dtcompile.c projects/pciehp/sys/contrib/dev/acpica/compiler/dtexpress.c projects/pciehp/sys/contrib/dev/acpica/compiler/dtfield.c projects/pciehp/sys/contrib/dev/acpica/compiler/dtio.c projects/pciehp/sys/contrib/dev/acpica/compiler/dtsubtable.c projects/pciehp/sys/contrib/dev/acpica/compiler/dttable.c projects/pciehp/sys/contrib/dev/acpica/compiler/dttemplate.c projects/pciehp/sys/contrib/dev/acpica/compiler/dttemplate.h projects/pciehp/sys/contrib/dev/acpica/compiler/dtutils.c projects/pciehp/sys/contrib/dev/acpica/compiler/preprocess.h projects/pciehp/sys/contrib/dev/acpica/compiler/prscan.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbcmds.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbconvert.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbdisply.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbexec.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbfileio.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbhistry.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbinput.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbmethod.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbnames.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbstats.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbutils.c projects/pciehp/sys/contrib/dev/acpica/components/debugger/dbxface.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmnames.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmobject.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmopcode.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrc.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c projects/pciehp/sys/contrib/dev/acpica/components/disassembler/dmwalk.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsfield.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsinit.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsobject.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dsutils.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswexec.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswload.c projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/dswload2.c projects/pciehp/sys/contrib/dev/acpica/components/events/evglock.c projects/pciehp/sys/contrib/dev/acpica/components/events/evgpe.c projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeblk.c projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeinit.c projects/pciehp/sys/contrib/dev/acpica/components/events/evgpeutil.c projects/pciehp/sys/contrib/dev/acpica/components/events/evhandler.c projects/pciehp/sys/contrib/dev/acpica/components/events/evmisc.c projects/pciehp/sys/contrib/dev/acpica/components/events/evregion.c projects/pciehp/sys/contrib/dev/acpica/components/events/evrgnini.c projects/pciehp/sys/contrib/dev/acpica/components/events/evsci.c projects/pciehp/sys/contrib/dev/acpica/components/events/evxface.c projects/pciehp/sys/contrib/dev/acpica/components/events/evxfgpe.c projects/pciehp/sys/contrib/dev/acpica/components/events/evxfregn.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exconfig.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exconvrt.c projects/pciehp/sys/contrib/dev/acpica/components/executer/excreate.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exdebug.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exdump.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exfield.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exfldio.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exmisc.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exnames.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg1.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg2.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg3.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exoparg6.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exprep.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exregion.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exresnte.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exresolv.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exresop.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exstore.c projects/pciehp/sys/contrib/dev/acpica/components/executer/exstoren.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwacpi.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwgpe.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwregs.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwtimer.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwxface.c projects/pciehp/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsaccess.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsconvert.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsinit.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nspredef.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsprepkg.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsrepair.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsrepair2.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsutils.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nswalk.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsxfeval.c projects/pciehp/sys/contrib/dev/acpica/components/namespace/nsxfname.c projects/pciehp/sys/contrib/dev/acpica/components/parser/psargs.c projects/pciehp/sys/contrib/dev/acpica/components/parser/psloop.c projects/pciehp/sys/contrib/dev/acpica/components/parser/psobject.c projects/pciehp/sys/contrib/dev/acpica/components/parser/psparse.c projects/pciehp/sys/contrib/dev/acpica/components/parser/pstree.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rscalc.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rscreate.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rsdump.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rsmisc.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rsutils.c projects/pciehp/sys/contrib/dev/acpica/components/resources/rsxface.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbfadt.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbutils.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbxfload.c projects/pciehp/sys/contrib/dev/acpica/components/tables/tbxfroot.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utcopy.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utdebug.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utdelete.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/uteval.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utexcep.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utids.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utmisc.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utobject.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utosi.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utstring.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/uttrack.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxface.c projects/pciehp/sys/contrib/dev/acpica/components/utilities/utxferror.c projects/pciehp/sys/contrib/dev/acpica/include/acapps.h projects/pciehp/sys/contrib/dev/acpica/include/acdebug.h projects/pciehp/sys/contrib/dev/acpica/include/acdisasm.h projects/pciehp/sys/contrib/dev/acpica/include/acevents.h projects/pciehp/sys/contrib/dev/acpica/include/acexcep.h projects/pciehp/sys/contrib/dev/acpica/include/acglobal.h projects/pciehp/sys/contrib/dev/acpica/include/aclocal.h projects/pciehp/sys/contrib/dev/acpica/include/acnamesp.h projects/pciehp/sys/contrib/dev/acpica/include/acpiosxf.h projects/pciehp/sys/contrib/dev/acpica/include/acpixf.h projects/pciehp/sys/contrib/dev/acpica/include/actables.h projects/pciehp/sys/contrib/dev/acpica/include/actypes.h projects/pciehp/sys/contrib/dev/acpica/include/acutils.h projects/pciehp/sys/contrib/dev/acpica/include/platform/acenv.h projects/pciehp/sys/contrib/dev/acpica/include/platform/acfreebsd.h projects/pciehp/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_attach.c projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd.c projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_freebsd_inc.h projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_radio.c projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_reset.c projects/pciehp/sys/contrib/dev/ath/ath_hal/ar9300/ar9300_stub_funcs.c projects/pciehp/sys/contrib/ipfilter/netinet/fil.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_auth.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_auth.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_compat.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_fil.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/pciehp/sys/contrib/ipfilter/netinet/ip_frag.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_frag.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_htable.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_htable.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_irc_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_log.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_lookup.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_lookup.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_nat.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_nat.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_pool.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_pool.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_pptp_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_proxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_proxy.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c (contents, props changed) projects/pciehp/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_rpcb_pxy.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_rules.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_scan.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_scan.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_state.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_state.h projects/pciehp/sys/contrib/ipfilter/netinet/ip_sync.c projects/pciehp/sys/contrib/ipfilter/netinet/ip_sync.h projects/pciehp/sys/contrib/ipfilter/netinet/ipl.h projects/pciehp/sys/contrib/ipfilter/netinet/mlfk_ipl.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-app-init.h projects/pciehp/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-helper-sgmii.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-mgmt-port.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-pcie.c projects/pciehp/sys/contrib/octeon-sdk/cvmx-rtc.h projects/pciehp/sys/contrib/rdma/krping/krping.c projects/pciehp/sys/contrib/rdma/krping/krping.h projects/pciehp/sys/contrib/rdma/krping/krping_dev.c projects/pciehp/sys/crypto/aesni/aeskeys_amd64.S projects/pciehp/sys/crypto/aesni/aesni.c projects/pciehp/sys/crypto/aesni/aesni.h projects/pciehp/sys/crypto/aesni/aesni_wrap.c projects/pciehp/sys/crypto/sha2/sha2.c projects/pciehp/sys/crypto/sha2/sha2.h projects/pciehp/sys/dev/aac/aac.c projects/pciehp/sys/dev/aac/aac_cam.c projects/pciehp/sys/dev/aac/aac_disk.c projects/pciehp/sys/dev/aac/aac_linux.c projects/pciehp/sys/dev/aac/aac_pci.c projects/pciehp/sys/dev/aac/aacvar.h projects/pciehp/sys/dev/acpi_support/atk0110.c projects/pciehp/sys/dev/acpica/Osd/OsdSynch.c projects/pciehp/sys/dev/acpica/Osd/OsdTable.c projects/pciehp/sys/dev/acpica/acpi_pcib.c projects/pciehp/sys/dev/acpica/acpi_pcib_acpi.c projects/pciehp/sys/dev/acpica/acpi_resource.c projects/pciehp/sys/dev/acpica/acpi_thermal.c projects/pciehp/sys/dev/advansys/adw_pci.c projects/pciehp/sys/dev/ae/if_ae.c projects/pciehp/sys/dev/ae/if_aereg.h projects/pciehp/sys/dev/age/if_age.c projects/pciehp/sys/dev/agp/agp.c projects/pciehp/sys/dev/agp/agp_i810.c projects/pciehp/sys/dev/ahci/ahci.c projects/pciehp/sys/dev/ahci/ahci.h projects/pciehp/sys/dev/aic7xxx/ahc_pci.c projects/pciehp/sys/dev/aic7xxx/ahd_pci.c projects/pciehp/sys/dev/aic7xxx/aic7xxx.h projects/pciehp/sys/dev/aic7xxx/aic7xxx_pci.c projects/pciehp/sys/dev/amdtemp/amdtemp.c projects/pciehp/sys/dev/amr/amr_linux.c projects/pciehp/sys/dev/amr/amr_pci.c projects/pciehp/sys/dev/an/if_an_pci.c projects/pciehp/sys/dev/arcmsr/arcmsr.c projects/pciehp/sys/dev/arcmsr/arcmsr.h projects/pciehp/sys/dev/asr/asr.c projects/pciehp/sys/dev/ata/ata-lowlevel.c projects/pciehp/sys/dev/ata/ata-pci.c projects/pciehp/sys/dev/ata/ata-pci.h projects/pciehp/sys/dev/ata/chipsets/ata-acerlabs.c projects/pciehp/sys/dev/ata/chipsets/ata-intel.c projects/pciehp/sys/dev/ata/chipsets/ata-promise.c projects/pciehp/sys/dev/ath/ath_hal/ah.c projects/pciehp/sys/dev/ath/ath_hal/ah.h projects/pciehp/sys/dev/ath/ath_hal/ah_desc.h projects/pciehp/sys/dev/ath/ath_hal/ah_internal.h projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/pciehp/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285.h projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h projects/pciehp/sys/dev/ath/ath_hal/ar9002/ar9285_reset.c projects/pciehp/sys/dev/ath/if_ath.c projects/pciehp/sys/dev/ath/if_ath_ahb.c projects/pciehp/sys/dev/ath/if_ath_alq.c projects/pciehp/sys/dev/ath/if_ath_alq.h projects/pciehp/sys/dev/ath/if_ath_beacon.c projects/pciehp/sys/dev/ath/if_ath_debug.h projects/pciehp/sys/dev/ath/if_ath_misc.h projects/pciehp/sys/dev/ath/if_ath_rx.c projects/pciehp/sys/dev/ath/if_ath_rx_edma.c projects/pciehp/sys/dev/ath/if_ath_sysctl.c projects/pciehp/sys/dev/ath/if_ath_tdma.c projects/pciehp/sys/dev/ath/if_ath_tx.c projects/pciehp/sys/dev/ath/if_ath_tx.h projects/pciehp/sys/dev/ath/if_ath_tx_edma.c projects/pciehp/sys/dev/ath/if_ath_tx_ht.c projects/pciehp/sys/dev/ath/if_ath_tx_ht.h projects/pciehp/sys/dev/ath/if_athioctl.h projects/pciehp/sys/dev/ath/if_athvar.h projects/pciehp/sys/dev/atkbdc/psm.c projects/pciehp/sys/dev/bce/if_bce.c projects/pciehp/sys/dev/bce/if_bcefw.h projects/pciehp/sys/dev/bce/if_bcereg.h projects/pciehp/sys/dev/bge/if_bge.c projects/pciehp/sys/dev/bge/if_bgereg.h projects/pciehp/sys/dev/bktr/bktr_core.c projects/pciehp/sys/dev/bktr/bktr_os.c projects/pciehp/sys/dev/buslogic/bt_pci.c projects/pciehp/sys/dev/bwi/bwimac.c projects/pciehp/sys/dev/bwn/if_bwn.c projects/pciehp/sys/dev/bxe/if_bxe.c projects/pciehp/sys/dev/cas/if_cas.c projects/pciehp/sys/dev/cesa/cesa.c projects/pciehp/sys/dev/cesa/cesa.h projects/pciehp/sys/dev/cfi/cfi_bus_nexus.c projects/pciehp/sys/dev/cfi/cfi_core.c projects/pciehp/sys/dev/cfi/cfi_dev.c projects/pciehp/sys/dev/cfi/cfi_disk.c projects/pciehp/sys/dev/cfi/cfi_reg.h projects/pciehp/sys/dev/cfi/cfi_var.h projects/pciehp/sys/dev/ciss/ciss.c projects/pciehp/sys/dev/cp/if_cp.c projects/pciehp/sys/dev/cpuctl/cpuctl.c projects/pciehp/sys/dev/ctau/if_ct.c projects/pciehp/sys/dev/cx/csigma.c projects/pciehp/sys/dev/cx/if_cx.c projects/pciehp/sys/dev/cxgb/cxgb_main.c projects/pciehp/sys/dev/cxgb/cxgb_sge.c projects/pciehp/sys/dev/cxgb/sys/uipc_mvec.c projects/pciehp/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c projects/pciehp/sys/dev/cxgbe/adapter.h projects/pciehp/sys/dev/cxgbe/common/common.h projects/pciehp/sys/dev/cxgbe/common/t4_hw.c projects/pciehp/sys/dev/cxgbe/common/t4_hw.h projects/pciehp/sys/dev/cxgbe/common/t4_msg.h projects/pciehp/sys/dev/cxgbe/common/t4_regs_values.h projects/pciehp/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/pciehp/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt projects/pciehp/sys/dev/cxgbe/firmware/t4fw_interface.h projects/pciehp/sys/dev/cxgbe/offload.h projects/pciehp/sys/dev/cxgbe/osdep.h projects/pciehp/sys/dev/cxgbe/t4_ioctl.h projects/pciehp/sys/dev/cxgbe/t4_main.c projects/pciehp/sys/dev/cxgbe/t4_sge.c projects/pciehp/sys/dev/cxgbe/tom/t4_connect.c projects/pciehp/sys/dev/cxgbe/tom/t4_cpl_io.c projects/pciehp/sys/dev/cxgbe/tom/t4_ddp.c projects/pciehp/sys/dev/cxgbe/tom/t4_listen.c projects/pciehp/sys/dev/cxgbe/tom/t4_tom.c projects/pciehp/sys/dev/cxgbe/tom/t4_tom.h projects/pciehp/sys/dev/dpt/dpt_pci.c projects/pciehp/sys/dev/drm/drm_scatter.c projects/pciehp/sys/dev/drm2/drmP.h projects/pciehp/sys/dev/drm2/drm_atomic.h projects/pciehp/sys/dev/drm2/drm_context.c projects/pciehp/sys/dev/drm2/drm_crtc.c projects/pciehp/sys/dev/drm2/drm_crtc.h projects/pciehp/sys/dev/drm2/drm_crtc_helper.h projects/pciehp/sys/dev/drm2/drm_dp_helper.h projects/pciehp/sys/dev/drm2/drm_dp_iic_helper.c projects/pciehp/sys/dev/drm2/drm_drv.c projects/pciehp/sys/dev/drm2/drm_edid.c projects/pciehp/sys/dev/drm2/drm_gem.c projects/pciehp/sys/dev/drm2/drm_gem_names.c projects/pciehp/sys/dev/drm2/drm_ioctl.c projects/pciehp/sys/dev/drm2/drm_irq.c projects/pciehp/sys/dev/drm2/drm_linux_list.h projects/pciehp/sys/dev/drm2/drm_pci.c projects/pciehp/sys/dev/drm2/drm_pciids.h projects/pciehp/sys/dev/drm2/drm_scatter.c projects/pciehp/sys/dev/drm2/drm_sysctl.c projects/pciehp/sys/dev/drm2/i915/i915_gem.c projects/pciehp/sys/dev/drm2/i915/i915_gem_execbuffer.c projects/pciehp/sys/dev/drm2/i915/intel_crt.c projects/pciehp/sys/dev/drm2/i915/intel_display.c projects/pciehp/sys/dev/drm2/i915/intel_dp.c projects/pciehp/sys/dev/drm2/i915/intel_drv.h projects/pciehp/sys/dev/drm2/i915/intel_fb.c projects/pciehp/sys/dev/drm2/i915/intel_hdmi.c projects/pciehp/sys/dev/drm2/i915/intel_lvds.c projects/pciehp/sys/dev/drm2/i915/intel_panel.c projects/pciehp/sys/dev/drm2/i915/intel_ringbuffer.c projects/pciehp/sys/dev/drm2/i915/intel_sdvo.c projects/pciehp/sys/dev/drm2/i915/intel_tv.c projects/pciehp/sys/dev/drm2/ttm/ttm_bo.c projects/pciehp/sys/dev/drm2/ttm/ttm_bo_driver.h projects/pciehp/sys/dev/drm2/ttm/ttm_bo_util.c projects/pciehp/sys/dev/drm2/ttm/ttm_bo_vm.c projects/pciehp/sys/dev/drm2/ttm/ttm_execbuf_util.c projects/pciehp/sys/dev/drm2/ttm/ttm_page_alloc.c projects/pciehp/sys/dev/drm2/ttm/ttm_tt.c projects/pciehp/sys/dev/e1000/if_em.c projects/pciehp/sys/dev/e1000/if_em.h projects/pciehp/sys/dev/e1000/if_igb.c projects/pciehp/sys/dev/e1000/if_lem.c projects/pciehp/sys/dev/e1000/if_lem.h projects/pciehp/sys/dev/etherswitch/arswitch/arswitch.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_7240.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_8216.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_8226.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_8316.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_phy.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/pciehp/sys/dev/etherswitch/arswitch/arswitch_reg.h projects/pciehp/sys/dev/etherswitch/arswitch/arswitchreg.h projects/pciehp/sys/dev/etherswitch/arswitch/arswitchvar.h projects/pciehp/sys/dev/etherswitch/etherswitch.c projects/pciehp/sys/dev/etherswitch/etherswitch.h projects/pciehp/sys/dev/etherswitch/etherswitch_if.m projects/pciehp/sys/dev/etherswitch/rtl8366/rtl8366rb.c projects/pciehp/sys/dev/etherswitch/ukswitch/ukswitch.c projects/pciehp/sys/dev/fatm/if_fatm.c projects/pciehp/sys/dev/fb/vesa.c projects/pciehp/sys/dev/fdc/fdc.c projects/pciehp/sys/dev/filemon/filemon.c projects/pciehp/sys/dev/filemon/filemon_wrapper.c projects/pciehp/sys/dev/firewire/fwdev.c projects/pciehp/sys/dev/firewire/fwohci_pci.c projects/pciehp/sys/dev/flash/mx25l.c projects/pciehp/sys/dev/fxp/if_fxp.c projects/pciehp/sys/dev/glxsb/glxsb.c projects/pciehp/sys/dev/gpio/gpiobus.c projects/pciehp/sys/dev/gxemul/cons/gxemul_cons.c projects/pciehp/sys/dev/gxemul/disk/gxemul_disk.c projects/pciehp/sys/dev/gxemul/disk/gxemul_diskreg.h projects/pciehp/sys/dev/gxemul/ether/gxreg.h projects/pciehp/sys/dev/hatm/if_hatm.c projects/pciehp/sys/dev/hatm/if_hatm_intr.c projects/pciehp/sys/dev/hifn/hifn7751.c projects/pciehp/sys/dev/hme/if_hme.c projects/pciehp/sys/dev/hpt27xx/hpt27xx_config.c projects/pciehp/sys/dev/hptiop/hptiop.c projects/pciehp/sys/dev/hptmv/entry.c projects/pciehp/sys/dev/hwpmc/hwpmc_core.c projects/pciehp/sys/dev/hwpmc/hwpmc_logging.c projects/pciehp/sys/dev/hwpmc/hwpmc_mod.c projects/pciehp/sys/dev/hwpmc/hwpmc_powerpc.c projects/pciehp/sys/dev/hwpmc/pmc_events.h projects/pciehp/sys/dev/ichsmb/ichsmb_pci.c projects/pciehp/sys/dev/ichwd/ichwd.c projects/pciehp/sys/dev/ichwd/ichwd.h projects/pciehp/sys/dev/if_ndis/if_ndis.c projects/pciehp/sys/dev/iicbus/if_ic.c projects/pciehp/sys/dev/iir/iir.c projects/pciehp/sys/dev/iir/iir.h projects/pciehp/sys/dev/iir/iir_ctrl.c projects/pciehp/sys/dev/iir/iir_pci.c projects/pciehp/sys/dev/ipmi/ipmi_isa.c projects/pciehp/sys/dev/ipmi/ipmi_linux.c projects/pciehp/sys/dev/ipmi/ipmivars.h projects/pciehp/sys/dev/ips/ips_pci.c projects/pciehp/sys/dev/isci/scil/sati_passthrough.c projects/pciehp/sys/dev/isci/scil/scif_sas_domain.c projects/pciehp/sys/dev/isp/isp.c projects/pciehp/sys/dev/isp/isp_freebsd.c projects/pciehp/sys/dev/isp/isp_pci.c projects/pciehp/sys/dev/isp/ispreg.h projects/pciehp/sys/dev/iwn/if_iwn.c projects/pciehp/sys/dev/iwn/if_iwnreg.h projects/pciehp/sys/dev/iwn/if_iwnvar.h projects/pciehp/sys/dev/ixgb/if_ixgb.c projects/pciehp/sys/dev/ixgb/ixgb_ids.h projects/pciehp/sys/dev/ixgbe/README projects/pciehp/sys/dev/ixgbe/ixgbe.c projects/pciehp/sys/dev/ixgbe/ixgbe.h projects/pciehp/sys/dev/ixgbe/ixgbe_82598.c projects/pciehp/sys/dev/ixgbe/ixgbe_82599.c projects/pciehp/sys/dev/ixgbe/ixgbe_api.c projects/pciehp/sys/dev/ixgbe/ixgbe_api.h projects/pciehp/sys/dev/ixgbe/ixgbe_common.c projects/pciehp/sys/dev/ixgbe/ixgbe_common.h projects/pciehp/sys/dev/ixgbe/ixgbe_osdep.h projects/pciehp/sys/dev/ixgbe/ixgbe_phy.c projects/pciehp/sys/dev/ixgbe/ixgbe_phy.h projects/pciehp/sys/dev/ixgbe/ixgbe_type.h projects/pciehp/sys/dev/ixgbe/ixgbe_vf.c projects/pciehp/sys/dev/ixgbe/ixgbe_x540.c projects/pciehp/sys/dev/ixgbe/ixgbe_x540.h projects/pciehp/sys/dev/ixgbe/ixv.c projects/pciehp/sys/dev/jme/if_jme.c projects/pciehp/sys/dev/lge/if_lge.c projects/pciehp/sys/dev/lmc/if_lmc.c projects/pciehp/sys/dev/md/md.c projects/pciehp/sys/dev/mem/memdev.c projects/pciehp/sys/dev/mfi/mfi.c projects/pciehp/sys/dev/mfi/mfi_cam.c projects/pciehp/sys/dev/mfi/mfi_linux.c projects/pciehp/sys/dev/mfi/mfi_pci.c projects/pciehp/sys/dev/mfi/mfi_syspd.c projects/pciehp/sys/dev/mfi/mfireg.h projects/pciehp/sys/dev/mge/if_mge.c projects/pciehp/sys/dev/mii/brgphy.c projects/pciehp/sys/dev/mii/miidevs projects/pciehp/sys/dev/mly/mly.c projects/pciehp/sys/dev/mmc/mmc.c projects/pciehp/sys/dev/mmc/mmcsd.c projects/pciehp/sys/dev/mn/if_mn.c projects/pciehp/sys/dev/mps/mps.c projects/pciehp/sys/dev/mps/mps_config.c projects/pciehp/sys/dev/mps/mps_mapping.c projects/pciehp/sys/dev/mps/mps_pci.c projects/pciehp/sys/dev/mps/mps_sas.c projects/pciehp/sys/dev/mps/mps_sas.h projects/pciehp/sys/dev/mps/mps_sas_lsi.c projects/pciehp/sys/dev/mps/mps_table.c projects/pciehp/sys/dev/mps/mps_user.c projects/pciehp/sys/dev/mps/mpsvar.h projects/pciehp/sys/dev/mpt/mpt_cam.c projects/pciehp/sys/dev/mpt/mpt_pci.c projects/pciehp/sys/dev/mpt/mpt_raid.c projects/pciehp/sys/dev/mpt/mpt_user.c projects/pciehp/sys/dev/msk/if_msk.c projects/pciehp/sys/dev/mvs/mvs.c projects/pciehp/sys/dev/mwl/if_mwl.c projects/pciehp/sys/dev/mwl/if_mwl_pci.c projects/pciehp/sys/dev/mxge/if_mxge.c projects/pciehp/sys/dev/nand/nand.h projects/pciehp/sys/dev/nand/nand_geom.c projects/pciehp/sys/dev/nand/nandbus.c projects/pciehp/sys/dev/netmap/netmap.c projects/pciehp/sys/dev/netmap/netmap_kern.h projects/pciehp/sys/dev/netmap/netmap_mem2.c projects/pciehp/sys/dev/nfe/if_nfe.c projects/pciehp/sys/dev/nsp/nsp.c projects/pciehp/sys/dev/ntb/if_ntb/if_ntb.c projects/pciehp/sys/dev/ntb/ntb_hw/ntb_hw.c projects/pciehp/sys/dev/ntb/ntb_hw/ntb_hw.h projects/pciehp/sys/dev/ntb/ntb_hw/ntb_regs.h projects/pciehp/sys/dev/nvd/nvd.c projects/pciehp/sys/dev/nvme/nvme.c projects/pciehp/sys/dev/nvme/nvme.h projects/pciehp/sys/dev/nvme/nvme_ctrlr.c projects/pciehp/sys/dev/nvme/nvme_ctrlr_cmd.c projects/pciehp/sys/dev/nvme/nvme_ns.c projects/pciehp/sys/dev/nvme/nvme_ns_cmd.c projects/pciehp/sys/dev/nvme/nvme_private.h projects/pciehp/sys/dev/nvme/nvme_qpair.c projects/pciehp/sys/dev/nvme/nvme_sysctl.c projects/pciehp/sys/dev/nvme/nvme_test.c projects/pciehp/sys/dev/oce/oce_hw.c projects/pciehp/sys/dev/oce/oce_hw.h projects/pciehp/sys/dev/oce/oce_if.c projects/pciehp/sys/dev/oce/oce_if.h projects/pciehp/sys/dev/oce/oce_mbox.c projects/pciehp/sys/dev/oce/oce_queue.c projects/pciehp/sys/dev/oce/oce_sysctl.c projects/pciehp/sys/dev/oce/oce_util.c projects/pciehp/sys/dev/ofw/ofw_bus_subr.c projects/pciehp/sys/dev/ofw/ofw_console.c projects/pciehp/sys/dev/ofw/openfirm.c projects/pciehp/sys/dev/ofw/openfirm.h projects/pciehp/sys/dev/patm/if_patm.c projects/pciehp/sys/dev/patm/if_patm_tx.c projects/pciehp/sys/dev/pccbb/pccbb_pci.c projects/pciehp/sys/dev/pci/fixup_pci.c projects/pciehp/sys/dev/pci/pci.c projects/pciehp/sys/dev/pci/pci_pci.c projects/pciehp/sys/dev/pci/pci_private.h projects/pciehp/sys/dev/pci/pcib_private.h projects/pciehp/sys/dev/pci/pcireg.h projects/pciehp/sys/dev/pci/pcivar.h projects/pciehp/sys/dev/pci/vga_pci.c projects/pciehp/sys/dev/ppbus/if_plip.c projects/pciehp/sys/dev/pst/pst-pci.c projects/pciehp/sys/dev/puc/puc_bfe.h projects/pciehp/sys/dev/puc/puc_cfg.h projects/pciehp/sys/dev/puc/pucdata.c projects/pciehp/sys/dev/qlxgb/README.txt projects/pciehp/sys/dev/qlxgb/qla_dbg.c projects/pciehp/sys/dev/qlxgb/qla_dbg.h projects/pciehp/sys/dev/qlxgb/qla_def.h projects/pciehp/sys/dev/qlxgb/qla_glbl.h projects/pciehp/sys/dev/qlxgb/qla_hw.c projects/pciehp/sys/dev/qlxgb/qla_hw.h projects/pciehp/sys/dev/qlxgb/qla_inline.h projects/pciehp/sys/dev/qlxgb/qla_ioctl.c projects/pciehp/sys/dev/qlxgb/qla_ioctl.h projects/pciehp/sys/dev/qlxgb/qla_isr.c projects/pciehp/sys/dev/qlxgb/qla_misc.c projects/pciehp/sys/dev/qlxgb/qla_os.c projects/pciehp/sys/dev/qlxgb/qla_os.h projects/pciehp/sys/dev/qlxgb/qla_reg.h projects/pciehp/sys/dev/qlxgb/qla_ver.h projects/pciehp/sys/dev/ral/rt2560.c projects/pciehp/sys/dev/ral/rt2661.c projects/pciehp/sys/dev/ral/rt2860.c projects/pciehp/sys/dev/random/harvest.c projects/pciehp/sys/dev/random/hash.c projects/pciehp/sys/dev/random/hash.h projects/pciehp/sys/dev/random/ivy.c projects/pciehp/sys/dev/random/nehemiah.c projects/pciehp/sys/dev/random/randomdev.c projects/pciehp/sys/dev/random/randomdev.h projects/pciehp/sys/dev/random/randomdev_soft.c projects/pciehp/sys/dev/random/randomdev_soft.h projects/pciehp/sys/dev/random/yarrow.c projects/pciehp/sys/dev/random/yarrow.h projects/pciehp/sys/dev/re/if_re.c projects/pciehp/sys/dev/rndtest/rndtest.c projects/pciehp/sys/dev/rp/rp_pci.c projects/pciehp/sys/dev/rt/if_rt.c projects/pciehp/sys/dev/safe/safe.c projects/pciehp/sys/dev/scc/scc_bfe.h projects/pciehp/sys/dev/scc/scc_bfe_ebus.c projects/pciehp/sys/dev/scc/scc_bfe_macio.c projects/pciehp/sys/dev/scc/scc_bfe_quicc.c projects/pciehp/sys/dev/scc/scc_bfe_sbus.c projects/pciehp/sys/dev/scc/scc_core.c projects/pciehp/sys/dev/scc/scc_dev_quicc.c projects/pciehp/sys/dev/scc/scc_dev_sab82532.c projects/pciehp/sys/dev/scc/scc_dev_z8530.c projects/pciehp/sys/dev/sdhci/sdhci.c projects/pciehp/sys/dev/sdhci/sdhci.h projects/pciehp/sys/dev/sfxge/common/efx_mcdi.c projects/pciehp/sys/dev/sfxge/sfxge_rx.c projects/pciehp/sys/dev/sk/if_sk.c projects/pciehp/sys/dev/sk/if_skreg.h projects/pciehp/sys/dev/sn/if_sn.c projects/pciehp/sys/dev/sound/pci/als4000.c projects/pciehp/sys/dev/sound/pci/aureal.c projects/pciehp/sys/dev/sound/pci/cmi.c projects/pciehp/sys/dev/sound/pci/cs4281.c projects/pciehp/sys/dev/sound/pci/csa.c projects/pciehp/sys/dev/sound/pci/ds1.c projects/pciehp/sys/dev/sound/pci/emu10k1.c projects/pciehp/sys/dev/sound/pci/emu10kx.c projects/pciehp/sys/dev/sound/pci/envy24.c projects/pciehp/sys/dev/sound/pci/envy24ht.c projects/pciehp/sys/dev/sound/pci/envy24ht.h projects/pciehp/sys/dev/sound/pci/es137x.c projects/pciehp/sys/dev/sound/pci/fm801.c projects/pciehp/sys/dev/sound/pci/hda/hdaa_patches.c projects/pciehp/sys/dev/sound/pci/hda/hdac.h projects/pciehp/sys/dev/sound/pci/hdspe.c projects/pciehp/sys/dev/sound/pci/maestro.c projects/pciehp/sys/dev/sound/pci/maestro3.c projects/pciehp/sys/dev/sound/pci/neomagic.c projects/pciehp/sys/dev/sound/pci/solo.c projects/pciehp/sys/dev/sound/pci/t4dwave.c projects/pciehp/sys/dev/sound/pci/via82c686.c projects/pciehp/sys/dev/sound/pci/vibes.c projects/pciehp/sys/dev/sound/usb/uaudio.c projects/pciehp/sys/dev/stg/tmc18c30.c projects/pciehp/sys/dev/stge/if_stge.c projects/pciehp/sys/dev/streams/streams.c projects/pciehp/sys/dev/sym/sym_hipd.c projects/pciehp/sys/dev/syscons/scvgarndr.c projects/pciehp/sys/dev/syscons/syscons.c projects/pciehp/sys/dev/tdfx/tdfx_linux.c projects/pciehp/sys/dev/tdfx/tdfx_pci.c projects/pciehp/sys/dev/ti/if_ti.c projects/pciehp/sys/dev/twa/tw_osl_freebsd.c projects/pciehp/sys/dev/tws/tws.c projects/pciehp/sys/dev/tws/tws.h projects/pciehp/sys/dev/uart/uart.h projects/pciehp/sys/dev/uart/uart_bus_fdt.c projects/pciehp/sys/dev/uart/uart_bus_pci.c projects/pciehp/sys/dev/uart/uart_core.c projects/pciehp/sys/dev/uart/uart_dev_ns8250.c projects/pciehp/sys/dev/uart/uart_subr.c projects/pciehp/sys/dev/ubsec/ubsec.c projects/pciehp/sys/dev/usb/controller/dwc_otg.c projects/pciehp/sys/dev/usb/controller/ehci.c projects/pciehp/sys/dev/usb/controller/ehci_pci.c projects/pciehp/sys/dev/usb/controller/musb_otg.c projects/pciehp/sys/dev/usb/controller/musb_otg.h projects/pciehp/sys/dev/usb/controller/musb_otg_atmelarm.c projects/pciehp/sys/dev/usb/controller/ohci_pci.c projects/pciehp/sys/dev/usb/controller/xhci.c projects/pciehp/sys/dev/usb/controller/xhci.h projects/pciehp/sys/dev/usb/controller/xhci_pci.c projects/pciehp/sys/dev/usb/controller/xhcireg.h projects/pciehp/sys/dev/usb/input/ukbd.c projects/pciehp/sys/dev/usb/net/if_aue.c projects/pciehp/sys/dev/usb/net/if_axe.c projects/pciehp/sys/dev/usb/net/if_axereg.h projects/pciehp/sys/dev/usb/net/if_cuereg.h projects/pciehp/sys/dev/usb/net/if_ipheth.c projects/pciehp/sys/dev/usb/net/if_mos.c projects/pciehp/sys/dev/usb/net/if_rue.c projects/pciehp/sys/dev/usb/net/if_smsc.c projects/pciehp/sys/dev/usb/net/if_udav.c projects/pciehp/sys/dev/usb/net/if_usie.c projects/pciehp/sys/dev/usb/net/uhso.c projects/pciehp/sys/dev/usb/quirk/usb_quirk.c projects/pciehp/sys/dev/usb/serial/u3g.c projects/pciehp/sys/dev/usb/serial/uftdi.c projects/pciehp/sys/dev/usb/serial/umcs.h projects/pciehp/sys/dev/usb/serial/usb_serial.c projects/pciehp/sys/dev/usb/serial/usb_serial.h projects/pciehp/sys/dev/usb/serial/uslcom.c projects/pciehp/sys/dev/usb/storage/umass.c projects/pciehp/sys/dev/usb/usb_compat_linux.c projects/pciehp/sys/dev/usb/usb_device.c projects/pciehp/sys/dev/usb/usb_freebsd.h projects/pciehp/sys/dev/usb/usb_hub.c projects/pciehp/sys/dev/usb/usb_ioctl.h projects/pciehp/sys/dev/usb/usb_msctest.c projects/pciehp/sys/dev/usb/usb_pf.c projects/pciehp/sys/dev/usb/usb_request.c projects/pciehp/sys/dev/usb/usbdevs projects/pciehp/sys/dev/usb/wlan/if_rumvar.h projects/pciehp/sys/dev/usb/wlan/if_run.c projects/pciehp/sys/dev/usb/wlan/if_runvar.h projects/pciehp/sys/dev/usb/wlan/if_uathvar.h projects/pciehp/sys/dev/usb/wlan/if_upgtvar.h projects/pciehp/sys/dev/usb/wlan/if_uralvar.h projects/pciehp/sys/dev/usb/wlan/if_urtwvar.h projects/pciehp/sys/dev/usb/wlan/if_zydreg.h projects/pciehp/sys/dev/virtio/balloon/virtio_balloon.c projects/pciehp/sys/dev/virtio/block/virtio_blk.c projects/pciehp/sys/dev/virtio/block/virtio_blk.h projects/pciehp/sys/dev/virtio/network/if_vtnet.c projects/pciehp/sys/dev/virtio/network/if_vtnetvar.h projects/pciehp/sys/dev/virtio/network/virtio_net.h projects/pciehp/sys/dev/virtio/pci/virtio_pci.c projects/pciehp/sys/dev/virtio/scsi/virtio_scsi.c projects/pciehp/sys/dev/virtio/scsi/virtio_scsivar.h projects/pciehp/sys/dev/virtio/virtio.c projects/pciehp/sys/dev/virtio/virtio.h projects/pciehp/sys/dev/virtio/virtio_bus_if.m projects/pciehp/sys/dev/virtio/virtio_if.m projects/pciehp/sys/dev/virtio/virtqueue.c projects/pciehp/sys/dev/virtio/virtqueue.h projects/pciehp/sys/dev/vkbd/vkbd.c projects/pciehp/sys/dev/vxge/vxge.h projects/pciehp/sys/dev/watchdog/watchdog.c projects/pciehp/sys/dev/wb/if_wb.c projects/pciehp/sys/dev/wi/if_wi.c projects/pciehp/sys/dev/wi/if_wi_pci.c projects/pciehp/sys/dev/xen/balloon/balloon.c projects/pciehp/sys/dev/xen/blkback/blkback.c projects/pciehp/sys/dev/xen/blkfront/blkfront.c projects/pciehp/sys/dev/xen/blkfront/block.h projects/pciehp/sys/dev/xen/console/console.c projects/pciehp/sys/dev/xen/console/xencons_ring.c projects/pciehp/sys/dev/xen/control/control.c projects/pciehp/sys/dev/xen/netback/netback.c projects/pciehp/sys/dev/xen/netfront/netfront.c projects/pciehp/sys/dev/xen/xenpci/xenpci.c projects/pciehp/sys/dev/xen/xenpci/xenpcivar.h projects/pciehp/sys/fs/cd9660/iso.h projects/pciehp/sys/fs/devfs/devfs_rule.c projects/pciehp/sys/fs/devfs/devfs_vnops.c projects/pciehp/sys/fs/ext2fs/ext2_alloc.c projects/pciehp/sys/fs/ext2fs/ext2_balloc.c projects/pciehp/sys/fs/ext2fs/ext2_bmap.c projects/pciehp/sys/fs/ext2fs/ext2_dinode.h projects/pciehp/sys/fs/ext2fs/ext2_dir.h projects/pciehp/sys/fs/ext2fs/ext2_extern.h projects/pciehp/sys/fs/ext2fs/ext2_inode.c projects/pciehp/sys/fs/ext2fs/ext2_inode_cnv.c projects/pciehp/sys/fs/ext2fs/ext2_lookup.c projects/pciehp/sys/fs/ext2fs/ext2_subr.c projects/pciehp/sys/fs/ext2fs/ext2_vfsops.c projects/pciehp/sys/fs/ext2fs/ext2_vnops.c projects/pciehp/sys/fs/ext2fs/ext2fs.h projects/pciehp/sys/fs/ext2fs/fs.h projects/pciehp/sys/fs/ext2fs/inode.h projects/pciehp/sys/fs/fdescfs/fdesc_vnops.c projects/pciehp/sys/fs/fuse/fuse_vfsops.c projects/pciehp/sys/fs/fuse/fuse_vnops.c projects/pciehp/sys/fs/msdosfs/msdosfs_denode.c projects/pciehp/sys/fs/msdosfs/msdosfs_vnops.c projects/pciehp/sys/fs/nandfs/nandfs_segment.c projects/pciehp/sys/fs/nandfs/nandfs_vnops.c projects/pciehp/sys/fs/nfs/nfs.h projects/pciehp/sys/fs/nfs/nfs_commonkrpc.c projects/pciehp/sys/fs/nfs/nfs_commonsubs.c projects/pciehp/sys/fs/nfs/nfsport.h projects/pciehp/sys/fs/nfs/nfsrvcache.h projects/pciehp/sys/fs/nfsclient/nfs_clbio.c projects/pciehp/sys/fs/nfsclient/nfs_clkrpc.c projects/pciehp/sys/fs/nfsclient/nfs_clport.c projects/pciehp/sys/fs/nfsclient/nfs_clstate.c projects/pciehp/sys/fs/nfsclient/nfs_clvfsops.c projects/pciehp/sys/fs/nfsclient/nfs_clvnops.c projects/pciehp/sys/fs/nfsserver/nfs_nfsdcache.c projects/pciehp/sys/fs/nfsserver/nfs_nfsdport.c projects/pciehp/sys/fs/nullfs/null.h projects/pciehp/sys/fs/nullfs/null_subr.c projects/pciehp/sys/fs/nullfs/null_vfsops.c projects/pciehp/sys/fs/nullfs/null_vnops.c projects/pciehp/sys/fs/procfs/procfs_map.c projects/pciehp/sys/fs/smbfs/smbfs_node.c projects/pciehp/sys/fs/smbfs/smbfs_smb.c projects/pciehp/sys/fs/smbfs/smbfs_vfsops.c projects/pciehp/sys/fs/smbfs/smbfs_vnops.c projects/pciehp/sys/fs/tmpfs/tmpfs.h projects/pciehp/sys/fs/tmpfs/tmpfs_subr.c projects/pciehp/sys/fs/tmpfs/tmpfs_vfsops.c projects/pciehp/sys/fs/tmpfs/tmpfs_vnops.c projects/pciehp/sys/gdb/gdb_cons.c projects/pciehp/sys/geom/eli/g_eli.c projects/pciehp/sys/geom/geom_dev.c projects/pciehp/sys/geom/geom_disk.c projects/pciehp/sys/geom/geom_disk.h projects/pciehp/sys/geom/geom_dump.c projects/pciehp/sys/geom/geom_flashmap.c projects/pciehp/sys/geom/geom_io.c projects/pciehp/sys/geom/geom_pc98.c projects/pciehp/sys/geom/journal/g_journal.c projects/pciehp/sys/geom/mirror/g_mirror.c projects/pciehp/sys/geom/part/g_part.c projects/pciehp/sys/geom/part/g_part_apm.c projects/pciehp/sys/geom/part/g_part_ebr.c projects/pciehp/sys/geom/part/g_part_gpt.c projects/pciehp/sys/geom/part/g_part_ldm.c projects/pciehp/sys/geom/part/g_part_mbr.c projects/pciehp/sys/geom/part/g_part_pc98.c projects/pciehp/sys/geom/raid/g_raid.c projects/pciehp/sys/geom/raid/g_raid.h projects/pciehp/sys/geom/raid/g_raid_ctl.c projects/pciehp/sys/geom/raid/md_ddf.c projects/pciehp/sys/geom/raid/tr_raid5.c projects/pciehp/sys/geom/zero/g_zero.c projects/pciehp/sys/i386/conf/GENERIC projects/pciehp/sys/i386/conf/NOTES projects/pciehp/sys/i386/conf/PAE projects/pciehp/sys/i386/conf/XEN projects/pciehp/sys/i386/i386/apic_vector.s projects/pciehp/sys/i386/i386/exception.s projects/pciehp/sys/i386/i386/genassym.c projects/pciehp/sys/i386/i386/identcpu.c projects/pciehp/sys/i386/i386/initcpu.c projects/pciehp/sys/i386/i386/machdep.c projects/pciehp/sys/i386/i386/mp_machdep.c projects/pciehp/sys/i386/i386/pmap.c projects/pciehp/sys/i386/i386/support.s projects/pciehp/sys/i386/i386/symbols.raw projects/pciehp/sys/i386/i386/sys_machdep.c projects/pciehp/sys/i386/i386/trap.c projects/pciehp/sys/i386/i386/uio_machdep.c projects/pciehp/sys/i386/i386/vm_machdep.c projects/pciehp/sys/i386/ibcs2/ibcs2_fcntl.c projects/pciehp/sys/i386/ibcs2/ibcs2_ioctl.c projects/pciehp/sys/i386/ibcs2/ibcs2_misc.c projects/pciehp/sys/i386/ibcs2/imgact_coff.c projects/pciehp/sys/i386/include/acpica_machdep.h projects/pciehp/sys/i386/include/apicvar.h projects/pciehp/sys/i386/include/asm.h projects/pciehp/sys/i386/include/atomic.h projects/pciehp/sys/i386/include/counter.h projects/pciehp/sys/i386/include/cpu.h projects/pciehp/sys/i386/include/intr_machdep.h projects/pciehp/sys/i386/include/md_var.h projects/pciehp/sys/i386/include/metadata.h projects/pciehp/sys/i386/include/param.h projects/pciehp/sys/i386/include/pcpu.h projects/pciehp/sys/i386/include/pmap.h projects/pciehp/sys/i386/include/sf_buf.h projects/pciehp/sys/i386/include/smp.h projects/pciehp/sys/i386/include/vmparam.h projects/pciehp/sys/i386/include/xen/xen-os.h projects/pciehp/sys/i386/include/xen/xenfunc.h projects/pciehp/sys/i386/include/xen/xenvar.h projects/pciehp/sys/i386/isa/npx.c projects/pciehp/sys/i386/linux/imgact_linux.c projects/pciehp/sys/i386/linux/linux_machdep.c projects/pciehp/sys/i386/pci/pci_cfgreg.c projects/pciehp/sys/i386/xen/clock.c projects/pciehp/sys/i386/xen/exception.s projects/pciehp/sys/i386/xen/locore.s projects/pciehp/sys/i386/xen/mp_machdep.c projects/pciehp/sys/i386/xen/mptable.c projects/pciehp/sys/i386/xen/pmap.c projects/pciehp/sys/i386/xen/xen_machdep.c projects/pciehp/sys/ia64/conf/GENERIC projects/pciehp/sys/ia64/ia32/ia32_signal.c projects/pciehp/sys/ia64/ia64/mca.c projects/pciehp/sys/ia64/ia64/mp_machdep.c projects/pciehp/sys/ia64/ia64/pmap.c projects/pciehp/sys/ia64/ia64/vm_machdep.c projects/pciehp/sys/ia64/include/acpica_machdep.h projects/pciehp/sys/ia64/include/counter.h projects/pciehp/sys/ia64/include/param.h projects/pciehp/sys/ia64/include/sf_buf.h projects/pciehp/sys/ia64/include/vmparam.h projects/pciehp/sys/ia64/pci/pci_cfgreg.c projects/pciehp/sys/kern/Make.tags.inc projects/pciehp/sys/kern/capabilities.conf projects/pciehp/sys/kern/imgact_elf.c projects/pciehp/sys/kern/imgact_gzip.c projects/pciehp/sys/kern/init_main.c projects/pciehp/sys/kern/init_sysent.c projects/pciehp/sys/kern/kern_acct.c projects/pciehp/sys/kern/kern_alq.c projects/pciehp/sys/kern/kern_clock.c projects/pciehp/sys/kern/kern_cpuset.c projects/pciehp/sys/kern/kern_descrip.c projects/pciehp/sys/kern/kern_event.c projects/pciehp/sys/kern/kern_exec.c projects/pciehp/sys/kern/kern_exit.c projects/pciehp/sys/kern/kern_fork.c projects/pciehp/sys/kern/kern_hhook.c projects/pciehp/sys/kern/kern_intr.c projects/pciehp/sys/kern/kern_jail.c projects/pciehp/sys/kern/kern_khelp.c projects/pciehp/sys/kern/kern_kthread.c projects/pciehp/sys/kern/kern_ktrace.c projects/pciehp/sys/kern/kern_linker.c projects/pciehp/sys/kern/kern_lock.c projects/pciehp/sys/kern/kern_malloc.c projects/pciehp/sys/kern/kern_mbuf.c projects/pciehp/sys/kern/kern_mutex.c projects/pciehp/sys/kern/kern_ntptime.c projects/pciehp/sys/kern/kern_physio.c projects/pciehp/sys/kern/kern_poll.c projects/pciehp/sys/kern/kern_priv.c projects/pciehp/sys/kern/kern_proc.c projects/pciehp/sys/kern/kern_rangelock.c projects/pciehp/sys/kern/kern_rmlock.c projects/pciehp/sys/kern/kern_rwlock.c projects/pciehp/sys/kern/kern_sdt.c projects/pciehp/sys/kern/kern_sharedpage.c projects/pciehp/sys/kern/kern_sig.c projects/pciehp/sys/kern/kern_sx.c projects/pciehp/sys/kern/kern_synch.c projects/pciehp/sys/kern/kern_sysctl.c projects/pciehp/sys/kern/kern_time.c projects/pciehp/sys/kern/kern_timeout.c projects/pciehp/sys/kern/kern_umtx.c projects/pciehp/sys/kern/kern_uuid.c projects/pciehp/sys/kern/link_elf.c projects/pciehp/sys/kern/link_elf_obj.c projects/pciehp/sys/kern/makesyscalls.sh projects/pciehp/sys/kern/sched_4bsd.c projects/pciehp/sys/kern/sched_ule.c projects/pciehp/sys/kern/subr_bus.c projects/pciehp/sys/kern/subr_bus_dma.c projects/pciehp/sys/kern/subr_busdma_bufalloc.c projects/pciehp/sys/kern/subr_counter.c projects/pciehp/sys/kern/subr_lock.c projects/pciehp/sys/kern/subr_mbpool.c projects/pciehp/sys/kern/subr_prf.c projects/pciehp/sys/kern/subr_sbuf.c projects/pciehp/sys/kern/subr_taskqueue.c projects/pciehp/sys/kern/subr_uio.c projects/pciehp/sys/kern/subr_unit.c projects/pciehp/sys/kern/subr_witness.c projects/pciehp/sys/kern/sys_capability.c projects/pciehp/sys/kern/sys_generic.c projects/pciehp/sys/kern/sys_pipe.c projects/pciehp/sys/kern/sys_procdesc.c projects/pciehp/sys/kern/sys_socket.c projects/pciehp/sys/kern/syscalls.c projects/pciehp/sys/kern/syscalls.master projects/pciehp/sys/kern/systrace_args.c projects/pciehp/sys/kern/sysv_shm.c projects/pciehp/sys/kern/tty.c projects/pciehp/sys/kern/tty_pts.c projects/pciehp/sys/kern/uipc_cow.c projects/pciehp/sys/kern/uipc_debug.c projects/pciehp/sys/kern/uipc_mbuf.c projects/pciehp/sys/kern/uipc_mqueue.c projects/pciehp/sys/kern/uipc_sem.c projects/pciehp/sys/kern/uipc_shm.c projects/pciehp/sys/kern/uipc_sockbuf.c projects/pciehp/sys/kern/uipc_socket.c projects/pciehp/sys/kern/uipc_syscalls.c projects/pciehp/sys/kern/uipc_usrreq.c projects/pciehp/sys/kern/vfs_acl.c projects/pciehp/sys/kern/vfs_aio.c projects/pciehp/sys/kern/vfs_bio.c projects/pciehp/sys/kern/vfs_cache.c projects/pciehp/sys/kern/vfs_cluster.c projects/pciehp/sys/kern/vfs_default.c projects/pciehp/sys/kern/vfs_extattr.c projects/pciehp/sys/kern/vfs_lookup.c projects/pciehp/sys/kern/vfs_mount.c projects/pciehp/sys/kern/vfs_mountroot.c projects/pciehp/sys/kern/vfs_subr.c projects/pciehp/sys/kern/vfs_syscalls.c projects/pciehp/sys/kern/vfs_vnops.c projects/pciehp/sys/kgssapi/gss_impl.c projects/pciehp/sys/mips/atheros/ar71xx_chip.c projects/pciehp/sys/mips/atheros/ar71xx_cpudef.h projects/pciehp/sys/mips/atheros/ar71xx_gpio.c projects/pciehp/sys/mips/atheros/ar71xx_gpiovar.h projects/pciehp/sys/mips/atheros/ar71xx_setup.c projects/pciehp/sys/mips/atheros/ar71xx_setup.h projects/pciehp/sys/mips/atheros/ar71xx_spi.c projects/pciehp/sys/mips/atheros/ar724x_chip.c projects/pciehp/sys/mips/atheros/ar91xx_chip.c projects/pciehp/sys/mips/atheros/ar933x_chip.c projects/pciehp/sys/mips/atheros/files.ar71xx projects/pciehp/sys/mips/atheros/if_arge.c projects/pciehp/sys/mips/atheros/uart_bus_ar71xx.c projects/pciehp/sys/mips/atheros/uart_bus_ar933x.c projects/pciehp/sys/mips/atheros/uart_cpu_ar71xx.c projects/pciehp/sys/mips/atheros/uart_cpu_ar933x.c projects/pciehp/sys/mips/cavium/octeon_rnd.c projects/pciehp/sys/mips/cavium/std.octeon1 projects/pciehp/sys/mips/conf/AP93.hints projects/pciehp/sys/mips/conf/AR933X_BASE projects/pciehp/sys/mips/conf/AR933X_BASE.hints projects/pciehp/sys/mips/conf/DIR-825 projects/pciehp/sys/mips/conf/DIR-825.hints projects/pciehp/sys/mips/conf/MALTA projects/pciehp/sys/mips/conf/MALTA64 projects/pciehp/sys/mips/conf/OCTEON1 projects/pciehp/sys/mips/conf/ROUTERSTATION projects/pciehp/sys/mips/conf/ROUTERSTATION.hints projects/pciehp/sys/mips/gxemul/mpreg.h projects/pciehp/sys/mips/include/_stdint.h projects/pciehp/sys/mips/include/atomic.h projects/pciehp/sys/mips/include/counter.h projects/pciehp/sys/mips/include/elf.h projects/pciehp/sys/mips/include/param.h projects/pciehp/sys/mips/include/sf_buf.h projects/pciehp/sys/mips/include/vmparam.h projects/pciehp/sys/mips/malta/files.malta projects/pciehp/sys/mips/malta/gt_pci.c projects/pciehp/sys/mips/malta/malta_machdep.c projects/pciehp/sys/mips/malta/yamon.c projects/pciehp/sys/mips/mips/bus_space_fdt.c projects/pciehp/sys/mips/mips/bus_space_generic.c projects/pciehp/sys/mips/mips/db_trace.c projects/pciehp/sys/mips/mips/mp_machdep.c projects/pciehp/sys/mips/mips/pmap.c projects/pciehp/sys/mips/mips/stack_machdep.c projects/pciehp/sys/mips/mips/support.S projects/pciehp/sys/mips/mips/uio_machdep.c projects/pciehp/sys/mips/mips/vm_machdep.c projects/pciehp/sys/mips/nlm/board.c projects/pciehp/sys/mips/nlm/board.h projects/pciehp/sys/mips/nlm/board_cpld.c projects/pciehp/sys/mips/nlm/dev/net/nae.c projects/pciehp/sys/mips/nlm/dev/net/xaui.c projects/pciehp/sys/mips/nlm/dev/net/xlpge.c projects/pciehp/sys/mips/nlm/dev/net/xlpge.h projects/pciehp/sys/mips/nlm/hal/nae.h projects/pciehp/sys/mips/nlm/hal/nlm_hal.c projects/pciehp/sys/mips/nlm/hal/sys.h projects/pciehp/sys/mips/sibyte/sb_zbpci.c projects/pciehp/sys/modules/Makefile projects/pciehp/sys/modules/acpi/acpi/Makefile projects/pciehp/sys/modules/aesni/Makefile projects/pciehp/sys/modules/ata/atacbus/Makefile projects/pciehp/sys/modules/ath/Makefile projects/pciehp/sys/modules/cam/Makefile projects/pciehp/sys/modules/cc/Makefile projects/pciehp/sys/modules/ctl/Makefile projects/pciehp/sys/modules/cxgb/cxgb/Makefile projects/pciehp/sys/modules/cxgbe/Makefile projects/pciehp/sys/modules/cxgbe/if_cxgbe/Makefile projects/pciehp/sys/modules/cxgbe/t4_firmware/Makefile projects/pciehp/sys/modules/cyclic/Makefile projects/pciehp/sys/modules/drm2/Makefile projects/pciehp/sys/modules/drm2/drm2/Makefile projects/pciehp/sys/modules/dtrace/Makefile projects/pciehp/sys/modules/dtrace/dtio/Makefile projects/pciehp/sys/modules/dtrace/dtmalloc/Makefile projects/pciehp/sys/modules/dtrace/dtnfscl/Makefile projects/pciehp/sys/modules/dtrace/dtnfsclient/Makefile projects/pciehp/sys/modules/dtrace/dtrace/Makefile projects/pciehp/sys/modules/dtrace/dtrace_test/Makefile projects/pciehp/sys/modules/dtrace/dtraceall/Makefile projects/pciehp/sys/modules/dtrace/fasttrap/Makefile projects/pciehp/sys/modules/dtrace/fbt/Makefile projects/pciehp/sys/modules/dtrace/lockstat/Makefile projects/pciehp/sys/modules/dtrace/profile/Makefile projects/pciehp/sys/modules/dtrace/prototype/Makefile projects/pciehp/sys/modules/dtrace/sdt/Makefile projects/pciehp/sys/modules/dtrace/systrace/Makefile projects/pciehp/sys/modules/dtrace/systrace_freebsd32/Makefile projects/pciehp/sys/modules/dtrace/systrace_linux32/Makefile projects/pciehp/sys/modules/em/Makefile projects/pciehp/sys/modules/ext2fs/Makefile projects/pciehp/sys/modules/filemon/Makefile projects/pciehp/sys/modules/hpt27xx/Makefile projects/pciehp/sys/modules/hwpmc/Makefile projects/pciehp/sys/modules/igb/Makefile projects/pciehp/sys/modules/ip6_mroute_mod/Makefile projects/pciehp/sys/modules/ipfilter/Makefile projects/pciehp/sys/modules/iscsi/Makefile projects/pciehp/sys/modules/iwn/Makefile projects/pciehp/sys/modules/iwnfw/Makefile projects/pciehp/sys/modules/iwnfw/iwn6000g2a/Makefile projects/pciehp/sys/modules/ixgbe/Makefile projects/pciehp/sys/modules/linux/Makefile projects/pciehp/sys/modules/nvme/Makefile projects/pciehp/sys/modules/opensolaris/Makefile projects/pciehp/sys/modules/random/Makefile projects/pciehp/sys/modules/rdma/Makefile projects/pciehp/sys/modules/send/Makefile projects/pciehp/sys/modules/sfxge/Makefile projects/pciehp/sys/modules/ti/Makefile projects/pciehp/sys/modules/usb/Makefile projects/pciehp/sys/modules/virtio/network/Makefile projects/pciehp/sys/modules/vmm/Makefile projects/pciehp/sys/modules/wi/Makefile projects/pciehp/sys/modules/zfs/Makefile projects/pciehp/sys/net/bpf.c projects/pciehp/sys/net/ieee8023ad_lacp.c projects/pciehp/sys/net/ieee8023ad_lacp.h projects/pciehp/sys/net/if.c projects/pciehp/sys/net/if.h projects/pciehp/sys/net/if_arp.h projects/pciehp/sys/net/if_bridge.c projects/pciehp/sys/net/if_ethersubr.c projects/pciehp/sys/net/if_fddisubr.c projects/pciehp/sys/net/if_gif.c projects/pciehp/sys/net/if_gre.c projects/pciehp/sys/net/if_iso88025subr.c projects/pciehp/sys/net/if_lagg.c projects/pciehp/sys/net/if_lagg.h projects/pciehp/sys/net/if_llatbl.c projects/pciehp/sys/net/if_llatbl.h projects/pciehp/sys/net/if_pfsync.h projects/pciehp/sys/net/if_spppsubr.c projects/pciehp/sys/net/if_tap.c projects/pciehp/sys/net/if_tun.c projects/pciehp/sys/net/if_var.h projects/pciehp/sys/net/if_vlan.c projects/pciehp/sys/net/netisr.c projects/pciehp/sys/net/netmap.h projects/pciehp/sys/net/netmap_user.h projects/pciehp/sys/net/pfil.c projects/pciehp/sys/net/pfil.h projects/pciehp/sys/net/ppp_defs.h projects/pciehp/sys/net/route.c projects/pciehp/sys/net/route.h projects/pciehp/sys/net/rtsock.c projects/pciehp/sys/net/vnet.h projects/pciehp/sys/net80211/ieee80211.c projects/pciehp/sys/net80211/ieee80211.h projects/pciehp/sys/net80211/ieee80211_action.c projects/pciehp/sys/net80211/ieee80211_amrr.c projects/pciehp/sys/net80211/ieee80211_freebsd.c projects/pciehp/sys/net80211/ieee80211_freebsd.h projects/pciehp/sys/net80211/ieee80211_hostap.c projects/pciehp/sys/net80211/ieee80211_ht.c projects/pciehp/sys/net80211/ieee80211_hwmp.c projects/pciehp/sys/net80211/ieee80211_input.c projects/pciehp/sys/net80211/ieee80211_ioctl.c projects/pciehp/sys/net80211/ieee80211_mesh.c projects/pciehp/sys/net80211/ieee80211_node.c projects/pciehp/sys/net80211/ieee80211_output.c projects/pciehp/sys/net80211/ieee80211_phy.c projects/pciehp/sys/net80211/ieee80211_phy.h projects/pciehp/sys/net80211/ieee80211_power.c projects/pciehp/sys/net80211/ieee80211_proto.c projects/pciehp/sys/net80211/ieee80211_proto.h projects/pciehp/sys/net80211/ieee80211_scan_sta.c projects/pciehp/sys/net80211/ieee80211_superg.c projects/pciehp/sys/net80211/ieee80211_tdma.c projects/pciehp/sys/net80211/ieee80211_var.h projects/pciehp/sys/net80211/ieee80211_wds.c projects/pciehp/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/pciehp/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c projects/pciehp/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c projects/pciehp/sys/netgraph/bluetooth/socket/ng_btsocket.c projects/pciehp/sys/netgraph/netflow/ng_netflow.h projects/pciehp/sys/netgraph/ng_base.c projects/pciehp/sys/netgraph/ng_iface.c projects/pciehp/sys/netgraph/ng_pppoe.c projects/pciehp/sys/netgraph/ng_pppoe.h projects/pciehp/sys/netinet/icmp6.h projects/pciehp/sys/netinet/icmp_var.h projects/pciehp/sys/netinet/if_ether.c projects/pciehp/sys/netinet/igmp.c projects/pciehp/sys/netinet/igmp_var.h projects/pciehp/sys/netinet/in.c projects/pciehp/sys/netinet/in.h projects/pciehp/sys/netinet/in_mcast.c projects/pciehp/sys/netinet/in_pcb.c projects/pciehp/sys/netinet/in_pcb.h projects/pciehp/sys/netinet/in_var.h projects/pciehp/sys/netinet/ip_carp.c projects/pciehp/sys/netinet/ip_carp.h projects/pciehp/sys/netinet/ip_fastfwd.c projects/pciehp/sys/netinet/ip_gre.c projects/pciehp/sys/netinet/ip_icmp.c projects/pciehp/sys/netinet/ip_id.c projects/pciehp/sys/netinet/ip_input.c projects/pciehp/sys/netinet/ip_mroute.c projects/pciehp/sys/netinet/ip_mroute.h projects/pciehp/sys/netinet/ip_output.c projects/pciehp/sys/netinet/ip_var.h projects/pciehp/sys/netinet/pim_var.h projects/pciehp/sys/netinet/sctp.h projects/pciehp/sys/netinet/sctp_asconf.c projects/pciehp/sys/netinet/sctp_auth.c projects/pciehp/sys/netinet/sctp_auth.h projects/pciehp/sys/netinet/sctp_constants.h projects/pciehp/sys/netinet/sctp_dtrace_define.h projects/pciehp/sys/netinet/sctp_indata.c projects/pciehp/sys/netinet/sctp_indata.h projects/pciehp/sys/netinet/sctp_input.c projects/pciehp/sys/netinet/sctp_os_bsd.h projects/pciehp/sys/netinet/sctp_output.c projects/pciehp/sys/netinet/sctp_pcb.c projects/pciehp/sys/netinet/sctp_pcb.h projects/pciehp/sys/netinet/sctp_structs.h projects/pciehp/sys/netinet/sctp_sysctl.c projects/pciehp/sys/netinet/sctp_sysctl.h projects/pciehp/sys/netinet/sctp_timer.c projects/pciehp/sys/netinet/sctp_uio.h projects/pciehp/sys/netinet/sctp_usrreq.c projects/pciehp/sys/netinet/sctputil.c projects/pciehp/sys/netinet/tcp_input.c projects/pciehp/sys/netinet/tcp_lro.c projects/pciehp/sys/netinet/tcp_lro.h projects/pciehp/sys/netinet/tcp_output.c projects/pciehp/sys/netinet/tcp_subr.c projects/pciehp/sys/netinet/tcp_syncache.c projects/pciehp/sys/netinet/tcp_syncache.h projects/pciehp/sys/netinet/tcp_usrreq.c projects/pciehp/sys/netinet/tcp_var.h projects/pciehp/sys/netinet/udp_usrreq.c projects/pciehp/sys/netinet/udp_var.h projects/pciehp/sys/netinet6/icmp6.c projects/pciehp/sys/netinet6/in6.c projects/pciehp/sys/netinet6/in6.h projects/pciehp/sys/netinet6/in6_ifattach.c projects/pciehp/sys/netinet6/in6_mcast.c projects/pciehp/sys/netinet6/in6_pcb.c projects/pciehp/sys/netinet6/in6_proto.c projects/pciehp/sys/netinet6/in6_var.h projects/pciehp/sys/netinet6/ip6_forward.c projects/pciehp/sys/netinet6/ip6_id.c projects/pciehp/sys/netinet6/ip6_input.c projects/pciehp/sys/netinet6/ip6_mroute.c projects/pciehp/sys/netinet6/ip6_mroute.h projects/pciehp/sys/netinet6/ip6_output.c projects/pciehp/sys/netinet6/ip6_var.h projects/pciehp/sys/netinet6/mld6.c projects/pciehp/sys/netinet6/nd6.c projects/pciehp/sys/netinet6/nd6_rtr.c projects/pciehp/sys/netinet6/pim6_var.h projects/pciehp/sys/netinet6/raw_ip6.c projects/pciehp/sys/netinet6/raw_ip6.h projects/pciehp/sys/netinet6/sctp6_usrreq.c projects/pciehp/sys/netinet6/send.c projects/pciehp/sys/netinet6/udp6_usrreq.c projects/pciehp/sys/netipsec/ah_var.h projects/pciehp/sys/netipsec/esp_var.h projects/pciehp/sys/netipsec/ipcomp_var.h projects/pciehp/sys/netipsec/ipip_var.h projects/pciehp/sys/netipsec/ipsec.c projects/pciehp/sys/netipsec/ipsec.h projects/pciehp/sys/netipsec/ipsec6.h projects/pciehp/sys/netipsec/ipsec_input.c projects/pciehp/sys/netipsec/ipsec_mbuf.c projects/pciehp/sys/netipsec/ipsec_output.c projects/pciehp/sys/netipsec/key.c projects/pciehp/sys/netipsec/key_var.h projects/pciehp/sys/netipsec/keysock.c projects/pciehp/sys/netipsec/keysock.h projects/pciehp/sys/netipsec/xform_ah.c projects/pciehp/sys/netipsec/xform_esp.c projects/pciehp/sys/netipsec/xform_ipcomp.c projects/pciehp/sys/netipsec/xform_ipip.c projects/pciehp/sys/netnatm/natm.c projects/pciehp/sys/netpfil/ipfw/ip_dummynet.c projects/pciehp/sys/netpfil/ipfw/ip_fw2.c projects/pciehp/sys/netpfil/ipfw/ip_fw_nat.c projects/pciehp/sys/netpfil/ipfw/ip_fw_private.h projects/pciehp/sys/netpfil/pf/if_pfsync.c projects/pciehp/sys/netpfil/pf/pf.c projects/pciehp/sys/netpfil/pf/pf_ioctl.c projects/pciehp/sys/netpfil/pf/pf_lb.c projects/pciehp/sys/netsmb/smb_conn.c projects/pciehp/sys/netsmb/smb_dev.c projects/pciehp/sys/nfs/bootp_subr.c projects/pciehp/sys/nfsclient/nfs_subs.c projects/pciehp/sys/nfsclient/nfs_vnops.c projects/pciehp/sys/nfsserver/nfs_serv.c projects/pciehp/sys/nfsserver/nfs_srvkrpc.c projects/pciehp/sys/nlm/nlm_prot_impl.c projects/pciehp/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_frag.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_netdev.c projects/pciehp/sys/ofed/drivers/net/mlx4/en_tx.c projects/pciehp/sys/ofed/drivers/net/mlx4/eq.c projects/pciehp/sys/ofed/drivers/net/mlx4/main.c projects/pciehp/sys/ofed/include/linux/bitops.h projects/pciehp/sys/ofed/include/linux/dma-mapping.h projects/pciehp/sys/ofed/include/linux/file.h projects/pciehp/sys/ofed/include/linux/fs.h projects/pciehp/sys/ofed/include/linux/gfp.h projects/pciehp/sys/ofed/include/linux/linux_compat.c projects/pciehp/sys/ofed/include/linux/module.h projects/pciehp/sys/ofed/include/linux/net.h projects/pciehp/sys/ofed/include/linux/page.h projects/pciehp/sys/ofed/include/linux/sysfs.h projects/pciehp/sys/ofed/include/linux/workqueue.h projects/pciehp/sys/ofed/include/rdma/sdp_socket.h projects/pciehp/sys/opencrypto/cryptodev.c projects/pciehp/sys/pc98/conf/GENERIC projects/pciehp/sys/pc98/pc98/machdep.c projects/pciehp/sys/pci/ncr.c projects/pciehp/sys/powerpc/aim/mmu_oea.c projects/pciehp/sys/powerpc/aim/mmu_oea64.c projects/pciehp/sys/powerpc/aim/mmu_oea64.h projects/pciehp/sys/powerpc/aim/nexus.c projects/pciehp/sys/powerpc/aim/trap.c projects/pciehp/sys/powerpc/aim/vm_machdep.c projects/pciehp/sys/powerpc/booke/pmap.c projects/pciehp/sys/powerpc/booke/vm_machdep.c projects/pciehp/sys/powerpc/conf/GENERIC projects/pciehp/sys/powerpc/conf/GENERIC64 projects/pciehp/sys/powerpc/include/_stdint.h projects/pciehp/sys/powerpc/include/counter.h projects/pciehp/sys/powerpc/include/frame.h projects/pciehp/sys/powerpc/include/gdb_machdep.h projects/pciehp/sys/powerpc/include/param.h projects/pciehp/sys/powerpc/include/pcpu.h projects/pciehp/sys/powerpc/include/platform.h projects/pciehp/sys/powerpc/include/pmc_mdep.h projects/pciehp/sys/powerpc/include/pte.h projects/pciehp/sys/powerpc/include/sf_buf.h projects/pciehp/sys/powerpc/include/spr.h projects/pciehp/sys/powerpc/include/vmparam.h projects/pciehp/sys/powerpc/ofw/ofw_cpu.c projects/pciehp/sys/powerpc/ofw/ofw_pcibus.c projects/pciehp/sys/powerpc/ofw/ofw_real.c projects/pciehp/sys/powerpc/ofw/ofw_syscons.c projects/pciehp/sys/powerpc/ofw/rtas.c projects/pciehp/sys/powerpc/powermac/atibl.c projects/pciehp/sys/powerpc/powermac/kiic.c projects/pciehp/sys/powerpc/powermac/macio.c projects/pciehp/sys/powerpc/powermac/maciovar.h projects/pciehp/sys/powerpc/powermac/nvbl.c projects/pciehp/sys/powerpc/powermac/platform_powermac.c projects/pciehp/sys/powerpc/powermac/smu.c projects/pciehp/sys/powerpc/powerpc/busdma_machdep.c projects/pciehp/sys/powerpc/powerpc/cpu.c projects/pciehp/sys/powerpc/powerpc/intr_machdep.c projects/pciehp/sys/powerpc/powerpc/mmu_if.m projects/pciehp/sys/powerpc/powerpc/mp_machdep.c projects/pciehp/sys/powerpc/powerpc/platform.c projects/pciehp/sys/powerpc/powerpc/platform_if.m projects/pciehp/sys/powerpc/powerpc/pmap_dispatch.c projects/pciehp/sys/powerpc/powerpc/uio_machdep.c projects/pciehp/sys/powerpc/wii/wii_gpio.c projects/pciehp/sys/powerpc/wii/wii_gpioreg.h projects/pciehp/sys/powerpc/wii/wii_ipcreg.h projects/pciehp/sys/rpc/clnt_dg.c projects/pciehp/sys/rpc/rpcsec_gss.h projects/pciehp/sys/rpc/rpcsec_gss/rpcsec_gss.c projects/pciehp/sys/security/audit/audit.c projects/pciehp/sys/security/audit/audit.h projects/pciehp/sys/security/audit/audit_arg.c projects/pciehp/sys/security/audit/audit_bsm.c projects/pciehp/sys/security/audit/audit_bsm_klib.c projects/pciehp/sys/security/audit/audit_pipe.c projects/pciehp/sys/security/audit/audit_private.h projects/pciehp/sys/security/audit/bsm_token.c projects/pciehp/sys/security/mac/mac_framework.h projects/pciehp/sys/security/mac/mac_policy.h projects/pciehp/sys/security/mac/mac_posix_shm.c projects/pciehp/sys/security/mac/mac_process.c projects/pciehp/sys/security/mac/mac_syscalls.c projects/pciehp/sys/security/mac_biba/mac_biba.c projects/pciehp/sys/security/mac_mls/mac_mls.c projects/pciehp/sys/security/mac_stub/mac_stub.c projects/pciehp/sys/security/mac_test/mac_test.c projects/pciehp/sys/sparc64/conf/GENERIC projects/pciehp/sys/sparc64/include/atomic.h projects/pciehp/sys/sparc64/include/counter.h projects/pciehp/sys/sparc64/include/param.h projects/pciehp/sys/sparc64/include/pmap.h projects/pciehp/sys/sparc64/include/sf_buf.h projects/pciehp/sys/sparc64/include/ucontext.h projects/pciehp/sys/sparc64/include/vmparam.h projects/pciehp/sys/sparc64/sparc64/bus_machdep.c projects/pciehp/sys/sparc64/sparc64/genassym.c projects/pciehp/sys/sparc64/sparc64/machdep.c projects/pciehp/sys/sparc64/sparc64/mem.c projects/pciehp/sys/sparc64/sparc64/mp_machdep.c projects/pciehp/sys/sparc64/sparc64/pmap.c projects/pciehp/sys/sparc64/sparc64/uio_machdep.c projects/pciehp/sys/sparc64/sparc64/vm_machdep.c projects/pciehp/sys/sys/_cpuset.h projects/pciehp/sys/sys/_rmlock.h projects/pciehp/sys/sys/_types.h projects/pciehp/sys/sys/aio.h projects/pciehp/sys/sys/buf.h projects/pciehp/sys/sys/bufobj.h projects/pciehp/sys/sys/bus.h projects/pciehp/sys/sys/callout.h projects/pciehp/sys/sys/capability.h projects/pciehp/sys/sys/cdefs.h projects/pciehp/sys/sys/conf.h projects/pciehp/sys/sys/counter.h projects/pciehp/sys/sys/cpuset.h projects/pciehp/sys/sys/diskpc98.h projects/pciehp/sys/sys/elf_common.h projects/pciehp/sys/sys/event.h projects/pciehp/sys/sys/eventhandler.h projects/pciehp/sys/sys/eventvar.h projects/pciehp/sys/sys/fcntl.h projects/pciehp/sys/sys/file.h projects/pciehp/sys/sys/filedesc.h projects/pciehp/sys/sys/hhook.h projects/pciehp/sys/sys/jail.h projects/pciehp/sys/sys/kernel.h projects/pciehp/sys/sys/ktrace.h projects/pciehp/sys/sys/libkern.h projects/pciehp/sys/sys/linker.h projects/pciehp/sys/sys/lock.h projects/pciehp/sys/sys/lockmgr.h projects/pciehp/sys/sys/malloc.h projects/pciehp/sys/sys/mbpool.h projects/pciehp/sys/sys/mbuf.h projects/pciehp/sys/sys/mman.h projects/pciehp/sys/sys/module_khelp.h projects/pciehp/sys/sys/mount.h projects/pciehp/sys/sys/mouse.h projects/pciehp/sys/sys/mutex.h projects/pciehp/sys/sys/namei.h projects/pciehp/sys/sys/param.h projects/pciehp/sys/sys/pmckern.h projects/pciehp/sys/sys/priv.h projects/pciehp/sys/sys/proc.h projects/pciehp/sys/sys/procdesc.h projects/pciehp/sys/sys/queue.h projects/pciehp/sys/sys/random.h projects/pciehp/sys/sys/rangelock.h projects/pciehp/sys/sys/rmlock.h projects/pciehp/sys/sys/sched.h projects/pciehp/sys/sys/sdt.h projects/pciehp/sys/sys/sf_buf.h projects/pciehp/sys/sys/sockbuf.h projects/pciehp/sys/sys/socket.h projects/pciehp/sys/sys/socketvar.h projects/pciehp/sys/sys/stat.h projects/pciehp/sys/sys/syscall.h projects/pciehp/sys/sys/syscall.mk projects/pciehp/sys/sys/syscallsubr.h projects/pciehp/sys/sys/sysctl.h projects/pciehp/sys/sys/sysproto.h projects/pciehp/sys/sys/systm.h projects/pciehp/sys/sys/time.h projects/pciehp/sys/sys/timex.h projects/pciehp/sys/sys/types.h projects/pciehp/sys/sys/ucontext.h projects/pciehp/sys/sys/uio.h projects/pciehp/sys/sys/user.h projects/pciehp/sys/sys/uuid.h projects/pciehp/sys/sys/vmmeter.h projects/pciehp/sys/sys/vnode.h projects/pciehp/sys/sys/wait.h projects/pciehp/sys/ufs/ffs/ffs_alloc.c projects/pciehp/sys/ufs/ffs/ffs_balloc.c projects/pciehp/sys/ufs/ffs/ffs_inode.c projects/pciehp/sys/ufs/ffs/ffs_snapshot.c projects/pciehp/sys/ufs/ffs/ffs_softdep.c projects/pciehp/sys/ufs/ffs/ffs_suspend.c projects/pciehp/sys/ufs/ffs/ffs_vfsops.c projects/pciehp/sys/ufs/ufs/dinode.h projects/pciehp/sys/ufs/ufs/inode.h projects/pciehp/sys/ufs/ufs/ufs_dirhash.c projects/pciehp/sys/ufs/ufs/ufs_extattr.c projects/pciehp/sys/ufs/ufs/ufs_vnops.c projects/pciehp/sys/vm/_vm_radix.h projects/pciehp/sys/vm/device_pager.c projects/pciehp/sys/vm/memguard.c projects/pciehp/sys/vm/memguard.h projects/pciehp/sys/vm/phys_pager.c projects/pciehp/sys/vm/pmap.h projects/pciehp/sys/vm/sg_pager.c projects/pciehp/sys/vm/swap_pager.c projects/pciehp/sys/vm/uma.h projects/pciehp/sys/vm/uma_core.c projects/pciehp/sys/vm/uma_dbg.c projects/pciehp/sys/vm/uma_int.h projects/pciehp/sys/vm/vm.h projects/pciehp/sys/vm/vm_extern.h projects/pciehp/sys/vm/vm_fault.c projects/pciehp/sys/vm/vm_glue.c projects/pciehp/sys/vm/vm_init.c projects/pciehp/sys/vm/vm_kern.c projects/pciehp/sys/vm/vm_kern.h projects/pciehp/sys/vm/vm_map.c projects/pciehp/sys/vm/vm_map.h projects/pciehp/sys/vm/vm_mmap.c projects/pciehp/sys/vm/vm_object.c projects/pciehp/sys/vm/vm_object.h projects/pciehp/sys/vm/vm_page.c projects/pciehp/sys/vm/vm_page.h projects/pciehp/sys/vm/vm_pageout.c projects/pciehp/sys/vm/vm_pager.c projects/pciehp/sys/vm/vm_pager.h projects/pciehp/sys/vm/vm_param.h projects/pciehp/sys/vm/vm_phys.c projects/pciehp/sys/vm/vm_phys.h projects/pciehp/sys/vm/vm_radix.c projects/pciehp/sys/vm/vm_radix.h projects/pciehp/sys/vm/vm_reserv.c projects/pciehp/sys/vm/vm_reserv.h projects/pciehp/sys/vm/vm_zeroidle.c projects/pciehp/sys/vm/vnode_pager.c projects/pciehp/sys/x86/acpica/srat.c projects/pciehp/sys/x86/cpufreq/p4tcc.c projects/pciehp/sys/x86/include/segments.h projects/pciehp/sys/x86/include/specialreg.h projects/pciehp/sys/x86/isa/clock.c projects/pciehp/sys/x86/x86/busdma_machdep.c projects/pciehp/sys/x86/x86/local_apic.c projects/pciehp/sys/xen/evtchn.h projects/pciehp/sys/xen/evtchn/evtchn_dev.c projects/pciehp/sys/xen/features.c projects/pciehp/sys/xen/gnttab.c projects/pciehp/sys/xen/gnttab.h projects/pciehp/sys/xen/interface/arch-ia64.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/cpuid.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/hvm/save.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/xen-mca.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/xen-x86_32.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/xen-x86_64.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86/xen.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86_32.h (contents, props changed) projects/pciehp/sys/xen/interface/arch-x86_64.h (contents, props changed) projects/pciehp/sys/xen/interface/domctl.h (contents, props changed) projects/pciehp/sys/xen/interface/elfnote.h (contents, props changed) projects/pciehp/sys/xen/interface/event_channel.h (contents, props changed) projects/pciehp/sys/xen/interface/features.h (contents, props changed) projects/pciehp/sys/xen/interface/foreign/structs.py (contents, props changed) projects/pciehp/sys/xen/interface/grant_table.h (contents, props changed) projects/pciehp/sys/xen/interface/hvm/hvm_info_table.h (contents, props changed) projects/pciehp/sys/xen/interface/hvm/hvm_op.h (contents, props changed) projects/pciehp/sys/xen/interface/hvm/ioreq.h (contents, props changed) projects/pciehp/sys/xen/interface/hvm/params.h (contents, props changed) projects/pciehp/sys/xen/interface/hvm/save.h (contents, props changed) projects/pciehp/sys/xen/interface/io/blkif.h (contents, props changed) projects/pciehp/sys/xen/interface/io/netif.h (contents, props changed) projects/pciehp/sys/xen/interface/io/pciif.h (contents, props changed) projects/pciehp/sys/xen/interface/io/protocols.h (contents, props changed) projects/pciehp/sys/xen/interface/io/ring.h (contents, props changed) projects/pciehp/sys/xen/interface/io/xs_wire.h (contents, props changed) projects/pciehp/sys/xen/interface/kexec.h (contents, props changed) projects/pciehp/sys/xen/interface/memory.h (contents, props changed) projects/pciehp/sys/xen/interface/nmi.h (contents, props changed) projects/pciehp/sys/xen/interface/physdev.h (contents, props changed) projects/pciehp/sys/xen/interface/platform.h (contents, props changed) projects/pciehp/sys/xen/interface/sched.h (contents, props changed) projects/pciehp/sys/xen/interface/sysctl.h (contents, props changed) projects/pciehp/sys/xen/interface/trace.h (contents, props changed) projects/pciehp/sys/xen/interface/vcpu.h (contents, props changed) projects/pciehp/sys/xen/interface/version.h (contents, props changed) projects/pciehp/sys/xen/interface/xen-compat.h (contents, props changed) projects/pciehp/sys/xen/interface/xen.h (contents, props changed) projects/pciehp/sys/xen/interface/xenoprof.h (contents, props changed) projects/pciehp/sys/xen/xen_intr.h projects/pciehp/sys/xen/xenbus/xenbus.c projects/pciehp/sys/xen/xenbus/xenbus_if.m projects/pciehp/sys/xen/xenbus/xenbusb.c projects/pciehp/sys/xen/xenbus/xenbusb_front.c projects/pciehp/sys/xen/xenbus/xenbusvar.h projects/pciehp/sys/xen/xenstore/xenstore.c projects/pciehp/sys/xen/xenstore/xenstore_dev.c projects/pciehp/sys/xen/xenstore/xenstorevar.h projects/pciehp/tools/build/mk/OptionalObsoleteFiles.inc projects/pciehp/tools/build/options/WITHOUT_GCC projects/pciehp/tools/build/options/WITHOUT_KERBEROS_SUPPORT projects/pciehp/tools/build/options/WITHOUT_LDNS projects/pciehp/tools/build/options/makeman projects/pciehp/tools/make_libdeps.sh projects/pciehp/tools/regression/aio/aiop/aiop.c projects/pciehp/tools/regression/aio/aiotest/aiotest.c projects/pciehp/tools/regression/bin/test/regress.sh projects/pciehp/tools/regression/file/dup/dup.c projects/pciehp/tools/regression/filemon/Makefile projects/pciehp/tools/regression/filemon/filemontest.c projects/pciehp/tools/regression/filemon/test_script.sh projects/pciehp/tools/regression/filemon/timed-forkb.c projects/pciehp/tools/regression/lib/libc/gen/Makefile projects/pciehp/tools/regression/lib/libc/gen/test-fnmatch.c projects/pciehp/tools/regression/lib/libc/gen/test-fpclassify.c projects/pciehp/tools/regression/lib/libc/gen/test-ftw.c projects/pciehp/tools/regression/lib/libc/gen/test-wordexp.c projects/pciehp/tools/regression/lib/libc/locale/Makefile projects/pciehp/tools/regression/lib/libc/locale/test-btowc.c projects/pciehp/tools/regression/lib/libc/locale/test-iswctype.c projects/pciehp/tools/regression/lib/libc/locale/test-towctrans.c projects/pciehp/tools/regression/lib/libc/nss/test-getaddr.c projects/pciehp/tools/regression/lib/libc/nss/test-getgr.c projects/pciehp/tools/regression/lib/libc/nss/test-gethostby.c projects/pciehp/tools/regression/lib/libc/nss/test-getproto.c projects/pciehp/tools/regression/lib/libc/nss/test-getpw.c projects/pciehp/tools/regression/lib/libc/nss/test-getrpc.c projects/pciehp/tools/regression/lib/libc/nss/test-getusershell.c projects/pciehp/tools/regression/lib/libc/nss/testutil.h projects/pciehp/tools/regression/lib/libc/stdio/Makefile projects/pciehp/tools/regression/lib/libc/stdio/test-fmemopen.t projects/pciehp/tools/regression/lib/libc/stdio/test-open_memstream.t projects/pciehp/tools/regression/lib/libc/stdio/test-open_wmemstream.t projects/pciehp/tools/regression/lib/msun/Makefile projects/pciehp/tools/regression/lib/msun/test-cexp.c projects/pciehp/tools/regression/lib/msun/test-conj.c projects/pciehp/tools/regression/lib/msun/test-csqrt.c projects/pciehp/tools/regression/lib/msun/test-ctrig.c projects/pciehp/tools/regression/lib/msun/test-exponential.c projects/pciehp/tools/regression/lib/msun/test-fma.c projects/pciehp/tools/regression/lib/msun/test-fmaxmin.c projects/pciehp/tools/regression/lib/msun/test-invtrig.c projects/pciehp/tools/regression/lib/msun/test-logarithm.c projects/pciehp/tools/regression/lib/msun/test-nearbyint.c projects/pciehp/tools/regression/lib/msun/test-next.c projects/pciehp/tools/regression/lib/msun/test-rem.c projects/pciehp/tools/regression/lib/msun/test-trig.c projects/pciehp/tools/regression/priv/Makefile projects/pciehp/tools/regression/pthread/cv_cancel1/cv_cancel1.c projects/pciehp/tools/regression/sbin/dhclient/Makefile projects/pciehp/tools/regression/sockets/sendfile/sendfile.c projects/pciehp/tools/test/dtrace/Makefile projects/pciehp/tools/test/hwpmc/pmctest.py projects/pciehp/tools/test/posixshm/shm_test.c projects/pciehp/tools/tools/README projects/pciehp/tools/tools/ath/Makefile projects/pciehp/tools/tools/ath/Makefile.inc projects/pciehp/tools/tools/ath/athalq/main.c projects/pciehp/tools/tools/ath/athspectral/athspectral.c projects/pciehp/tools/tools/ath/athstats/athstats.c projects/pciehp/tools/tools/bootparttest/bootparttest.c projects/pciehp/tools/tools/bus_autoconf/bus_load_file.c projects/pciehp/tools/tools/crypto/ipsecstats.c projects/pciehp/tools/tools/cxgbetool/cxgbetool.c projects/pciehp/tools/tools/ifinfo/ifinfo.c projects/pciehp/tools/tools/nanobsd/gateworks/common projects/pciehp/tools/tools/net80211/wlanstats/Makefile projects/pciehp/tools/tools/netmap/Makefile projects/pciehp/tools/tools/netmap/bridge.c projects/pciehp/tools/tools/netmap/nm_util.c projects/pciehp/tools/tools/netmap/pcap.c projects/pciehp/tools/tools/netmap/pkt-gen.c projects/pciehp/tools/tools/pciroms/pciroms.c projects/pciehp/tools/tools/sysdoc/sysdoc.sh projects/pciehp/tools/tools/sysdoc/tunables.mdoc projects/pciehp/tools/tools/zfsboottest/Makefile projects/pciehp/tools/tools/zfsboottest/zfsboottest.c projects/pciehp/tools/tools/zfsboottest/zfsboottest.sh projects/pciehp/usr.bin/Makefile projects/pciehp/usr.bin/Makefile.amd64 projects/pciehp/usr.bin/Makefile.i386 projects/pciehp/usr.bin/Makefile.ia64 projects/pciehp/usr.bin/Makefile.powerpc projects/pciehp/usr.bin/Makefile.sparc64 projects/pciehp/usr.bin/ar/acplex.l projects/pciehp/usr.bin/bc/scan.l projects/pciehp/usr.bin/bmake/Makefile projects/pciehp/usr.bin/bmake/Makefile.inc projects/pciehp/usr.bin/bmake/config.h projects/pciehp/usr.bin/bmake/unit-tests/Makefile projects/pciehp/usr.bin/brandelf/brandelf.1 projects/pciehp/usr.bin/calendar/Makefile projects/pciehp/usr.bin/calendar/calendar.h projects/pciehp/usr.bin/calendar/calendars/calendar.freebsd projects/pciehp/usr.bin/calendar/dates.c projects/pciehp/usr.bin/calendar/io.c projects/pciehp/usr.bin/calendar/parsedata.c projects/pciehp/usr.bin/calendar/pathnames.h projects/pciehp/usr.bin/calendar/sunpos.c projects/pciehp/usr.bin/clang/clang/clang.1 projects/pciehp/usr.bin/clang/llc/llc.1 projects/pciehp/usr.bin/clang/llvm-objdump/Makefile projects/pciehp/usr.bin/clang/llvm-rtdyld/Makefile projects/pciehp/usr.bin/clang/opt/opt.1 projects/pciehp/usr.bin/csup/updater.h projects/pciehp/usr.bin/dig/Makefile projects/pciehp/usr.bin/dtc/checking.cc projects/pciehp/usr.bin/dtc/dtc.1 projects/pciehp/usr.bin/dtc/dtc.cc projects/pciehp/usr.bin/dtc/fdt.cc projects/pciehp/usr.bin/dtc/fdt.hh projects/pciehp/usr.bin/dtc/input_buffer.cc projects/pciehp/usr.bin/fetch/fetch.1 projects/pciehp/usr.bin/fetch/fetch.c projects/pciehp/usr.bin/find/function.c projects/pciehp/usr.bin/gcore/Makefile projects/pciehp/usr.bin/getent/getent.c projects/pciehp/usr.bin/grep/Makefile projects/pciehp/usr.bin/grep/regex/tre-fastmatch.c projects/pciehp/usr.bin/host/Makefile projects/pciehp/usr.bin/iconv/iconv.c projects/pciehp/usr.bin/kdump/kdump.c projects/pciehp/usr.bin/kdump/mksubr projects/pciehp/usr.bin/killall/killall.1 projects/pciehp/usr.bin/killall/killall.c projects/pciehp/usr.bin/ldd/ldd.c projects/pciehp/usr.bin/lex/Makefile projects/pciehp/usr.bin/lex/config.h projects/pciehp/usr.bin/lex/initscan.c projects/pciehp/usr.bin/lex/lex.1 projects/pciehp/usr.bin/lex/lib/Makefile projects/pciehp/usr.bin/lockf/lockf.1 projects/pciehp/usr.bin/lockf/lockf.c projects/pciehp/usr.bin/lsvfs/lsvfs.1 projects/pciehp/usr.bin/lsvfs/lsvfs.c projects/pciehp/usr.bin/m4/lib/ohash_init.3 projects/pciehp/usr.bin/m4/lib/ohash_interval.3 projects/pciehp/usr.bin/m4/tokenizer.l projects/pciehp/usr.bin/mail/popen.c projects/pciehp/usr.bin/make/Makefile projects/pciehp/usr.bin/make/job.c projects/pciehp/usr.bin/mkcsmapper/Makefile projects/pciehp/usr.bin/mkcsmapper/ldef.h projects/pciehp/usr.bin/mkcsmapper/lex.l projects/pciehp/usr.bin/mkcsmapper/yacc.y projects/pciehp/usr.bin/mkesdb/Makefile projects/pciehp/usr.bin/mkesdb/ldef.h projects/pciehp/usr.bin/mkesdb/lex.l projects/pciehp/usr.bin/mkesdb/yacc.y projects/pciehp/usr.bin/mklocale/lex.l projects/pciehp/usr.bin/netstat/inet.c projects/pciehp/usr.bin/netstat/inet6.c projects/pciehp/usr.bin/netstat/ipsec.c projects/pciehp/usr.bin/netstat/main.c projects/pciehp/usr.bin/netstat/mbuf.c projects/pciehp/usr.bin/netstat/mroute.c projects/pciehp/usr.bin/netstat/netstat.1 projects/pciehp/usr.bin/netstat/netstat.h projects/pciehp/usr.bin/netstat/pfkey.c projects/pciehp/usr.bin/netstat/route.c projects/pciehp/usr.bin/nfsstat/nfsstat.c projects/pciehp/usr.bin/nslookup/Makefile projects/pciehp/usr.bin/nsupdate/Makefile projects/pciehp/usr.bin/patch/Makefile projects/pciehp/usr.bin/patch/patch.c projects/pciehp/usr.bin/patch/pch.c projects/pciehp/usr.bin/patch/util.c projects/pciehp/usr.bin/procstat/procstat_files.c projects/pciehp/usr.bin/rwho/rwho.c projects/pciehp/usr.bin/script/script.1 projects/pciehp/usr.bin/sed/main.c projects/pciehp/usr.bin/sort/bwstring.c projects/pciehp/usr.bin/sort/bwstring.h projects/pciehp/usr.bin/sort/coll.c projects/pciehp/usr.bin/sort/coll.h projects/pciehp/usr.bin/sort/file.c projects/pciehp/usr.bin/sort/file.h projects/pciehp/usr.bin/sort/mem.c projects/pciehp/usr.bin/sort/mem.h projects/pciehp/usr.bin/sort/radixsort.c projects/pciehp/usr.bin/sort/radixsort.h projects/pciehp/usr.bin/sort/sort.1.in projects/pciehp/usr.bin/sort/sort.c projects/pciehp/usr.bin/sort/sort.h projects/pciehp/usr.bin/sort/vsort.c projects/pciehp/usr.bin/sort/vsort.h projects/pciehp/usr.bin/split/split.1 projects/pciehp/usr.bin/split/split.c projects/pciehp/usr.bin/su/su.1 projects/pciehp/usr.bin/su/su.c projects/pciehp/usr.bin/systat/Makefile projects/pciehp/usr.bin/systat/cmdtab.c projects/pciehp/usr.bin/systat/extern.h projects/pciehp/usr.bin/systat/systat.1 projects/pciehp/usr.bin/tail/extern.h projects/pciehp/usr.bin/tail/forward.c projects/pciehp/usr.bin/tail/misc.c projects/pciehp/usr.bin/tail/tail.c projects/pciehp/usr.bin/top/machine.c projects/pciehp/usr.bin/truss/syscall.h projects/pciehp/usr.bin/truss/syscalls.c projects/pciehp/usr.bin/uniq/uniq.c projects/pciehp/usr.bin/usbhidctl/usbhidctl.1 projects/pciehp/usr.bin/vi/Makefile projects/pciehp/usr.bin/vi/config.h projects/pciehp/usr.bin/vi/pathnames.h projects/pciehp/usr.bin/xargs/xargs.c projects/pciehp/usr.bin/xinstall/install.1 projects/pciehp/usr.sbin/Makefile projects/pciehp/usr.sbin/Makefile.amd64 projects/pciehp/usr.sbin/Makefile.i386 projects/pciehp/usr.sbin/Makefile.ia64 projects/pciehp/usr.sbin/Makefile.powerpc projects/pciehp/usr.sbin/Makefile.sparc64 projects/pciehp/usr.sbin/acpi/acpidb/Makefile projects/pciehp/usr.sbin/acpi/acpidb/acpidb.c projects/pciehp/usr.sbin/acpi/acpidump/acpi.c projects/pciehp/usr.sbin/acpi/acpidump/acpi_user.c projects/pciehp/usr.sbin/acpi/iasl/Makefile projects/pciehp/usr.sbin/arp/arp.4 projects/pciehp/usr.sbin/authpf/Makefile projects/pciehp/usr.sbin/bhyve/Makefile projects/pciehp/usr.sbin/bhyve/acpi.c projects/pciehp/usr.sbin/bhyve/atpic.c projects/pciehp/usr.sbin/bhyve/bhyverun.c projects/pciehp/usr.sbin/bhyve/ioapic.c projects/pciehp/usr.sbin/bhyve/pci_emul.c projects/pciehp/usr.sbin/bhyve/pci_emul.h projects/pciehp/usr.sbin/bhyve/pci_virtio_block.c projects/pciehp/usr.sbin/bhyve/pci_virtio_net.c projects/pciehp/usr.sbin/bhyve/rtc.c projects/pciehp/usr.sbin/bhyve/virtio.h projects/pciehp/usr.sbin/bluetooth/bthidd/lexer.l projects/pciehp/usr.sbin/bluetooth/hccontrol/link_control.c projects/pciehp/usr.sbin/boot98cfg/boot98cfg.c projects/pciehp/usr.sbin/bootparamd/bootparamd/bootparamd.8 projects/pciehp/usr.sbin/bsdconfig/Makefile projects/pciehp/usr.sbin/bsdconfig/USAGE projects/pciehp/usr.sbin/bsdconfig/bsdconfig projects/pciehp/usr.sbin/bsdconfig/bsdconfig.8 projects/pciehp/usr.sbin/bsdconfig/console/INDEX projects/pciehp/usr.sbin/bsdconfig/console/USAGE projects/pciehp/usr.sbin/bsdconfig/console/console projects/pciehp/usr.sbin/bsdconfig/console/font projects/pciehp/usr.sbin/bsdconfig/console/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/console/keymap projects/pciehp/usr.sbin/bsdconfig/console/repeat projects/pciehp/usr.sbin/bsdconfig/console/saver projects/pciehp/usr.sbin/bsdconfig/console/screenmap projects/pciehp/usr.sbin/bsdconfig/console/ttys projects/pciehp/usr.sbin/bsdconfig/diskmgmt/INDEX projects/pciehp/usr.sbin/bsdconfig/diskmgmt/USAGE projects/pciehp/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/pciehp/usr.sbin/bsdconfig/docsinstall/INDEX projects/pciehp/usr.sbin/bsdconfig/docsinstall/USAGE projects/pciehp/usr.sbin/bsdconfig/docsinstall/docsinstall projects/pciehp/usr.sbin/bsdconfig/dot/INDEX projects/pciehp/usr.sbin/bsdconfig/dot/USAGE projects/pciehp/usr.sbin/bsdconfig/dot/dot projects/pciehp/usr.sbin/bsdconfig/examples/Makefile projects/pciehp/usr.sbin/bsdconfig/examples/bsdconfigrc projects/pciehp/usr.sbin/bsdconfig/include/media.hlp projects/pciehp/usr.sbin/bsdconfig/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/include/options.hlp projects/pciehp/usr.sbin/bsdconfig/mouse/INDEX projects/pciehp/usr.sbin/bsdconfig/mouse/USAGE projects/pciehp/usr.sbin/bsdconfig/mouse/disable projects/pciehp/usr.sbin/bsdconfig/mouse/enable projects/pciehp/usr.sbin/bsdconfig/mouse/flags projects/pciehp/usr.sbin/bsdconfig/mouse/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/mouse/mouse projects/pciehp/usr.sbin/bsdconfig/mouse/port projects/pciehp/usr.sbin/bsdconfig/mouse/type projects/pciehp/usr.sbin/bsdconfig/networking/INDEX projects/pciehp/usr.sbin/bsdconfig/networking/USAGE projects/pciehp/usr.sbin/bsdconfig/networking/defaultrouter projects/pciehp/usr.sbin/bsdconfig/networking/devices projects/pciehp/usr.sbin/bsdconfig/networking/hostname projects/pciehp/usr.sbin/bsdconfig/networking/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/networking/nameservers projects/pciehp/usr.sbin/bsdconfig/networking/networking projects/pciehp/usr.sbin/bsdconfig/networking/share/Makefile projects/pciehp/usr.sbin/bsdconfig/networking/share/common.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/device.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/hostname.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/media.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/netmask.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/resolv.subr projects/pciehp/usr.sbin/bsdconfig/networking/share/routing.subr projects/pciehp/usr.sbin/bsdconfig/password/INDEX projects/pciehp/usr.sbin/bsdconfig/password/USAGE projects/pciehp/usr.sbin/bsdconfig/password/password projects/pciehp/usr.sbin/bsdconfig/password/share/password.subr projects/pciehp/usr.sbin/bsdconfig/security/INDEX projects/pciehp/usr.sbin/bsdconfig/security/USAGE projects/pciehp/usr.sbin/bsdconfig/security/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/security/kern_securelevel projects/pciehp/usr.sbin/bsdconfig/security/security projects/pciehp/usr.sbin/bsdconfig/share/Makefile projects/pciehp/usr.sbin/bsdconfig/share/common.subr projects/pciehp/usr.sbin/bsdconfig/share/device.subr projects/pciehp/usr.sbin/bsdconfig/share/dialog.subr projects/pciehp/usr.sbin/bsdconfig/share/media/Makefile projects/pciehp/usr.sbin/bsdconfig/share/media/any.subr projects/pciehp/usr.sbin/bsdconfig/share/media/cdrom.subr projects/pciehp/usr.sbin/bsdconfig/share/media/common.subr projects/pciehp/usr.sbin/bsdconfig/share/media/directory.subr projects/pciehp/usr.sbin/bsdconfig/share/media/dos.subr projects/pciehp/usr.sbin/bsdconfig/share/media/floppy.subr projects/pciehp/usr.sbin/bsdconfig/share/media/ftp.subr projects/pciehp/usr.sbin/bsdconfig/share/media/httpproxy.subr projects/pciehp/usr.sbin/bsdconfig/share/media/network.subr projects/pciehp/usr.sbin/bsdconfig/share/media/nfs.subr projects/pciehp/usr.sbin/bsdconfig/share/media/options.subr projects/pciehp/usr.sbin/bsdconfig/share/media/tcpip.subr projects/pciehp/usr.sbin/bsdconfig/share/media/ufs.subr projects/pciehp/usr.sbin/bsdconfig/share/media/usb.subr projects/pciehp/usr.sbin/bsdconfig/share/mustberoot.subr projects/pciehp/usr.sbin/bsdconfig/share/script.subr projects/pciehp/usr.sbin/bsdconfig/share/strings.subr projects/pciehp/usr.sbin/bsdconfig/share/struct.subr projects/pciehp/usr.sbin/bsdconfig/share/sysrc.subr projects/pciehp/usr.sbin/bsdconfig/share/variable.subr projects/pciehp/usr.sbin/bsdconfig/startup/INDEX projects/pciehp/usr.sbin/bsdconfig/startup/USAGE projects/pciehp/usr.sbin/bsdconfig/startup/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/startup/misc projects/pciehp/usr.sbin/bsdconfig/startup/rcadd projects/pciehp/usr.sbin/bsdconfig/startup/rcconf projects/pciehp/usr.sbin/bsdconfig/startup/rcdelete projects/pciehp/usr.sbin/bsdconfig/startup/rcedit projects/pciehp/usr.sbin/bsdconfig/startup/rcvar projects/pciehp/usr.sbin/bsdconfig/startup/share/rcconf.subr projects/pciehp/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/pciehp/usr.sbin/bsdconfig/startup/share/rcvar.subr projects/pciehp/usr.sbin/bsdconfig/startup/startup projects/pciehp/usr.sbin/bsdconfig/timezone/INDEX projects/pciehp/usr.sbin/bsdconfig/timezone/USAGE projects/pciehp/usr.sbin/bsdconfig/timezone/share/continents.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/countries.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/iso3166.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/menus.subr projects/pciehp/usr.sbin/bsdconfig/timezone/share/zones.subr projects/pciehp/usr.sbin/bsdconfig/timezone/timezone projects/pciehp/usr.sbin/bsdconfig/ttys/INDEX projects/pciehp/usr.sbin/bsdconfig/ttys/USAGE projects/pciehp/usr.sbin/bsdconfig/ttys/ttys projects/pciehp/usr.sbin/bsdconfig/usermgmt/INDEX projects/pciehp/usr.sbin/bsdconfig/usermgmt/USAGE projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupadd projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupdel projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupedit projects/pciehp/usr.sbin/bsdconfig/usermgmt/groupinput projects/pciehp/usr.sbin/bsdconfig/usermgmt/include/messages.subr projects/pciehp/usr.sbin/bsdconfig/usermgmt/share/group_input.subr projects/pciehp/usr.sbin/bsdconfig/usermgmt/share/user_input.subr projects/pciehp/usr.sbin/bsdconfig/usermgmt/useradd projects/pciehp/usr.sbin/bsdconfig/usermgmt/userdel projects/pciehp/usr.sbin/bsdconfig/usermgmt/useredit projects/pciehp/usr.sbin/bsdconfig/usermgmt/userinput projects/pciehp/usr.sbin/bsdconfig/usermgmt/usermgmt projects/pciehp/usr.sbin/bsdinstall/distextract/Makefile projects/pciehp/usr.sbin/bsdinstall/distfetch/Makefile projects/pciehp/usr.sbin/bsdinstall/partedit/Makefile projects/pciehp/usr.sbin/bsdinstall/partedit/diskeditor.c projects/pciehp/usr.sbin/bsdinstall/scripts/mirrorselect projects/pciehp/usr.sbin/bsnmpd/modules/Makefile projects/pciehp/usr.sbin/config/lang.l projects/pciehp/usr.sbin/crashinfo/crashinfo.sh projects/pciehp/usr.sbin/ctladm/ctladm.8 projects/pciehp/usr.sbin/ctladm/ctladm.c projects/pciehp/usr.sbin/daemon/daemon.8 projects/pciehp/usr.sbin/daemon/daemon.c projects/pciehp/usr.sbin/dumpcis/printcis.c projects/pciehp/usr.sbin/freebsd-update/freebsd-update.8 projects/pciehp/usr.sbin/gpioctl/gpioctl.8 projects/pciehp/usr.sbin/gssd/gssd.8 projects/pciehp/usr.sbin/gssd/gssd.c projects/pciehp/usr.sbin/jail/jail.8 projects/pciehp/usr.sbin/jail/jaillex.l projects/pciehp/usr.sbin/jls/jls.8 projects/pciehp/usr.sbin/jls/jls.c projects/pciehp/usr.sbin/kldxref/ef.c projects/pciehp/usr.sbin/kldxref/ef_amd64.c projects/pciehp/usr.sbin/kldxref/ef_i386.c projects/pciehp/usr.sbin/kldxref/ef_obj.c projects/pciehp/usr.sbin/kldxref/kldxref.c projects/pciehp/usr.sbin/lpr/common_source/common.c projects/pciehp/usr.sbin/lpr/common_source/lp.cdefs.h projects/pciehp/usr.sbin/makefs/Makefile projects/pciehp/usr.sbin/makefs/cd9660.c projects/pciehp/usr.sbin/makefs/cd9660/iso9660_rrip.c projects/pciehp/usr.sbin/makefs/ffs/ufs_bswap.h projects/pciehp/usr.sbin/makefs/makefs.8 projects/pciehp/usr.sbin/makefs/makefs.c projects/pciehp/usr.sbin/makefs/makefs.h projects/pciehp/usr.sbin/makefs/mtree.c projects/pciehp/usr.sbin/makefs/walk.c projects/pciehp/usr.sbin/mergemaster/mergemaster.8 projects/pciehp/usr.sbin/mergemaster/mergemaster.sh projects/pciehp/usr.sbin/mfiutil/Makefile projects/pciehp/usr.sbin/mfiutil/mfi_config.c projects/pciehp/usr.sbin/mfiutil/mfi_drive.c projects/pciehp/usr.sbin/mfiutil/mfi_show.c projects/pciehp/usr.sbin/mfiutil/mfiutil.8 projects/pciehp/usr.sbin/mfiutil/mfiutil.c projects/pciehp/usr.sbin/mfiutil/mfiutil.h projects/pciehp/usr.sbin/mtree/create.c projects/pciehp/usr.sbin/named/Makefile projects/pciehp/usr.sbin/ndp/ndp.8 projects/pciehp/usr.sbin/ndp/ndp.c projects/pciehp/usr.sbin/newsyslog/newsyslog.c projects/pciehp/usr.sbin/nfsd/nfsv4.4 projects/pciehp/usr.sbin/nvram/nvram.c projects/pciehp/usr.sbin/pciconf/cap.c projects/pciehp/usr.sbin/periodic/periodic.sh projects/pciehp/usr.sbin/pkg/config.c projects/pciehp/usr.sbin/pkg/dns_utils.c projects/pciehp/usr.sbin/pkg/elf_tables.h projects/pciehp/usr.sbin/pkg_install/add/extract.c projects/pciehp/usr.sbin/pkg_install/add/main.c projects/pciehp/usr.sbin/pkg_install/create/pl.c projects/pciehp/usr.sbin/pkg_install/lib/exec.c projects/pciehp/usr.sbin/pkg_install/version/pkg_version.1 projects/pciehp/usr.sbin/pmcannotate/pmcannotate.c projects/pciehp/usr.sbin/portsnap/portsnap/portsnap.8 projects/pciehp/usr.sbin/portsnap/portsnap/portsnap.sh projects/pciehp/usr.sbin/powerd/powerd.8 projects/pciehp/usr.sbin/powerd/powerd.c projects/pciehp/usr.sbin/ppp/Makefile projects/pciehp/usr.sbin/ppp/defs.c projects/pciehp/usr.sbin/ppp/defs.h projects/pciehp/usr.sbin/pw/pw.conf.5 projects/pciehp/usr.sbin/pw/pw_user.c projects/pciehp/usr.sbin/rtadvctl/rtadvctl.c projects/pciehp/usr.sbin/rtadvd/config.c projects/pciehp/usr.sbin/rtadvd/if.c projects/pciehp/usr.sbin/rtadvd/rrenum.c projects/pciehp/usr.sbin/rtadvd/rtadvd.c projects/pciehp/usr.sbin/rtadvd/rtadvd.h projects/pciehp/usr.sbin/rtadvd/timer.c projects/pciehp/usr.sbin/rtadvd/timer.h projects/pciehp/usr.sbin/rtadvd/timer_subr.c projects/pciehp/usr.sbin/rtadvd/timer_subr.h projects/pciehp/usr.sbin/rtsold/dump.c projects/pciehp/usr.sbin/rtsold/if.c projects/pciehp/usr.sbin/rtsold/probe.c projects/pciehp/usr.sbin/rtsold/rtsock.c projects/pciehp/usr.sbin/rtsold/rtsol.c projects/pciehp/usr.sbin/rtsold/rtsold.8 projects/pciehp/usr.sbin/rtsold/rtsold.c projects/pciehp/usr.sbin/rtsold/rtsold.h projects/pciehp/usr.sbin/rwhod/rwhod.c projects/pciehp/usr.sbin/setfib/setfib.1 projects/pciehp/usr.sbin/sysrc/sysrc projects/pciehp/usr.sbin/sysrc/sysrc.8 projects/pciehp/usr.sbin/tcpdump/tcpdump/Makefile projects/pciehp/usr.sbin/tcpdump/tcpdump/config.h projects/pciehp/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/pciehp/usr.sbin/uhsoctl/uhsoctl.1 projects/pciehp/usr.sbin/vidcontrol/vidcontrol.c projects/pciehp/usr.sbin/wake/wake.8 projects/pciehp/usr.sbin/watch/watch.c projects/pciehp/usr.sbin/watchdogd/watchdogd.8 projects/pciehp/usr.sbin/watchdogd/watchdogd.c projects/pciehp/usr.sbin/wpa/Makefile.crypto projects/pciehp/usr.sbin/wpa/Makefile.inc projects/pciehp/usr.sbin/wpa/hostapd/Makefile projects/pciehp/usr.sbin/wpa/hostapd_cli/Makefile projects/pciehp/usr.sbin/wpa/wpa_cli/Makefile projects/pciehp/usr.sbin/wpa/wpa_passphrase/Makefile projects/pciehp/usr.sbin/wpa/wpa_supplicant/Makefile projects/pciehp/usr.sbin/ypserv/yp_access.c projects/pciehp/usr.sbin/ypserv/yp_dnslookup.c projects/pciehp/usr.sbin/ypserv/yp_main.c Directory Properties: projects/pciehp/ (props changed) projects/pciehp/cddl/ (props changed) projects/pciehp/cddl/contrib/opensolaris/ (props changed) projects/pciehp/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) projects/pciehp/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/pciehp/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/pciehp/contrib/atf/ (props changed) projects/pciehp/contrib/bind9/ (props changed) projects/pciehp/contrib/binutils/ (props changed) projects/pciehp/contrib/bmake/ (props changed) projects/pciehp/contrib/byacc/ (props changed) projects/pciehp/contrib/dialog/ (props changed) projects/pciehp/contrib/gcc/ (props changed) projects/pciehp/contrib/gdb/ (props changed) projects/pciehp/contrib/ipfilter/ (props changed) projects/pciehp/contrib/ipfilter/test/expected/i19 (props changed) projects/pciehp/contrib/ldns/ (props changed) projects/pciehp/contrib/less/ (props changed) projects/pciehp/contrib/libc++/ (props changed) projects/pciehp/contrib/libcxxrt/ (props changed) projects/pciehp/contrib/libpcap/ (props changed) projects/pciehp/contrib/libstdc++/ (props changed) projects/pciehp/contrib/llvm/ (props changed) projects/pciehp/contrib/llvm/tools/clang/ (props changed) projects/pciehp/contrib/nvi/ (props changed) projects/pciehp/contrib/openbsm/ (props changed) projects/pciehp/contrib/openpam/ (props changed) projects/pciehp/contrib/sendmail/ (props changed) projects/pciehp/contrib/tcpdump/ (props changed) projects/pciehp/contrib/tzdata/ (props changed) projects/pciehp/contrib/unbound/ (props changed) projects/pciehp/contrib/wpa/ (props changed) projects/pciehp/contrib/wpa/hostapd/eap_testing.txt (props changed) projects/pciehp/contrib/wpa/hostapd/hostapd.8 (props changed) projects/pciehp/contrib/wpa/hostapd/hostapd_cli.1 (props changed) projects/pciehp/contrib/wpa/hostapd/logwatch/hostapd.conf (props changed) projects/pciehp/contrib/wpa/hostapd/wired.conf (props changed) projects/pciehp/contrib/wpa/src/ap/vlan_init.h (props changed) projects/pciehp/contrib/wpa/src/ap/wmm.h (props changed) projects/pciehp/contrib/wpa/src/utils/radiotap.c (props changed) projects/pciehp/contrib/wpa/src/wps/http.h (props changed) projects/pciehp/contrib/wpa/wpa_supplicant/dbus/dbus-wpa_supplicant.conf (props changed) projects/pciehp/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-getall.py (props changed) projects/pciehp/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-wps.py (props changed) projects/pciehp/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new.py (props changed) projects/pciehp/crypto/heimdal/ (props changed) projects/pciehp/crypto/openssh/ (props changed) projects/pciehp/crypto/openssl/ (props changed) projects/pciehp/gnu/lib/ (props changed) projects/pciehp/gnu/usr.bin/gdb/ (props changed) projects/pciehp/lib/libc/ (props changed) projects/pciehp/lib/libutil/ (props changed) projects/pciehp/sbin/ (props changed) projects/pciehp/sbin/ipfw/ (props changed) projects/pciehp/share/man/man4/ (props changed) projects/pciehp/sys/ (props changed) projects/pciehp/sys/amd64/include/xen/ (props changed) projects/pciehp/sys/amd64/vmm/ (props changed) projects/pciehp/sys/boot/ (props changed) projects/pciehp/sys/cddl/contrib/opensolaris/ (props changed) projects/pciehp/sys/conf/ (props changed) projects/pciehp/sys/contrib/dev/acpica/ (props changed) projects/pciehp/sys/contrib/dev/acpica/common/ (props changed) projects/pciehp/sys/contrib/dev/acpica/compiler/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/events/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/executer/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/parser/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/resources/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/tables/ (props changed) projects/pciehp/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/pciehp/sys/contrib/dev/acpica/include/ (props changed) projects/pciehp/sys/contrib/dev/acpica/os_specific/ (props changed) projects/pciehp/sys/contrib/ipfilter/ (props changed) projects/pciehp/sys/contrib/octeon-sdk/ (props changed) projects/pciehp/sys/modules/vmm/ (props changed) projects/pciehp/sys/xen/interface/ (props changed) projects/pciehp/sys/xen/interface/COPYING (props changed) projects/pciehp/sys/xen/interface/acm.h (props changed) projects/pciehp/sys/xen/interface/acm_ops.h (props changed) projects/pciehp/sys/xen/interface/arch-arm/hvm/ (props changed) projects/pciehp/sys/xen/interface/arch-ia64/hvm/ (props changed) projects/pciehp/sys/xen/interface/arch-powerpc.h (props changed) projects/pciehp/sys/xen/interface/arch-x86/ (props changed) projects/pciehp/sys/xen/interface/arch-x86/hvm/ (props changed) projects/pciehp/sys/xen/interface/callback.h (props changed) projects/pciehp/sys/xen/interface/dom0_ops.h (props changed) projects/pciehp/sys/xen/interface/elfstructs.h (props changed) projects/pciehp/sys/xen/interface/foreign/ (props changed) projects/pciehp/sys/xen/interface/foreign/Makefile (props changed) projects/pciehp/sys/xen/interface/foreign/mkchecker.py (props changed) projects/pciehp/sys/xen/interface/foreign/mkheader.py (props changed) projects/pciehp/sys/xen/interface/foreign/reference.size (props changed) projects/pciehp/sys/xen/interface/hvm/ (props changed) projects/pciehp/sys/xen/interface/hvm/e820.h (props changed) projects/pciehp/sys/xen/interface/io/ (props changed) projects/pciehp/sys/xen/interface/io/console.h (props changed) projects/pciehp/sys/xen/interface/io/fbif.h (props changed) projects/pciehp/sys/xen/interface/io/kbdif.h (props changed) projects/pciehp/sys/xen/interface/io/tpmif.h (props changed) projects/pciehp/sys/xen/interface/io/xenbus.h (props changed) projects/pciehp/sys/xen/interface/libelf.h (props changed) projects/pciehp/sys/xen/interface/xencomm.h (props changed) projects/pciehp/usr.bin/calendar/ (props changed) projects/pciehp/usr.bin/csup/ (props changed) projects/pciehp/usr.bin/procstat/ (props changed) projects/pciehp/usr.sbin/bhyve/ (props changed) projects/pciehp/usr.sbin/jail/ (props changed) projects/pciehp/usr.sbin/rtadvctl/ (props changed) projects/pciehp/usr.sbin/rtadvd/ (props changed) projects/pciehp/usr.sbin/rtsold/ (props changed) Modified: projects/pciehp/MAINTAINERS ============================================================================== --- projects/pciehp/MAINTAINERS Mon Sep 16 16:44:18 2013 (r255617) +++ projects/pciehp/MAINTAINERS Mon Sep 16 17:32:02 2013 (r255618) @@ -28,6 +28,7 @@ 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. @@ -63,7 +64,7 @@ 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. -newsyslog(8) gad Heads-up appreciated. I'm going thru the PR's for it. +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. @@ -127,3 +128,6 @@ sysdoc trhodes Pre-commit review prefe 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. Modified: projects/pciehp/Makefile ============================================================================== --- projects/pciehp/Makefile Mon Sep 16 16:44:18 2013 (r255617) +++ projects/pciehp/Makefile Mon Sep 16 17:32:02 2013 (r255618) @@ -32,6 +32,12 @@ # targets - Print a list of supported TARGET/TARGET_ARCH pairs # for world and kernel targets. # toolchains - Build a toolchain for all world and kernel targets. +# +# "quick" way to test all kernel builds: +# _jflag=`sysctl -n hw.ncpu` +# _jflag=$(($_jflag * 2)) +# [ $_jflag -gt 12 ] && _jflag=12 +# make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag} # # This makefile is simple by design. The FreeBSD make automatically reads # the /usr/share/mk/sys.mk unless the -m argument is specified on the @@ -65,8 +71,8 @@ # 5. `reboot' (in single user mode: boot -s from the loader prompt). # 6. `mergemaster -p' # 7. `make installworld' -# 8. `make delete-old' -# 9. `mergemaster' (you may wish to use -i, along with -U or -F). +# 8. `mergemaster' (you may wish to use -i, along with -U or -F). +# 9. `make delete-old' # 10. `reboot' # 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) # @@ -124,11 +130,34 @@ _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\ (in make.conf(5)) or command-line variable. .endif -MAKEPATH= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE} -BINMAKE= \ - `if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \ + +# We often need to use the tree's version of make to build it. +# Choices add to complexity though. +# We cannot blindly use a make which may not be the one we want +# so be exlicit - until all choice is removed. +.if !defined(WITHOUT_BMAKE) +WANT_MAKE= bmake +.else +WANT_MAKE= fmake +.endif +MYMAKE= ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE} +.if defined(.PARSEDIR) +HAVE_MAKE= bmake +.else +HAVE_MAKE= fmake +.endif +.if exists(${MYMAKE}) +SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk +.elif ${WANT_MAKE} != ${HAVE_MAKE} || ${WANT_MAKE} != "bmake" +# It may not exist yet but we may cause it to. +# In the case of fmake, upgrade_checks may cause a newer version to be built. +SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \ -m ${.CURDIR}/share/mk -_MAKE= PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} +.else +SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk +.endif + +_MAKE= PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH} # Guess machine architecture from machine type, and vice versa. .if !defined(TARGET_ARCH) && defined(TARGET) @@ -209,6 +238,13 @@ cleanworld: # 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}: ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET} @@ -279,11 +315,13 @@ kernel: buildkernel installkernel # Perform a few tests to determine if the installed tools are adequate # for building the world. # +# Note: if we ever need to care about the version of bmake, simply testing +# MAKE_VERSION against a required version should suffice. +# upgrade_checks: -.if !defined(.PARSEDIR) -.if defined(WITH_BMAKE) - (cd ${.CURDIR} && ${MAKE} bmake) -.else +.if ${HAVE_MAKE} != ${WANT_MAKE} + @(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,}) +.elif ${WANT_MAKE} == "fmake" @if ! (cd ${.CURDIR}/tools/build/make_check && \ PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ @@ -291,14 +329,13 @@ upgrade_checks: (cd ${.CURDIR} && ${MAKE} make); \ fi .endif -.endif # # Upgrade make(1) to the current version using the installed # headers, libraries and tools. Also, allow the location of # the system bsdmake-like utility to be overridden. # -MMAKEENV= MAKEOBJDIRPREFIX=${MAKEPATH} \ +MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \ DESTDIR= \ INSTALL="sh ${.CURDIR}/tools/install.sh" MMAKE= ${MMAKEENV} ${MAKE} \ @@ -312,19 +349,21 @@ make bmake: .PHONY @echo ">>> Building an up-to-date make(1)" @echo "--------------------------------------------------------------" ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ - ${MMAKE} obj && \ - ${MMAKE} depend && \ - ${MMAKE} all && \ - ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= + ${MMAKE} obj DESTDIR= && \ + ${MMAKE} depend DESTDIR= && \ + ${MMAKE} all DESTDIR= PROGNAME=${MYMAKE:T} && \ + ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T} + +tinderbox toolchains kernel-toolchains: upgrade_checks tinderbox: - @cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe + @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe toolchains: - @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe + @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe kernel-toolchains: - @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe + @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe # # universe @@ -365,7 +404,8 @@ MAKEFAIL=tee -a ${FAILFILE} MAKEFAIL=cat .endif -universe: universe_prologue upgrade_checks +universe_prologue: upgrade_checks +universe: universe_prologue universe_prologue: @echo "--------------------------------------------------------------" @echo ">>> make universe started on ${STARTTIME}" @@ -375,17 +415,17 @@ universe_prologue: .endif .for target in ${TARGETS} universe: universe_${target} -.ORDER: universe_prologue upgrade_checks universe_${target}_prologue universe_${target} universe_epilogue +universe_epilogue: universe_${target} universe_${target}: universe_${target}_prologue -universe_${target}_prologue: +universe_${target}_prologue: universe_prologue @echo ">> ${target} started on `LC_ALL=C date`" .if !defined(MAKE_JUST_KERNELS) .for target_arch in ${TARGET_ARCHES_${target}} universe_${target}: universe_${target}_${target_arch} -universe_${target}_${target_arch}: universe_${target}_prologue +universe_${target}_${target_arch}: universe_${target}_prologue .MAKE @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`" @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ - ${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \ + ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \ TARGET=${target} \ TARGET_ARCH=${target_arch} \ > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \ @@ -403,14 +443,14 @@ universe_${target}_kernels: universe_${t .endfor .endif universe_${target}: universe_${target}_kernels -universe_${target}_kernels: universe_${target}_prologue +universe_${target}_kernels: universe_${target}_prologue .MAKE .if exists(${KERNSRCDIR}/${target}/conf/NOTES) @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \ - ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \ + ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \ (echo "${target} 'make LINT' failed," \ "check _.${target}.makeLINT for details"| ${MAKEFAIL})) .endif - @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \ + @cd ${.CURDIR} && ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \ universe_kernels .endif @echo ">> ${target} completed on `LC_ALL=C date`" @@ -431,9 +471,9 @@ TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR} .error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old." .endif universe_kernconfs: universe_kernconf_${TARGET}_${kernel} -universe_kernconf_${TARGET}_${kernel}: +universe_kernconf_${TARGET}_${kernel}: .MAKE @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ - ${MAKE} ${JFLAG} buildkernel \ + ${SUB_MAKE} ${JFLAG} buildkernel \ TARGET=${TARGET} \ TARGET_ARCH=${TARGET_ARCH_${kernel}} \ KERNCONF=${kernel} \ @@ -458,3 +498,11 @@ universe_epilogue: buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT + +.if defined(.PARSEDIR) +.if make(universe) +# we do not want a failure of one branch abort all. +MAKE_JOB_ERROR_TOKEN= no +.export MAKE_JOB_ERROR_TOKEN +.endif +.endif Modified: projects/pciehp/Makefile.inc1 ============================================================================== --- projects/pciehp/Makefile.inc1 Mon Sep 16 16:44:18 2013 (r255617) +++ projects/pciehp/Makefile.inc1 Mon Sep 16 17:32:02 2013 (r255618) @@ -35,7 +35,7 @@ # buildworld - rebuild *everything*, including glue to help do upgrades # installworld- install everything built by "buildworld" # doxygen - build API documentation of the kernel -# update - convenient way to update your source tree (eg: cvsup/cvs) +# update - convenient way to update your source tree (eg: svn/svnup) # # Standard targets (not defined here) are documented in the makefiles in # /usr/share/mk. These include: @@ -114,15 +114,8 @@ LOCAL_TOOL_DIRS?= BUILDENV_SHELL?=/bin/sh -CVS?= cvs -CVSFLAGS?= -A -P -d -I! -SVN?= svn +SVN?= /usr/local/bin/svn SVNFLAGS?= -r HEAD -SUP?= /usr/bin/csup -SUPFLAGS?= -g -L 2 -.if defined(SUPHOST) -SUPFLAGS+= -h ${SUPHOST} -.endif MAKEOBJDIRPREFIX?= /usr/obj .if !defined(OSRELDATE) @@ -270,18 +263,77 @@ WMAKEENV= ${CROSSENV} \ VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} + +# make hierarchy +HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} +.if defined(NO_ROOT) +HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT +.endif + .if ${MK_CDDL} == "no" WMAKEENV+= NO_CTF=1 .endif -.if ${CC:T:Mgcc} == "gcc" + +.if defined(CROSS_TOOLCHAIN_PREFIX) +CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} +CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} +.endif +XCOMPILERS= CC CXX CPP +.for COMPILER in ${XCOMPILERS} +.if defined(CROSS_COMPILER_PREFIX) +X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}} +.else +X${COMPILER}?= ${${COMPILER}} +.endif +.endfor +XBINUTILS= AS AR LD NM OBJDUMP RANLIB STRINGS +.for BINUTIL in ${XBINUTILS} +.if defined(CROSS_BINUTILS_PREFIX) +X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${${BINUTIL}} +.else +X${BINUTIL}?= ${${BINUTIL}} +.endif +.endfor +WMAKEENV+= CC="${XCC} ${XFLAGS}" CXX="${XCXX} ${XFLAGS}" \ + CPP="${XCPP} ${XFLAGS}" \ + AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \ + OBJDUMP=${XOBJDUMP} RANLIB=${XRANLIB} STRINGS=${XSTRINGS} + +.if ${XCC:T:Mgcc} == "gcc" WMAKE_COMPILER_TYPE= gcc -.elif ${CC:T:Mclang} == "clang" +.elif ${XCC:T:Mclang} == "clang" WMAKE_COMPILER_TYPE= clang .elif ${MK_CLANG_IS_CC} == "no" WMAKE_COMPILER_TYPE= gcc .else WMAKE_COMPILER_TYPE= clang .endif +IMAKE_COMPILER_TYPE= COMPILER_TYPE=${WMAKE_COMPILER_TYPE} + +.if ${XCC:M/*} +XFLAGS= --sysroot=${WORLDTMP} +.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 +# tools so we don't need to tell it where to look. +.if exists(${CROSS_BINUTILS_PREFIX}) +XFLAGS+= -B${CROSS_BINUTILS_PREFIX} +.endif +.else +XFLAGS+= -B${WORLDTMP}/usr/bin +.endif +.if ${TARGET_ARCH} != ${MACHINE_ARCH} && ${WMAKE_COMPILER_TYPE} == "clang" +.if (${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "armv6") && \ +${MK_ARM_EABI} != "no" +TARGET_ABI= gnueabi +.else +TARGET_ABI= unknown +.endif +TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd10.0 +XFLAGS+= -target ${TARGET_TRIPLE} +.endif +.endif + WMAKEENV+= COMPILER_TYPE=${WMAKE_COMPILER_TYPE} WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP} @@ -317,6 +369,9 @@ LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMP -isystem ${LIB32TMP}/usr/include/ \ -L${LIB32TMP}/usr/lib32 \ -B${LIB32TMP}/usr/lib32 +.if ${XCC:M/*} +LIB32FLAGS+= --sysroot=${WORLDTMP} +.endif # Yes, the flags are redundant. LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \ @@ -327,10 +382,11 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ + LIBPRIVATEDIR=/usr/lib32/private \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} LIB32WMAKEFLAGS+= \ - CC="${CC} ${LIB32FLAGS}" \ - CXX="${CXX} ${LIB32FLAGS}" \ + CC="${XCC} ${LIB32FLAGS}" \ + CXX="${XCXX} ${LIB32FLAGS}" \ DESTDIR=${LIB32TMP} \ -DCOMPAT_32BIT \ -DLIBRARIES_ONLY \ @@ -346,7 +402,7 @@ LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDES IMAKEENV= ${CROSSENV:N_LDSCRIPTROOT=*} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 \ - ${IMAKE_INSTALL} ${IMAKE_MTREE} + ${IMAKE_INSTALL} ${IMAKE_MTREE} ${IMAKE_COMPILER_TYPE} .if empty(.MAKEFLAGS:M-n) IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ LD_LIBRARY_PATH=${INSTALLTMP} \ @@ -359,11 +415,12 @@ IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} INSTALLFLAGS+= -N ${.CURDIR}/etc MTREEFLAGS+= -N ${.CURDIR}/etc .endif +_INSTALL_DDIR= ${DESTDIR}/${DISTDIR} +INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::} .if defined(NO_ROOT) METALOG?= ${DESTDIR}/${DISTDIR}/METALOG IMAKE+= -DNO_ROOT METALOG=${METALOG} -INSTALL_DDIR= ${DESTDIR}/${DISTDIR} -INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR:S://:/:g:C:/$::} +INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR} MTREEFLAGS+= -W .endif .if defined(DB_FROM_SRC) || defined(NO_ROOT) @@ -421,6 +478,13 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null ln -sf ${.CURDIR}/sys ${WORLDTMP} +.if ${MK_DEBUG_FILES} != "no" + # We could instead disable debug files for these build stages + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ + -p ${WORLDTMP}/legacy/usr/lib >/dev/null + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ + -p ${WORLDTMP}/usr/lib >/dev/null +.endif .if ${MK_BIND_LIBS} != "no" mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null @@ -506,6 +570,10 @@ build32: -p ${LIB32TMP}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${LIB32TMP}/usr/include >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ + -p ${LIB32TMP}/usr/lib >/dev/null +.endif mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} .for _t in obj includes @@ -730,6 +798,10 @@ distributeworld installworld: installche -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null +.if ${MK_DEBUG_FILES} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ + -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null +.endif .if defined(NO_ROOT) ${IMAKEENV} nmtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ sed -e 's#^\./#./${dist}/#' >> ${METALOG} @@ -743,13 +815,13 @@ distributeworld installworld: installche cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ - LOCAL_MTREE=${LOCAL_MTREE} distrib-dirs + LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs .endif ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ ${IMAKEENV} rm -rf ${INSTALLTMP} .if make(distributeworld) .for dist in ${EXTRA_DISTRIBUTIONS} - find ${DESTDIR}/${DISTDIR}/${dist} -empty -delete + find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete .endfor .if defined(NO_ROOT) .for dist in base ${EXTRA_DISTRIBUTIONS} @@ -762,6 +834,18 @@ distributeworld installworld: installche awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ ${DESTDIR}/${DISTDIR}/${dist}.meta .endfor +.if ${MK_DEBUG_FILES} != "no" +. for dist in base ${EXTRA_DISTRIBUTIONS} + @# For each file that exists in this dist, print the corresponding + @# line from the METALOG. This relies on the fact that + @# a line containing only the filename will sort immediatly before + @# the relevant mtree line. + cd ${DESTDIR}/${DISTDIR}; \ + find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ + awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ + ${DESTDIR}/${DISTDIR}/${dist}.debug.meta +. endfor +.endif .endif .endif @@ -770,13 +854,29 @@ packageworld: .if defined(NO_ROOT) ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz \ + --exclude usr/lib/debug \ @${DESTDIR}/${DISTDIR}/${dist}.meta .else ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ - tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz . + tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.txz \ + --exclude usr/lib/debug . .endif .endfor +.if ${MK_DEBUG_FILES} != "no" +. for dist in base ${EXTRA_DISTRIBUTIONS} +. if defined(NO_ROOT) + ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ + tar cvJf ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + @${DESTDIR}/${DISTDIR}/${dist}.debug.meta +. else + ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ + tar cvJfL ${DESTDIR}/${DISTDIR}/${dist}.debug.txz \ + usr/lib/debug +. endif +. endfor +.endif + # # reinstall # @@ -789,7 +889,7 @@ reinstall: @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ - LOCAL_MTREE=${LOCAL_MTREE} hierarchy + LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy @echo @echo "--------------------------------------------------------------" @echo ">>> Installing everything" @@ -837,16 +937,11 @@ NO_KERNELOBJ= t KERNCONF=${KERNFAST} .endif .endif -.if !defined(KERNCONF) && defined(KERNEL) -KERNCONF= ${KERNEL} -KERNWARN= -.else .if ${TARGET_ARCH} == "powerpc64" KERNCONF?= GENERIC64 .else KERNCONF?= GENERIC .endif -.endif INSTKERNNAME?= kernel KERNSRCDIR?= ${.CURDIR}/sys @@ -875,12 +970,6 @@ buildkernel: @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ false .endif -.if defined(KERNWARN) - @echo "--------------------------------------------------------------" - @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" - @echo "--------------------------------------------------------------" - @sleep 3 -.endif @echo .for _kernel in ${BUILDKERNELS} @echo "--------------------------------------------------------------" @@ -970,25 +1059,52 @@ distributekernel distributekernel.debug: @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ false .endif + mkdir -p ${DESTDIR}/${DISTDIR} +.if defined(NO_ROOT) + echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta +.endif cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ - ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ - DESTDIR=${DESTDIR}/${DISTDIR}/kernel \ + ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ + ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ + DESTDIR=${INSTALL_DDIR}/kernel \ ${.TARGET:S/distributekernel/install/} +.if defined(NO_ROOT) + sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ + ${DESTDIR}/${DISTDIR}/kernel.meta +.endif .for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} +.if defined(NO_ROOT) + echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta +.endif cd ${KRNLOBJDIR}/${_kernel}; \ - ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ + ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \ KERNEL=${INSTKERNNAME}.${_kernel} \ - DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \ + DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ ${.TARGET:S/distributekernel/install/} + sed -e 's|^./kernel|.|' \ + ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ + ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta .endfor packagekernel: +.if defined(NO_ROOT) + cd ${DESTDIR}/${DISTDIR}/kernel; \ + tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz \ + @${DESTDIR}/${DISTDIR}/kernel.meta +.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ + tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz \ + @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta +.endfor +.else cd ${DESTDIR}/${DISTDIR}/kernel; \ tar cvJf ${DESTDIR}/${DISTDIR}/kernel.txz . .for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ tar cvJf ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz . .endfor +.endif # # doxygen @@ -1005,63 +1121,22 @@ doxygen: # # update # -# Update the source tree(s), by running cvsup/cvs/svn to update to the +# Update the source tree(s), by running svn/svnup to update to the # latest copy. # update: -.if defined(SUP_UPDATE) +.if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE) @echo "--------------------------------------------------------------" - @echo ">>> Running ${SUP}" + @echo "CVS_UPDATE and SUP_UPDATE are no longer supported." + @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated" @echo "--------------------------------------------------------------" - @echo "!! WARNING WARNING WARNING WARNING WARNING WARNING WARNING !!" - @echo "!! Update methods with ${SUP} are deprecated." - @echo "!! Please see http://www.freebsd.org/handbook/svn.html" - @echo "!! and convert your update method to SVN_UPDATE or" - @echo "!! freebsd-update(8)." - @echo "!! WARNING WARNING WARNING WARNING WARNING WARNING WARNING !!" - @sleep 5 -.if defined(SUPFILE) - @${SUP} ${SUPFLAGS} ${SUPFILE} -.endif -.if defined(SUPFILE1) - @${SUP} ${SUPFLAGS} ${SUPFILE1} -.endif -.if defined(SUPFILE2) - @${SUP} ${SUPFLAGS} ${SUPFILE2} -.endif -.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE) - @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} -.endif -.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) - @${SUP} ${SUPFLAGS} ${DOCSUPFILE} -.endif -.endif -.if defined(CVS_UPDATE) - @cd ${.CURDIR} ; \ - if [ -d CVS ] ; then \ - echo "--------------------------------------------------------------" ; \ - echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} ; \ - echo "--------------------------------------------------------------" ; \ - echo "!! WARNING WARNING WARNING WARNING WARNING WARNING WARNING !!" ; \ - echo "!! Update methods with CVS are deprecated." ; \ - echo "!! Please see http://www.freebsd.org/handbook/svn.html" ; \ - echo "!! and convert your update method to SVN_UPDATE or" ; \ - echo "!! freebsd-update(8)." ; \ - echo "!! WARNING WARNING WARNING WARNING WARNING WARNING WARNING !!" ; \ - sleep 5 ; \ - echo ${CVS} -R -q update ${CVSFLAGS} ; \ - ${CVS} -R -q update ${CVSFLAGS} ; \ - fi + @exit 1 .endif .if defined(SVN_UPDATE) - @cd ${.CURDIR} ; \ - if [ -d .svn ] ; then \ - echo "--------------------------------------------------------------" ; \ - echo ">>> Updating ${.CURDIR} using Subversion" ; \ - echo "--------------------------------------------------------------" ; \ - echo ${SVN} update ${SVNFLAGS} ; \ - ${SVN} update ${SVNFLAGS} ; \ - fi + @echo "--------------------------------------------------------------" + @echo ">>> Updating ${.CURDIR} using Subversion" + @echo "--------------------------------------------------------------" + @(cd ${.CURDIR} && ${SVN} update ${SVNFLAGS}) .endif # @@ -1085,11 +1160,11 @@ legacy: .endif .for _tool in tools/build ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \ - cd ${.CURDIR}/${_tool}; \ - ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ - ${MAKE} DIRPRFX=${_tool}/ all; \ + cd ${.CURDIR}/${_tool} && \ + ${MAKE} DIRPRFX=${_tool}/ obj && \ + ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes && \ + ${MAKE} DIRPRFX=${_tool}/ depend && \ + ${MAKE} DIRPRFX=${_tool}/ all && \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install .endfor @@ -1124,11 +1199,19 @@ _sed= usr.bin/sed _lex= usr.bin/lex .endif +.if ${BOOTSTRAPPING} < 1000002 +_m4= usr.bin/m4 +.endif + .if ${BOOTSTRAPPING} < 1000013 _yacc= lib/liby \ usr.bin/yacc .endif +.if ${BOOTSTRAPPING} < 1000014 +_crunch= usr.sbin/crunch +.endif + .if ${BOOTSTRAPPING} < 1000026 _nmtree= lib/libnetbsd \ usr.sbin/nmtree @@ -1156,8 +1239,8 @@ _clang_tblgen= \ # dtrace tools are required for older bootstrap env and cross-build .if ${MK_CDDL} != "no" && \ - ((${BOOTSTRAPPING} < 800038 && \ - !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)) \ + ((${BOOTSTRAPPING} < 1000034 && \ + !(${BOOTSTRAPPING} >= 901505 && ${BOOTSTRAPPING} < 999999)) \ || (${MACHINE} != ${TARGET} || ${MACHINE_ARCH} != ${TARGET_ARCH})) _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge @@ -1176,13 +1259,14 @@ _kerberos5_bootstrap_tools= \ kerberos5/lib/libroken \ kerberos5/lib/libvers \ kerberos5/tools/asn1_compile \ - kerberos5/tools/slc + kerberos5/tools/slc \ + usr.bin/compile_et .endif # Please document (add comment) why something is in 'bootstrap-tools'. # Try to bound the building of the bootstrap-tool to just the # FreeBSD versions that need the tool built at this stage of the build. -bootstrap-tools: +bootstrap-tools: .MAKE .for _tool in \ ${_clang_tblgen} \ ${_kerberos5_bootstrap_tools} \ @@ -1200,17 +1284,19 @@ bootstrap-tools: usr.bin/rpcgen \ ${_sed} \ ${_yacc} \ + ${_m4} \ ${_lex} \ lib/libmd \ usr.bin/xinstall \ ${_gensnmptree} \ usr.sbin/config \ + ${_crunch} \ ${_nmtree} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_tool}; \ - ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ - ${MAKE} DIRPRFX=${_tool}/ all; \ + cd ${.CURDIR}/${_tool} && \ + ${MAKE} DIRPRFX=${_tool}/ obj && \ + ${MAKE} DIRPRFX=${_tool}/ depend && \ + ${MAKE} DIRPRFX=${_tool}/ all && \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install .endfor @@ -1233,7 +1319,7 @@ _gcc_tools= gnu/usr.bin/cc/cc_tools _rescue= rescue/rescue .endif -build-tools: +build-tools: .MAKE .for _tool in \ bin/csh \ bin/sh \ @@ -1246,18 +1332,19 @@ build-tools: usr.bin/awk \ lib/libmagic \ usr.bin/mkesdb_static \ - usr.bin/mkcsmapper_static + usr.bin/mkcsmapper_static \ + usr.bin/vi/catalog ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ - cd ${.CURDIR}/${_tool}; \ - ${MAKE} DIRPRFX=${_tool}/ obj; \ + cd ${.CURDIR}/${_tool} && \ + ${MAKE} DIRPRFX=${_tool}/ obj && \ ${MAKE} DIRPRFX=${_tool}/ build-tools .endfor .for _tool in \ ${_gcc_tools} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ - cd ${.CURDIR}/${_tool}; \ - ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ + cd ${.CURDIR}/${_tool} && \ + ${MAKE} DIRPRFX=${_tool}/ obj && \ + ${MAKE} DIRPRFX=${_tool}/ depend && \ ${MAKE} DIRPRFX=${_tool}/ all .endfor @@ -1278,10 +1365,13 @@ _kgzip= usr.sbin/kgzip .endif .endif -.if ${MK_BINUTILS} != "no" +.if ${XAS:M/*} == "" && ${MK_BINUTILS} != "no" _binutils= gnu/usr.bin/binutils .endif +# 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 ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang") _clang= usr.bin/clang _clang_libs= lib/clang @@ -1290,8 +1380,9 @@ _clang_libs= lib/clang .if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") _cc= gnu/usr.bin/cc .endif +.endif -cross-tools: +cross-tools: .MAKE .for _tool in \ ${_clang_libs} \ ${_clang} \ @@ -1302,10 +1393,10 @@ cross-tools: ${_crunchide} \ ${_kgzip} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_tool}; \ - ${MAKE} DIRPRFX=${_tool}/ obj; \ - ${MAKE} DIRPRFX=${_tool}/ depend; \ - ${MAKE} DIRPRFX=${_tool}/ all; \ + cd ${.CURDIR}/${_tool} && \ + ${MAKE} DIRPRFX=${_tool}/ obj && \ + ${MAKE} DIRPRFX=${_tool}/ depend && \ + ${MAKE} DIRPRFX=${_tool}/ all && \ ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install .endfor @@ -1313,12 +1404,7 @@ cross-tools: # hierarchy - ensure that all the needed directories are present # hierarchy hier: -.if defined(NO_ROOT) - cd ${.CURDIR}/etc; ${MAKE} LOCAL_MTREE=${LOCAL_MTREE} \ - -DNO_ROOT METALOG=${METALOG} distrib-dirs -.else - cd ${.CURDIR}/etc; ${MAKE} LOCAL_MTREE=${LOCAL_MTREE} distrib-dirs -.endif + cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs # # libraries - build all libraries, and install them under ${DESTDIR}. @@ -1327,12 +1413,12 @@ hierarchy hier: # interdependencies (__L) are built automatically by the # ${.CURDIR}/tools/make_libdeps.sh script. # -libraries: - cd ${.CURDIR}; \ - ${MAKE} -f Makefile.inc1 _prereq_libs; \ - ${MAKE} -f Makefile.inc1 _startup_libs; \ - ${MAKE} -f Makefile.inc1 _prebuild_libs; \ - ${MAKE} -f Makefile.inc1 _generic_libs; +libraries: .MAKE + cd ${.CURDIR} && \ + ${MAKE} -f Makefile.inc1 _prereq_libs && \ + ${MAKE} -f Makefile.inc1 _startup_libs && \ + ${MAKE} -f Makefile.inc1 _prebuild_libs && \ + ${MAKE} -f Makefile.inc1 _generic_libs # # static libgcc.a prerequisite for shared libc @@ -1384,8 +1470,8 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ ${_cddl_lib_libzfs_core} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ - ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ - ${_secure_lib_libssl} + ${_secure_lib_libcrypto} ${_lib_libldns} \ + ${_secure_lib_libssh} ${_secure_lib_libssl} .if ${MK_ATF} != "no" _lib_atf_libatf_c= lib/atf/libatf-c @@ -1421,9 +1507,16 @@ cddl/lib/libzfs_core__L: cddl/lib/libnvp _secure_lib_libcrypto= secure/lib/libcrypto _secure_lib_libssl= secure/lib/libssl lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L +.if ${MK_LDNS} != "no" +_lib_libldns= lib/libldns +lib/libldns__L: secure/lib/libcrypto__L +.endif .if ${MK_OPENSSH} != "no" _secure_lib_libssh= secure/lib/libssh secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L +.if ${MK_LDNS} != "no" +secure/lib/libssh__L: lib/libldns__L +.endif .if ${MK_KERBEROS_SUPPORT} != "no" secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ @@ -1486,25 +1579,25 @@ lib/libradius__L: lib/libmd__L .endif .for _lib in ${_prereq_libs} -${_lib}__PL: .PHONY +${_lib}__PL: .PHONY .MAKE .if exists(${.CURDIR}/${_lib}) ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_lib}; \ - ${MAKE} DIRPRFX=${_lib}/ obj; \ - ${MAKE} DIRPRFX=${_lib}/ depend; \ - ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ + cd ${.CURDIR}/${_lib} && \ + ${MAKE} DIRPRFX=${_lib}/ obj && \ + ${MAKE} DIRPRFX=${_lib}/ depend && \ + ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all && \ ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install .endif .endfor .for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs} -${_lib}__L: .PHONY +${_lib}__L: .PHONY .MAKE .if exists(${.CURDIR}/${_lib}) ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_lib}; \ - ${MAKE} DIRPRFX=${_lib}/ obj; \ - ${MAKE} DIRPRFX=${_lib}/ depend; \ - ${MAKE} DIRPRFX=${_lib}/ all; \ + cd ${.CURDIR}/${_lib} && \ + ${MAKE} DIRPRFX=${_lib}/ obj && \ + ${MAKE} DIRPRFX=${_lib}/ depend && \ + ${MAKE} DIRPRFX=${_lib}/ all && \ ${MAKE} DIRPRFX=${_lib}/ install .endif .endfor @@ -1512,12 +1605,12 @@ ${_lib}__L: .PHONY # libpam is special: we need to build static PAM modules before # static PAM library, and dynamic PAM library before dynamic PAM # modules. -lib/libpam__L: .PHONY +lib/libpam__L: .PHONY .MAKE ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \ - cd ${.CURDIR}/lib/libpam; \ - ${MAKE} DIRPRFX=lib/libpam/ obj; \ - ${MAKE} DIRPRFX=lib/libpam/ depend; \ - ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \ + cd ${.CURDIR}/lib/libpam && \ + ${MAKE} DIRPRFX=lib/libpam/ obj && \ + ${MAKE} DIRPRFX=lib/libpam/ depend && \ + ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all && \ ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install _prereq_libs: ${_prereq_libs:S/$/__PL/} @@ -1527,8 +1620,8 @@ _generic_libs: ${_generic_libs:S/$/__L/} .for __target in all clean cleandepend cleandir depend includes obj .for entry in ${SUBDIR} -${entry}.${__target}__D: .PHONY - ${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ +${entry}.${__target}__D: .PHONY .MAKE + ${_+_}@set -e; if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \ edir=${entry}.${MACHINE_ARCH}; \ cd ${.CURDIR}/$${edir}; \ @@ -1766,10 +1859,10 @@ _xb-bootstrap-tools: .for _tool in \ ${_clang_tblgen} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ - cd ${.CURDIR}/${_tool}; \ - ${CDMAKE} DIRPRFX=${_tool}/ obj; \ - ${CDMAKE} DIRPRFX=${_tool}/ depend; \ - ${CDMAKE} DIRPRFX=${_tool}/ all; \ + cd ${.CURDIR}/${_tool} && \ + ${CDMAKE} DIRPRFX=${_tool}/ obj && \ + ${CDMAKE} DIRPRFX=${_tool}/ depend && \ + ${CDMAKE} DIRPRFX=${_tool}/ all && \ ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install .endfor @@ -1785,9 +1878,9 @@ _xb-cross-tools: ${_clang_libs} \ ${_clang} ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \ - cd ${.CURDIR}/${_tool}; \ - ${CDMAKE} DIRPRFX=${_tool}/ obj; \ - ${CDMAKE} DIRPRFX=${_tool}/ depend; \ + cd ${.CURDIR}/${_tool} && \ + ${CDMAKE} DIRPRFX=${_tool}/ obj && \ + ${CDMAKE} DIRPRFX=${_tool}/ depend && \ ${CDMAKE} DIRPRFX=${_tool}/ all .endfor @@ -1836,3 +1929,5 @@ _xi-links: xdev xdev-build xdev-install: @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" .endif + +buildkernel ${WMAKE_TGTS} ${.ALLTARGETS:M_*}: .MAKE Modified: projects/pciehp/ObsoleteFiles.inc ============================================================================== --- projects/pciehp/ObsoleteFiles.inc Mon Sep 16 16:44:18 2013 (r255617) +++ projects/pciehp/ObsoleteFiles.inc Mon Sep 16 17:32:02 2013 (r255618) @@ -38,6 +38,73 @@ # xargs -n1 | sort | uniq -d; # done *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Mon Sep 16 23:09:23 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 98184D8A; Mon, 16 Sep 2013 23:09:23 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8135226E3; Mon, 16 Sep 2013 23:09:23 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8GN9N7V084044; Mon, 16 Sep 2013 23:09:23 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8GN9Lkr084019; Mon, 16 Sep 2013 23:09:21 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309162309.r8GN9Lkr084019@svn.freebsd.org> From: Neel Natu Date: Mon, 16 Sep 2013 23:09:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255621 - in projects/bhyve_npt_pmap: . cddl/contrib/opensolaris/lib/libzpool/common cddl/contrib/opensolaris/lib/libzpool/common/sys cddl/lib/libdtrace contrib/binutils/binutils contri... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Sep 2013 23:09:23 -0000 Author: neel Date: Mon Sep 16 23:09:20 2013 New Revision: 255621 URL: http://svnweb.freebsd.org/changeset/base/255621 Log: IFC @r255620 Added: projects/bhyve_npt_pmap/contrib/unbound/config.h - copied unchanged from r255620, head/contrib/unbound/config.h projects/bhyve_npt_pmap/contrib/unbound/doc/libunbound.3 - copied unchanged from r255620, head/contrib/unbound/doc/libunbound.3 projects/bhyve_npt_pmap/contrib/unbound/doc/unbound-anchor.8 - copied unchanged from r255620, head/contrib/unbound/doc/unbound-anchor.8 projects/bhyve_npt_pmap/contrib/unbound/doc/unbound-checkconf.8 - copied unchanged from r255620, head/contrib/unbound/doc/unbound-checkconf.8 projects/bhyve_npt_pmap/contrib/unbound/doc/unbound-control.8 - copied unchanged from r255620, head/contrib/unbound/doc/unbound-control.8 projects/bhyve_npt_pmap/contrib/unbound/doc/unbound.8 - copied unchanged from r255620, head/contrib/unbound/doc/unbound.8 projects/bhyve_npt_pmap/contrib/unbound/doc/unbound.conf.5 - copied unchanged from r255620, head/contrib/unbound/doc/unbound.conf.5 projects/bhyve_npt_pmap/contrib/unbound/freebsd-configure.sh - copied unchanged from r255620, head/contrib/unbound/freebsd-configure.sh projects/bhyve_npt_pmap/contrib/unbound/freebsd-sources.pl - copied unchanged from r255620, head/contrib/unbound/freebsd-sources.pl projects/bhyve_npt_pmap/contrib/unbound/libunbound/worker.h - copied unchanged from r255620, head/contrib/unbound/libunbound/worker.h projects/bhyve_npt_pmap/contrib/unbound/smallapp/unbound-control-setup.sh.in - copied unchanged from r255620, head/contrib/unbound/smallapp/unbound-control-setup.sh.in projects/bhyve_npt_pmap/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c - copied unchanged from r255620, head/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c projects/bhyve_npt_pmap/crypto/openssh/openbsd-compat/strnlen.c - copied unchanged from r255620, head/crypto/openssh/openbsd-compat/strnlen.c projects/bhyve_npt_pmap/crypto/openssh/sandbox-seccomp-filter.c - copied unchanged from r255620, head/crypto/openssh/sandbox-seccomp-filter.c projects/bhyve_npt_pmap/etc/libmap32.conf - copied unchanged from r255620, head/etc/libmap32.conf projects/bhyve_npt_pmap/etc/rc.d/ctld - copied unchanged from r255620, head/etc/rc.d/ctld projects/bhyve_npt_pmap/etc/rc.d/iscsictl - copied unchanged from r255620, head/etc/rc.d/iscsictl projects/bhyve_npt_pmap/etc/rc.d/iscsid - copied unchanged from r255620, head/etc/rc.d/iscsid projects/bhyve_npt_pmap/lib/libunbound/ - copied from r255620, head/lib/libunbound/ projects/bhyve_npt_pmap/share/man/man4/gpio.4 - copied unchanged from r255620, head/share/man/man4/gpio.4 projects/bhyve_npt_pmap/sys/cam/ctl/ctl_frontend_iscsi.c - copied unchanged from r255620, head/sys/cam/ctl/ctl_frontend_iscsi.c projects/bhyve_npt_pmap/sys/cam/ctl/ctl_frontend_iscsi.h - copied unchanged from r255620, head/sys/cam/ctl/ctl_frontend_iscsi.h - copied from r255620, head/sys/dev/hyperv/ projects/bhyve_npt_pmap/sys/dev/iscsi/icl.c - copied unchanged from r255620, head/sys/dev/iscsi/icl.c projects/bhyve_npt_pmap/sys/dev/iscsi/icl.h - copied unchanged from r255620, head/sys/dev/iscsi/icl.h projects/bhyve_npt_pmap/sys/dev/iscsi/icl_proxy.c - copied unchanged from r255620, head/sys/dev/iscsi/icl_proxy.c projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi.c - copied unchanged from r255620, head/sys/dev/iscsi/iscsi.c projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi.h - copied unchanged from r255620, head/sys/dev/iscsi/iscsi.h projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi_ioctl.h - copied unchanged from r255620, head/sys/dev/iscsi/iscsi_ioctl.h projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi_proto.h - copied unchanged from r255620, head/sys/dev/iscsi/iscsi_proto.h - copied from r255620, head/sys/modules/hyperv/ projects/bhyve_npt_pmap/tools/build/options/WITHOUT_UNBOUND - copied unchanged from r255620, head/tools/build/options/WITHOUT_UNBOUND projects/bhyve_npt_pmap/tools/regression/iscsi/ - copied from r255620, head/tools/regression/iscsi/ projects/bhyve_npt_pmap/usr.bin/iscsictl/ - copied from r255620, head/usr.bin/iscsictl/ projects/bhyve_npt_pmap/usr.sbin/ctld/ - copied from r255620, head/usr.sbin/ctld/ projects/bhyve_npt_pmap/usr.sbin/iscsid/ - copied from r255620, head/usr.sbin/iscsid/ projects/bhyve_npt_pmap/usr.sbin/unbound/ - copied from r255620, head/usr.sbin/unbound/ Directory Properties: projects/bhyve_npt_pmap/sys/dev/hyperv/ (props changed) projects/bhyve_npt_pmap/sys/modules/hyperv/ (props changed) Deleted: projects/bhyve_npt_pmap/etc/etc.amd64/libmap32.conf Modified: projects/bhyve_npt_pmap/Makefile projects/bhyve_npt_pmap/Makefile.inc1 projects/bhyve_npt_pmap/ObsoleteFiles.inc projects/bhyve_npt_pmap/UPDATING projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/bhyve_npt_pmap/cddl/lib/libdtrace/tcp.d projects/bhyve_npt_pmap/contrib/binutils/binutils/readelf.c projects/bhyve_npt_pmap/contrib/binutils/include/elf/common.h projects/bhyve_npt_pmap/contrib/ldns/ldns/dnssec_verify.h projects/bhyve_npt_pmap/contrib/ldns/ldns/util.h projects/bhyve_npt_pmap/contrib/unbound/configure projects/bhyve_npt_pmap/contrib/unbound/configure.ac projects/bhyve_npt_pmap/contrib/unbound/daemon/cachedump.c projects/bhyve_npt_pmap/contrib/unbound/daemon/remote.c projects/bhyve_npt_pmap/contrib/unbound/daemon/remote.h projects/bhyve_npt_pmap/contrib/unbound/daemon/unbound.c projects/bhyve_npt_pmap/contrib/unbound/daemon/worker.c projects/bhyve_npt_pmap/contrib/unbound/daemon/worker.h projects/bhyve_npt_pmap/contrib/unbound/libunbound/context.c projects/bhyve_npt_pmap/contrib/unbound/libunbound/context.h projects/bhyve_npt_pmap/contrib/unbound/libunbound/libunbound.c projects/bhyve_npt_pmap/contrib/unbound/libunbound/libworker.c projects/bhyve_npt_pmap/contrib/unbound/libunbound/libworker.h projects/bhyve_npt_pmap/contrib/unbound/libunbound/unbound.h projects/bhyve_npt_pmap/contrib/unbound/smallapp/unbound-anchor.c projects/bhyve_npt_pmap/contrib/unbound/smallapp/unbound-control-setup.sh projects/bhyve_npt_pmap/contrib/unbound/smallapp/worker_cb.c projects/bhyve_npt_pmap/contrib/unbound/util/config_file.c projects/bhyve_npt_pmap/contrib/unbound/util/config_file.h projects/bhyve_npt_pmap/contrib/unbound/util/configlexer.c projects/bhyve_npt_pmap/contrib/unbound/util/configparser.c projects/bhyve_npt_pmap/contrib/unbound/util/fptr_wlist.c projects/bhyve_npt_pmap/crypto/openssh/readconf.c projects/bhyve_npt_pmap/crypto/openssh/ssh_config projects/bhyve_npt_pmap/crypto/openssh/ssh_config.5 projects/bhyve_npt_pmap/etc/Makefile projects/bhyve_npt_pmap/etc/defaults/rc.conf projects/bhyve_npt_pmap/etc/group projects/bhyve_npt_pmap/etc/master.passwd projects/bhyve_npt_pmap/etc/mtree/BSD.root.dist projects/bhyve_npt_pmap/etc/mtree/BSD.var.dist projects/bhyve_npt_pmap/etc/rc.d/Makefile projects/bhyve_npt_pmap/etc/rc.d/ipfilter projects/bhyve_npt_pmap/etc/rc.d/ipfs projects/bhyve_npt_pmap/etc/rc.d/ipmon projects/bhyve_npt_pmap/gnu/lib/libstdc++/Makefile projects/bhyve_npt_pmap/gnu/lib/libsupc++/Makefile projects/bhyve_npt_pmap/kerberos5/Makefile.inc projects/bhyve_npt_pmap/kerberos5/lib/libheimipcc/Makefile projects/bhyve_npt_pmap/kerberos5/lib/libheimipcs/Makefile projects/bhyve_npt_pmap/kerberos5/lib/libkrb5/Makefile projects/bhyve_npt_pmap/kerberos5/libexec/digest-service/Makefile projects/bhyve_npt_pmap/kerberos5/libexec/kcm/Makefile projects/bhyve_npt_pmap/lib/Makefile projects/bhyve_npt_pmap/lib/libc/gen/lockf.3 projects/bhyve_npt_pmap/lib/libc/sys/close.2 projects/bhyve_npt_pmap/lib/libc/sys/ioctl.2 projects/bhyve_npt_pmap/lib/libc/sys/mmap.2 projects/bhyve_npt_pmap/lib/libc/sys/read.2 projects/bhyve_npt_pmap/lib/libc/sys/socketpair.2 projects/bhyve_npt_pmap/lib/libc/sys/write.2 projects/bhyve_npt_pmap/lib/msun/Symbol.map projects/bhyve_npt_pmap/sbin/iscontrol/iscontrol.8 projects/bhyve_npt_pmap/sbin/iscontrol/iscsi.conf.5 projects/bhyve_npt_pmap/secure/lib/libssh/Makefile projects/bhyve_npt_pmap/secure/libexec/sftp-server/Makefile projects/bhyve_npt_pmap/secure/libexec/ssh-keysign/Makefile projects/bhyve_npt_pmap/secure/libexec/ssh-pkcs11-helper/Makefile projects/bhyve_npt_pmap/secure/usr.bin/scp/Makefile projects/bhyve_npt_pmap/secure/usr.bin/sftp/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-add/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-agent/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-keygen/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh-keyscan/Makefile projects/bhyve_npt_pmap/secure/usr.bin/ssh/Makefile projects/bhyve_npt_pmap/secure/usr.sbin/sshd/Makefile projects/bhyve_npt_pmap/share/man/man4/Makefile projects/bhyve_npt_pmap/share/man/man4/ctl.4 projects/bhyve_npt_pmap/share/man/man4/geom.4 projects/bhyve_npt_pmap/share/man/man5/Makefile projects/bhyve_npt_pmap/share/man/man5/src.conf.5 projects/bhyve_npt_pmap/share/man/man9/Makefile projects/bhyve_npt_pmap/share/man/man9/sysctl.9 projects/bhyve_npt_pmap/share/man/man9/sysctl_add_oid.9 projects/bhyve_npt_pmap/share/man/man9/vm_map_find.9 projects/bhyve_npt_pmap/share/mk/bsd.libnames.mk projects/bhyve_npt_pmap/share/mk/bsd.own.mk projects/bhyve_npt_pmap/share/mk/bsd.prog.mk projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c projects/bhyve_npt_pmap/sys/amd64/conf/GENERIC projects/bhyve_npt_pmap/sys/amd64/include/vmm.h (contents, props changed) projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c projects/bhyve_npt_pmap/sys/amd64/vmm/vmm_mem.c projects/bhyve_npt_pmap/sys/arm/arm/pmap-v6.c projects/bhyve_npt_pmap/sys/arm/arm/stdatomic.c projects/bhyve_npt_pmap/sys/cam/ctl/ctl.c projects/bhyve_npt_pmap/sys/cam/ctl/ctl_ioctl.h projects/bhyve_npt_pmap/sys/cddl/compat/opensolaris/sys/kcondvar.h projects/bhyve_npt_pmap/sys/cddl/compat/opensolaris/sys/time.h projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg_impl.h projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_misc.c projects/bhyve_npt_pmap/sys/compat/linux/linux_misc.c projects/bhyve_npt_pmap/sys/compat/svr4/imgact_svr4.c projects/bhyve_npt_pmap/sys/conf/NOTES projects/bhyve_npt_pmap/sys/conf/files projects/bhyve_npt_pmap/sys/conf/files.amd64 projects/bhyve_npt_pmap/sys/conf/newvers.sh projects/bhyve_npt_pmap/sys/conf/options projects/bhyve_npt_pmap/sys/dev/cpuctl/cpuctl.c projects/bhyve_npt_pmap/sys/dev/cxgbe/tom/t4_cpl_io.c projects/bhyve_npt_pmap/sys/dev/cxgbe/tom/t4_tom.c projects/bhyve_npt_pmap/sys/dev/cxgbe/tom/t4_tom.h projects/bhyve_npt_pmap/sys/dev/drm2/i915/i915_gem.c projects/bhyve_npt_pmap/sys/dev/drm2/radeon/r100.c projects/bhyve_npt_pmap/sys/dev/drm2/radeon/r300.c projects/bhyve_npt_pmap/sys/dev/drm2/radeon/radeon_bios.c projects/bhyve_npt_pmap/sys/dev/drm2/radeon/radeon_device.c projects/bhyve_npt_pmap/sys/dev/drm2/radeon/rs600.c projects/bhyve_npt_pmap/sys/dev/iicbus/if_ic.c projects/bhyve_npt_pmap/sys/dev/iscsi_initiator/iscsi.c projects/bhyve_npt_pmap/sys/dev/lmc/if_lmc.c projects/bhyve_npt_pmap/sys/dev/mps/mps_sas_lsi.c projects/bhyve_npt_pmap/sys/dev/ofw/ofw_bus_subr.c projects/bhyve_npt_pmap/sys/dev/ofw/ofw_console.c projects/bhyve_npt_pmap/sys/dev/ofw/openfirm.c projects/bhyve_npt_pmap/sys/dev/ofw/openfirm.h projects/bhyve_npt_pmap/sys/dev/pci/vga_pci.c projects/bhyve_npt_pmap/sys/dev/ppbus/if_plip.c projects/bhyve_npt_pmap/sys/dev/usb/net/if_usie.c projects/bhyve_npt_pmap/sys/dev/usb/net/uhso.c projects/bhyve_npt_pmap/sys/dev/usb/storage/umass.c projects/bhyve_npt_pmap/sys/dev/usb/usb_hub.c projects/bhyve_npt_pmap/sys/fs/nullfs/null_vnops.c projects/bhyve_npt_pmap/sys/i386/i386/pmap.c projects/bhyve_npt_pmap/sys/i386/ibcs2/imgact_coff.c projects/bhyve_npt_pmap/sys/i386/linux/imgact_linux.c projects/bhyve_npt_pmap/sys/ia64/ia32/ia32_signal.c projects/bhyve_npt_pmap/sys/kern/imgact_elf.c projects/bhyve_npt_pmap/sys/kern/imgact_gzip.c projects/bhyve_npt_pmap/sys/kern/init_main.c projects/bhyve_npt_pmap/sys/kern/init_sysent.c projects/bhyve_npt_pmap/sys/kern/kern_event.c projects/bhyve_npt_pmap/sys/kern/link_elf.c projects/bhyve_npt_pmap/sys/kern/link_elf_obj.c projects/bhyve_npt_pmap/sys/kern/makesyscalls.sh projects/bhyve_npt_pmap/sys/kern/subr_prf.c projects/bhyve_npt_pmap/sys/kern/subr_uio.c projects/bhyve_npt_pmap/sys/kern/sys_pipe.c projects/bhyve_npt_pmap/sys/kern/syscalls.c projects/bhyve_npt_pmap/sys/kern/syscalls.master projects/bhyve_npt_pmap/sys/kern/systrace_args.c projects/bhyve_npt_pmap/sys/kern/sysv_shm.c projects/bhyve_npt_pmap/sys/kern/uipc_shm.c projects/bhyve_npt_pmap/sys/kern/uipc_socket.c projects/bhyve_npt_pmap/sys/kern/uipc_syscalls.c projects/bhyve_npt_pmap/sys/kern/uipc_usrreq.c projects/bhyve_npt_pmap/sys/kern/vfs_mountroot.c projects/bhyve_npt_pmap/sys/kern/vfs_vnops.c projects/bhyve_npt_pmap/sys/modules/Makefile projects/bhyve_npt_pmap/sys/modules/ctl/Makefile projects/bhyve_npt_pmap/sys/modules/cxgb/cxgb/Makefile projects/bhyve_npt_pmap/sys/modules/iscsi/Makefile projects/bhyve_npt_pmap/sys/modules/sfxge/Makefile projects/bhyve_npt_pmap/sys/modules/ti/Makefile projects/bhyve_npt_pmap/sys/net/if.c projects/bhyve_npt_pmap/sys/net/if_gif.c projects/bhyve_npt_pmap/sys/net/if_gre.c projects/bhyve_npt_pmap/sys/net/if_spppsubr.c projects/bhyve_npt_pmap/sys/net/if_tun.c projects/bhyve_npt_pmap/sys/netinet/ip_input.c projects/bhyve_npt_pmap/sys/netinet/sctp_output.c projects/bhyve_npt_pmap/sys/netinet6/in6.c projects/bhyve_npt_pmap/sys/netinet6/ip6_input.c projects/bhyve_npt_pmap/sys/netnatm/natm.c projects/bhyve_npt_pmap/sys/powerpc/aim/mmu_oea64.c projects/bhyve_npt_pmap/sys/powerpc/aim/mmu_oea64.h projects/bhyve_npt_pmap/sys/powerpc/aim/nexus.c projects/bhyve_npt_pmap/sys/powerpc/include/param.h projects/bhyve_npt_pmap/sys/powerpc/include/platform.h projects/bhyve_npt_pmap/sys/powerpc/include/pte.h projects/bhyve_npt_pmap/sys/powerpc/ofw/ofw_pcibus.c projects/bhyve_npt_pmap/sys/powerpc/ofw/rtas.c projects/bhyve_npt_pmap/sys/powerpc/powermac/platform_powermac.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/busdma_machdep.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/cpu.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/intr_machdep.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/mp_machdep.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/platform.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/platform_if.m projects/bhyve_npt_pmap/sys/sparc64/sparc64/pmap.c projects/bhyve_npt_pmap/sys/sys/event.h projects/bhyve_npt_pmap/sys/sys/eventvar.h projects/bhyve_npt_pmap/sys/sys/mman.h projects/bhyve_npt_pmap/sys/sys/param.h projects/bhyve_npt_pmap/sys/sys/socketvar.h projects/bhyve_npt_pmap/sys/sys/syscall.h projects/bhyve_npt_pmap/sys/sys/syscall.mk projects/bhyve_npt_pmap/sys/sys/sysctl.h projects/bhyve_npt_pmap/sys/sys/sysproto.h projects/bhyve_npt_pmap/sys/sys/uio.h projects/bhyve_npt_pmap/sys/vm/vm_fault.c projects/bhyve_npt_pmap/sys/vm/vm_init.c projects/bhyve_npt_pmap/sys/vm/vm_kern.c projects/bhyve_npt_pmap/sys/vm/vm_map.c projects/bhyve_npt_pmap/sys/vm/vm_map.h projects/bhyve_npt_pmap/sys/vm/vm_mmap.c projects/bhyve_npt_pmap/sys/vm/vm_page.c projects/bhyve_npt_pmap/sys/vm/vm_page.h projects/bhyve_npt_pmap/tools/build/mk/OptionalObsoleteFiles.inc projects/bhyve_npt_pmap/tools/build/options/WITHOUT_LDNS projects/bhyve_npt_pmap/tools/make_libdeps.sh projects/bhyve_npt_pmap/tools/regression/sockets/sendfile/sendfile.c projects/bhyve_npt_pmap/tools/tools/net80211/wlanstats/Makefile projects/bhyve_npt_pmap/usr.bin/Makefile projects/bhyve_npt_pmap/usr.bin/bmake/Makefile projects/bhyve_npt_pmap/usr.bin/kdump/kdump.c projects/bhyve_npt_pmap/usr.bin/kdump/mksubr projects/bhyve_npt_pmap/usr.bin/truss/syscall.h projects/bhyve_npt_pmap/usr.bin/truss/syscalls.c projects/bhyve_npt_pmap/usr.sbin/Makefile projects/bhyve_npt_pmap/usr.sbin/bhyve/acpi.c projects/bhyve_npt_pmap/usr.sbin/ctladm/ctladm.8 projects/bhyve_npt_pmap/usr.sbin/ctladm/ctladm.c projects/bhyve_npt_pmap/usr.sbin/daemon/daemon.8 projects/bhyve_npt_pmap/usr.sbin/daemon/daemon.c projects/bhyve_npt_pmap/usr.sbin/gpioctl/gpioctl.8 projects/bhyve_npt_pmap/usr.sbin/mergemaster/mergemaster.sh projects/bhyve_npt_pmap/usr.sbin/mtree/create.c projects/bhyve_npt_pmap/usr.sbin/pkg/config.c projects/bhyve_npt_pmap/usr.sbin/pkg/elf_tables.h Directory Properties: projects/bhyve_npt_pmap/ (props changed) projects/bhyve_npt_pmap/cddl/ (props changed) projects/bhyve_npt_pmap/cddl/contrib/opensolaris/ (props changed) projects/bhyve_npt_pmap/contrib/binutils/ (props changed) projects/bhyve_npt_pmap/contrib/ldns/ (props changed) projects/bhyve_npt_pmap/contrib/unbound/ (props changed) projects/bhyve_npt_pmap/crypto/openssh/ (props changed) projects/bhyve_npt_pmap/gnu/lib/ (props changed) projects/bhyve_npt_pmap/lib/libc/ (props changed) projects/bhyve_npt_pmap/sbin/ (props changed) projects/bhyve_npt_pmap/share/man/man4/ (props changed) projects/bhyve_npt_pmap/sys/ (props changed) projects/bhyve_npt_pmap/sys/amd64/vmm/ (props changed) projects/bhyve_npt_pmap/sys/cddl/contrib/opensolaris/ (props changed) projects/bhyve_npt_pmap/sys/conf/ (props changed) projects/bhyve_npt_pmap/usr.sbin/bhyve/ (props changed) Modified: projects/bhyve_npt_pmap/Makefile ============================================================================== --- projects/bhyve_npt_pmap/Makefile Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/Makefile Mon Sep 16 23:09:20 2013 (r255621) @@ -351,7 +351,7 @@ make bmake: .PHONY ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ ${MMAKE} obj DESTDIR= && \ ${MMAKE} depend DESTDIR= && \ - ${MMAKE} all DESTDIR= && \ + ${MMAKE} all DESTDIR= PROGNAME=${MYMAKE:T} && \ ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T} tinderbox toolchains kernel-toolchains: upgrade_checks Modified: projects/bhyve_npt_pmap/Makefile.inc1 ============================================================================== --- projects/bhyve_npt_pmap/Makefile.inc1 Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/Makefile.inc1 Mon Sep 16 23:09:20 2013 (r255621) @@ -1470,8 +1470,8 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ ${_cddl_lib_libzfs_core} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ - ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ - ${_secure_lib_libssl} + ${_secure_lib_libcrypto} ${_lib_libldns} \ + ${_secure_lib_libssh} ${_secure_lib_libssl} .if ${MK_ATF} != "no" _lib_atf_libatf_c= lib/atf/libatf-c @@ -1507,9 +1507,16 @@ cddl/lib/libzfs_core__L: cddl/lib/libnvp _secure_lib_libcrypto= secure/lib/libcrypto _secure_lib_libssl= secure/lib/libssl lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L +.if ${MK_LDNS} != "no" +_lib_libldns= lib/libldns +lib/libldns__L: secure/lib/libcrypto__L +.endif .if ${MK_OPENSSH} != "no" _secure_lib_libssh= secure/lib/libssh secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L +.if ${MK_LDNS} != "no" +secure/lib/libssh__L: lib/libldns__L +.endif .if ${MK_KERBEROS_SUPPORT} != "no" secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ Modified: projects/bhyve_npt_pmap/ObsoleteFiles.inc ============================================================================== --- projects/bhyve_npt_pmap/ObsoleteFiles.inc Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/ObsoleteFiles.inc Mon Sep 16 23:09:20 2013 (r255621) @@ -39,8 +39,14 @@ # done # 20130908: libssh becomes private +OLD_FILES+=usr/lib/libssh.a +OLD_FILES+=usr/lib/libssh.so OLD_LIBS+=usr/lib/libssh.so.5 +OLD_FILES+=usr/lib/libssh_p.a +OLD_FILES+=usr/lib32/libssh.a +OLD_FILES+=usr/lib32/libssh.so OLD_LIBS+=usr/lib32/libssh.so.5 +OLD_FILES+=usr/lib32/libssh_p.a # 20130903: gnupatch is no more OLD_FILES+=usr/bin/gnupatch OLD_FILES+=usr/share/man/man1/gnupatch.1.gz Modified: projects/bhyve_npt_pmap/UPDATING ============================================================================== --- projects/bhyve_npt_pmap/UPDATING Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/UPDATING Mon Sep 16 23:09:20 2013 (r255621) @@ -31,6 +31,12 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130911: + OpenSSH is now built with DNSSEC support, and will by default + silently trust signed SSHFP records. This can be controlled with + the VerifyHostKeyDNS client configuration setting. DNSSEC support + can be disabled entirely with the WITHOUT_LDNS option in src.conf. + 20130906: The GNU Compiler Collection and C++ standard library (libstdc++) are no longer built by default on platforms where clang is the system @@ -51,6 +57,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 advised: libc, libprocstat, dhclient, tcpdump, hastd, hastctl, kdump, procstat, rwho, rwhod, uniq. +20130903: + AES-NI intrinsic support has been added to gcc. The AES-NI module + has been updated to use this support. A new gcc is required to build + the aesni module on both i386 and amd64. + 20130827: Thomas Dickey (vendor author thereof) reports that dialog(1) since 2011/10/18 has a bug in handling --hline. Testers and I noticed the Modified: projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c ============================================================================== --- projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c Mon Sep 16 23:09:20 2013 (r255621) @@ -349,6 +349,41 @@ top: return (1); } +/*ARGSUSED*/ +clock_t +cv_timedwait_hires(kcondvar_t *cv, kmutex_t *mp, hrtime_t tim, hrtime_t res, + int flag) +{ + int error; + timestruc_t ts; + hrtime_t delta; + + ASSERT(flag == 0); + +top: + delta = tim - gethrtime(); + if (delta <= 0) + return (-1); + + ts.tv_sec = delta / NANOSEC; + ts.tv_nsec = delta % NANOSEC; + + ASSERT(mutex_owner(mp) == curthread); + mp->m_owner = NULL; + error = pthread_cond_timedwait(cv, &mp->m_lock, &ts); + mp->m_owner = curthread; + + if (error == ETIMEDOUT) + return (-1); + + if (error == EINTR) + goto top; + + ASSERT(error == 0); + + return (1); +} + void cv_signal(kcondvar_t *cv) { Modified: projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h ============================================================================== --- projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h Mon Sep 16 23:09:20 2013 (r255621) @@ -313,6 +313,8 @@ extern void cv_init(kcondvar_t *cv, char extern void cv_destroy(kcondvar_t *cv); extern void cv_wait(kcondvar_t *cv, kmutex_t *mp); extern clock_t cv_timedwait(kcondvar_t *cv, kmutex_t *mp, clock_t abstime); +extern clock_t cv_timedwait_hires(kcondvar_t *cvp, kmutex_t *mp, hrtime_t tim, + hrtime_t res, int flag); extern void cv_signal(kcondvar_t *cv); extern void cv_broadcast(kcondvar_t *cv); Modified: projects/bhyve_npt_pmap/cddl/lib/libdtrace/tcp.d ============================================================================== --- projects/bhyve_npt_pmap/cddl/lib/libdtrace/tcp.d Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/cddl/lib/libdtrace/tcp.d Mon Sep 16 23:09:20 2013 (r255621) @@ -144,7 +144,7 @@ typedef struct tcpinfo { #pragma D binding "1.0" translator translator csinfo_t < struct tcpcb *p > { cs_addr = NULL; - cs_cid = (uint64_t)p; + cs_cid = (uint64_t)(p == NULL ? 0 : p->t_inpcb); cs_pid = 0; cs_zoneid = 0; }; Modified: projects/bhyve_npt_pmap/contrib/binutils/binutils/readelf.c ============================================================================== --- projects/bhyve_npt_pmap/contrib/binutils/binutils/readelf.c Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/contrib/binutils/binutils/readelf.c Mon Sep 16 23:09:20 2013 (r255621) @@ -9109,6 +9109,10 @@ get_note_type (unsigned e_type) return _("NT_LWPSINFO (lwpsinfo_t structure)"); case NT_WIN32PSTATUS: return _("NT_WIN32PSTATUS (win32_pstatus structure)"); + case NT_FILE: + return _("NT_FILE"); + case NT_SIGINFO: + return _("NT_SIGINFO"); default: break; } @@ -9174,6 +9178,23 @@ get_freebsd_note_type (unsigned e_type) } static const char * +get_gnu_note_type (unsigned e_type) +{ + static char buff[64]; + + switch (e_type) + { + case NT_GNU_ABI_TAG: + return _("NT_GNU_ABI_TAG"); + case NT_GNU_BUILD_ID: + return _("NT_GNU_BUILD_ID"); + } + + snprintf (buff, sizeof(buff), _("Unknown GNU note type: (0x%08x)"), e_type); + return buff; +} + +static const char * get_netbsd_elfcore_note_type (unsigned e_type) { static char buff[64]; @@ -9254,6 +9275,10 @@ process_note (Elf_Internal_Note *pnote) /* FreeBSD-specific core file notes. */ nt = get_freebsd_note_type (pnote->type); + else if (const_strneq (pnote->namedata, "GNU")) + /* GNU-specific notes */ + nt = get_gnu_note_type (pnote->type); + else if (const_strneq (pnote->namedata, "NetBSD-CORE")) /* NetBSD-specific core file notes. */ nt = get_netbsd_elfcore_note_type (pnote->type); Modified: projects/bhyve_npt_pmap/contrib/binutils/include/elf/common.h ============================================================================== --- projects/bhyve_npt_pmap/contrib/binutils/include/elf/common.h Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/contrib/binutils/include/elf/common.h Mon Sep 16 23:09:20 2013 (r255621) @@ -388,8 +388,10 @@ #define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */ #define NT_TASKSTRUCT 4 /* Contains copy of task struct */ #define NT_AUXV 6 /* Contains copy of Elfxx_auxv_t */ +#define NT_FILE 0x46494c45 #define NT_PRXFPREG 0x46e62b7f /* Contains a user_xfpregs_struct; */ /* note name must be "LINUX". */ +#define NT_SIGINFO 0x53494749 /* Note segments for core files on dir-style procfs systems. */ @@ -435,6 +437,9 @@ #define GNU_ABI_TAG_FREEBSD 3 #define GNU_ABI_TAG_NETBSD 4 +/* Values for GNU .note.gnu.build-id notes. Note name is "GNU"." */ +#define NT_GNU_BUILD_ID 3 + /* Values for NetBSD .note.netbsd.ident notes. Note name is "NetBSD". */ #define NT_NETBSD_IDENT 1 Modified: projects/bhyve_npt_pmap/contrib/ldns/ldns/dnssec_verify.h ============================================================================== --- projects/bhyve_npt_pmap/contrib/ldns/ldns/dnssec_verify.h Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/contrib/ldns/ldns/dnssec_verify.h Mon Sep 16 23:09:20 2013 (r255621) @@ -294,23 +294,6 @@ void ldns_dnssec_derive_trust_tree_dnske ldns_rr *cur_rr, ldns_rr *cur_sig_rr, time_t check_time); - -/** - * Sub function for derive_trust_tree that is used for DNSKEY rrsets - * - * \param[in] new_tree The trust tree that we are building - * \param[in] data_chain The data chain containing the data for the trust tree - * \param[in] cur_rr The currently relevant DNSKEY RR - * \param[in] cur_sig_rr The currently relevant signature - * \param[in] check_time the time for which the validation is performed - */ -void ldns_dnssec_derive_trust_tree_dnskey_rrset_time( - ldns_dnssec_trust_tree *new_tree, - ldns_dnssec_data_chain *data_chain, - ldns_rr *cur_rr, ldns_rr *cur_sig_rr, - time_t check_time); - - /** * Sub function for derive_trust_tree that is used for DS rrsets * Modified: projects/bhyve_npt_pmap/contrib/ldns/ldns/util.h ============================================================================== --- projects/bhyve_npt_pmap/contrib/ldns/ldns/util.h Mon Sep 16 19:58:37 2013 (r255620) +++ projects/bhyve_npt_pmap/contrib/ldns/ldns/util.h Mon Sep 16 23:09:20 2013 (r255621) @@ -72,7 +72,7 @@ ldns_read_uint16(const void *src) #ifdef ALLOW_UNALIGNED_ACCESSES return ntohs(*(uint16_t *) src); #else - uint8_t *p = (uint8_t *) src; + const uint8_t *p = (const uint8_t *) src; return ((uint16_t) p[0] << 8) | (uint16_t) p[1]; #endif } @@ -83,7 +83,7 @@ ldns_read_uint32(const void *src) #ifdef ALLOW_UNALIGNED_ACCESSES return ntohl(*(uint32_t *) src); #else - uint8_t *p = (uint8_t *) src; + const uint8_t *p = (const uint8_t *) src; return ( ((uint32_t) p[0] << 24) | ((uint32_t) p[1] << 16) | ((uint32_t) p[2] << 8) Copied: projects/bhyve_npt_pmap/contrib/unbound/config.h (from r255620, head/contrib/unbound/config.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bhyve_npt_pmap/contrib/unbound/config.h Mon Sep 16 23:09:20 2013 (r255621, copy of r255620, head/contrib/unbound/config.h) @@ -0,0 +1,911 @@ +/* config.h. Generated from config.h.in by configure. */ +/* config.h.in. Generated from configure.ac by autoheader. */ + +/* Directory to chroot to */ +#define CHROOT_DIR "/var/unbound" + +/* Pathname to the Unbound configuration file */ +#define CONFIGFILE "/etc/unbound/unbound.conf" + +/* configure flags */ +#define CONFIGURE_BUILD_WITH " '--prefix=' '--exec-prefix=/usr' '--with-conf-file=/etc/unbound/unbound.conf' '--with-run-dir=/var/unbound' '--with-username=unbound'" + +/* configure date */ +#define CONFIGURE_DATE "Sun Sep 15 15:38:41 CEST 2013" + +/* configure target system */ +#define CONFIGURE_TARGET "x86_64-unknown-freebsd10.0" + +/* Define this if on macOSX10.4-darwin8 and setreuid and setregid do not work + */ +/* #undef DARWIN_BROKEN_SETREUID */ + +/* Whether daemon is deprecated */ +/* #undef DEPRECATED_DAEMON */ + +/* Define if you want to use debug lock checking (slow). */ +/* #undef ENABLE_LOCK_CHECKS */ + +/* Define this if you enabled-allsymbols from libunbound to link binaries to + it for smaller install size, but the libunbound export table is polluted by + internal symbols */ +/* #undef EXPORT_ALL_SYMBOLS */ + +/* Define to 1 if you have the header file. */ +#define HAVE_ARPA_INET_H 1 + +/* Whether the C compiler accepts the "format" attribute */ +#define HAVE_ATTR_FORMAT 1 + +/* Whether the C compiler accepts the "unused" attribute */ +#define HAVE_ATTR_UNUSED 1 + +/* Define to 1 if your system has a working `chown' function. */ +#define HAVE_CHOWN 1 + +/* Define to 1 if you have the `chroot' function. */ +#define HAVE_CHROOT 1 + +/* Define to 1 if you have the `ctime_r' function. */ +#define HAVE_CTIME_R 1 + +/* Define to 1 if you have the `daemon' function. */ +#define HAVE_DAEMON 1 + +/* Define to 1 if you have the declaration of `NID_secp384r1', and to 0 if you + don't. */ +#define HAVE_DECL_NID_SECP384R1 1 + +/* Define to 1 if you have the declaration of `NID_X9_62_prime256v1', and to 0 + if you don't. */ +#define HAVE_DECL_NID_X9_62_PRIME256V1 1 + +/* Define to 1 if you have the declaration of `sk_SSL_COMP_pop_free', and to 0 + if you don't. */ +#define HAVE_DECL_SK_SSL_COMP_POP_FREE 1 + +/* Define to 1 if you have the declaration of + `SSL_COMP_get_compression_methods', and to 0 if you don't. */ +#define HAVE_DECL_SSL_COMP_GET_COMPRESSION_METHODS 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have the `event_base_free' function. */ +/* #undef HAVE_EVENT_BASE_FREE */ + +/* Define to 1 if you have the `event_base_get_method' function. */ +/* #undef HAVE_EVENT_BASE_GET_METHOD */ + +/* Define to 1 if you have the `event_base_new' function. */ +/* #undef HAVE_EVENT_BASE_NEW */ + +/* Define to 1 if you have the `event_base_once' function. */ +/* #undef HAVE_EVENT_BASE_ONCE */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_EVENT_H */ + +/* Define to 1 if you have the `EVP_sha1' function. */ +#define HAVE_EVP_SHA1 1 + +/* Define to 1 if you have the `EVP_sha256' function. */ +#define HAVE_EVP_SHA256 1 + +/* Define to 1 if you have the `EVP_sha512' function. */ +#define HAVE_EVP_SHA512 1 + +/* Define to 1 if you have the `ev_default_loop' function. */ +/* #undef HAVE_EV_DEFAULT_LOOP */ + +/* Define to 1 if you have the `ev_loop' function. */ +/* #undef HAVE_EV_LOOP */ + +/* Define to 1 if you have the header file. */ +#define HAVE_EXPAT_H 1 + +/* Define to 1 if you have the `fcntl' function. */ +#define HAVE_FCNTL 1 + +/* Define to 1 if you have the `FIPS_mode' function. */ +#define HAVE_FIPS_MODE 1 + +/* Define to 1 if you have the `fork' function. */ +#define HAVE_FORK 1 + +/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ +#define HAVE_FSEEKO 1 + +/* Whether getaddrinfo is available */ +#define HAVE_GETADDRINFO 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_GETOPT_H 1 + +/* Define to 1 if you have the `getpwnam' function. */ +#define HAVE_GETPWNAM 1 + +/* Define to 1 if you have the `getrlimit' function. */ +#define HAVE_GETRLIMIT 1 + +/* Define to 1 if you have the `glob' function. */ +#define HAVE_GLOB 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_GLOB_H 1 + +/* Define to 1 if you have the `gmtime_r' function. */ +#define HAVE_GMTIME_R 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_GRP_H 1 + +/* If you have HMAC_CTX_init */ +#define HAVE_HMAC_CTX_INIT 1 + +/* Define to 1 if you have the `inet_aton' function. */ +#define HAVE_INET_ATON 1 + +/* Define to 1 if you have the `inet_ntop' function. */ +#define HAVE_INET_NTOP 1 + +/* Define to 1 if you have the `inet_pton' function. */ +#define HAVE_INET_PTON 1 + +/* Define to 1 if you have the `initgroups' function. */ +#define HAVE_INITGROUPS 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* if the function 'ioctlsocket' is available */ +/* #undef HAVE_IOCTLSOCKET */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_IPHLPAPI_H */ + +/* Define to 1 if you have the `kill' function. */ +#define HAVE_KILL 1 + +/* Define to 1 if you have the `ldns_key_EVP_unload_gost' function. */ +/* #undef HAVE_LDNS_KEY_EVP_UNLOAD_GOST */ + +/* Define to 1 if you have the header file. */ +#define HAVE_LDNS_LDNS_H 1 + +/* Define to 1 if you have the `ldns' library (-lldns). */ +#define HAVE_LIBLDNS 1 + +/* Define to 1 if you have the `localtime_r' function. */ +#define HAVE_LOCALTIME_R 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_LOGIN_CAP_H 1 + +/* If have GNU libc compatible malloc */ +#define HAVE_MALLOC 1 + +/* Define to 1 if you have the `memmove' function. */ +#define HAVE_MEMMOVE 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_NETDB_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_NETINET_IN_H 1 + +/* Use libnss for crypto */ +/* #undef HAVE_NSS */ + +/* Define to 1 if you have the `OPENSSL_config' function. */ +#define HAVE_OPENSSL_CONFIG 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_OPENSSL_CONF_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_OPENSSL_ENGINE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_OPENSSL_ERR_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_OPENSSL_RAND_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_OPENSSL_SSL_H 1 + +/* Define if you have POSIX threads libraries and header files. */ +#define HAVE_PTHREAD 1 + +/* Define to 1 if the system has the type `pthread_rwlock_t'. */ +#define HAVE_PTHREAD_RWLOCK_T 1 + +/* Define to 1 if the system has the type `pthread_spinlock_t'. */ +#define HAVE_PTHREAD_SPINLOCK_T 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_PWD_H 1 + +/* Define if you have Python libraries and header files. */ +/* #undef HAVE_PYTHON */ + +/* Define to 1 if you have the `random' function. */ +#define HAVE_RANDOM 1 + +/* Define to 1 if you have the `recvmsg' function. */ +#define HAVE_RECVMSG 1 + +/* Define to 1 if you have the `sbrk' function. */ +/* #undef HAVE_SBRK */ + +/* Define to 1 if you have the `sendmsg' function. */ +#define HAVE_SENDMSG 1 + +/* Define to 1 if you have the `setregid' function. */ +/* #undef HAVE_SETREGID */ + +/* Define to 1 if you have the `setresgid' function. */ +#define HAVE_SETRESGID 1 + +/* Define to 1 if you have the `setresuid' function. */ +#define HAVE_SETRESUID 1 + +/* Define to 1 if you have the `setreuid' function. */ +/* #undef HAVE_SETREUID */ + +/* Define to 1 if you have the `setrlimit' function. */ +#define HAVE_SETRLIMIT 1 + +/* Define to 1 if you have the `setsid' function. */ +#define HAVE_SETSID 1 + +/* Define to 1 if you have the `setusercontext' function. */ +#define HAVE_SETUSERCONTEXT 1 + +/* Define to 1 if you have the `sigprocmask' function. */ +#define HAVE_SIGPROCMASK 1 + +/* Define to 1 if you have the `sleep' function. */ +#define HAVE_SLEEP 1 + +/* Define to 1 if you have the `snprintf' function. */ +#define HAVE_SNPRINTF 1 + +/* Define to 1 if you have the `socketpair' function. */ +#define HAVE_SOCKETPAIR 1 + +/* Using Solaris threads */ +/* #undef HAVE_SOLARIS_THREADS */ + +/* Define to 1 if you have the `srandom' function. */ +#define HAVE_SRANDOM 1 + +/* Define if you have the SSL libraries installed. */ +#define HAVE_SSL /**/ + +/* Define to 1 if you have the header file. */ +#define HAVE_STDARG_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDBOOL_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strftime' function. */ +#define HAVE_STRFTIME 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strlcpy' function. */ +#define HAVE_STRLCPY 1 + +/* Define to 1 if you have the `strptime' function. */ +#define HAVE_STRPTIME 1 + +/* Define to 1 if `ipi_spec_dst' is a member of `struct in_pktinfo'. */ +/* #undef HAVE_STRUCT_IN_PKTINFO_IPI_SPEC_DST */ + +/* Define if you have Swig libraries and header files. */ +/* #undef HAVE_SWIG */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYSLOG_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_PARAM_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_RESOURCE_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_SOCKET_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_UIO_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_WAIT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_TIME_H 1 + +/* Define to 1 if you have the `tzset' function. */ +#define HAVE_TZSET 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the `usleep' function. */ +#define HAVE_USLEEP 1 + +/* Define to 1 if you have the `vfork' function. */ +#define HAVE_VFORK 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_VFORK_H */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_WINDOWS_H */ + +/* Using Windows threads */ +/* #undef HAVE_WINDOWS_THREADS */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_WINSOCK2_H */ + +/* Define to 1 if `fork' works. */ +#define HAVE_WORKING_FORK 1 + +/* Define to 1 if `vfork' works. */ +#define HAVE_WORKING_VFORK 1 + +/* Define to 1 if you have the `writev' function. */ +#define HAVE_WRITEV 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_WS2TCPIP_H */ + +/* Define to 1 if you have the `_beginthreadex' function. */ +/* #undef HAVE__BEGINTHREADEX */ + +/* if lex has yylex_destroy */ +#define LEX_HAS_YYLEX_DESTROY 1 + +/* Define to the sub-directory in which libtool stores uninstalled libraries. + */ +#define LT_OBJDIR ".libs/" + +/* Define to the maximum message length to pass to syslog. */ +#define MAXSYSLOGMSGLEN 10240 + +/* Define if memcmp() does not compare unsigned bytes */ +/* #undef MEMCMP_IS_BROKEN */ + +/* Define if mkdir has one argument. */ +/* #undef MKDIR_HAS_ONE_ARG */ + +/* Define if the network stack does not fully support nonblocking io (causes + lower performance). */ +/* #undef NONBLOCKING_IS_BROKEN */ + +/* Put -D_ALL_SOURCE define in config.h */ +/* #undef OMITTED__D_ALL_SOURCE */ + +/* Put -D_BSD_SOURCE define in config.h */ +/* #undef OMITTED__D_BSD_SOURCE */ + +/* Put -D_GNU_SOURCE define in config.h */ +/* #undef OMITTED__D_GNU_SOURCE */ + +/* Put -D_LARGEFILE_SOURCE=1 define in config.h */ +/* #undef OMITTED__D_LARGEFILE_SOURCE_1 */ + +/* Put -D_POSIX_C_SOURCE=200112 define in config.h */ +/* #undef OMITTED__D_POSIX_C_SOURCE_200112 */ + +/* Put -D_XOPEN_SOURCE=600 define in config.h */ +/* #undef OMITTED__D_XOPEN_SOURCE_600 */ + +/* Put -D_XOPEN_SOURCE_EXTENDED=1 define in config.h */ +/* #undef OMITTED__D_XOPEN_SOURCE_EXTENDED_1 */ + +/* Put -D__EXTENSIONS__ define in config.h */ +/* #undef OMITTED__D__EXTENSIONS__ */ + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "unbound-bugs@nlnetlabs.nl" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "unbound" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "unbound 1.4.20" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "unbound" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "1.4.20" + +/* default pidfile location */ +#define PIDFILE "/var/unbound/unbound.pid" + +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +/* #undef PTHREAD_CREATE_JOINABLE */ + +/* Define as the return type of signal handlers (`int' or `void'). */ +#define RETSIGTYPE void + +/* default rootkey location */ +#define ROOT_ANCHOR_FILE "/var/unbound/root.key" + +/* default rootcert location */ +#define ROOT_CERT_FILE "/var/unbound/icannbundle.pem" + +/* version number for resource files */ +#define RSRC_PACKAGE_VERSION 1,4,2,0 + +/* Directory to chdir to */ +#define RUN_DIR "/var/unbound" + +/* Shared data */ +#define SHARE_DIR "/var/unbound" + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* use default strptime. */ +#define STRPTIME_WORKS 1 + +/* Use win32 resources and API */ +/* #undef UB_ON_WINDOWS */ + +/* default username */ +#define UB_USERNAME "unbound" + +/* use to enable lightweight alloc assertions, for debug use */ +/* #undef UNBOUND_ALLOC_LITE */ + +/* use malloc not regions, for debug use */ +/* #undef UNBOUND_ALLOC_NONREGIONAL */ + +/* use statistics for allocs and frees, for debug use */ +/* #undef UNBOUND_ALLOC_STATS */ + +/* define this to enable debug checks. */ +/* #undef UNBOUND_DEBUG */ + +/* Define this to enable ECDSA support. */ +#define USE_ECDSA 1 + +/* Define this to enable an EVP workaround for older openssl */ +/* #undef USE_ECDSA_EVP_WORKAROUND */ + +/* Define this to enable GOST support. */ +/* #undef USE_GOST */ + +/* Define if you want to use internal select based events */ +#define USE_MINI_EVENT 1 + +/* Define this to enable SHA256 and SHA512 support. */ +#define USE_SHA2 1 + +/* Enable extensions on AIX 3, Interix. */ +#ifndef _ALL_SOURCE +# define _ALL_SOURCE 1 +#endif +/* Enable GNU extensions on systems that have them. */ +#ifndef _GNU_SOURCE +# define _GNU_SOURCE 1 +#endif +/* Enable threading extensions on Solaris. */ +#ifndef _POSIX_PTHREAD_SEMANTICS +# define _POSIX_PTHREAD_SEMANTICS 1 +#endif +/* Enable extensions on HP NonStop. */ +#ifndef _TANDEM_SOURCE +# define _TANDEM_SOURCE 1 +#endif +/* Enable general extensions on Solaris. */ +#ifndef __EXTENSIONS__ +# define __EXTENSIONS__ 1 +#endif + + +/* Whether the windows socket API is used */ +/* #undef USE_WINSOCK */ + +/* the version of the windows API enabled */ +#define WINVER 0x0502 + +/* Define if you want Python module. */ +/* #undef WITH_PYTHONMODULE */ + +/* Define if you want PyUnbound. */ +/* #undef WITH_PYUNBOUND */ + +/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a + `char[]'. */ +#define YYTEXT_POINTER 1 + +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + +/* Number of bits in a file offset, on hosts where this is settable. */ +/* #undef _FILE_OFFSET_BITS */ + +/* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */ +/* #undef _LARGEFILE_SOURCE */ + +/* Define for large files, on AIX-style hosts. */ +/* #undef _LARGE_FILES */ + +/* Define to 1 if on MINIX. */ +/* #undef _MINIX */ + +/* Define to 2 if the system does not provide POSIX.1 features except with + this defined. */ +/* #undef _POSIX_1_SOURCE */ + +/* Define to 1 if you need to in order for `stat' and other things to work. */ +/* #undef _POSIX_SOURCE */ + +/* Define to empty if `const' does not conform to ANSI C. */ +/* #undef const */ + +/* Define to `int' if doesn't define. */ +/* #undef gid_t */ + +/* in_addr_t */ +/* #undef in_addr_t */ + +/* in_port_t */ +/* #undef in_port_t */ + +/* Define to `__inline__' or `__inline' if that's what the C compiler + calls it, or to nothing if 'inline' is not supported under any name. */ +#ifndef __cplusplus +/* #undef inline */ +#endif + +/* Define to `short' if does not define. */ +/* #undef int16_t */ + +/* Define to `int' if does not define. */ +/* #undef int32_t */ + +/* Define to `long long' if does not define. */ +/* #undef int64_t */ + +/* Define to `signed char' if does not define. */ +/* #undef int8_t */ + +/* Define if replacement function should be used. */ +/* #undef malloc */ + +/* Define to `long int' if does not define. */ +/* #undef off_t */ + +/* Define to `int' if does not define. */ +/* #undef pid_t */ + +/* Define to 'int' if not defined */ +/* #undef rlim_t */ + +/* Define to `unsigned int' if does not define. */ +/* #undef size_t */ + +/* Define to 'int' if not defined */ +/* #undef socklen_t */ + +/* Define to `int' if does not define. */ +/* #undef ssize_t */ + +/* Define to 'unsigned char if not defined */ +/* #undef u_char */ + +/* Define to `int' if doesn't define. */ +/* #undef uid_t */ + +/* Define to `unsigned short' if does not define. */ +/* #undef uint16_t */ + +/* Define to `unsigned int' if does not define. */ +/* #undef uint32_t */ + +/* Define to `unsigned long long' if does not define. */ +/* #undef uint64_t */ + +/* Define to `unsigned char' if does not define. */ +/* #undef uint8_t */ + +/* Define as `fork' if `vfork' does not work. */ +/* #undef vfork */ + +#if defined(OMITTED__D_GNU_SOURCE) && !defined(_GNU_SOURCE) +#define _GNU_SOURCE 1 +#endif + +#if defined(OMITTED__D_BSD_SOURCE) && !defined(_BSD_SOURCE) +#define _BSD_SOURCE 1 +#endif + +#if defined(OMITTED__D__EXTENSIONS__) && !defined(__EXTENSIONS__) +#define __EXTENSIONS__ 1 +#endif + +#if defined(OMITTED__D_POSIX_C_SOURCE_200112) && !defined(_POSIX_C_SOURCE) +#define _POSIX_C_SOURCE 200112 +#endif + +#if defined(OMITTED__D_XOPEN_SOURCE_600) && !defined(_XOPEN_SOURCE) +#define _XOPEN_SOURCE 600 +#endif + +#if defined(OMITTED__D_XOPEN_SOURCE_EXTENDED_1) && !defined(_XOPEN_SOURCE_EXTENDED) +#define _XOPEN_SOURCE_EXTENDED 1 +#endif + +#if defined(OMITTED__D_ALL_SOURCE) && !defined(_ALL_SOURCE) +#define _ALL_SOURCE 1 +#endif + +#if defined(OMITTED__D_LARGEFILE_SOURCE_1) && !defined(_LARGEFILE_SOURCE) +#define _LARGEFILE_SOURCE 1 +#endif + + + + +#ifndef UNBOUND_DEBUG +# define NDEBUG +#endif + +#include +#include +#include +#include + +#if STDC_HEADERS +#include +#include +#endif + +#ifdef HAVE_STDINT_H +#include +#endif + +#include + +#if HAVE_SYS_PARAM_H +#include +#endif + +#ifdef HAVE_SYS_SOCKET_H +#include +#endif + +#ifdef HAVE_SYS_UIO_H +#include +#endif + +#ifdef HAVE_NETINET_IN_H +#include +#endif + +#ifdef HAVE_ARPA_INET_H +#include +#endif + +#ifdef HAVE_WINSOCK2_H +#include +#endif + +#ifdef HAVE_WS2TCPIP_H +#include *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Sep 17 17:39:40 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD429767; Tue, 17 Sep 2013 17:39:40 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 811382615; Tue, 17 Sep 2013 17:39:40 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8HHde1n081714; Tue, 17 Sep 2013 17:39:40 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8HHdeuo081713; Tue, 17 Sep 2013 17:39:40 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201309171739.r8HHdeuo081713@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 17 Sep 2013 17:39:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255644 - projects/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.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2013 17:39:40 -0000 Author: nwhitehorn Date: Tue Sep 17 17:39:40 2013 New Revision: 255644 URL: http://svnweb.freebsd.org/changeset/base/255644 Log: Branch merged in r255643. Deleted: projects/pseries/ From owner-svn-src-projects@FreeBSD.ORG Wed Sep 18 03:51:50 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 24B5C931; Wed, 18 Sep 2013 03:51:50 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 131E1299A; Wed, 18 Sep 2013 03:51:50 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8I3pnrH006908; Wed, 18 Sep 2013 03:51:49 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8I3pnCl006907; Wed, 18 Sep 2013 03:51:49 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309180351.r8I3pnCl006907@svn.freebsd.org> From: Neel Natu Date: Wed, 18 Sep 2013 03:51:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255661 - projects/bhyve_npt_pmap/sys/amd64/vmm X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Sep 2013 03:51:50 -0000 Author: neel Date: Wed Sep 18 03:51:49 2013 New Revision: 255661 URL: http://svnweb.freebsd.org/changeset/base/255661 Log: Destroy the iommu domain in vm_destroy() in preference to doing it when the last passthru device is detached from the virtual machine. There are code paths in vm_assign_pptdev() where we can return after creating the iommu domain but before the first passthru device is successfully attached. In this case there aren't any passthru devices attached to the virtual machine and therefore vm_unassign_pptdev() will not be called and the iommu domain is not destroyed. This is very easy to reproduce by trying to attach a non-existent passthru device to the virtual machine and then destroying the virtual machine. Modified: projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Modified: projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Wed Sep 18 00:33:24 2013 (r255660) +++ projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Wed Sep 18 03:51:49 2013 (r255661) @@ -331,7 +331,8 @@ vm_destroy(struct vm *vm) ppt_unassign_all(vm); - KASSERT(vm->iommu == NULL, ("vm_destroy: iommu should be NULL")); + if (vm->iommu != NULL) + iommu_destroy_domain(vm->iommu); for (i = 0; i < vm->num_mem_segs; i++) vm_free_mem_seg(vm, &vm->mem_segs[i]); @@ -564,8 +565,6 @@ vm_unassign_pptdev(struct vm *vm, int bu if (ppt_num_devices(vm) == 0) { vm_iommu_unmap(vm); vm_gpa_unwire(vm); - iommu_destroy_domain(vm->iommu); - vm->iommu = NULL; } return (0); } From owner-svn-src-projects@FreeBSD.ORG Wed Sep 18 17:18:20 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id B249AE50; Wed, 18 Sep 2013 17:18:20 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8E7FB287C; Wed, 18 Sep 2013 17:18:20 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8IHIKh8032553; Wed, 18 Sep 2013 17:18:20 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8IHIKOn032549; Wed, 18 Sep 2013 17:18:20 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309181718.r8IHIKOn032549@svn.freebsd.org> From: Neel Natu Date: Wed, 18 Sep 2013 17:18:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255669 - in projects/bhyve_npt_pmap/sys/amd64: amd64 vmm vmm/intel X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Sep 2013 17:18:20 -0000 Author: neel Date: Wed Sep 18 17:18:19 2013 New Revision: 255669 URL: http://svnweb.freebsd.org/changeset/base/255669 Log: Make multi-line KASSERTs style(9) compliant by using 4 spaces to indent the continuation lines. Pointed out by: alc@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c projects/bhyve_npt_pmap/sys/amd64/vmm/intel/vmx.c projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 16:39:01 2013 (r255668) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 17:18:19 2013 (r255669) @@ -1064,7 +1064,7 @@ pmap_swap_pat(pmap_t pmap, pt_entry_t en case PT_X86: /* Verify that both PAT bits are not set at the same time */ KASSERT((entry & x86_pat_bits) != x86_pat_bits, - ("Invalid PAT bits in entry %#lx", entry)); + ("Invalid PAT bits in entry %#lx", entry)); /* Swap the PAT bits if one of them is set */ if ((entry & x86_pat_bits) != 0) @@ -1278,7 +1278,7 @@ pmap_invalidate_ept(pmap_t pmap) { KASSERT(!CPU_ISSET(curcpu, &pmap->pm_active), - ("pmap_invalidate_ept: absurd pm_active")); + ("pmap_invalidate_ept: absurd pm_active")); /* * The TLB mappings associated with a vcpu context are not @@ -2738,7 +2738,8 @@ reclaim_pv_chunk(pmap_t locked_pmap, str m = PHYS_TO_VM_PAGE(tpte & PG_FRAME); if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((tpte & PG_RO) == 0, - ("readonly modified PTE %#lx", tpte)); + ("readonly modified PTE %#lx", + tpte)); vm_page_dirty(m); } if ((tpte & PG_A) != 0) @@ -3450,7 +3451,7 @@ pmap_remove_pde(pmap_t pmap, pd_entry_t va < eva; va += PAGE_SIZE, m++) { if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((oldpde & PG_RO) == 0, - ("readonly modified PDE %#lx", oldpde)); + ("readonly modified PDE %#lx", oldpde)); vm_page_dirty(m); } if (oldpde & PG_A) @@ -3500,7 +3501,7 @@ pmap_remove_pte(pmap_t pmap, pt_entry_t m = PHYS_TO_VM_PAGE(oldpte & PG_FRAME); if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((oldpte & PG_RO) == 0, - ("readonly modified PTE %#lx", oldpte)); + ("readonly modified PTE %#lx", oldpte)); vm_page_dirty(m); } if (oldpte & PG_A) @@ -3750,7 +3751,7 @@ small_mappings: */ if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((tpte & PG_RO) == 0, - ("readonly modified PTE %#lx", tpte)); + ("readonly modified PTE %#lx", tpte)); vm_page_dirty(m); } pmap_unuse_pt(pmap, pv->pv_va, *pde, &free); @@ -3792,7 +3793,7 @@ retry: va < eva; va += PAGE_SIZE, m++) if ((oldpde & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((oldpde & PG_RO) == 0, - ("readonly modified PDE %#lx", oldpde)); + ("readonly modified PDE %#lx", oldpde)); vm_page_dirty(m); } } @@ -3931,8 +3932,8 @@ retry: if ((pbits & (PG_MANAGED | PG_M | PG_RW)) == (PG_MANAGED | PG_M | PG_RW)) { KASSERT((pbits & PG_RO) == 0, - ("readonly modified PTE %#lx", - pbits)); + ("readonly modified PTE %#lx", + pbits)); m = PHYS_TO_VM_PAGE(pbits & PG_FRAME); vm_page_dirty(m); } @@ -4027,8 +4028,8 @@ setpte: } if ((oldpte & (PG_M | PG_RW)) == PG_RW) { KASSERT(!pmap_emulate_ad_bits(pmap), - ("invalid RW/M bits for dirty bit " - "emulation %#lx", oldpte)); + ("invalid RW/M bits for dirty bit emulation %#lx", + oldpte)); /* * When PG_M is already clear, PG_RW can be cleared * without a TLB invalidation. @@ -4298,8 +4299,8 @@ validate: if ((origpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((origpte & PG_RO) == 0, - ("readonly modified PTE %#lx", - origpte)); + ("readonly modified PTE %#lx", + origpte)); vm_page_dirty(om); } if ((origpte & PG_A) != 0) @@ -5269,8 +5270,8 @@ pmap_remove_pages(pmap_t pmap) */ if ((tpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((tpte & PG_RO) == 0, - ("readonly modified PTE %#lx", - tpte)); + ("readonly modified PTE %#lx", + tpte)); if (superpage) { for (mt = m; mt < &m[NBPDR / PAGE_SIZE]; mt++) vm_page_dirty(mt); @@ -5558,7 +5559,7 @@ retry: goto retry; if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { KASSERT((oldpte & PG_RO) == 0, - ("readonly modified PTE %#lx", oldpte)); + ("readonly modified PTE %#lx", oldpte)); vm_page_dirty(m); } pmap_invalidate_page(pmap, pv->pv_va); @@ -5986,8 +5987,8 @@ small_mappings: ("modified readonly pte %#lx", oldpte)); } else { KASSERT((oldpte & (PG_M | PG_RW)) == 0, - ("invalid RW/M bits for dirty bit " - "emulation %#lx", oldpte)); + ("invalid RW/M bits for dirty bit " + "emulation %#lx", oldpte)); } } if ((oldpte & (PG_M | PG_RW)) == (PG_M | PG_RW)) { @@ -6678,8 +6679,8 @@ pmap_emulate_dirty(pmap_t pmap, vm_offse pte = pmap_pde_to_pte(pde, va); if ((*pte & (PG_V | PG_RO)) == PG_V) { KASSERT((*pte & PG_A) != 0, - ("pmap_emulate_dirty: accessed and valid bits " - "mismatch %#lx", *pte)); + ("pmap_emulate_dirty: accessed and valid bits " + "mismatch %#lx", *pte)); atomic_set_long(pte, PG_M | PG_RW); rv = 0; /* success */ Modified: projects/bhyve_npt_pmap/sys/amd64/vmm/intel/vmx.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/vmm/intel/vmx.c Wed Sep 18 16:39:01 2013 (r255668) +++ projects/bhyve_npt_pmap/sys/amd64/vmm/intel/vmx.c Wed Sep 18 17:18:19 2013 (r255669) @@ -1543,9 +1543,9 @@ vmx_run(void *arg, int vcpu, register_t vmexit = vm_exitinfo(vmx->vm, vcpu); KASSERT(vmxctx->pmap == pmap, - ("pmap %p different than ctx pmap %p", pmap, vmxctx->pmap)); + ("pmap %p different than ctx pmap %p", pmap, vmxctx->pmap)); KASSERT(vmxctx->eptp == vmx->eptp, - ("eptp %p different than ctx eptp %#lx", eptp, vmxctx->eptp)); + ("eptp %p different than ctx eptp %#lx", eptp, vmxctx->eptp)); /* * XXX Can we avoid doing this every time we do a vm run? Modified: projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Wed Sep 18 16:39:01 2013 (r255668) +++ projects/bhyve_npt_pmap/sys/amd64/vmm/vmm.c Wed Sep 18 17:18:19 2013 (r255669) @@ -462,8 +462,8 @@ vm_gpa_unwire(struct vm *vm) seg->gpa, seg->gpa + seg->len, VM_MAP_WIRE_USER | VM_MAP_WIRE_NOHOLES); KASSERT(rv == KERN_SUCCESS, ("vm(%s) memory segment " - "%#lx/%ld could not be unwired: %d", - vm_name(vm), seg->gpa, seg->len, rv)); + "%#lx/%ld could not be unwired: %d", + vm_name(vm), seg->gpa, seg->len, rv)); seg->wired = FALSE; } @@ -514,16 +514,15 @@ vm_iommu_modify(struct vm *vm, boolean_t for (i = 0; i < vm->num_mem_segs; i++) { seg = &vm->mem_segs[i]; - KASSERT(seg->wired, - ("vm(%s) memory segment %#lx/%ld not wired", - vm_name(vm), seg->gpa, seg->len)); - + KASSERT(seg->wired, ("vm(%s) memory segment %#lx/%ld not wired", + vm_name(vm), seg->gpa, seg->len)); + gpa = seg->gpa; while (gpa < seg->gpa + seg->len) { vp = vm_gpa_hold(vm, gpa, PAGE_SIZE, VM_PROT_WRITE, &cookie); KASSERT(vp != NULL, ("vm(%s) could not map gpa %#lx", - vm_name(vm), gpa)); + vm_name(vm), gpa)); vm_gpa_release(cookie); @@ -584,7 +583,7 @@ vm_assign_pptdev(struct vm *vm, int bus, */ if (ppt_num_devices(vm) == 0) { KASSERT(vm->iommu == NULL, - ("vm_assign_pptdev: iommu must be NULL")); + ("vm_assign_pptdev: iommu must be NULL")); maxaddr = vmm_mem_maxaddr(); vm->iommu = iommu_create_domain(maxaddr); @@ -906,10 +905,9 @@ vm_handle_paging(struct vm *vm, int vcpu vme = &vcpu->exitinfo; ftype = vme->u.paging.fault_type; - KASSERT(ftype == VM_PROT_WRITE || - ftype == VM_PROT_EXECUTE || - ftype == VM_PROT_READ, - ("vm_handle_paging: invalid fault_type %d", ftype)); + KASSERT(ftype == VM_PROT_READ || + ftype == VM_PROT_WRITE || ftype == VM_PROT_EXECUTE, + ("vm_handle_paging: invalid fault_type %d", ftype)); /* * If the mapping exists then the write fault may be intentional @@ -1007,7 +1005,7 @@ restart: critical_enter(); KASSERT(!CPU_ISSET(curcpu, &pmap->pm_active), - ("vm_run: absurd pm_active")); + ("vm_run: absurd pm_active")); tscval = rdtsc(); From owner-svn-src-projects@FreeBSD.ORG Wed Sep 18 22:26:43 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 0A0BE900; Wed, 18 Sep 2013 22:26:43 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DC7432A4D; Wed, 18 Sep 2013 22:26:42 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8IMQgNK097964; Wed, 18 Sep 2013 22:26:42 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8IMQgTb097944; Wed, 18 Sep 2013 22:26:42 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309182226.r8IMQgTb097944@svn.freebsd.org> From: Neel Natu Date: Wed, 18 Sep 2013 22:26:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255679 - in projects/bhyve_npt_pmap/sys/amd64: amd64 include X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Sep 2013 22:26:43 -0000 Author: neel Date: Wed Sep 18 22:26:41 2013 New Revision: 255679 URL: http://svnweb.freebsd.org/changeset/base/255679 Log: Move the nested PTE bit definitions to pmap.h. Redefine the PG_xx macros that implicitly refer to bits in the x86 PTEs to now refer to them explicitly. Allow code that deals with both regular and nested page table entries to be compiled with a select set of PG_xx macros undefined. This happens because the PG_xx macros define bits that are located at different positions in x86 and nested PTEs. The appropriate bitmask will be determined at runtime depending on the pmap type. Requested by: kib@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/machdep.c projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c projects/bhyve_npt_pmap/sys/amd64/include/pmap.h Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/machdep.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/machdep.c Wed Sep 18 21:15:21 2013 (r255678) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/machdep.c Wed Sep 18 22:26:41 2013 (r255679) @@ -1574,7 +1574,7 @@ getmemsize(caddr_t kmdp, u_int64_t first /* * map page into kernel: valid, read/write,non-cacheable */ - *pte = pa | PG_V | PG_RW | PG_N; + *pte = pa | PG_V | PG_RW | PG_NC_PWT | PG_NC_PCD; invltlb(); tmp = *(int *)ptr; Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 21:15:21 2013 (r255678) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 22:26:41 2013 (r255679) @@ -76,6 +76,8 @@ * SUCH DAMAGE. */ +#define AMD64_NPT_AWARE + #include __FBSDID("$FreeBSD$"); @@ -143,28 +145,6 @@ __FBSDID("$FreeBSD$"); #include #endif -/* Intel EPT bits */ -#define EPT_PG_RD (1 << 0) -#define EPT_PG_WR (1 << 1) -#define EPT_PG_EX (1 << 2) -#define EPT_PG_MEMORY_TYPE(x) ((x) << 3) -#define EPT_PG_IGNORE_PAT (1 << 6) -#define EPT_PG_PS (1 << 7) -#define EPT_PG_A (1 << 8) -#define EPT_PG_M (1 << 9) - -/* - * undef the PG_xx macros that define bits in the regular x86 PTEs that have - * a different position in nested PTEs. - * - * The appropriate bitmask is now calculated at runtime based on the pmap - * type. - */ - -#undef PG_AVAIL1 /* PG_AVAIL1 aliases with EPT_PG_M */ - -#undef PG_G -#define X86_PG_G 0x100 static __inline pt_entry_t pmap_global_bit(pmap_t pmap) { @@ -184,8 +164,6 @@ pmap_global_bit(pmap_t pmap) return (mask); } -#undef PG_A -#define X86_PG_A 0x020 static __inline pt_entry_t pmap_accessed_bit(pmap_t pmap) { @@ -205,8 +183,6 @@ pmap_accessed_bit(pmap_t pmap) return (mask); } -#undef PG_M -#define X86_PG_M 0x040 static __inline pt_entry_t pmap_modified_bit(pmap_t pmap) { @@ -226,18 +202,6 @@ pmap_modified_bit(pmap_t pmap) return (mask); } -#undef PG_PDE_PAT -#define X86_PG_PDE_PAT 0x1000 - -#undef PG_PDE_CACHE -#define X86_PG_PDE_CACHE (X86_PG_PDE_PAT | PG_NC_PWT | PG_NC_PCD) - -#undef PG_PTE_PAT -#define X86_PG_PTE_PAT 0x080 - -#undef PG_PTE_CACHE -#define X86_PG_PTE_CACHE (X86_PG_PTE_PAT | PG_NC_PWT | PG_NC_PCD) - #if !defined(DIAGNOSTIC) #ifdef __GNUC_GNU_INLINE__ #define PMAP_INLINE __attribute__((__gnu_inline__)) inline Modified: projects/bhyve_npt_pmap/sys/amd64/include/pmap.h ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/include/pmap.h Wed Sep 18 21:15:21 2013 (r255678) +++ projects/bhyve_npt_pmap/sys/amd64/include/pmap.h Wed Sep 18 22:26:41 2013 (r255679) @@ -50,34 +50,64 @@ * of the fields not present here and there, depending on a lot of things. */ /* ---- Intel Nomenclature ---- */ -#define PG_V 0x001 /* P Valid */ -#define PG_RW 0x002 /* R/W Read/Write */ -#define PG_U 0x004 /* U/S User/Supervisor */ -#define PG_NC_PWT 0x008 /* PWT Write through */ -#define PG_NC_PCD 0x010 /* PCD Cache disable */ -#define PG_A 0x020 /* A Accessed */ -#define PG_M 0x040 /* D Dirty */ -#define PG_PS 0x080 /* PS Page size (0=4k,1=2M) */ -#define PG_PTE_PAT 0x080 /* PAT PAT index */ -#define PG_G 0x100 /* G Global */ -#define PG_AVAIL1 0x200 /* / Available for system */ -#define PG_AVAIL2 0x400 /* < programmers use */ -#define PG_AVAIL3 0x800 /* \ */ -#define PG_PDE_PAT 0x1000 /* PAT PAT index */ -#define PG_NX (1ul<<63) /* No-execute */ +#define X86_PG_V 0x001 /* P Valid */ +#define X86_PG_RW 0x002 /* R/W Read/Write */ +#define X86_PG_U 0x004 /* U/S User/Supervisor */ +#define X86_PG_NC_PWT 0x008 /* PWT Write through */ +#define X86_PG_NC_PCD 0x010 /* PCD Cache disable */ +#define X86_PG_A 0x020 /* A Accessed */ +#define X86_PG_M 0x040 /* D Dirty */ +#define X86_PG_PS 0x080 /* PS Page size (0=4k,1=2M) */ +#define X86_PG_PTE_PAT 0x080 /* PAT PAT index */ +#define X86_PG_G 0x100 /* G Global */ +#define X86_PG_AVAIL1 0x200 /* / Available for system */ +#define X86_PG_AVAIL2 0x400 /* < programmers use */ +#define X86_PG_AVAIL3 0x800 /* \ */ +#define X86_PG_PDE_PAT 0x1000 /* PAT PAT index */ +#define X86_PG_NX (1ul<<63) /* No-execute */ + +/* Page level cache control fields used to determine the PAT type */ +#define X86_PG_PDE_CACHE (X86_PG_PDE_PAT | X86_PG_NC_PWT | X86_PG_NC_PCD) +#define X86_PG_PTE_CACHE (X86_PG_PTE_PAT | X86_PG_NC_PWT | X86_PG_NC_PCD) /* - * PG_AVAIL1 is available for software use only with the regular x86 PTEs. - * PG_AVAIL2 and PG_AVAIL3 are available in both the regular and nested PTEs. + * Intel extended page table (EPT) bit definitions. */ +#define EPT_PG_RD 0x001 /* R Read */ +#define EPT_PG_WR 0x002 /* W Write */ +#define EPT_PG_EX 0x004 /* X Execute */ +#define EPT_PG_IGNORE_PAT 0x040 /* IPAT Ignore PAT */ +#define EPT_PG_PS 0x080 /* PS Page size */ +#define EPT_PG_A 0x100 /* A Accessed */ +#define EPT_PG_M 0x200 /* D Dirty */ +#define EPT_PG_MEMORY_TYPE(x) ((x) << 3) /* MT Memory Type */ + +/* + * Define the PG_xx macros in terms of the bits on x86 PTEs. + */ +#define PG_V X86_PG_V +#define PG_RW X86_PG_RW +#define PG_U X86_PG_U +#define PG_NC_PWT X86_PG_NC_PWT +#define PG_NC_PCD X86_PG_NC_PCD +#define PG_A X86_PG_A +#define PG_M X86_PG_M +#define PG_PS X86_PG_PS +#define PG_PTE_PAT X86_PG_PTE_PAT +#define PG_G X86_PG_G +#define PG_AVAIL1 X86_PG_AVAIL1 +#define PG_AVAIL2 X86_PG_AVAIL2 +#define PG_AVAIL3 X86_PG_AVAIL3 +#define PG_PDE_PAT X86_PG_PDE_PAT +#define PG_NX X86_PG_NX +#define PG_PDE_CACHE X86_PG_PDE_CACHE +#define PG_PTE_CACHE X86_PG_PTE_CACHE /* Our various interpretations of the above */ #define PG_W PG_AVAIL3 /* "Wired" pseudoflag */ #define PG_MANAGED PG_AVAIL2 #define PG_FRAME (0x000ffffffffff000ul) #define PG_PS_FRAME (0x000fffffffe00000ul) -#define PG_PROT (PG_RW|PG_U) /* all protection bits . */ -#define PG_N (PG_NC_PWT|PG_NC_PCD) /* Non-cacheable */ /* * "readonly" pseudo-flag used in pmap entries that require software emulation @@ -85,10 +115,6 @@ */ #define PG_RO (1ul << 52) -/* Page level cache control fields used to determine the PAT type */ -#define PG_PDE_CACHE (PG_PDE_PAT | PG_NC_PWT | PG_NC_PCD) -#define PG_PTE_CACHE (PG_PTE_PAT | PG_NC_PWT | PG_NC_PCD) - /* * Promotion to a 2MB (PDE) page mapping requires that the corresponding 4KB * (PTE) page mappings have identical settings for the following fields: @@ -106,6 +132,26 @@ #define PGEX_RSV 0x08 /* reserved PTE field is non-zero */ #define PGEX_I 0x10 /* during an instruction fetch */ +/* + * undef the PG_xx macros that define bits in the regular x86 PTEs that + * have a different position in nested PTEs. This is done when compiling + * code that needs to be aware of the differences between regular x86 and + * nested PTEs. + * + * The appropriate bitmask will be calculated at runtime based on the pmap + * type. + */ +#ifdef AMD64_NPT_AWARE +#undef PG_AVAIL1 /* X86_PG_AVAIL1 aliases with EPT_PG_M */ +#undef PG_G +#undef PG_A +#undef PG_M +#undef PG_PDE_PAT +#undef PG_PDE_CACHE +#undef PG_PTE_PAT +#undef PG_PTE_CACHE +#endif + /* * Pte related macros. This is complicated by having to deal with * the sign extension of the 48th bit. From owner-svn-src-projects@FreeBSD.ORG Wed Sep 18 23:02:39 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 01BBFF52; Wed, 18 Sep 2013 23:02:39 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C8EDB2BD6; Wed, 18 Sep 2013 23:02:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8IN2clf019531; Wed, 18 Sep 2013 23:02:38 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8IN2crp019530; Wed, 18 Sep 2013 23:02:38 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309182302.r8IN2crp019530@svn.freebsd.org> From: Neel Natu Date: Wed, 18 Sep 2013 23:02:38 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255680 - projects/bhyve_npt_pmap/sys/amd64/amd64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Sep 2013 23:02:39 -0000 Author: neel Date: Wed Sep 18 23:02:38 2013 New Revision: 255680 URL: http://svnweb.freebsd.org/changeset/base/255680 Log: Replace explicit calls to panic() with KASSERT() instead. Requested by: kib@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 22:26:41 2013 (r255679) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Wed Sep 18 23:02:38 2013 (r255680) @@ -1166,8 +1166,8 @@ pmap_update_pde_invalidate(pmap_t pmap, if (pmap->pm_type == PT_EPT) return; - if (pmap->pm_type != PT_X86) - panic("pmap_update_pde_invalidate: bad type %d", pmap->pm_type); + KASSERT(pmap->pm_type == PT_X86, + ("pmap_update_pde_invalidate: invalid type %d", pmap->pm_type)); PG_G = pmap_global_bit(pmap); @@ -1281,8 +1281,8 @@ pmap_invalidate_page(pmap_t pmap, vm_off return; } - if (pmap->pm_type != PT_X86) - panic("pmap_invalidate_page: invalid type %d", pmap->pm_type); + KASSERT(pmap->pm_type == PT_X86, + ("pmap_invalidate_page: invalid type %d", pmap->pm_type)); sched_pin(); if (pmap == kernel_pmap || !CPU_CMP(&pmap->pm_active, &all_cpus)) { @@ -1359,8 +1359,8 @@ pmap_invalidate_range(pmap_t pmap, vm_of return; } - if (pmap->pm_type != PT_X86) - panic("pmap_invalidate_range: invalid type %d", pmap->pm_type); + KASSERT(pmap->pm_type == PT_X86, + ("pmap_invalidate_range: invalid type %d", pmap->pm_type)); sched_pin(); if (pmap == kernel_pmap || !CPU_CMP(&pmap->pm_active, &all_cpus)) { @@ -1418,8 +1418,8 @@ pmap_invalidate_all(pmap_t pmap) return; } - if (pmap->pm_type != PT_X86) - panic("pmap_invalidate_all: invalid type %d", pmap->pm_type); + KASSERT(pmap->pm_type == PT_X86, + ("pmap_invalidate_all: invalid type %d", pmap->pm_type)); sched_pin(); cpuid = PCPU_GET(cpuid); @@ -5919,11 +5919,11 @@ pmap_clear_modify(vm_page_t m) pte = pmap_pde_to_pte(pde, va); oldpte = *pte; - if ((oldpte & (PG_RO | PG_RW | PG_M)) != - (PG_RW | PG_M)) - panic("inconsistent pte %#lx " - "after demotion from pde " - "%#lx", oldpte, oldpde); + KASSERT((oldpte & (PG_RO|PG_RW|PG_M)) == + (PG_RW | PG_M), + ("inconsistent pte %#lx after " + "demotion from pde %#lx", + oldpte, oldpde)); while (!atomic_cmpset_long(pte, oldpte, oldpte & ~(PG_M | PG_RW))) From owner-svn-src-projects@FreeBSD.ORG Thu Sep 19 01:12:59 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id AD1FF354; Thu, 19 Sep 2013 01:12:59 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9AE98243D; Thu, 19 Sep 2013 01:12:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8J1Cxer089839; Thu, 19 Sep 2013 01:12:59 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8J1CxF0089838; Thu, 19 Sep 2013 01:12:59 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309190112.r8J1CxF0089838@svn.freebsd.org> From: Neel Natu Date: Thu, 19 Sep 2013 01:12:59 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255683 - projects/bhyve_npt_pmap/sys/amd64/amd64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Sep 2013 01:12:59 -0000 Author: neel Date: Thu Sep 19 01:12:59 2013 New Revision: 255683 URL: http://svnweb.freebsd.org/changeset/base/255683 Log: For a nested pmap make sure that its 'pm_cr3' is invalid and thus is guaranteed to trigger an exception if loaded into the host's %cr3. Requested by: kib@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 00:32:07 2013 (r255682) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 01:12:59 2013 (r255683) @@ -2139,6 +2139,7 @@ pmap_pinit_type(pmap_t pmap, enum pmap_t { vm_page_t pml4pg; pt_entry_t PG_A, PG_M; + vm_paddr_t pml4phys; int i; /* @@ -2148,9 +2149,10 @@ pmap_pinit_type(pmap_t pmap, enum pmap_t VM_ALLOC_NOOBJ | VM_ALLOC_WIRED | VM_ALLOC_ZERO)) == NULL) VM_WAIT; - pmap->pm_cr3 = VM_PAGE_TO_PHYS(pml4pg); - pmap->pm_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(pmap->pm_cr3); + pml4phys = VM_PAGE_TO_PHYS(pml4pg); + pmap->pm_pml4 = (pml4_entry_t *)PHYS_TO_DMAP(pml4phys); pmap->pm_pcid = -1; + pmap->pm_cr3 = ~0; /* initialize to an invalid value */ if ((pml4pg->flags & PG_ZERO) == 0) pagezero(pmap->pm_pml4); @@ -2164,6 +2166,8 @@ pmap_pinit_type(pmap_t pmap, enum pmap_t PG_A = pmap_accessed_bit(pmap); PG_M = pmap_modified_bit(pmap); + pmap->pm_cr3 = pml4phys; + /* Wire in kernel global address entries. */ for (i = 0; i < NKPML4E; i++) { pmap->pm_pml4[KPML4BASE + i] = (KPDPphys + ptoa(i)) | From owner-svn-src-projects@FreeBSD.ORG Thu Sep 19 01:55:58 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id BA58BC8F; Thu, 19 Sep 2013 01:55:58 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A83F32712; Thu, 19 Sep 2013 01:55:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8J1twmZ011718; Thu, 19 Sep 2013 01:55:58 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8J1twdN011717; Thu, 19 Sep 2013 01:55:58 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309190155.r8J1twdN011717@svn.freebsd.org> From: Neel Natu Date: Thu, 19 Sep 2013 01:55:58 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255684 - projects/bhyve_npt_pmap/sys/amd64/amd64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Sep 2013 01:55:58 -0000 Author: neel Date: Thu Sep 19 01:55:58 2013 New Revision: 255684 URL: http://svnweb.freebsd.org/changeset/base/255684 Log: If the page fault was triggered by reserved bits being set in the page table entry then panic immediately. Requested by: kib@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c Thu Sep 19 01:12:59 2013 (r255683) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/trap.c Thu Sep 19 01:55:58 2013 (r255684) @@ -734,6 +734,14 @@ trap_pfault(frame, usermode) } /* + * If the trap was caused by errant bits in the PTE then panic. + */ + if (frame->tf_err & PGEX_RSV) { + trap_fatal(frame, eva); + return (-1); + } + + /* * PGEX_I is defined only if the execute disable bit capability is * supported and enabled. */ @@ -822,10 +830,11 @@ trap_fatal(frame, eva) #endif if (type == T_PAGEFLT) { printf("fault virtual address = 0x%lx\n", eva); - printf("fault code = %s %s %s, %s\n", + printf("fault code = %s %s %s%s, %s\n", code & PGEX_U ? "user" : "supervisor", code & PGEX_W ? "write" : "read", code & PGEX_I ? "instruction" : "data", + code & PGEX_RSV ? " rsv" : "", code & PGEX_P ? "protection violation" : "page not present"); } printf("instruction pointer = 0x%lx:0x%lx\n", From owner-svn-src-projects@FreeBSD.ORG Thu Sep 19 02:41:01 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 4792CAC5; Thu, 19 Sep 2013 02:41:01 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 250AB2A13; Thu, 19 Sep 2013 02:41:01 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8J2f1k2036981; Thu, 19 Sep 2013 02:41:01 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8J2f13w036980; Thu, 19 Sep 2013 02:41:01 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309190241.r8J2f13w036980@svn.freebsd.org> From: Neel Natu Date: Thu, 19 Sep 2013 02:41:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255687 - projects/bhyve_npt_pmap/sys/amd64/amd64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Sep 2013 02:41:01 -0000 Author: neel Date: Thu Sep 19 02:41:00 2013 New Revision: 255687 URL: http://svnweb.freebsd.org/changeset/base/255687 Log: The 'kernel_pmap' is known to be of type PT_X86 and thus we can directly use the X86_PG_G, X86_PG_A and X86_PG_M macros when working with its PTEs. Requested by: alc@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 02:34:52 2013 (r255686) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 02:41:00 2013 (r255687) @@ -617,11 +617,6 @@ create_pagetables(vm_paddr_t *firstaddr) pd_entry_t *pd_p; pdp_entry_t *pdp_p; pml4_entry_t *p4_p; - pt_entry_t PG_G, PG_A, PG_M; - - PG_G = pmap_global_bit(kernel_pmap); - PG_A = pmap_accessed_bit(kernel_pmap); - PG_M = pmap_modified_bit(kernel_pmap); /* Allocate page table pages for the direct map */ ndmpdp = (ptoa(Maxmem) + NBPDP - 1) >> PDPSHIFT; @@ -671,7 +666,7 @@ create_pagetables(vm_paddr_t *firstaddr) /* XXX not fully used, underneath 2M pages */ pt_p = (pt_entry_t *)KPTphys; for (i = 0; ptoa(i) < *firstaddr; i++) - pt_p[i] = ptoa(i) | PG_RW | PG_V | PG_G; + pt_p[i] = ptoa(i) | PG_RW | PG_V | X86_PG_G; /* Now map the page tables at their location within PTmap */ pd_p = (pd_entry_t *)KPDphys; @@ -681,7 +676,7 @@ create_pagetables(vm_paddr_t *firstaddr) /* Map from zero to end of allocations under 2M pages */ /* This replaces some of the KPTphys entries above */ for (i = 0; (i << PDRSHIFT) < *firstaddr; i++) - pd_p[i] = (i << PDRSHIFT) | PG_RW | PG_V | PG_PS | PG_G; + pd_p[i] = (i << PDRSHIFT) | PG_RW | PG_V | PG_PS | X86_PG_G; /* And connect up the PD to the PDP (leaving room for L4 pages) */ pdp_p = (pdp_entry_t *)(KPDPphys + ptoa(KPML4I - KPML4BASE)); @@ -700,15 +695,15 @@ create_pagetables(vm_paddr_t *firstaddr) for (i = NPDEPG * ndm1g, j = 0; i < NPDEPG * ndmpdp; i++, j++) { pd_p[j] = (vm_paddr_t)i << PDRSHIFT; /* Preset PG_M and PG_A because demotion expects it. */ - pd_p[j] |= PG_RW | PG_V | PG_PS | PG_G | - PG_M | PG_A; + pd_p[j] |= PG_RW | PG_V | PG_PS | X86_PG_G | + X86_PG_M | X86_PG_A; } pdp_p = (pdp_entry_t *)DMPDPphys; for (i = 0; i < ndm1g; i++) { pdp_p[i] = (vm_paddr_t)i << PDPSHIFT; /* Preset PG_M and PG_A because demotion expects it. */ - pdp_p[i] |= PG_RW | PG_V | PG_PS | PG_G | - PG_M | PG_A; + pdp_p[i] |= PG_RW | PG_V | PG_PS | X86_PG_G | + X86_PG_M | X86_PG_A; } for (j = 0; i < ndmpdp; i++, j++) { pdp_p[i] = DMPDphys + ptoa(j); @@ -1843,25 +1838,21 @@ pmap_kextract(vm_offset_t va) PMAP_INLINE void pmap_kenter(vm_offset_t va, vm_paddr_t pa) { - pt_entry_t *pte, PG_G; + pt_entry_t *pte; - PG_G = pmap_global_bit(kernel_pmap); - pte = vtopte(va); - pte_store(pte, pa | PG_RW | PG_V | PG_G); + pte_store(pte, pa | PG_RW | PG_V | X86_PG_G); } static __inline void pmap_kenter_attr(vm_offset_t va, vm_paddr_t pa, int mode) { - pt_entry_t *pte, PG_G; + pt_entry_t *pte; int cache_bits; - PG_G = pmap_global_bit(kernel_pmap); - pte = vtopte(va); cache_bits = pmap_cache_bits(kernel_pmap, mode, 0); - pte_store(pte, pa | PG_RW | PG_V | PG_G | cache_bits); + pte_store(pte, pa | PG_RW | PG_V | X86_PG_G | cache_bits); } /* @@ -1908,12 +1899,10 @@ pmap_map(vm_offset_t *virt, vm_paddr_t s void pmap_qenter(vm_offset_t sva, vm_page_t *ma, int count) { - pt_entry_t *endpte, oldpte, pa, *pte, PG_G; - vm_page_t m; - int cache_bits, PG_PTE_CACHE; - PG_G = pmap_global_bit(kernel_pmap); - PG_PTE_CACHE = pmap_cache_mask(kernel_pmap, 0); + pt_entry_t *endpte, oldpte, pa, *pte; + vm_page_t m; + int cache_bits; oldpte = 0; pte = vtopte(sva); @@ -1922,9 +1911,9 @@ pmap_qenter(vm_offset_t sva, vm_page_t * m = *ma++; cache_bits = pmap_cache_bits(kernel_pmap, m->md.pat_mode, 0); pa = VM_PAGE_TO_PHYS(m) | cache_bits; - if ((*pte & (PG_FRAME | PG_PTE_CACHE)) != pa) { + if ((*pte & (PG_FRAME | X86_PG_PTE_CACHE)) != pa) { oldpte |= *pte; - pte_store(pte, pa | PG_G | PG_RW | PG_V); + pte_store(pte, pa | X86_PG_G | PG_RW | PG_V); } pte++; } @@ -2500,14 +2489,10 @@ pmap_growkernel(vm_offset_t addr) vm_paddr_t paddr; vm_page_t nkpg; pd_entry_t *pde, newpdir; - pt_entry_t PG_A, PG_M; pdp_entry_t *pdpe; mtx_assert(&kernel_map->system_mtx, MA_OWNED); - PG_A = pmap_accessed_bit(kernel_pmap); - PG_M = pmap_accessed_bit(kernel_pmap); - /* * Return if "addr" is within the range of kernel page table pages * that were preallocated during pmap bootstrap. Moreover, leave @@ -2542,7 +2527,7 @@ pmap_growkernel(vm_offset_t addr) pmap_zero_page(nkpg); paddr = VM_PAGE_TO_PHYS(nkpg); *pdpe = (pdp_entry_t) - (paddr | PG_V | PG_RW | PG_A | PG_M); + (paddr | PG_V | PG_RW | X86_PG_A | X86_PG_M); continue; /* try again */ } pde = pmap_pdpe_to_pde(pdpe, kernel_vm_end); @@ -2563,7 +2548,7 @@ pmap_growkernel(vm_offset_t addr) if ((nkpg->flags & PG_ZERO) == 0) pmap_zero_page(nkpg); paddr = VM_PAGE_TO_PHYS(nkpg); - newpdir = (pd_entry_t) (paddr | PG_V | PG_RW | PG_A | PG_M); + newpdir = paddr | PG_V | PG_RW | X86_PG_A | X86_PG_M; pde_store(pde, newpdir); kernel_vm_end = (kernel_vm_end + NBPDR) & ~PDRMASK; @@ -6266,7 +6251,6 @@ pmap_change_attr_locked(vm_offset_t va, pd_entry_t *pde; pt_entry_t *pte; int cache_bits_pte, cache_bits_pde, error; - int PG_PDE_CACHE, PG_PTE_CACHE; boolean_t changed; PMAP_LOCK_ASSERT(kernel_pmap, MA_OWNED); @@ -6281,8 +6265,6 @@ pmap_change_attr_locked(vm_offset_t va, if (base < DMAP_MIN_ADDRESS) return (EINVAL); - PG_PDE_CACHE = pmap_cache_mask(kernel_pmap, 1); - PG_PTE_CACHE = pmap_cache_mask(kernel_pmap, 0); cache_bits_pde = pmap_cache_bits(kernel_pmap, mode, 1); cache_bits_pte = pmap_cache_bits(kernel_pmap, mode, 0); changed = FALSE; @@ -6301,7 +6283,7 @@ pmap_change_attr_locked(vm_offset_t va, * memory type, then we need not demote this page. Just * increment tmpva to the next 1GB page frame. */ - if ((*pdpe & PG_PDE_CACHE) == cache_bits_pde) { + if ((*pdpe & X86_PG_PDE_CACHE) == cache_bits_pde) { tmpva = trunc_1gpage(tmpva) + NBPDP; continue; } @@ -6328,7 +6310,7 @@ pmap_change_attr_locked(vm_offset_t va, * memory type, then we need not demote this page. Just * increment tmpva to the next 2MB page frame. */ - if ((*pde & PG_PDE_CACHE) == cache_bits_pde) { + if ((*pde & X86_PG_PDE_CACHE) == cache_bits_pde) { tmpva = trunc_2mpage(tmpva) + NBPDR; continue; } @@ -6361,9 +6343,9 @@ pmap_change_attr_locked(vm_offset_t va, for (tmpva = base; tmpva < base + size; ) { pdpe = pmap_pdpe(kernel_pmap, tmpva); if (*pdpe & PG_PS) { - if ((*pdpe & PG_PDE_CACHE) != cache_bits_pde) { + if ((*pdpe & X86_PG_PDE_CACHE) != cache_bits_pde) { pmap_pde_attr(pdpe, cache_bits_pde, - PG_PDE_CACHE); + X86_PG_PDE_CACHE); changed = TRUE; } if (tmpva >= VM_MIN_KERNEL_ADDRESS) { @@ -6390,9 +6372,9 @@ pmap_change_attr_locked(vm_offset_t va, } pde = pmap_pdpe_to_pde(pdpe, tmpva); if (*pde & PG_PS) { - if ((*pde & PG_PDE_CACHE) != cache_bits_pde) { + if ((*pde & X86_PG_PDE_CACHE) != cache_bits_pde) { pmap_pde_attr(pde, cache_bits_pde, - PG_PDE_CACHE); + X86_PG_PDE_CACHE); changed = TRUE; } if (tmpva >= VM_MIN_KERNEL_ADDRESS) { @@ -6417,9 +6399,9 @@ pmap_change_attr_locked(vm_offset_t va, tmpva = trunc_2mpage(tmpva) + NBPDR; } else { pte = pmap_pde_to_pte(pde, tmpva); - if ((*pte & PG_PTE_CACHE) != cache_bits_pte) { + if ((*pte & X86_PG_PTE_CACHE) != cache_bits_pte) { pmap_pte_attr(pte, cache_bits_pte, - PG_PTE_CACHE); + X86_PG_PTE_CACHE); changed = TRUE; } if (tmpva >= VM_MIN_KERNEL_ADDRESS) { From owner-svn-src-projects@FreeBSD.ORG Thu Sep 19 16:22:06 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7020ED6D; Thu, 19 Sep 2013 16:22:06 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5D6FE293F; Thu, 19 Sep 2013 16:22:06 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8JGM6T2076375; Thu, 19 Sep 2013 16:22:06 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8JGM6qF076374; Thu, 19 Sep 2013 16:22:06 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309191622.r8JGM6qF076374@svn.freebsd.org> From: Neel Natu Date: Thu, 19 Sep 2013 16:22:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255706 - projects/bhyve_npt_pmap/sys/amd64/amd64 X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Sep 2013 16:22:06 -0000 Author: neel Date: Thu Sep 19 16:22:05 2013 New Revision: 255706 URL: http://svnweb.freebsd.org/changeset/base/255706 Log: Fold in check for 'pg_ps_enabled' under 'pmap_ps_enabled()'. Requested by: kib@ Discussed with: alc@ Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Modified: projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c ============================================================================== --- projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 14:41:10 2013 (r255705) +++ projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c Thu Sep 19 16:22:05 2013 (r255706) @@ -1113,7 +1113,7 @@ static __inline boolean_t pmap_ps_enabled(pmap_t pmap) { - return ((pmap->pm_flags & PMAP_PDE_SUPERPAGE) != 0); + return (pg_ps_enabled && (pmap->pm_flags & PMAP_PDE_SUPERPAGE) != 0); } static void @@ -4297,7 +4297,7 @@ unchanged: * populated, then attempt promotion. */ if ((mpte == NULL || mpte->wire_count == NPTEPG) && - pg_ps_enabled && pmap_ps_enabled(pmap) && + pmap_ps_enabled(pmap) && (m->flags & PG_FICTITIOUS) == 0 && vm_reserv_level_iffullpop(m) == 0) pmap_promote_pde(pmap, pde, va, &lock); @@ -4422,7 +4422,7 @@ pmap_enter_object(pmap_t pmap, vm_offset va = start + ptoa(diff); if ((va & PDRMASK) == 0 && va + NBPDR <= end && (VM_PAGE_TO_PHYS(m) & PDRMASK) == 0 && - pg_ps_enabled && pmap_ps_enabled(pmap) && + pmap_ps_enabled(pmap) && vm_reserv_level_iffullpop(m) == 0 && pmap_enter_pde(pmap, va, m, prot, &lock)) m = &m[NBPDR / PAGE_SIZE - 1]; @@ -6647,7 +6647,7 @@ pmap_emulate_dirty(pmap_t pmap, vm_offse m = PHYS_TO_VM_PAGE(*pte & PG_FRAME); if ((mpte == NULL || mpte->wire_count == NPTEPG) && - pg_ps_enabled && pmap_ps_enabled(pmap) && + pmap_ps_enabled(pmap) && (m->flags & PG_FICTITIOUS) == 0 && vm_reserv_level_iffullpop(m) == 0) pmap_promote_pde(pmap, pde, va, &lock); From owner-svn-src-projects@FreeBSD.ORG Fri Sep 20 00:46:38 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 7FC12667; Fri, 20 Sep 2013 00:46:38 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6871F236C; Fri, 20 Sep 2013 00:46:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8K0kc3S044328; Fri, 20 Sep 2013 00:46:38 GMT (envelope-from grehan@svn.freebsd.org) Received: (from grehan@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8K0kXwf044285; Fri, 20 Sep 2013 00:46:33 GMT (envelope-from grehan@svn.freebsd.org) Message-Id: <201309200046.r8K0kXwf044285@svn.freebsd.org> From: Peter Grehan Date: Fri, 20 Sep 2013 00:46:33 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255720 - in projects/bhyve_svm: . bin/chflags bin/ls bin/pkill bin/ps bin/sh cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/cmd/ztest cddl/contrib/opensolaris/common/ctf c... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Sep 2013 00:46:38 -0000 Author: grehan Date: Fri Sep 20 00:46:29 2013 New Revision: 255720 URL: http://svnweb.freebsd.org/changeset/base/255720 Log: IFC @ r255692 Comment out IA32_MISC_ENABLE MSR access - this doesn't exist on AMD. Need to sort out how arch-specific MSRs will be handled. Added: projects/bhyve_svm/cddl/lib/libdtrace/ip.d - copied unchanged from r255692, head/cddl/lib/libdtrace/ip.d projects/bhyve_svm/cddl/lib/libdtrace/tcp.d - copied unchanged from r255692, head/cddl/lib/libdtrace/tcp.d projects/bhyve_svm/cddl/lib/libdtrace/udp.d - copied unchanged from r255692, head/cddl/lib/libdtrace/udp.d projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-verify.8 - copied unchanged from r255692, head/contrib/bind9/bin/dnssec/dnssec-verify.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-verify.c - copied unchanged from r255692, head/contrib/bind9/bin/dnssec/dnssec-verify.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-verify.docbook - copied unchanged from r255692, head/contrib/bind9/bin/dnssec/dnssec-verify.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-verify.html - copied unchanged from r255692, head/contrib/bind9/bin/dnssec/dnssec-verify.html projects/bhyve_svm/contrib/bind9/bin/named/bind9.ver3.xsl - copied unchanged from r255692, head/contrib/bind9/bin/named/bind9.ver3.xsl projects/bhyve_svm/contrib/bind9/bin/named/bind9.ver3.xsl.h - copied unchanged from r255692, head/contrib/bind9/bin/named/bind9.ver3.xsl.h projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-verify.html - copied unchanged from r255692, head/contrib/bind9/doc/arm/man.dnssec-verify.html projects/bhyve_svm/contrib/bind9/lib/dns/clientinfo.c - copied unchanged from r255692, head/contrib/bind9/lib/dns/clientinfo.c projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/clientinfo.h - copied unchanged from r255692, head/contrib/bind9/lib/dns/include/dns/clientinfo.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/update.h - copied unchanged from r255692, head/contrib/bind9/lib/dns/include/dns/update.h projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/naptr_35.c - copied unchanged from r255692, head/contrib/bind9/lib/dns/rdata/generic/naptr_35.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/naptr_35.h - copied unchanged from r255692, head/contrib/bind9/lib/dns/rdata/generic/naptr_35.h projects/bhyve_svm/contrib/bind9/lib/dns/update.c - copied unchanged from r255692, head/contrib/bind9/lib/dns/update.c projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/pool.h - copied unchanged from r255692, head/contrib/bind9/lib/isc/include/isc/pool.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/queue.h - copied unchanged from r255692, head/contrib/bind9/lib/isc/include/isc/queue.h projects/bhyve_svm/contrib/bind9/lib/isc/pool.c - copied unchanged from r255692, head/contrib/bind9/lib/isc/pool.c projects/bhyve_svm/contrib/bmake/unit-tests/sunshcmd - copied unchanged from r255692, head/contrib/bmake/unit-tests/sunshcmd projects/bhyve_svm/contrib/ipfilter/BSD/upgrade - copied unchanged from r255692, head/contrib/ipfilter/BSD/upgrade projects/bhyve_svm/contrib/ipfilter/WhatsNew50.txt - copied unchanged from r255692, head/contrib/ipfilter/WhatsNew50.txt projects/bhyve_svm/contrib/ipfilter/arc4random.c - copied unchanged from r255692, head/contrib/ipfilter/arc4random.c projects/bhyve_svm/contrib/ipfilter/genmask.c - copied unchanged from r255692, head/contrib/ipfilter/genmask.c projects/bhyve_svm/contrib/ipfilter/ip_dstlist.c - copied unchanged from r255692, head/contrib/ipfilter/ip_dstlist.c projects/bhyve_svm/contrib/ipfilter/ip_dstlist.h - copied unchanged from r255692, head/contrib/ipfilter/ip_dstlist.h projects/bhyve_svm/contrib/ipfilter/ip_fil_compat.c - copied unchanged from r255692, head/contrib/ipfilter/ip_fil_compat.c projects/bhyve_svm/contrib/ipfilter/ipf_rb.h - copied unchanged from r255692, head/contrib/ipfilter/ipf_rb.h projects/bhyve_svm/contrib/ipfilter/lib/allocmbt.c - copied unchanged from r255692, head/contrib/ipfilter/lib/allocmbt.c projects/bhyve_svm/contrib/ipfilter/lib/assigndefined.c - copied unchanged from r255692, head/contrib/ipfilter/lib/assigndefined.c projects/bhyve_svm/contrib/ipfilter/lib/connecttcp.c - copied unchanged from r255692, head/contrib/ipfilter/lib/connecttcp.c projects/bhyve_svm/contrib/ipfilter/lib/dupmbt.c - copied unchanged from r255692, head/contrib/ipfilter/lib/dupmbt.c projects/bhyve_svm/contrib/ipfilter/lib/familyname.c - copied unchanged from r255692, head/contrib/ipfilter/lib/familyname.c projects/bhyve_svm/contrib/ipfilter/lib/findword.c - copied unchanged from r255692, head/contrib/ipfilter/lib/findword.c projects/bhyve_svm/contrib/ipfilter/lib/freembt.c - copied unchanged from r255692, head/contrib/ipfilter/lib/freembt.c projects/bhyve_svm/contrib/ipfilter/lib/ftov.c - copied unchanged from r255692, head/contrib/ipfilter/lib/ftov.c projects/bhyve_svm/contrib/ipfilter/lib/geticmptype.c - copied unchanged from r255692, head/contrib/ipfilter/lib/geticmptype.c projects/bhyve_svm/contrib/ipfilter/lib/icmptypename.c - copied unchanged from r255692, head/contrib/ipfilter/lib/icmptypename.c projects/bhyve_svm/contrib/ipfilter/lib/icmptypes.c - copied unchanged from r255692, head/contrib/ipfilter/lib/icmptypes.c projects/bhyve_svm/contrib/ipfilter/lib/interror.c - copied unchanged from r255692, head/contrib/ipfilter/lib/interror.c projects/bhyve_svm/contrib/ipfilter/lib/ipf_perror.c - copied unchanged from r255692, head/contrib/ipfilter/lib/ipf_perror.c projects/bhyve_svm/contrib/ipfilter/lib/load_dstlist.c - copied unchanged from r255692, head/contrib/ipfilter/lib/load_dstlist.c projects/bhyve_svm/contrib/ipfilter/lib/load_dstlistnode.c - copied unchanged from r255692, head/contrib/ipfilter/lib/load_dstlistnode.c projects/bhyve_svm/contrib/ipfilter/lib/mb_hexdump.c - copied unchanged from r255692, head/contrib/ipfilter/lib/mb_hexdump.c projects/bhyve_svm/contrib/ipfilter/lib/msgdsize.c - copied unchanged from r255692, head/contrib/ipfilter/lib/msgdsize.c projects/bhyve_svm/contrib/ipfilter/lib/parsefields.c - copied unchanged from r255692, head/contrib/ipfilter/lib/parsefields.c projects/bhyve_svm/contrib/ipfilter/lib/parseipfexpr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/parseipfexpr.c projects/bhyve_svm/contrib/ipfilter/lib/parsewhoisline.c - copied unchanged from r255692, head/contrib/ipfilter/lib/parsewhoisline.c projects/bhyve_svm/contrib/ipfilter/lib/poolio.c - copied unchanged from r255692, head/contrib/ipfilter/lib/poolio.c projects/bhyve_svm/contrib/ipfilter/lib/prependmbt.c - copied unchanged from r255692, head/contrib/ipfilter/lib/prependmbt.c projects/bhyve_svm/contrib/ipfilter/lib/printactiveaddr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printactiveaddr.c projects/bhyve_svm/contrib/ipfilter/lib/printaddr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printaddr.c projects/bhyve_svm/contrib/ipfilter/lib/printdstl_live.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printdstl_live.c projects/bhyve_svm/contrib/ipfilter/lib/printdstlist.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printdstlist.c projects/bhyve_svm/contrib/ipfilter/lib/printdstlistdata.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printdstlistdata.c projects/bhyve_svm/contrib/ipfilter/lib/printdstlistnode.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printdstlistnode.c projects/bhyve_svm/contrib/ipfilter/lib/printdstlistpolicy.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printdstlistpolicy.c projects/bhyve_svm/contrib/ipfilter/lib/printfieldhdr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printfieldhdr.c projects/bhyve_svm/contrib/ipfilter/lib/printhost.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printhost.c projects/bhyve_svm/contrib/ipfilter/lib/printipfexpr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printipfexpr.c projects/bhyve_svm/contrib/ipfilter/lib/printiphdr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printiphdr.c projects/bhyve_svm/contrib/ipfilter/lib/printlookup.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printlookup.c projects/bhyve_svm/contrib/ipfilter/lib/printnataddr.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printnataddr.c projects/bhyve_svm/contrib/ipfilter/lib/printnatfield.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printnatfield.c projects/bhyve_svm/contrib/ipfilter/lib/printnatside.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printnatside.c projects/bhyve_svm/contrib/ipfilter/lib/printpoolfield.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printpoolfield.c projects/bhyve_svm/contrib/ipfilter/lib/printstatefields.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printstatefields.c projects/bhyve_svm/contrib/ipfilter/lib/printtcpflags.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printtcpflags.c projects/bhyve_svm/contrib/ipfilter/lib/printunit.c - copied unchanged from r255692, head/contrib/ipfilter/lib/printunit.c projects/bhyve_svm/contrib/ipfilter/lib/save_execute.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_execute.c projects/bhyve_svm/contrib/ipfilter/lib/save_file.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_file.c projects/bhyve_svm/contrib/ipfilter/lib/save_nothing.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_nothing.c projects/bhyve_svm/contrib/ipfilter/lib/save_syslog.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_syslog.c projects/bhyve_svm/contrib/ipfilter/lib/save_v1trap.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_v1trap.c projects/bhyve_svm/contrib/ipfilter/lib/save_v2trap.c - copied unchanged from r255692, head/contrib/ipfilter/lib/save_v2trap.c projects/bhyve_svm/contrib/ipfilter/lib/vtof.c - copied unchanged from r255692, head/contrib/ipfilter/lib/vtof.c - copied unchanged from r255692, head/contrib/ipfilter/ml_ipl.c - copied unchanged from r255692, head/contrib/ipfilter/mlfk_ipl.c - copied unchanged from r255692, head/contrib/ipfilter/mli_ipl.c - copied unchanged from r255692, head/contrib/ipfilter/mln_ipl.c projects/bhyve_svm/contrib/ipfilter/mln_rule.c - copied unchanged from r255692, head/contrib/ipfilter/mln_rule.c projects/bhyve_svm/contrib/ipfilter/mlo_ipl.c - copied unchanged from r255692, head/contrib/ipfilter/mlo_ipl.c projects/bhyve_svm/contrib/ipfilter/mlo_rule.c - copied unchanged from r255692, head/contrib/ipfilter/mlo_rule.c - copied unchanged from r255692, head/contrib/ipfilter/mls_ipl.c projects/bhyve_svm/contrib/ipfilter/mls_rule.c - copied unchanged from r255692, head/contrib/ipfilter/mls_rule.c projects/bhyve_svm/contrib/ipfilter/mlso_rule.c - copied unchanged from r255692, head/contrib/ipfilter/mlso_rule.c projects/bhyve_svm/contrib/ipfilter/radix_ipf.c - copied unchanged from r255692, head/contrib/ipfilter/radix_ipf.c projects/bhyve_svm/contrib/ipfilter/sys/ - copied from r255692, head/contrib/ipfilter/sys/ projects/bhyve_svm/contrib/ipfilter/test/e4to6 - copied unchanged from r255692, head/contrib/ipfilter/test/e4to6 projects/bhyve_svm/contrib/ipfilter/test/expected/f21 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f21 projects/bhyve_svm/contrib/ipfilter/test/expected/f22 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f22 projects/bhyve_svm/contrib/ipfilter/test/expected/f25 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f25 projects/bhyve_svm/contrib/ipfilter/test/expected/f26 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f26 projects/bhyve_svm/contrib/ipfilter/test/expected/f27 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f27 projects/bhyve_svm/contrib/ipfilter/test/expected/f28 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f28 projects/bhyve_svm/contrib/ipfilter/test/expected/f29 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f29 projects/bhyve_svm/contrib/ipfilter/test/expected/f30 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/f30 projects/bhyve_svm/contrib/ipfilter/test/expected/i22 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/i22 projects/bhyve_svm/contrib/ipfilter/test/expected/i23 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/i23 projects/bhyve_svm/contrib/ipfilter/test/expected/in100 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/in100 projects/bhyve_svm/contrib/ipfilter/test/expected/in101 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/in101 projects/bhyve_svm/contrib/ipfilter/test/expected/in102 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/in102 projects/bhyve_svm/contrib/ipfilter/test/expected/in7 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/in7 projects/bhyve_svm/contrib/ipfilter/test/expected/ip3 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/ip3 projects/bhyve_svm/contrib/ipfilter/test/expected/ipv6.4 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/ipv6.4 projects/bhyve_svm/contrib/ipfilter/test/expected/n100 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n100 projects/bhyve_svm/contrib/ipfilter/test/expected/n101 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n101 projects/bhyve_svm/contrib/ipfilter/test/expected/n102 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n102 projects/bhyve_svm/contrib/ipfilter/test/expected/n103 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n103 projects/bhyve_svm/contrib/ipfilter/test/expected/n104 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n104 projects/bhyve_svm/contrib/ipfilter/test/expected/n105 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n105 projects/bhyve_svm/contrib/ipfilter/test/expected/n106 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n106 projects/bhyve_svm/contrib/ipfilter/test/expected/n11_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n11_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n12_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n12_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n13_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n13_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n14_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n14_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n15 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n15 projects/bhyve_svm/contrib/ipfilter/test/expected/n15_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n15_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n17 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n17 projects/bhyve_svm/contrib/ipfilter/test/expected/n18 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n18 projects/bhyve_svm/contrib/ipfilter/test/expected/n1_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n1_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n200 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n200 projects/bhyve_svm/contrib/ipfilter/test/expected/n2_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n2_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n4_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n4_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n5_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n5_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n6_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n6_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n7_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n7_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n8_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n8_6 projects/bhyve_svm/contrib/ipfilter/test/expected/n9_6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/n9_6 projects/bhyve_svm/contrib/ipfilter/test/expected/ni17 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/ni17 projects/bhyve_svm/contrib/ipfilter/test/expected/ni18 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/ni18 projects/bhyve_svm/contrib/ipfilter/test/expected/p10 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p10 projects/bhyve_svm/contrib/ipfilter/test/expected/p11 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p11 projects/bhyve_svm/contrib/ipfilter/test/expected/p12 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p12 projects/bhyve_svm/contrib/ipfilter/test/expected/p13 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p13 projects/bhyve_svm/contrib/ipfilter/test/expected/p4 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p4 projects/bhyve_svm/contrib/ipfilter/test/expected/p6 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p6 projects/bhyve_svm/contrib/ipfilter/test/expected/p7 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p7 projects/bhyve_svm/contrib/ipfilter/test/expected/p9 - copied unchanged from r255692, head/contrib/ipfilter/test/expected/p9 projects/bhyve_svm/contrib/ipfilter/test/h4to6 - copied unchanged from r255692, head/contrib/ipfilter/test/h4to6 projects/bhyve_svm/contrib/ipfilter/test/i4to6 - copied unchanged from r255692, head/contrib/ipfilter/test/i4to6 projects/bhyve_svm/contrib/ipfilter/test/input/f21 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f21 projects/bhyve_svm/contrib/ipfilter/test/input/f22 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f22 projects/bhyve_svm/contrib/ipfilter/test/input/f25 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f25 projects/bhyve_svm/contrib/ipfilter/test/input/f26 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f26 projects/bhyve_svm/contrib/ipfilter/test/input/f27 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f27 projects/bhyve_svm/contrib/ipfilter/test/input/f28 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f28 projects/bhyve_svm/contrib/ipfilter/test/input/f29 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f29 projects/bhyve_svm/contrib/ipfilter/test/input/f30 - copied unchanged from r255692, head/contrib/ipfilter/test/input/f30 projects/bhyve_svm/contrib/ipfilter/test/input/ipv6.4 - copied unchanged from r255692, head/contrib/ipfilter/test/input/ipv6.4 projects/bhyve_svm/contrib/ipfilter/test/input/n100 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n100 projects/bhyve_svm/contrib/ipfilter/test/input/n101 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n101 projects/bhyve_svm/contrib/ipfilter/test/input/n102 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n102 projects/bhyve_svm/contrib/ipfilter/test/input/n103 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n103 projects/bhyve_svm/contrib/ipfilter/test/input/n104 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n104 projects/bhyve_svm/contrib/ipfilter/test/input/n105 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n105 projects/bhyve_svm/contrib/ipfilter/test/input/n106 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n106 projects/bhyve_svm/contrib/ipfilter/test/input/n10_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n10_6 projects/bhyve_svm/contrib/ipfilter/test/input/n11_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n11_6 projects/bhyve_svm/contrib/ipfilter/test/input/n12_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n12_6 projects/bhyve_svm/contrib/ipfilter/test/input/n13_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n13_6 projects/bhyve_svm/contrib/ipfilter/test/input/n14_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n14_6 projects/bhyve_svm/contrib/ipfilter/test/input/n15 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n15 projects/bhyve_svm/contrib/ipfilter/test/input/n15_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n15_6 projects/bhyve_svm/contrib/ipfilter/test/input/n17 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n17 projects/bhyve_svm/contrib/ipfilter/test/input/n17_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n17_6 projects/bhyve_svm/contrib/ipfilter/test/input/n18 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n18 projects/bhyve_svm/contrib/ipfilter/test/input/n1_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n1_6 projects/bhyve_svm/contrib/ipfilter/test/input/n200 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n200 projects/bhyve_svm/contrib/ipfilter/test/input/n2_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n2_6 projects/bhyve_svm/contrib/ipfilter/test/input/n4_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n4_6 projects/bhyve_svm/contrib/ipfilter/test/input/n5_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n5_6 projects/bhyve_svm/contrib/ipfilter/test/input/n6_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n6_6 projects/bhyve_svm/contrib/ipfilter/test/input/n7_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n7_6 projects/bhyve_svm/contrib/ipfilter/test/input/n8_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n8_6 projects/bhyve_svm/contrib/ipfilter/test/input/n9_6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/n9_6 projects/bhyve_svm/contrib/ipfilter/test/input/ni18 - copied unchanged from r255692, head/contrib/ipfilter/test/input/ni18 projects/bhyve_svm/contrib/ipfilter/test/input/p10 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p10 projects/bhyve_svm/contrib/ipfilter/test/input/p11 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p11 projects/bhyve_svm/contrib/ipfilter/test/input/p12 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p12 projects/bhyve_svm/contrib/ipfilter/test/input/p13 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p13 projects/bhyve_svm/contrib/ipfilter/test/input/p4 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p4 projects/bhyve_svm/contrib/ipfilter/test/input/p6 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p6 projects/bhyve_svm/contrib/ipfilter/test/input/p7 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p7 projects/bhyve_svm/contrib/ipfilter/test/input/p9 - copied unchanged from r255692, head/contrib/ipfilter/test/input/p9 projects/bhyve_svm/contrib/ipfilter/test/ipflib.sh - copied unchanged from r255692, head/contrib/ipfilter/test/ipflib.sh projects/bhyve_svm/contrib/ipfilter/test/regress/f21 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f21 projects/bhyve_svm/contrib/ipfilter/test/regress/f22 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f22 projects/bhyve_svm/contrib/ipfilter/test/regress/f25 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f25 projects/bhyve_svm/contrib/ipfilter/test/regress/f26 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f26 projects/bhyve_svm/contrib/ipfilter/test/regress/f27 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f27 projects/bhyve_svm/contrib/ipfilter/test/regress/f28.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f28.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/f28.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f28.pool projects/bhyve_svm/contrib/ipfilter/test/regress/f29.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f29.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/f29.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f29.pool projects/bhyve_svm/contrib/ipfilter/test/regress/f30 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/f30 projects/bhyve_svm/contrib/ipfilter/test/regress/i22 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/i22 projects/bhyve_svm/contrib/ipfilter/test/regress/i23 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/i23 projects/bhyve_svm/contrib/ipfilter/test/regress/in100 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/in100 projects/bhyve_svm/contrib/ipfilter/test/regress/in101 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/in101 projects/bhyve_svm/contrib/ipfilter/test/regress/in102 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/in102 projects/bhyve_svm/contrib/ipfilter/test/regress/in7 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/in7 projects/bhyve_svm/contrib/ipfilter/test/regress/ip3 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/ip3 projects/bhyve_svm/contrib/ipfilter/test/regress/ipv6.4 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/ipv6.4 projects/bhyve_svm/contrib/ipfilter/test/regress/n100 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n100 projects/bhyve_svm/contrib/ipfilter/test/regress/n101 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n101 projects/bhyve_svm/contrib/ipfilter/test/regress/n102 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n102 projects/bhyve_svm/contrib/ipfilter/test/regress/n103 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n103 projects/bhyve_svm/contrib/ipfilter/test/regress/n104 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n104 projects/bhyve_svm/contrib/ipfilter/test/regress/n105 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n105 projects/bhyve_svm/contrib/ipfilter/test/regress/n106 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n106 projects/bhyve_svm/contrib/ipfilter/test/regress/n10_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n10_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n11_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n11_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n12_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n12_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n13_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n13_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n14_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n14_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n15 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n15 projects/bhyve_svm/contrib/ipfilter/test/regress/n15_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n15_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n16_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n16_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n17 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n17 projects/bhyve_svm/contrib/ipfilter/test/regress/n17_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n17_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n18 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n18 projects/bhyve_svm/contrib/ipfilter/test/regress/n1_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n1_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n200 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n200 projects/bhyve_svm/contrib/ipfilter/test/regress/n2_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n2_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n4_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n4_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n5_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n5_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n6_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n6_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n7_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n7_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n8_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n8_6 projects/bhyve_svm/contrib/ipfilter/test/regress/n9_6 - copied unchanged from r255692, head/contrib/ipfilter/test/regress/n9_6 projects/bhyve_svm/contrib/ipfilter/test/regress/ni17.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/ni17.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/ni18.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/ni18.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/ni18.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/ni18.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p10.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p10.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p10.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p10.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p11.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p11.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p11.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p11.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p12.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p12.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p12.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p12.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p13.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p13.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/p13.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p13.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p4.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p4.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p4.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p4.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p6.ipf - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p6.ipf projects/bhyve_svm/contrib/ipfilter/test/regress/p6.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p6.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p6.whois - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p6.whois projects/bhyve_svm/contrib/ipfilter/test/regress/p7.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p7.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p7.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p7.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p9.nat - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p9.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p9.pool - copied unchanged from r255692, head/contrib/ipfilter/test/regress/p9.pool projects/bhyve_svm/contrib/ipfilter/tools/ipfsyncd.c - copied unchanged from r255692, head/contrib/ipfilter/tools/ipfsyncd.c projects/bhyve_svm/contrib/ldns-host/ - copied from r255692, head/contrib/ldns-host/ - copied from r255692, head/contrib/libexecinfo/ projects/bhyve_svm/contrib/llvm/tools/lldb/ - copied from r255692, head/contrib/llvm/tools/lldb/ projects/bhyve_svm/contrib/nvi/catalog/zh_CN.GB2312.base - copied unchanged from r255692, head/contrib/nvi/catalog/zh_CN.GB2312.base projects/bhyve_svm/contrib/nvi/catalog/zh_CN.GB2312.owner - copied unchanged from r255692, head/contrib/nvi/catalog/zh_CN.GB2312.owner projects/bhyve_svm/contrib/nvi/cl/extern.h - copied unchanged from r255692, head/contrib/nvi/cl/extern.h projects/bhyve_svm/contrib/nvi/common/conv.c - copied unchanged from r255692, head/contrib/nvi/common/conv.c projects/bhyve_svm/contrib/nvi/common/conv.h - copied unchanged from r255692, head/contrib/nvi/common/conv.h projects/bhyve_svm/contrib/nvi/common/encoding.c - copied unchanged from r255692, head/contrib/nvi/common/encoding.c projects/bhyve_svm/contrib/nvi/common/extern.h - copied unchanged from r255692, head/contrib/nvi/common/extern.h projects/bhyve_svm/contrib/nvi/common/multibyte.h - copied unchanged from r255692, head/contrib/nvi/common/multibyte.h projects/bhyve_svm/contrib/nvi/common/options_def.h - copied unchanged from r255692, head/contrib/nvi/common/options_def.h projects/bhyve_svm/contrib/nvi/ex/ex_def.h - copied unchanged from r255692, head/contrib/nvi/ex/ex_def.h projects/bhyve_svm/contrib/nvi/ex/extern.h - copied unchanged from r255692, head/contrib/nvi/ex/extern.h projects/bhyve_svm/contrib/nvi/regex/ - copied from r255692, head/contrib/nvi/regex/ projects/bhyve_svm/contrib/nvi/vi/extern.h - copied unchanged from r255692, head/contrib/nvi/vi/extern.h projects/bhyve_svm/contrib/openpam/lib/libpam/ - copied from r255692, head/contrib/openpam/lib/libpam/ projects/bhyve_svm/contrib/openpam/m4/ - copied from r255692, head/contrib/openpam/m4/ projects/bhyve_svm/contrib/openpam/mkpkgng.in - copied unchanged from r255692, head/contrib/openpam/mkpkgng.in projects/bhyve_svm/contrib/openpam/t/t_file.c - copied unchanged from r255692, head/contrib/openpam/t/t_file.c projects/bhyve_svm/contrib/openpam/test-driver - copied unchanged from r255692, head/contrib/openpam/test-driver projects/bhyve_svm/contrib/unbound/config.h - copied unchanged from r255692, head/contrib/unbound/config.h projects/bhyve_svm/contrib/unbound/doc/libunbound.3 - copied unchanged from r255692, head/contrib/unbound/doc/libunbound.3 projects/bhyve_svm/contrib/unbound/doc/unbound-anchor.8 - copied unchanged from r255692, head/contrib/unbound/doc/unbound-anchor.8 projects/bhyve_svm/contrib/unbound/doc/unbound-checkconf.8 - copied unchanged from r255692, head/contrib/unbound/doc/unbound-checkconf.8 projects/bhyve_svm/contrib/unbound/doc/unbound-control.8 - copied unchanged from r255692, head/contrib/unbound/doc/unbound-control.8 projects/bhyve_svm/contrib/unbound/doc/unbound.8 - copied unchanged from r255692, head/contrib/unbound/doc/unbound.8 projects/bhyve_svm/contrib/unbound/doc/unbound.conf.5 - copied unchanged from r255692, head/contrib/unbound/doc/unbound.conf.5 projects/bhyve_svm/contrib/unbound/freebsd-configure.sh - copied unchanged from r255692, head/contrib/unbound/freebsd-configure.sh projects/bhyve_svm/contrib/unbound/freebsd-sources.pl - copied unchanged from r255692, head/contrib/unbound/freebsd-sources.pl projects/bhyve_svm/contrib/unbound/libunbound/worker.h - copied unchanged from r255692, head/contrib/unbound/libunbound/worker.h projects/bhyve_svm/contrib/unbound/smallapp/unbound-control-setup.sh.in - copied unchanged from r255692, head/contrib/unbound/smallapp/unbound-control-setup.sh.in projects/bhyve_svm/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c - copied unchanged from r255692, head/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c projects/bhyve_svm/crypto/openssh/openbsd-compat/strnlen.c - copied unchanged from r255692, head/crypto/openssh/openbsd-compat/strnlen.c projects/bhyve_svm/crypto/openssh/sandbox-seccomp-filter.c - copied unchanged from r255692, head/crypto/openssh/sandbox-seccomp-filter.c projects/bhyve_svm/etc/libmap32.conf - copied unchanged from r255692, head/etc/libmap32.conf projects/bhyve_svm/etc/periodic/monthly/450.status-security - copied unchanged from r255692, head/etc/periodic/monthly/450.status-security projects/bhyve_svm/etc/periodic/weekly/450.status-security - copied unchanged from r255692, head/etc/periodic/weekly/450.status-security projects/bhyve_svm/etc/rc.d/ctld - copied unchanged from r255692, head/etc/rc.d/ctld projects/bhyve_svm/etc/rc.d/iscsictl - copied unchanged from r255692, head/etc/rc.d/iscsictl projects/bhyve_svm/etc/rc.d/iscsid - copied unchanged from r255692, head/etc/rc.d/iscsid projects/bhyve_svm/gnu/usr.bin/cc/include/__wmmintrin_aes.h - copied unchanged from r255692, head/gnu/usr.bin/cc/include/__wmmintrin_aes.h projects/bhyve_svm/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h - copied unchanged from r255692, head/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h projects/bhyve_svm/lib/libc/capability/ - copied from r255692, head/lib/libc/capability/ projects/bhyve_svm/lib/libc/gen/dup3.3 - copied unchanged from r255692, head/lib/libc/gen/dup3.3 projects/bhyve_svm/lib/libc/gen/dup3.c - copied unchanged from r255692, head/lib/libc/gen/dup3.c projects/bhyve_svm/lib/libc/include/errlst.h - copied unchanged from r255692, head/lib/libc/include/errlst.h projects/bhyve_svm/lib/libexecinfo/ - copied from r255692, head/lib/libexecinfo/ projects/bhyve_svm/lib/libiconv_compat/ - copied from r255692, head/lib/libiconv_compat/ projects/bhyve_svm/lib/libunbound/ - copied from r255692, head/lib/libunbound/ projects/bhyve_svm/lib/msun/src/imprecise.c - copied unchanged from r255692, head/lib/msun/src/imprecise.c projects/bhyve_svm/share/examples/kld/random_adaptor/ - copied from r255692, head/share/examples/kld/random_adaptor/ projects/bhyve_svm/share/man/man4/gpio.4 - copied unchanged from r255692, head/share/man/man4/gpio.4 projects/bhyve_svm/share/man/man4/procdesc.4 - copied unchanged from r255692, head/share/man/man4/procdesc.4 projects/bhyve_svm/share/man/man4/vmx.4 - copied unchanged from r255692, head/share/man/man4/vmx.4 projects/bhyve_svm/share/man/man9/vm_page_busy.9 - copied unchanged from r255692, head/share/man/man9/vm_page_busy.9 projects/bhyve_svm/sys/arm/allwinner/a20/ - copied from r255692, head/sys/arm/allwinner/a20/ projects/bhyve_svm/sys/arm/broadcom/bcm2835/bcm2835_gpio.h - copied unchanged from r255692, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.h projects/bhyve_svm/sys/arm/conf/CUBIEBOARD2 - copied unchanged from r255692, head/sys/arm/conf/CUBIEBOARD2 projects/bhyve_svm/sys/arm/conf/DIGI-CCWMX53 - copied unchanged from r255692, head/sys/arm/conf/DIGI-CCWMX53 projects/bhyve_svm/sys/arm/freescale/imx/files.imx53 - copied unchanged from r255692, head/sys/arm/freescale/imx/files.imx53 projects/bhyve_svm/sys/arm/freescale/imx/imx51_machdep.c - copied unchanged from r255692, head/sys/arm/freescale/imx/imx51_machdep.c projects/bhyve_svm/sys/arm/freescale/imx/imx53_machdep.c - copied unchanged from r255692, head/sys/arm/freescale/imx/imx53_machdep.c projects/bhyve_svm/sys/arm/freescale/imx/std.imx53 - copied unchanged from r255692, head/sys/arm/freescale/imx/std.imx53 projects/bhyve_svm/sys/arm/ti/ti_sdhci.c - copied unchanged from r255692, head/sys/arm/ti/ti_sdhci.c projects/bhyve_svm/sys/boot/fdt/dts/cubieboard2.dts - copied unchanged from r255692, head/sys/boot/fdt/dts/cubieboard2.dts projects/bhyve_svm/sys/boot/fdt/dts/digi-ccwmx53.dts - copied unchanged from r255692, head/sys/boot/fdt/dts/digi-ccwmx53.dts projects/bhyve_svm/sys/boot/fdt/dts/imx53x.dtsi - copied unchanged from r255692, head/sys/boot/fdt/dts/imx53x.dtsi projects/bhyve_svm/sys/cam/ctl/ctl_frontend_iscsi.c - copied unchanged from r255692, head/sys/cam/ctl/ctl_frontend_iscsi.c projects/bhyve_svm/sys/cam/ctl/ctl_frontend_iscsi.h - copied unchanged from r255692, head/sys/cam/ctl/ctl_frontend_iscsi.h projects/bhyve_svm/sys/compat/freebsd32/freebsd32_capability.c - copied unchanged from r255692, head/sys/compat/freebsd32/freebsd32_capability.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32_misc.h - copied unchanged from r255692, head/sys/compat/freebsd32/freebsd32_misc.h projects/bhyve_svm/sys/contrib/dev/drm2/ - copied from r255692, head/sys/contrib/dev/drm2/ projects/bhyve_svm/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu - copied unchanged from r255692, head/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu projects/bhyve_svm/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu - copied unchanged from r255692, head/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu projects/bhyve_svm/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu - copied unchanged from r255692, head/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_dns_pxy.c - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ip_dns_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_dstlist.c - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ip_dstlist.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_dstlist.h - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ip_dstlist.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_nat6.c - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ip_nat6.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ipf_rb.h - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/ipf_rb.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/radix_ipf.c - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/radix_ipf.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/radix_ipf.h - copied unchanged from r255692, head/sys/contrib/ipfilter/netinet/radix_ipf.h projects/bhyve_svm/sys/crypto/aesni/aesencdec.h - copied unchanged from r255692, head/sys/crypto/aesni/aesencdec.h projects/bhyve_svm/sys/dev/drm2/ati_pcigart.c - copied unchanged from r255692, head/sys/dev/drm2/ati_pcigart.c projects/bhyve_svm/sys/dev/drm2/drm_buffer.c - copied unchanged from r255692, head/sys/dev/drm2/drm_buffer.c projects/bhyve_svm/sys/dev/drm2/drm_buffer.h - copied unchanged from r255692, head/sys/dev/drm2/drm_buffer.h projects/bhyve_svm/sys/dev/drm2/drm_core.h - copied unchanged from r255692, head/sys/dev/drm2/drm_core.h projects/bhyve_svm/sys/dev/drm2/drm_dp_helper.c - copied unchanged from r255692, head/sys/dev/drm2/drm_dp_helper.c projects/bhyve_svm/sys/dev/drm2/drm_fixed.h - copied unchanged from r255692, head/sys/dev/drm2/drm_fixed.h projects/bhyve_svm/sys/dev/drm2/drm_os_freebsd.h - copied unchanged from r255692, head/sys/dev/drm2/drm_os_freebsd.h projects/bhyve_svm/sys/dev/drm2/radeon/ - copied from r255692, head/sys/dev/drm2/radeon/ projects/bhyve_svm/sys/dev/hwpmc/hwpmc_mpc7xxx.c - copied unchanged from r255692, head/sys/dev/hwpmc/hwpmc_mpc7xxx.c projects/bhyve_svm/sys/dev/hwpmc/hwpmc_powerpc.h - copied unchanged from r255692, head/sys/dev/hwpmc/hwpmc_powerpc.h - copied from r255692, head/sys/dev/hyperv/ projects/bhyve_svm/sys/dev/iscsi/icl.c - copied unchanged from r255692, head/sys/dev/iscsi/icl.c projects/bhyve_svm/sys/dev/iscsi/icl.h - copied unchanged from r255692, head/sys/dev/iscsi/icl.h projects/bhyve_svm/sys/dev/iscsi/icl_proxy.c - copied unchanged from r255692, head/sys/dev/iscsi/icl_proxy.c projects/bhyve_svm/sys/dev/iscsi/iscsi.c - copied unchanged from r255692, head/sys/dev/iscsi/iscsi.c projects/bhyve_svm/sys/dev/iscsi/iscsi.h - copied unchanged from r255692, head/sys/dev/iscsi/iscsi.h projects/bhyve_svm/sys/dev/iscsi/iscsi_ioctl.h - copied unchanged from r255692, head/sys/dev/iscsi/iscsi_ioctl.h projects/bhyve_svm/sys/dev/iscsi/iscsi_proto.h - copied unchanged from r255692, head/sys/dev/iscsi/iscsi_proto.h projects/bhyve_svm/sys/dev/iscsi_initiator/ - copied from r255692, head/sys/dev/iscsi_initiator/ projects/bhyve_svm/sys/dev/random/pseudo_rng.c - copied unchanged from r255692, head/sys/dev/random/pseudo_rng.c projects/bhyve_svm/sys/dev/random/random_adaptors.c - copied unchanged from r255692, head/sys/dev/random/random_adaptors.c projects/bhyve_svm/sys/dev/random/random_adaptors.h - copied unchanged from r255692, head/sys/dev/random/random_adaptors.h projects/bhyve_svm/sys/dev/random/random_harvestq.c - copied unchanged from r255692, head/sys/dev/random/random_harvestq.c projects/bhyve_svm/sys/dev/random/random_harvestq.h - copied unchanged from r255692, head/sys/dev/random/random_harvestq.h projects/bhyve_svm/sys/dev/uart/uart_dev_ns8250.h - copied unchanged from r255692, head/sys/dev/uart/uart_dev_ns8250.h projects/bhyve_svm/sys/dev/uart/uart_dev_ti8250.c - copied unchanged from r255692, head/sys/dev/uart/uart_dev_ti8250.c projects/bhyve_svm/sys/dev/vmware/ - copied from r255692, head/sys/dev/vmware/ projects/bhyve_svm/sys/dev/xen/timer/ - copied from r255692, head/sys/dev/xen/timer/ projects/bhyve_svm/sys/fs/ext2fs/ext2_extents.c - copied unchanged from r255692, head/sys/fs/ext2fs/ext2_extents.c projects/bhyve_svm/sys/fs/ext2fs/ext2_extents.h - copied unchanged from r255692, head/sys/fs/ext2fs/ext2_extents.h projects/bhyve_svm/sys/kern/subr_capability.c - copied unchanged from r255692, head/sys/kern/subr_capability.c projects/bhyve_svm/sys/mips/conf/GXEMUL32 - copied unchanged from r255692, head/sys/mips/conf/GXEMUL32 projects/bhyve_svm/sys/mips/conf/PICOSTATION_M2HP - copied unchanged from r255692, head/sys/mips/conf/PICOSTATION_M2HP projects/bhyve_svm/sys/mips/conf/PICOSTATION_M2HP.hints - copied unchanged from r255692, head/sys/mips/conf/PICOSTATION_M2HP.hints projects/bhyve_svm/sys/mips/conf/WZR-300HP - copied unchanged from r255692, head/sys/mips/conf/WZR-300HP projects/bhyve_svm/sys/mips/conf/WZR-300HP.hints - copied unchanged from r255692, head/sys/mips/conf/WZR-300HP.hints projects/bhyve_svm/sys/mips/malta/gt_pci_bus_space.c - copied unchanged from r255692, head/sys/mips/malta/gt_pci_bus_space.c projects/bhyve_svm/sys/mips/malta/gt_pci_bus_space.h - copied unchanged from r255692, head/sys/mips/malta/gt_pci_bus_space.h projects/bhyve_svm/sys/mips/mips/bcopy.S - copied unchanged from r255692, head/sys/mips/mips/bcopy.S projects/bhyve_svm/sys/modules/drm2/radeonkms/ - copied from r255692, head/sys/modules/drm2/radeonkms/ projects/bhyve_svm/sys/modules/drm2/radeonkmsfw/ - copied from r255692, head/sys/modules/drm2/radeonkmsfw/ - copied from r255692, head/sys/modules/hyperv/ projects/bhyve_svm/sys/modules/iscsi_initiator/ - copied from r255692, head/sys/modules/iscsi_initiator/ projects/bhyve_svm/sys/modules/iwnfw/iwn2000/ - copied from r255692, head/sys/modules/iwnfw/iwn2000/ projects/bhyve_svm/sys/modules/iwnfw/iwn2030/ - copied from r255692, head/sys/modules/iwnfw/iwn2030/ projects/bhyve_svm/sys/modules/vmware/ - copied from r255692, head/sys/modules/vmware/ projects/bhyve_svm/sys/netinet/in_kdtrace.c - copied unchanged from r255692, head/sys/netinet/in_kdtrace.c projects/bhyve_svm/sys/netinet/in_kdtrace.h - copied unchanged from r255692, head/sys/netinet/in_kdtrace.h projects/bhyve_svm/sys/powerpc/pseries/ - copied from r255692, head/sys/powerpc/pseries/ projects/bhyve_svm/sys/sys/_unrhdr.h - copied unchanged from r255692, head/sys/sys/_unrhdr.h projects/bhyve_svm/sys/sys/caprights.h - copied unchanged from r255692, head/sys/sys/caprights.h - copied unchanged from r255692, head/sys/x86/include/acpica_machdep.h projects/bhyve_svm/sys/x86/xen/ - copied from r255692, head/sys/x86/xen/ projects/bhyve_svm/sys/xen/evtchn/evtchnvar.h - copied unchanged from r255692, head/sys/xen/evtchn/evtchnvar.h projects/bhyve_svm/sys/xen/xen-os.h - copied unchanged from r255692, head/sys/xen/xen-os.h projects/bhyve_svm/tools/build/options/WITHOUT_GNUCXX - copied unchanged from r255692, head/tools/build/options/WITHOUT_GNUCXX projects/bhyve_svm/tools/build/options/WITHOUT_ICONV - copied unchanged from r255692, head/tools/build/options/WITHOUT_ICONV projects/bhyve_svm/tools/build/options/WITHOUT_UNBOUND - copied unchanged from r255692, head/tools/build/options/WITHOUT_UNBOUND projects/bhyve_svm/tools/build/options/WITH_GCC - copied unchanged from r255692, head/tools/build/options/WITH_GCC projects/bhyve_svm/tools/build/options/WITH_GNUCXX - copied unchanged from r255692, head/tools/build/options/WITH_GNUCXX projects/bhyve_svm/tools/build/options/WITH_LIBICONV_COMPAT - copied unchanged from r255692, head/tools/build/options/WITH_LIBICONV_COMPAT projects/bhyve_svm/tools/build/options/WITH_USB_GADGET_EXAMPLES - copied unchanged from r255692, head/tools/build/options/WITH_USB_GADGET_EXAMPLES projects/bhyve_svm/tools/regression/bin/sh/builtins/alias4.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/alias4.0 projects/bhyve_svm/tools/regression/bin/sh/builtins/jobid1.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/jobid1.0 projects/bhyve_svm/tools/regression/bin/sh/builtins/jobid2.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/jobid2.0 projects/bhyve_svm/tools/regression/bin/sh/builtins/local4.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/local4.0 projects/bhyve_svm/tools/regression/bin/sh/builtins/return8.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/return8.0 projects/bhyve_svm/tools/regression/bin/sh/builtins/type3.0 - copied unchanged from r255692, head/tools/regression/bin/sh/builtins/type3.0 projects/bhyve_svm/tools/regression/bin/sh/expansion/arith13.0 - copied unchanged from r255692, head/tools/regression/bin/sh/expansion/arith13.0 projects/bhyve_svm/tools/regression/bin/sh/parser/empty-cmd1.0 - copied unchanged from r255692, head/tools/regression/bin/sh/parser/empty-cmd1.0 projects/bhyve_svm/tools/regression/bin/sh/parser/only-redir2.0 - copied unchanged from r255692, head/tools/regression/bin/sh/parser/only-redir2.0 projects/bhyve_svm/tools/regression/bin/sh/parser/only-redir3.0 - copied unchanged from r255692, head/tools/regression/bin/sh/parser/only-redir3.0 projects/bhyve_svm/tools/regression/bin/sh/parser/only-redir4.0 - copied unchanged from r255692, head/tools/regression/bin/sh/parser/only-redir4.0 projects/bhyve_svm/tools/regression/file/fcntlflags/ - copied from r255692, head/tools/regression/file/fcntlflags/ projects/bhyve_svm/tools/regression/iscsi/ - copied from r255692, head/tools/regression/iscsi/ projects/bhyve_svm/tools/regression/lib/libc/stdio/test-fopen.c - copied unchanged from r255692, head/tools/regression/lib/libc/stdio/test-fopen.c projects/bhyve_svm/tools/regression/lib/libc/stdio/test-fopen.t - copied unchanged from r255692, head/tools/regression/lib/libc/stdio/test-fopen.t projects/bhyve_svm/tools/regression/lib/libc/stdio/test-mkostemp.c - copied unchanged from r255692, head/tools/regression/lib/libc/stdio/test-mkostemp.c projects/bhyve_svm/tools/regression/lib/libc/stdio/test-mkostemp.t - copied unchanged from r255692, head/tools/regression/lib/libc/stdio/test-mkostemp.t projects/bhyve_svm/tools/tools/drm/ - copied from r255692, head/tools/tools/drm/ projects/bhyve_svm/tools/tools/usbtest/ - copied from r255692, head/tools/tools/usbtest/ projects/bhyve_svm/usr.bin/calendar/calendars/ru_RU.UTF-8/ - copied from r255692, head/usr.bin/calendar/calendars/ru_RU.UTF-8/ projects/bhyve_svm/usr.bin/iscsictl/ - copied from r255692, head/usr.bin/iscsictl/ projects/bhyve_svm/usr.bin/vi/catalog/ - copied from r255692, head/usr.bin/vi/catalog/ projects/bhyve_svm/usr.sbin/ctld/ - copied from r255692, head/usr.sbin/ctld/ projects/bhyve_svm/usr.sbin/dnssec-verify/ - copied from r255692, head/usr.sbin/dnssec-verify/ projects/bhyve_svm/usr.sbin/iscsid/ - copied from r255692, head/usr.sbin/iscsid/ projects/bhyve_svm/usr.sbin/unbound/ - copied from r255692, head/usr.sbin/unbound/ Directory Properties: projects/bhyve_svm/contrib/ipfilter/ml_ipl.c (props changed) projects/bhyve_svm/contrib/ipfilter/mlfk_ipl.c (props changed) projects/bhyve_svm/contrib/ipfilter/mli_ipl.c (props changed) projects/bhyve_svm/contrib/ipfilter/mln_ipl.c (props changed) projects/bhyve_svm/contrib/ipfilter/mls_ipl.c (props changed) projects/bhyve_svm/contrib/libexecinfo/ (props changed) projects/bhyve_svm/sys/dev/hyperv/ (props changed) projects/bhyve_svm/sys/modules/hyperv/ (props changed) projects/bhyve_svm/sys/x86/include/acpica_machdep.h (props changed) Replaced: projects/bhyve_svm/contrib/openpam/lib/Makefile.am - copied unchanged from r255692, head/contrib/openpam/lib/Makefile.am projects/bhyve_svm/contrib/openpam/lib/Makefile.in - copied unchanged from r255692, head/contrib/openpam/lib/Makefile.in Deleted: projects/bhyve_svm/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h projects/bhyve_svm/contrib/ipfilter/.cvsignore projects/bhyve_svm/contrib/ipfilter/BSD/.cvsignore projects/bhyve_svm/contrib/ipfilter/iplang/.cvsignore projects/bhyve_svm/contrib/ipfilter/ipsend/.cvsignore projects/bhyve_svm/contrib/ipfilter/ipsend/README projects/bhyve_svm/contrib/ipfilter/ipsend/hpux.c projects/bhyve_svm/contrib/ipfilter/ipsend/in_var.h projects/bhyve_svm/contrib/ipfilter/ipsend/ip_var.h projects/bhyve_svm/contrib/ipfilter/ipsend/tcpip.h projects/bhyve_svm/contrib/ipfilter/lib/ipft_ef.c projects/bhyve_svm/contrib/ipfilter/lib/ipft_sn.c projects/bhyve_svm/contrib/ipfilter/lib/ipft_td.c projects/bhyve_svm/contrib/ipfilter/net/.cvsignore projects/bhyve_svm/contrib/ipfilter/radix.c projects/bhyve_svm/contrib/ipfilter/rules/.cvsignore projects/bhyve_svm/contrib/ipfilter/samples/.cvsignore projects/bhyve_svm/contrib/ipfilter/test/.cvsignore projects/bhyve_svm/contrib/ipfilter/test/hextest projects/bhyve_svm/contrib/ipfilter/test/input/ipf6-1 projects/bhyve_svm/contrib/ipfilter/test/mhtest projects/bhyve_svm/contrib/nvi/FAQ projects/bhyve_svm/contrib/nvi/LAYOUT projects/bhyve_svm/contrib/nvi/build/ projects/bhyve_svm/contrib/nvi/catalog/dutch projects/bhyve_svm/contrib/nvi/catalog/dutch.check projects/bhyve_svm/contrib/nvi/catalog/english projects/bhyve_svm/contrib/nvi/catalog/english.base projects/bhyve_svm/contrib/nvi/catalog/english.check projects/bhyve_svm/contrib/nvi/catalog/french projects/bhyve_svm/contrib/nvi/catalog/french.check projects/bhyve_svm/contrib/nvi/catalog/german projects/bhyve_svm/contrib/nvi/catalog/german.check projects/bhyve_svm/contrib/nvi/catalog/polish projects/bhyve_svm/contrib/nvi/catalog/polish.check projects/bhyve_svm/contrib/nvi/catalog/ru_RU.KOI8-R projects/bhyve_svm/contrib/nvi/catalog/ru_RU.KOI8-R.check projects/bhyve_svm/contrib/nvi/catalog/spanish projects/bhyve_svm/contrib/nvi/catalog/spanish.check projects/bhyve_svm/contrib/nvi/catalog/swedish projects/bhyve_svm/contrib/nvi/catalog/swedish.check projects/bhyve_svm/contrib/nvi/catalog/uk_UA.KOI8-U projects/bhyve_svm/contrib/nvi/cl/cl_bsd.c projects/bhyve_svm/contrib/nvi/clib/ projects/bhyve_svm/contrib/nvi/common/api.c projects/bhyve_svm/contrib/nvi/ex/ex_perl.c projects/bhyve_svm/contrib/nvi/ex/ex_tcl.c projects/bhyve_svm/contrib/nvi/include/ projects/bhyve_svm/contrib/nvi/ip/ projects/bhyve_svm/contrib/nvi/ip_cl/ projects/bhyve_svm/contrib/nvi/perl_api/ projects/bhyve_svm/contrib/nvi/perl_scripts/ projects/bhyve_svm/contrib/nvi/tcl_api/ projects/bhyve_svm/contrib/nvi/tcl_scripts/ projects/bhyve_svm/contrib/nvi/tk/ projects/bhyve_svm/contrib/openpam/FREEBSD-vendor projects/bhyve_svm/contrib/openpam/lib/openpam_borrow_cred.c projects/bhyve_svm/contrib/openpam/lib/openpam_check_owner_perms.c projects/bhyve_svm/contrib/openpam/lib/openpam_configure.c projects/bhyve_svm/contrib/openpam/lib/openpam_constants.c projects/bhyve_svm/contrib/openpam/lib/openpam_constants.h projects/bhyve_svm/contrib/openpam/lib/openpam_ctype.h projects/bhyve_svm/contrib/openpam/lib/openpam_debug.h projects/bhyve_svm/contrib/openpam/lib/openpam_dispatch.c projects/bhyve_svm/contrib/openpam/lib/openpam_dynamic.c projects/bhyve_svm/contrib/openpam/lib/openpam_features.c projects/bhyve_svm/contrib/openpam/lib/openpam_features.h projects/bhyve_svm/contrib/openpam/lib/openpam_findenv.c projects/bhyve_svm/contrib/openpam/lib/openpam_free_data.c projects/bhyve_svm/contrib/openpam/lib/openpam_free_envlist.c projects/bhyve_svm/contrib/openpam/lib/openpam_get_feature.c projects/bhyve_svm/contrib/openpam/lib/openpam_get_option.c projects/bhyve_svm/contrib/openpam/lib/openpam_impl.h projects/bhyve_svm/contrib/openpam/lib/openpam_load.c projects/bhyve_svm/contrib/openpam/lib/openpam_log.c projects/bhyve_svm/contrib/openpam/lib/openpam_nullconv.c projects/bhyve_svm/contrib/openpam/lib/openpam_readline.c projects/bhyve_svm/contrib/openpam/lib/openpam_readlinev.c projects/bhyve_svm/contrib/openpam/lib/openpam_readword.c projects/bhyve_svm/contrib/openpam/lib/openpam_restore_cred.c projects/bhyve_svm/contrib/openpam/lib/openpam_set_feature.c projects/bhyve_svm/contrib/openpam/lib/openpam_set_option.c projects/bhyve_svm/contrib/openpam/lib/openpam_static.c projects/bhyve_svm/contrib/openpam/lib/openpam_straddch.c projects/bhyve_svm/contrib/openpam/lib/openpam_strlcat.h projects/bhyve_svm/contrib/openpam/lib/openpam_strlcmp.h projects/bhyve_svm/contrib/openpam/lib/openpam_strlcpy.h projects/bhyve_svm/contrib/openpam/lib/openpam_subst.c projects/bhyve_svm/contrib/openpam/lib/openpam_ttyconv.c projects/bhyve_svm/contrib/openpam/lib/pam_acct_mgmt.c projects/bhyve_svm/contrib/openpam/lib/pam_authenticate.c projects/bhyve_svm/contrib/openpam/lib/pam_authenticate_secondary.c projects/bhyve_svm/contrib/openpam/lib/pam_chauthtok.c projects/bhyve_svm/contrib/openpam/lib/pam_close_session.c projects/bhyve_svm/contrib/openpam/lib/pam_end.c projects/bhyve_svm/contrib/openpam/lib/pam_error.c projects/bhyve_svm/contrib/openpam/lib/pam_get_authtok.c projects/bhyve_svm/contrib/openpam/lib/pam_get_data.c projects/bhyve_svm/contrib/openpam/lib/pam_get_item.c projects/bhyve_svm/contrib/openpam/lib/pam_get_mapped_authtok.c projects/bhyve_svm/contrib/openpam/lib/pam_get_mapped_username.c projects/bhyve_svm/contrib/openpam/lib/pam_get_user.c projects/bhyve_svm/contrib/openpam/lib/pam_getenv.c projects/bhyve_svm/contrib/openpam/lib/pam_getenvlist.c projects/bhyve_svm/contrib/openpam/lib/pam_info.c projects/bhyve_svm/contrib/openpam/lib/pam_open_session.c projects/bhyve_svm/contrib/openpam/lib/pam_prompt.c projects/bhyve_svm/contrib/openpam/lib/pam_putenv.c projects/bhyve_svm/contrib/openpam/lib/pam_set_data.c projects/bhyve_svm/contrib/openpam/lib/pam_set_item.c projects/bhyve_svm/contrib/openpam/lib/pam_set_mapped_authtok.c projects/bhyve_svm/contrib/openpam/lib/pam_set_mapped_username.c projects/bhyve_svm/contrib/openpam/lib/pam_setcred.c projects/bhyve_svm/contrib/openpam/lib/pam_setenv.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_acct_mgmt.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_authenticate.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_authenticate_secondary.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_chauthtok.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_close_session.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_get_mapped_authtok.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_get_mapped_username.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_open_session.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_set_mapped_authtok.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_set_mapped_username.c projects/bhyve_svm/contrib/openpam/lib/pam_sm_setcred.c projects/bhyve_svm/contrib/openpam/lib/pam_start.c projects/bhyve_svm/contrib/openpam/lib/pam_strerror.c projects/bhyve_svm/contrib/openpam/lib/pam_verror.c projects/bhyve_svm/contrib/openpam/lib/pam_vinfo.c projects/bhyve_svm/contrib/openpam/lib/pam_vprompt.c projects/bhyve_svm/gnu/usr.bin/patch/ projects/bhyve_svm/lib/libpam/libpam/pam_std_option.c projects/bhyve_svm/share/man/man9/vm_page_io.9 projects/bhyve_svm/share/man/man9/vm_page_sleep_if_busy.9 projects/bhyve_svm/share/man/man9/vm_page_wakeup.9 projects/bhyve_svm/sys/arm/freescale/imx/imx_machdep.c projects/bhyve_svm/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu projects/bhyve_svm/sys/contrib/ipfilter/netinet/QNX_OCL.txt projects/bhyve_svm/sys/crypto/aesni/aesencdec_amd64.S projects/bhyve_svm/sys/crypto/aesni/aesencdec_i386.S projects/bhyve_svm/sys/dev/iscsi/initiator/ projects/bhyve_svm/sys/dev/random/probe.c projects/bhyve_svm/sys/dev/xen/xenpci/evtchn.c projects/bhyve_svm/sys/i386/include/xen/xen_clock_util.h projects/bhyve_svm/sys/i386/xen/xen_clock_util.c projects/bhyve_svm/sys/i386/xen/xen_rtc.c projects/bhyve_svm/sys/modules/iscsi/initiator/ projects/bhyve_svm/sys/xen/evtchn/evtchn.c projects/bhyve_svm/tools/build/options/WITH_BSDCONFIG projects/bhyve_svm/tools/build/options/WITH_GNU_PATCH projects/bhyve_svm/tools/build/options/WITH_ICONV projects/bhyve_svm/usr.bin/vi/port.h Modified: projects/bhyve_svm/LOCKS projects/bhyve_svm/Makefile projects/bhyve_svm/Makefile.inc1 projects/bhyve_svm/ObsoleteFiles.inc projects/bhyve_svm/UPDATING projects/bhyve_svm/bin/chflags/chflags.1 projects/bhyve_svm/bin/ls/ls.1 projects/bhyve_svm/bin/pkill/pkill.1 projects/bhyve_svm/bin/pkill/pkill.c projects/bhyve_svm/bin/ps/keyword.c projects/bhyve_svm/bin/ps/ps.1 projects/bhyve_svm/bin/sh/alias.c projects/bhyve_svm/bin/sh/arith_yylex.c projects/bhyve_svm/bin/sh/eval.c projects/bhyve_svm/bin/sh/eval.h projects/bhyve_svm/bin/sh/exec.c projects/bhyve_svm/bin/sh/jobs.c projects/bhyve_svm/bin/sh/jobs.h projects/bhyve_svm/bin/sh/main.c projects/bhyve_svm/bin/sh/parser.c projects/bhyve_svm/bin/sh/parser.h projects/bhyve_svm/bin/sh/redir.c projects/bhyve_svm/bin/sh/redir.h projects/bhyve_svm/bin/sh/sh.1 projects/bhyve_svm/bin/sh/trap.c projects/bhyve_svm/bin/sh/trap.h projects/bhyve_svm/bin/sh/var.c projects/bhyve_svm/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/bhyve_svm/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/bhyve_svm/cddl/contrib/opensolaris/common/ctf/ctf_create.c projects/bhyve_svm/cddl/contrib/opensolaris/common/ctf/ctf_error.c projects/bhyve_svm/cddl/contrib/opensolaris/common/ctf/ctf_impl.h projects/bhyve_svm/cddl/contrib/opensolaris/common/ctf/ctf_open.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libctf/common/ctf_lib.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_status.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs_core/common/libzfs_core.h projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/bhyve_svm/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c projects/bhyve_svm/cddl/lib/libdtrace/Makefile projects/bhyve_svm/cddl/lib/libzpool/Makefile projects/bhyve_svm/cddl/usr.bin/ztest/Makefile projects/bhyve_svm/cddl/usr.sbin/zdb/Makefile projects/bhyve_svm/contrib/bind9/CHANGES projects/bhyve_svm/contrib/bind9/COPYRIGHT projects/bhyve_svm/contrib/bind9/HISTORY projects/bhyve_svm/contrib/bind9/Makefile.in projects/bhyve_svm/contrib/bind9/README projects/bhyve_svm/contrib/bind9/bin/Makefile.in projects/bhyve_svm/contrib/bind9/bin/check/check-tool.c projects/bhyve_svm/contrib/bind9/bin/check/check-tool.h projects/bhyve_svm/contrib/bind9/bin/check/named-checkconf.c projects/bhyve_svm/contrib/bind9/bin/check/named-checkzone.8 projects/bhyve_svm/contrib/bind9/bin/check/named-checkzone.c projects/bhyve_svm/contrib/bind9/bin/check/named-checkzone.docbook projects/bhyve_svm/contrib/bind9/bin/check/named-checkzone.html projects/bhyve_svm/contrib/bind9/bin/confgen/ddns-confgen.c projects/bhyve_svm/contrib/bind9/bin/confgen/rndc-confgen.c projects/bhyve_svm/contrib/bind9/bin/dig/Makefile.in projects/bhyve_svm/contrib/bind9/bin/dig/dig.1 projects/bhyve_svm/contrib/bind9/bin/dig/dig.c projects/bhyve_svm/contrib/bind9/bin/dig/dig.docbook projects/bhyve_svm/contrib/bind9/bin/dig/dig.html projects/bhyve_svm/contrib/bind9/bin/dig/dighost.c projects/bhyve_svm/contrib/bind9/bin/dig/host.c projects/bhyve_svm/contrib/bind9/bin/dig/include/dig/dig.h projects/bhyve_svm/contrib/bind9/bin/dig/nslookup.c projects/bhyve_svm/contrib/bind9/bin/dnssec/Makefile.in projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-revoke.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-revoke.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-settime.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-settime.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-settime.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-settime.html projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-signzone.8 projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-signzone.docbook projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssec-signzone.html projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssectool.c projects/bhyve_svm/contrib/bind9/bin/dnssec/dnssectool.h projects/bhyve_svm/contrib/bind9/bin/named/Makefile.in projects/bhyve_svm/contrib/bind9/bin/named/builtin.c projects/bhyve_svm/contrib/bind9/bin/named/client.c projects/bhyve_svm/contrib/bind9/bin/named/config.c projects/bhyve_svm/contrib/bind9/bin/named/control.c projects/bhyve_svm/contrib/bind9/bin/named/controlconf.c projects/bhyve_svm/contrib/bind9/bin/named/include/dlz/dlz_dlopen_driver.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/client.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/control.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/globals.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/interfacemgr.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/server.h projects/bhyve_svm/contrib/bind9/bin/named/include/named/zoneconf.h projects/bhyve_svm/contrib/bind9/bin/named/interfacemgr.c projects/bhyve_svm/contrib/bind9/bin/named/logconf.c projects/bhyve_svm/contrib/bind9/bin/named/main.c projects/bhyve_svm/contrib/bind9/bin/named/named.8 projects/bhyve_svm/contrib/bind9/bin/named/named.conf.5 projects/bhyve_svm/contrib/bind9/bin/named/named.conf.docbook projects/bhyve_svm/contrib/bind9/bin/named/named.conf.html projects/bhyve_svm/contrib/bind9/bin/named/named.docbook projects/bhyve_svm/contrib/bind9/bin/named/named.html projects/bhyve_svm/contrib/bind9/bin/named/query.c projects/bhyve_svm/contrib/bind9/bin/named/server.c projects/bhyve_svm/contrib/bind9/bin/named/statschannel.c projects/bhyve_svm/contrib/bind9/bin/named/unix/Makefile.in projects/bhyve_svm/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c projects/bhyve_svm/contrib/bind9/bin/named/unix/os.c projects/bhyve_svm/contrib/bind9/bin/named/update.c projects/bhyve_svm/contrib/bind9/bin/named/xfrout.c projects/bhyve_svm/contrib/bind9/bin/named/zoneconf.c projects/bhyve_svm/contrib/bind9/bin/nsupdate/Makefile.in projects/bhyve_svm/contrib/bind9/bin/nsupdate/nsupdate.1 projects/bhyve_svm/contrib/bind9/bin/nsupdate/nsupdate.c projects/bhyve_svm/contrib/bind9/bin/nsupdate/nsupdate.docbook projects/bhyve_svm/contrib/bind9/bin/nsupdate/nsupdate.html projects/bhyve_svm/contrib/bind9/bin/rndc/rndc.c projects/bhyve_svm/contrib/bind9/bin/tools/genrandom.8 projects/bhyve_svm/contrib/bind9/bin/tools/genrandom.docbook projects/bhyve_svm/contrib/bind9/bin/tools/genrandom.html projects/bhyve_svm/contrib/bind9/bin/tools/nsec3hash.c projects/bhyve_svm/contrib/bind9/config.h.in projects/bhyve_svm/contrib/bind9/config.threads.in projects/bhyve_svm/contrib/bind9/configure.in projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch01.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch03.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch05.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.ch10.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.html projects/bhyve_svm/contrib/bind9/doc/arm/Bv9ARM.pdf projects/bhyve_svm/contrib/bind9/doc/arm/dnssec.xml projects/bhyve_svm/contrib/bind9/doc/arm/man.arpaname.html projects/bhyve_svm/contrib/bind9/doc/arm/man.ddns-confgen.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dig.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-settime.html projects/bhyve_svm/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/bhyve_svm/contrib/bind9/doc/arm/man.genrandom.html projects/bhyve_svm/contrib/bind9/doc/arm/man.host.html projects/bhyve_svm/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/bhyve_svm/contrib/bind9/doc/arm/man.named-checkconf.html projects/bhyve_svm/contrib/bind9/doc/arm/man.named-checkzone.html projects/bhyve_svm/contrib/bind9/doc/arm/man.named-journalprint.html projects/bhyve_svm/contrib/bind9/doc/arm/man.named.html projects/bhyve_svm/contrib/bind9/doc/arm/man.nsec3hash.html projects/bhyve_svm/contrib/bind9/doc/arm/man.nsupdate.html projects/bhyve_svm/contrib/bind9/doc/arm/man.rndc-confgen.html projects/bhyve_svm/contrib/bind9/doc/arm/man.rndc.conf.html projects/bhyve_svm/contrib/bind9/doc/arm/man.rndc.html projects/bhyve_svm/contrib/bind9/doc/arm/pkcs11.xml projects/bhyve_svm/contrib/bind9/doc/misc/options projects/bhyve_svm/contrib/bind9/lib/bind9/api projects/bhyve_svm/contrib/bind9/lib/bind9/check.c projects/bhyve_svm/contrib/bind9/lib/dns/Makefile.in projects/bhyve_svm/contrib/bind9/lib/dns/acache.c projects/bhyve_svm/contrib/bind9/lib/dns/acl.c projects/bhyve_svm/contrib/bind9/lib/dns/adb.c projects/bhyve_svm/contrib/bind9/lib/dns/api projects/bhyve_svm/contrib/bind9/lib/dns/byaddr.c projects/bhyve_svm/contrib/bind9/lib/dns/cache.c projects/bhyve_svm/contrib/bind9/lib/dns/callbacks.c projects/bhyve_svm/contrib/bind9/lib/dns/client.c projects/bhyve_svm/contrib/bind9/lib/dns/db.c projects/bhyve_svm/contrib/bind9/lib/dns/dbtable.c projects/bhyve_svm/contrib/bind9/lib/dns/diff.c projects/bhyve_svm/contrib/bind9/lib/dns/dispatch.c projects/bhyve_svm/contrib/bind9/lib/dns/dns64.c projects/bhyve_svm/contrib/bind9/lib/dns/dnssec.c projects/bhyve_svm/contrib/bind9/lib/dns/dst_api.c projects/bhyve_svm/contrib/bind9/lib/dns/dst_internal.h projects/bhyve_svm/contrib/bind9/lib/dns/dst_openssl.h projects/bhyve_svm/contrib/bind9/lib/dns/dst_parse.c projects/bhyve_svm/contrib/bind9/lib/dns/ecdb.c projects/bhyve_svm/contrib/bind9/lib/dns/gssapi_link.c projects/bhyve_svm/contrib/bind9/lib/dns/gssapictx.c projects/bhyve_svm/contrib/bind9/lib/dns/hmac_link.c projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/Makefile.in projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/acache.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/acl.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/adb.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/cache.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/callbacks.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/db.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/dispatch.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/dnssec.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/events.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/journal.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/log.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/master.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/masterdump.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/nsec.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/nsec3.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/private.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/rdata.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/rdataset.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/resolver.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/result.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/rpz.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/rriterator.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/sdb.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/sdlz.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/time.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/types.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/view.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/zone.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dns/zt.h projects/bhyve_svm/contrib/bind9/lib/dns/include/dst/dst.h projects/bhyve_svm/contrib/bind9/lib/dns/iptable.c projects/bhyve_svm/contrib/bind9/lib/dns/journal.c projects/bhyve_svm/contrib/bind9/lib/dns/key.c projects/bhyve_svm/contrib/bind9/lib/dns/keytable.c projects/bhyve_svm/contrib/bind9/lib/dns/log.c projects/bhyve_svm/contrib/bind9/lib/dns/lookup.c projects/bhyve_svm/contrib/bind9/lib/dns/master.c projects/bhyve_svm/contrib/bind9/lib/dns/masterdump.c projects/bhyve_svm/contrib/bind9/lib/dns/message.c projects/bhyve_svm/contrib/bind9/lib/dns/nsec.c projects/bhyve_svm/contrib/bind9/lib/dns/nsec3.c projects/bhyve_svm/contrib/bind9/lib/dns/openssldh_link.c projects/bhyve_svm/contrib/bind9/lib/dns/openssldsa_link.c projects/bhyve_svm/contrib/bind9/lib/dns/opensslecdsa_link.c projects/bhyve_svm/contrib/bind9/lib/dns/opensslgost_link.c projects/bhyve_svm/contrib/bind9/lib/dns/opensslrsa_link.c projects/bhyve_svm/contrib/bind9/lib/dns/private.c projects/bhyve_svm/contrib/bind9/lib/dns/rbt.c projects/bhyve_svm/contrib/bind9/lib/dns/rbtdb.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/cert_37.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/key_25.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/opt_41.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/sig_24.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/soa_6.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/tkey_249.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/uri_256.c projects/bhyve_svm/contrib/bind9/lib/dns/rdata/generic/uri_256.h projects/bhyve_svm/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c projects/bhyve_svm/contrib/bind9/lib/dns/resolver.c projects/bhyve_svm/contrib/bind9/lib/dns/sdb.c projects/bhyve_svm/contrib/bind9/lib/dns/sdlz.c projects/bhyve_svm/contrib/bind9/lib/dns/validator.c projects/bhyve_svm/contrib/bind9/lib/dns/view.c projects/bhyve_svm/contrib/bind9/lib/dns/xfrin.c projects/bhyve_svm/contrib/bind9/lib/dns/zone.c projects/bhyve_svm/contrib/bind9/lib/dns/zt.c projects/bhyve_svm/contrib/bind9/lib/irs/api projects/bhyve_svm/contrib/bind9/lib/isc/Makefile.in projects/bhyve_svm/contrib/bind9/lib/isc/api projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/heap.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/list.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/mem.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/namespace.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/radix.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/socket.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/task.h projects/bhyve_svm/contrib/bind9/lib/isc/include/isc/taskpool.h projects/bhyve_svm/contrib/bind9/lib/isc/log.c projects/bhyve_svm/contrib/bind9/lib/isc/radix.c projects/bhyve_svm/contrib/bind9/lib/isc/socket_api.c projects/bhyve_svm/contrib/bind9/lib/isc/task.c projects/bhyve_svm/contrib/bind9/lib/isc/task_api.c projects/bhyve_svm/contrib/bind9/lib/isc/task_p.h projects/bhyve_svm/contrib/bind9/lib/isc/taskpool.c projects/bhyve_svm/contrib/bind9/lib/isc/unix/socket.c projects/bhyve_svm/contrib/bind9/lib/isccc/api projects/bhyve_svm/contrib/bind9/lib/isccfg/api projects/bhyve_svm/contrib/bind9/lib/isccfg/namedconf.c projects/bhyve_svm/contrib/bind9/lib/lwres/api projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_config.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_config.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_config.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_context.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_context.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_context.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gabn.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gabn.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gabn.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gethostent.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gethostent.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getipnode.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getipnode.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gnba.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gnba.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_gnba.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_hstrerror.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_inetntop.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_inetntop.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_noop.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_noop.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_noop.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_packet.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_packet.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_packet.html projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_resutil.3 projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_resutil.docbook projects/bhyve_svm/contrib/bind9/lib/lwres/man/lwres_resutil.html projects/bhyve_svm/contrib/bind9/lib/lwres/print_p.h projects/bhyve_svm/contrib/bind9/lib/lwres/strtoul.c projects/bhyve_svm/contrib/bind9/lib/lwres/unix/Makefile.in projects/bhyve_svm/contrib/bind9/lib/lwres/unix/include/Makefile.in projects/bhyve_svm/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in projects/bhyve_svm/contrib/bind9/lib/lwres/unix/include/lwres/net.h projects/bhyve_svm/contrib/bind9/lib/lwres/version.c projects/bhyve_svm/contrib/bind9/make/Makefile.in projects/bhyve_svm/contrib/bind9/make/includes.in projects/bhyve_svm/contrib/bind9/make/rules.in projects/bhyve_svm/contrib/bind9/mkinstalldirs projects/bhyve_svm/contrib/bind9/version projects/bhyve_svm/contrib/binutils/binutils/readelf.c projects/bhyve_svm/contrib/binutils/gas/config/tc-arm.c projects/bhyve_svm/contrib/binutils/gas/config/tc-i386.c projects/bhyve_svm/contrib/binutils/include/elf/common.h projects/bhyve_svm/contrib/binutils/opcodes/i386-dis.c projects/bhyve_svm/contrib/binutils/opcodes/i386-opc.tbl projects/bhyve_svm/contrib/binutils/opcodes/i386-tbl.h projects/bhyve_svm/contrib/bmake/ChangeLog projects/bhyve_svm/contrib/bmake/FILES projects/bhyve_svm/contrib/bmake/Makefile projects/bhyve_svm/contrib/bmake/bmake.1 projects/bhyve_svm/contrib/bmake/bmake.cat1 projects/bhyve_svm/contrib/bmake/compat.c projects/bhyve_svm/contrib/bmake/job.c projects/bhyve_svm/contrib/bmake/main.c projects/bhyve_svm/contrib/bmake/make.1 projects/bhyve_svm/contrib/bmake/make.h projects/bhyve_svm/contrib/bmake/mk/ChangeLog projects/bhyve_svm/contrib/bmake/mk/gendirdeps.mk projects/bhyve_svm/contrib/bmake/mk/install-mk projects/bhyve_svm/contrib/bmake/mk/libs.mk projects/bhyve_svm/contrib/bmake/mk/progs.mk projects/bhyve_svm/contrib/bmake/parse.c projects/bhyve_svm/contrib/bmake/unit-tests/Makefile.in projects/bhyve_svm/contrib/bmake/unit-tests/test.exp projects/bhyve_svm/contrib/bmake/var.c projects/bhyve_svm/contrib/gcc/ChangeLog.gcc43 projects/bhyve_svm/contrib/gcc/config/arm/ieee754-df.S projects/bhyve_svm/contrib/gcc/config/arm/libunwind.S projects/bhyve_svm/contrib/gcc/config/arm/unwind-arm.c projects/bhyve_svm/contrib/gcc/config/arm/unwind-arm.h projects/bhyve_svm/contrib/gcc/config/i386/i386.c projects/bhyve_svm/contrib/gcc/config/i386/i386.h projects/bhyve_svm/contrib/gcc/config/i386/i386.opt projects/bhyve_svm/contrib/gcc/doc/extend.texi projects/bhyve_svm/contrib/gcc/doc/invoke.texi projects/bhyve_svm/contrib/gcc/opth-gen.awk projects/bhyve_svm/contrib/gcclibs/libcpp/expr.c projects/bhyve_svm/contrib/gcclibs/libcpp/include/cpplib.h projects/bhyve_svm/contrib/ipfilter/BNF projects/bhyve_svm/contrib/ipfilter/BSD/Makefile projects/bhyve_svm/contrib/ipfilter/BSD/Makefile.ipsend projects/bhyve_svm/contrib/ipfilter/BSD/ipfadm-rcd projects/bhyve_svm/contrib/ipfilter/BSD/kupgrade projects/bhyve_svm/contrib/ipfilter/FAQ.FreeBSD projects/bhyve_svm/contrib/ipfilter/FWTK/ftp-gw.diff projects/bhyve_svm/contrib/ipfilter/FWTK/fwtk_transparent.diff projects/bhyve_svm/contrib/ipfilter/FreeBSD-2.2/kinstall projects/bhyve_svm/contrib/ipfilter/FreeBSD-3/INST.FreeBSD-3 projects/bhyve_svm/contrib/ipfilter/FreeBSD-3/kinstall projects/bhyve_svm/contrib/ipfilter/FreeBSD-4.0/kinstall projects/bhyve_svm/contrib/ipfilter/FreeBSD/kinstall projects/bhyve_svm/contrib/ipfilter/HISTORY projects/bhyve_svm/contrib/ipfilter/INSTALL.FreeBSD projects/bhyve_svm/contrib/ipfilter/Makefile projects/bhyve_svm/contrib/ipfilter/NAT.FreeBSD projects/bhyve_svm/contrib/ipfilter/etc/protocols projects/bhyve_svm/contrib/ipfilter/etc/services projects/bhyve_svm/contrib/ipfilter/ip_fil.c projects/bhyve_svm/contrib/ipfilter/ipf.h projects/bhyve_svm/contrib/ipfilter/iplang/Makefile projects/bhyve_svm/contrib/ipfilter/iplang/iplang.h projects/bhyve_svm/contrib/ipfilter/iplang/iplang.tst projects/bhyve_svm/contrib/ipfilter/iplang/iplang_l.l projects/bhyve_svm/contrib/ipfilter/iplang/iplang_y.y projects/bhyve_svm/contrib/ipfilter/ipmon.h projects/bhyve_svm/contrib/ipfilter/ipsd/Makefile projects/bhyve_svm/contrib/ipfilter/ipsd/ipsd.c projects/bhyve_svm/contrib/ipfilter/ipsd/ipsdr.c projects/bhyve_svm/contrib/ipfilter/ipsd/linux.h projects/bhyve_svm/contrib/ipfilter/ipsd/sbpf.c projects/bhyve_svm/contrib/ipfilter/ipsd/sdlpi.c projects/bhyve_svm/contrib/ipfilter/ipsd/slinux.c projects/bhyve_svm/contrib/ipfilter/ipsd/snit.c projects/bhyve_svm/contrib/ipfilter/ipsend/44arp.c projects/bhyve_svm/contrib/ipfilter/ipsend/Makefile projects/bhyve_svm/contrib/ipfilter/ipsend/arp.c projects/bhyve_svm/contrib/ipfilter/ipsend/dlcommon.c projects/bhyve_svm/contrib/ipfilter/ipsend/ip.c projects/bhyve_svm/contrib/ipfilter/ipsend/ipresend.c projects/bhyve_svm/contrib/ipfilter/ipsend/ipsend.5 projects/bhyve_svm/contrib/ipfilter/ipsend/ipsend.c projects/bhyve_svm/contrib/ipfilter/ipsend/ipsend.h projects/bhyve_svm/contrib/ipfilter/ipsend/ipsopt.c projects/bhyve_svm/contrib/ipfilter/ipsend/iptest.c projects/bhyve_svm/contrib/ipfilter/ipsend/iptests.c projects/bhyve_svm/contrib/ipfilter/ipsend/larp.c projects/bhyve_svm/contrib/ipfilter/ipsend/linux.h projects/bhyve_svm/contrib/ipfilter/ipsend/lsock.c projects/bhyve_svm/contrib/ipfilter/ipsend/resend.c projects/bhyve_svm/contrib/ipfilter/ipsend/sbpf.c projects/bhyve_svm/contrib/ipfilter/ipsend/sdlpi.c projects/bhyve_svm/contrib/ipfilter/ipsend/sirix.c projects/bhyve_svm/contrib/ipfilter/ipsend/slinux.c projects/bhyve_svm/contrib/ipfilter/ipsend/snit.c projects/bhyve_svm/contrib/ipfilter/ipsend/sock.c projects/bhyve_svm/contrib/ipfilter/ipt.h projects/bhyve_svm/contrib/ipfilter/kmem.h projects/bhyve_svm/contrib/ipfilter/l4check/Makefile projects/bhyve_svm/contrib/ipfilter/l4check/l4check.c projects/bhyve_svm/contrib/ipfilter/lib/Makefile projects/bhyve_svm/contrib/ipfilter/lib/addicmp.c projects/bhyve_svm/contrib/ipfilter/lib/addipopt.c projects/bhyve_svm/contrib/ipfilter/lib/alist_free.c projects/bhyve_svm/contrib/ipfilter/lib/alist_new.c projects/bhyve_svm/contrib/ipfilter/lib/bcopywrap.c projects/bhyve_svm/contrib/ipfilter/lib/binprint.c projects/bhyve_svm/contrib/ipfilter/lib/buildopts.c projects/bhyve_svm/contrib/ipfilter/lib/checkrev.c projects/bhyve_svm/contrib/ipfilter/lib/count4bits.c projects/bhyve_svm/contrib/ipfilter/lib/count6bits.c projects/bhyve_svm/contrib/ipfilter/lib/debug.c projects/bhyve_svm/contrib/ipfilter/lib/facpri.c projects/bhyve_svm/contrib/ipfilter/lib/facpri.h projects/bhyve_svm/contrib/ipfilter/lib/fill6bits.c projects/bhyve_svm/contrib/ipfilter/lib/flags.c projects/bhyve_svm/contrib/ipfilter/lib/gethost.c projects/bhyve_svm/contrib/ipfilter/lib/getifname.c projects/bhyve_svm/contrib/ipfilter/lib/getnattype.c projects/bhyve_svm/contrib/ipfilter/lib/getport.c projects/bhyve_svm/contrib/ipfilter/lib/getportproto.c projects/bhyve_svm/contrib/ipfilter/lib/getproto.c projects/bhyve_svm/contrib/ipfilter/lib/getsumd.c projects/bhyve_svm/contrib/ipfilter/lib/hostname.c projects/bhyve_svm/contrib/ipfilter/lib/icmpcode.c projects/bhyve_svm/contrib/ipfilter/lib/initparse.c projects/bhyve_svm/contrib/ipfilter/lib/ionames.c projects/bhyve_svm/contrib/ipfilter/lib/ipf_dotuning.c projects/bhyve_svm/contrib/ipfilter/lib/ipft_hx.c projects/bhyve_svm/contrib/ipfilter/lib/ipft_pc.c projects/bhyve_svm/contrib/ipfilter/lib/ipft_tx.c projects/bhyve_svm/contrib/ipfilter/lib/ipoptsec.c projects/bhyve_svm/contrib/ipfilter/lib/kmem.c projects/bhyve_svm/contrib/ipfilter/lib/kmem.h projects/bhyve_svm/contrib/ipfilter/lib/kmemcpywrap.c projects/bhyve_svm/contrib/ipfilter/lib/kvatoname.c projects/bhyve_svm/contrib/ipfilter/lib/load_file.c projects/bhyve_svm/contrib/ipfilter/lib/load_hash.c projects/bhyve_svm/contrib/ipfilter/lib/load_hashnode.c projects/bhyve_svm/contrib/ipfilter/lib/load_http.c projects/bhyve_svm/contrib/ipfilter/lib/load_pool.c projects/bhyve_svm/contrib/ipfilter/lib/load_poolnode.c projects/bhyve_svm/contrib/ipfilter/lib/load_url.c projects/bhyve_svm/contrib/ipfilter/lib/mutex_emul.c projects/bhyve_svm/contrib/ipfilter/lib/nametokva.c projects/bhyve_svm/contrib/ipfilter/lib/nat_setgroupmap.c projects/bhyve_svm/contrib/ipfilter/lib/ntomask.c projects/bhyve_svm/contrib/ipfilter/lib/optname.c projects/bhyve_svm/contrib/ipfilter/lib/optprint.c projects/bhyve_svm/contrib/ipfilter/lib/optprintv6.c projects/bhyve_svm/contrib/ipfilter/lib/optvalue.c projects/bhyve_svm/contrib/ipfilter/lib/portname.c projects/bhyve_svm/contrib/ipfilter/lib/print_toif.c projects/bhyve_svm/contrib/ipfilter/lib/printactivenat.c projects/bhyve_svm/contrib/ipfilter/lib/printaps.c projects/bhyve_svm/contrib/ipfilter/lib/printbuf.c projects/bhyve_svm/contrib/ipfilter/lib/printfr.c projects/bhyve_svm/contrib/ipfilter/lib/printfraginfo.c projects/bhyve_svm/contrib/ipfilter/lib/printhash.c projects/bhyve_svm/contrib/ipfilter/lib/printhash_live.c projects/bhyve_svm/contrib/ipfilter/lib/printhashdata.c projects/bhyve_svm/contrib/ipfilter/lib/printhashnode.c projects/bhyve_svm/contrib/ipfilter/lib/printhostmap.c projects/bhyve_svm/contrib/ipfilter/lib/printhostmask.c projects/bhyve_svm/contrib/ipfilter/lib/printifname.c projects/bhyve_svm/contrib/ipfilter/lib/printip.c projects/bhyve_svm/contrib/ipfilter/lib/printlog.c projects/bhyve_svm/contrib/ipfilter/lib/printmask.c projects/bhyve_svm/contrib/ipfilter/lib/printnat.c projects/bhyve_svm/contrib/ipfilter/lib/printpacket.c projects/bhyve_svm/contrib/ipfilter/lib/printpacket6.c projects/bhyve_svm/contrib/ipfilter/lib/printpool.c projects/bhyve_svm/contrib/ipfilter/lib/printpool_live.c projects/bhyve_svm/contrib/ipfilter/lib/printpooldata.c projects/bhyve_svm/contrib/ipfilter/lib/printpoolnode.c projects/bhyve_svm/contrib/ipfilter/lib/printportcmp.c projects/bhyve_svm/contrib/ipfilter/lib/printproto.c projects/bhyve_svm/contrib/ipfilter/lib/printsbuf.c projects/bhyve_svm/contrib/ipfilter/lib/printstate.c projects/bhyve_svm/contrib/ipfilter/lib/printtqtable.c projects/bhyve_svm/contrib/ipfilter/lib/printtunable.c projects/bhyve_svm/contrib/ipfilter/lib/remove_hash.c projects/bhyve_svm/contrib/ipfilter/lib/remove_hashnode.c projects/bhyve_svm/contrib/ipfilter/lib/remove_pool.c projects/bhyve_svm/contrib/ipfilter/lib/remove_poolnode.c projects/bhyve_svm/contrib/ipfilter/lib/resetlexer.c projects/bhyve_svm/contrib/ipfilter/lib/rwlock_emul.c projects/bhyve_svm/contrib/ipfilter/lib/tcpflags.c projects/bhyve_svm/contrib/ipfilter/lib/tcpoptnames.c projects/bhyve_svm/contrib/ipfilter/lib/v6ionames.c projects/bhyve_svm/contrib/ipfilter/lib/v6optvalue.c projects/bhyve_svm/contrib/ipfilter/lib/var.c projects/bhyve_svm/contrib/ipfilter/lib/verbose.c projects/bhyve_svm/contrib/ipfilter/man/Makefile projects/bhyve_svm/contrib/ipfilter/man/ipf.4 projects/bhyve_svm/contrib/ipfilter/man/ipf.5 projects/bhyve_svm/contrib/ipfilter/man/ipfilter.4 projects/bhyve_svm/contrib/ipfilter/man/ipfilter.4.mandoc projects/bhyve_svm/contrib/ipfilter/man/ipfstat.8 projects/bhyve_svm/contrib/ipfilter/man/ipftest.1 projects/bhyve_svm/contrib/ipfilter/man/ipmon.5 projects/bhyve_svm/contrib/ipfilter/man/ipnat.4 projects/bhyve_svm/contrib/ipfilter/man/ipnat.5 projects/bhyve_svm/contrib/ipfilter/man/ipnat.8 projects/bhyve_svm/contrib/ipfilter/man/ippool.5 projects/bhyve_svm/contrib/ipfilter/man/ippool.8 projects/bhyve_svm/contrib/ipfilter/md5.c projects/bhyve_svm/contrib/ipfilter/mkfilters projects/bhyve_svm/contrib/ipfilter/mlf_ipl.c projects/bhyve_svm/contrib/ipfilter/mlf_rule.c projects/bhyve_svm/contrib/ipfilter/mlfk_rule.c projects/bhyve_svm/contrib/ipfilter/mlh_rule.c (contents, props changed) projects/bhyve_svm/contrib/ipfilter/opts.h projects/bhyve_svm/contrib/ipfilter/pcap-ipf.h projects/bhyve_svm/contrib/ipfilter/perl/Ipfanaly.pl projects/bhyve_svm/contrib/ipfilter/perl/Isbgraph projects/bhyve_svm/contrib/ipfilter/perl/Services projects/bhyve_svm/contrib/ipfilter/perl/ipfmeta.pl projects/bhyve_svm/contrib/ipfilter/perl/logfilter.pl projects/bhyve_svm/contrib/ipfilter/radix_ipf.h projects/bhyve_svm/contrib/ipfilter/rules/BASIC_1.FW projects/bhyve_svm/contrib/ipfilter/rules/BASIC_2.FW projects/bhyve_svm/contrib/ipfilter/rules/firewall projects/bhyve_svm/contrib/ipfilter/rules/ipmon.conf projects/bhyve_svm/contrib/ipfilter/rules/server projects/bhyve_svm/contrib/ipfilter/samples/proxy.c projects/bhyve_svm/contrib/ipfilter/samples/relay.c projects/bhyve_svm/contrib/ipfilter/snoop.h projects/bhyve_svm/contrib/ipfilter/test/Makefile projects/bhyve_svm/contrib/ipfilter/test/bpftest projects/bhyve_svm/contrib/ipfilter/test/dotest projects/bhyve_svm/contrib/ipfilter/test/expected/f11 projects/bhyve_svm/contrib/ipfilter/test/expected/f13 projects/bhyve_svm/contrib/ipfilter/test/expected/f18 projects/bhyve_svm/contrib/ipfilter/test/expected/i1 projects/bhyve_svm/contrib/ipfilter/test/expected/i10 projects/bhyve_svm/contrib/ipfilter/test/expected/i11 projects/bhyve_svm/contrib/ipfilter/test/expected/i12 projects/bhyve_svm/contrib/ipfilter/test/expected/i14 projects/bhyve_svm/contrib/ipfilter/test/expected/i17 projects/bhyve_svm/contrib/ipfilter/test/expected/i18 projects/bhyve_svm/contrib/ipfilter/test/expected/i2 projects/bhyve_svm/contrib/ipfilter/test/expected/i20 projects/bhyve_svm/contrib/ipfilter/test/expected/i3 projects/bhyve_svm/contrib/ipfilter/test/expected/i4 projects/bhyve_svm/contrib/ipfilter/test/expected/i5 projects/bhyve_svm/contrib/ipfilter/test/expected/i6 projects/bhyve_svm/contrib/ipfilter/test/expected/i7 projects/bhyve_svm/contrib/ipfilter/test/expected/i8 projects/bhyve_svm/contrib/ipfilter/test/expected/i9 projects/bhyve_svm/contrib/ipfilter/test/expected/in1 projects/bhyve_svm/contrib/ipfilter/test/expected/in2 projects/bhyve_svm/contrib/ipfilter/test/expected/in3 projects/bhyve_svm/contrib/ipfilter/test/expected/in5 projects/bhyve_svm/contrib/ipfilter/test/expected/in6 projects/bhyve_svm/contrib/ipfilter/test/expected/ip1 projects/bhyve_svm/contrib/ipfilter/test/expected/ip2 projects/bhyve_svm/contrib/ipfilter/test/expected/ipv6.6 projects/bhyve_svm/contrib/ipfilter/test/expected/l1 projects/bhyve_svm/contrib/ipfilter/test/expected/l1.b projects/bhyve_svm/contrib/ipfilter/test/expected/n1 projects/bhyve_svm/contrib/ipfilter/test/expected/n10 projects/bhyve_svm/contrib/ipfilter/test/expected/n11 projects/bhyve_svm/contrib/ipfilter/test/expected/n12 projects/bhyve_svm/contrib/ipfilter/test/expected/n13 projects/bhyve_svm/contrib/ipfilter/test/expected/n14 projects/bhyve_svm/contrib/ipfilter/test/expected/n16 projects/bhyve_svm/contrib/ipfilter/test/expected/n2 projects/bhyve_svm/contrib/ipfilter/test/expected/n3 projects/bhyve_svm/contrib/ipfilter/test/expected/n4 projects/bhyve_svm/contrib/ipfilter/test/expected/n5 projects/bhyve_svm/contrib/ipfilter/test/expected/n6 projects/bhyve_svm/contrib/ipfilter/test/expected/n7 projects/bhyve_svm/contrib/ipfilter/test/expected/n8 projects/bhyve_svm/contrib/ipfilter/test/expected/n9 projects/bhyve_svm/contrib/ipfilter/test/expected/ni10 projects/bhyve_svm/contrib/ipfilter/test/expected/ni11 projects/bhyve_svm/contrib/ipfilter/test/expected/ni12 projects/bhyve_svm/contrib/ipfilter/test/expected/ni19 projects/bhyve_svm/contrib/ipfilter/test/expected/ni2 projects/bhyve_svm/contrib/ipfilter/test/expected/ni20 projects/bhyve_svm/contrib/ipfilter/test/expected/ni21 projects/bhyve_svm/contrib/ipfilter/test/expected/ni23 projects/bhyve_svm/contrib/ipfilter/test/expected/ni4 projects/bhyve_svm/contrib/ipfilter/test/expected/ni5 projects/bhyve_svm/contrib/ipfilter/test/expected/ni6 projects/bhyve_svm/contrib/ipfilter/test/expected/ni8 projects/bhyve_svm/contrib/ipfilter/test/expected/p1 projects/bhyve_svm/contrib/ipfilter/test/expected/p2 projects/bhyve_svm/contrib/ipfilter/test/expected/p3 projects/bhyve_svm/contrib/ipfilter/test/expected/p5 projects/bhyve_svm/contrib/ipfilter/test/input/f13 projects/bhyve_svm/contrib/ipfilter/test/input/f24 projects/bhyve_svm/contrib/ipfilter/test/input/ipv6.1 projects/bhyve_svm/contrib/ipfilter/test/input/ipv6.3 projects/bhyve_svm/contrib/ipfilter/test/input/ipv6.6 projects/bhyve_svm/contrib/ipfilter/test/input/n10 projects/bhyve_svm/contrib/ipfilter/test/input/n12 projects/bhyve_svm/contrib/ipfilter/test/input/n16 projects/bhyve_svm/contrib/ipfilter/test/input/n8 projects/bhyve_svm/contrib/ipfilter/test/input/n9 projects/bhyve_svm/contrib/ipfilter/test/input/ni1 projects/bhyve_svm/contrib/ipfilter/test/input/ni10 projects/bhyve_svm/contrib/ipfilter/test/input/ni11 projects/bhyve_svm/contrib/ipfilter/test/input/ni12 projects/bhyve_svm/contrib/ipfilter/test/input/ni13 projects/bhyve_svm/contrib/ipfilter/test/input/ni14 projects/bhyve_svm/contrib/ipfilter/test/input/ni15 projects/bhyve_svm/contrib/ipfilter/test/input/ni16 projects/bhyve_svm/contrib/ipfilter/test/input/ni19 projects/bhyve_svm/contrib/ipfilter/test/input/ni2 projects/bhyve_svm/contrib/ipfilter/test/input/ni20 projects/bhyve_svm/contrib/ipfilter/test/input/ni3 projects/bhyve_svm/contrib/ipfilter/test/input/ni4 projects/bhyve_svm/contrib/ipfilter/test/input/ni5 projects/bhyve_svm/contrib/ipfilter/test/input/ni7 projects/bhyve_svm/contrib/ipfilter/test/input/ni8 projects/bhyve_svm/contrib/ipfilter/test/input/ni9 projects/bhyve_svm/contrib/ipfilter/test/intest projects/bhyve_svm/contrib/ipfilter/test/iptest projects/bhyve_svm/contrib/ipfilter/test/itest projects/bhyve_svm/contrib/ipfilter/test/logtest projects/bhyve_svm/contrib/ipfilter/test/mtest projects/bhyve_svm/contrib/ipfilter/test/natipftest projects/bhyve_svm/contrib/ipfilter/test/nattest projects/bhyve_svm/contrib/ipfilter/test/ptest projects/bhyve_svm/contrib/ipfilter/test/regress/f13 projects/bhyve_svm/contrib/ipfilter/test/regress/i11 projects/bhyve_svm/contrib/ipfilter/test/regress/i12 projects/bhyve_svm/contrib/ipfilter/test/regress/i14 projects/bhyve_svm/contrib/ipfilter/test/regress/i17 projects/bhyve_svm/contrib/ipfilter/test/regress/i18 projects/bhyve_svm/contrib/ipfilter/test/regress/i2 projects/bhyve_svm/contrib/ipfilter/test/regress/i21 projects/bhyve_svm/contrib/ipfilter/test/regress/i7 projects/bhyve_svm/contrib/ipfilter/test/regress/i8 projects/bhyve_svm/contrib/ipfilter/test/regress/in2 projects/bhyve_svm/contrib/ipfilter/test/regress/ipv6.5 projects/bhyve_svm/contrib/ipfilter/test/regress/ipv6.6 projects/bhyve_svm/contrib/ipfilter/test/regress/ni13.nat projects/bhyve_svm/contrib/ipfilter/test/regress/ni14.nat projects/bhyve_svm/contrib/ipfilter/test/regress/p1.pool projects/bhyve_svm/contrib/ipfilter/test/regress/p3.ipf projects/bhyve_svm/contrib/ipfilter/test/test.format projects/bhyve_svm/contrib/ipfilter/test/vfycksum.pl projects/bhyve_svm/contrib/ipfilter/todo projects/bhyve_svm/contrib/ipfilter/tools/BNF.ipf projects/bhyve_svm/contrib/ipfilter/tools/Makefile projects/bhyve_svm/contrib/ipfilter/tools/ipf.c projects/bhyve_svm/contrib/ipfilter/tools/ipf_y.y projects/bhyve_svm/contrib/ipfilter/tools/ipfcomp.c projects/bhyve_svm/contrib/ipfilter/tools/ipfs.c projects/bhyve_svm/contrib/ipfilter/tools/ipfstat.c projects/bhyve_svm/contrib/ipfilter/tools/ipftest.c projects/bhyve_svm/contrib/ipfilter/tools/ipmon.c projects/bhyve_svm/contrib/ipfilter/tools/ipmon_y.y projects/bhyve_svm/contrib/ipfilter/tools/ipnat.c projects/bhyve_svm/contrib/ipfilter/tools/ipnat_y.y projects/bhyve_svm/contrib/ipfilter/tools/ippool.c projects/bhyve_svm/contrib/ipfilter/tools/ippool_y.y projects/bhyve_svm/contrib/ipfilter/tools/ipscan_y.y projects/bhyve_svm/contrib/ipfilter/tools/ipsyncm.c projects/bhyve_svm/contrib/ipfilter/tools/ipsyncs.c projects/bhyve_svm/contrib/ipfilter/tools/lex_var.h projects/bhyve_svm/contrib/ipfilter/tools/lexer.c projects/bhyve_svm/contrib/ipfilter/tools/lexer.h projects/bhyve_svm/contrib/ldns/ldns/dnssec_verify.h projects/bhyve_svm/contrib/ldns/ldns/util.h projects/bhyve_svm/contrib/libcxxrt/exception.cc projects/bhyve_svm/contrib/libcxxrt/unwind-itanium.h projects/bhyve_svm/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/bhyve_svm/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/bhyve_svm/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/bhyve_svm/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/bhyve_svm/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/bhyve_svm/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/bhyve_svm/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/bhyve_svm/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/bhyve_svm/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/bhyve_svm/contrib/nvi/LICENSE projects/bhyve_svm/contrib/nvi/README projects/bhyve_svm/contrib/nvi/catalog/Makefile projects/bhyve_svm/contrib/nvi/catalog/README projects/bhyve_svm/contrib/nvi/catalog/dump.c projects/bhyve_svm/contrib/nvi/catalog/dutch.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/french.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/german.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/german.owner projects/bhyve_svm/contrib/nvi/catalog/polish.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/ru_RU.KOI8-R.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/ru_RU.KOI8-R.owner projects/bhyve_svm/contrib/nvi/catalog/spanish.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/swedish.base (contents, props changed) projects/bhyve_svm/contrib/nvi/catalog/uk_UA.KOI8-U.base (contents, props changed) projects/bhyve_svm/contrib/nvi/cl/README.signal projects/bhyve_svm/contrib/nvi/cl/cl.h projects/bhyve_svm/contrib/nvi/cl/cl_funcs.c projects/bhyve_svm/contrib/nvi/cl/cl_main.c projects/bhyve_svm/contrib/nvi/cl/cl_read.c projects/bhyve_svm/contrib/nvi/cl/cl_screen.c projects/bhyve_svm/contrib/nvi/cl/cl_term.c projects/bhyve_svm/contrib/nvi/common/args.h projects/bhyve_svm/contrib/nvi/common/common.h projects/bhyve_svm/contrib/nvi/common/cut.c projects/bhyve_svm/contrib/nvi/common/cut.h projects/bhyve_svm/contrib/nvi/common/delete.c projects/bhyve_svm/contrib/nvi/common/exf.c projects/bhyve_svm/contrib/nvi/common/exf.h projects/bhyve_svm/contrib/nvi/common/gs.h projects/bhyve_svm/contrib/nvi/common/key.c projects/bhyve_svm/contrib/nvi/common/key.h projects/bhyve_svm/contrib/nvi/common/line.c projects/bhyve_svm/contrib/nvi/common/log.c projects/bhyve_svm/contrib/nvi/common/main.c projects/bhyve_svm/contrib/nvi/common/mark.c projects/bhyve_svm/contrib/nvi/common/mark.h projects/bhyve_svm/contrib/nvi/common/mem.h projects/bhyve_svm/contrib/nvi/common/msg.c projects/bhyve_svm/contrib/nvi/common/msg.h projects/bhyve_svm/contrib/nvi/common/options.c projects/bhyve_svm/contrib/nvi/common/options.h projects/bhyve_svm/contrib/nvi/common/options_f.c projects/bhyve_svm/contrib/nvi/common/put.c projects/bhyve_svm/contrib/nvi/common/recover.c projects/bhyve_svm/contrib/nvi/common/screen.c projects/bhyve_svm/contrib/nvi/common/screen.h projects/bhyve_svm/contrib/nvi/common/search.c projects/bhyve_svm/contrib/nvi/common/seq.c projects/bhyve_svm/contrib/nvi/common/seq.h projects/bhyve_svm/contrib/nvi/common/util.c projects/bhyve_svm/contrib/nvi/common/util.h projects/bhyve_svm/contrib/nvi/docs/USD.doc/vi.man/vi.1 projects/bhyve_svm/contrib/nvi/ex/ex.c projects/bhyve_svm/contrib/nvi/ex/ex.h projects/bhyve_svm/contrib/nvi/ex/ex_abbrev.c projects/bhyve_svm/contrib/nvi/ex/ex_append.c projects/bhyve_svm/contrib/nvi/ex/ex_args.c projects/bhyve_svm/contrib/nvi/ex/ex_argv.c projects/bhyve_svm/contrib/nvi/ex/ex_at.c projects/bhyve_svm/contrib/nvi/ex/ex_bang.c projects/bhyve_svm/contrib/nvi/ex/ex_cd.c projects/bhyve_svm/contrib/nvi/ex/ex_cmd.c projects/bhyve_svm/contrib/nvi/ex/ex_cscope.c projects/bhyve_svm/contrib/nvi/ex/ex_delete.c projects/bhyve_svm/contrib/nvi/ex/ex_display.c projects/bhyve_svm/contrib/nvi/ex/ex_edit.c projects/bhyve_svm/contrib/nvi/ex/ex_equal.c projects/bhyve_svm/contrib/nvi/ex/ex_file.c projects/bhyve_svm/contrib/nvi/ex/ex_filter.c projects/bhyve_svm/contrib/nvi/ex/ex_global.c projects/bhyve_svm/contrib/nvi/ex/ex_init.c projects/bhyve_svm/contrib/nvi/ex/ex_join.c projects/bhyve_svm/contrib/nvi/ex/ex_map.c projects/bhyve_svm/contrib/nvi/ex/ex_mark.c projects/bhyve_svm/contrib/nvi/ex/ex_mkexrc.c projects/bhyve_svm/contrib/nvi/ex/ex_move.c projects/bhyve_svm/contrib/nvi/ex/ex_open.c projects/bhyve_svm/contrib/nvi/ex/ex_preserve.c projects/bhyve_svm/contrib/nvi/ex/ex_print.c projects/bhyve_svm/contrib/nvi/ex/ex_put.c projects/bhyve_svm/contrib/nvi/ex/ex_quit.c projects/bhyve_svm/contrib/nvi/ex/ex_read.c projects/bhyve_svm/contrib/nvi/ex/ex_screen.c projects/bhyve_svm/contrib/nvi/ex/ex_script.c projects/bhyve_svm/contrib/nvi/ex/ex_set.c projects/bhyve_svm/contrib/nvi/ex/ex_shell.c projects/bhyve_svm/contrib/nvi/ex/ex_shift.c projects/bhyve_svm/contrib/nvi/ex/ex_source.c projects/bhyve_svm/contrib/nvi/ex/ex_stop.c projects/bhyve_svm/contrib/nvi/ex/ex_subst.c projects/bhyve_svm/contrib/nvi/ex/ex_tag.c projects/bhyve_svm/contrib/nvi/ex/ex_txt.c projects/bhyve_svm/contrib/nvi/ex/ex_undo.c projects/bhyve_svm/contrib/nvi/ex/ex_usage.c projects/bhyve_svm/contrib/nvi/ex/ex_util.c projects/bhyve_svm/contrib/nvi/ex/ex_version.c projects/bhyve_svm/contrib/nvi/ex/ex_visual.c projects/bhyve_svm/contrib/nvi/ex/ex_write.c projects/bhyve_svm/contrib/nvi/ex/ex_yank.c projects/bhyve_svm/contrib/nvi/ex/ex_z.c projects/bhyve_svm/contrib/nvi/ex/script.h projects/bhyve_svm/contrib/nvi/ex/tag.h projects/bhyve_svm/contrib/nvi/ex/version.h projects/bhyve_svm/contrib/nvi/vi/getc.c projects/bhyve_svm/contrib/nvi/vi/v_at.c projects/bhyve_svm/contrib/nvi/vi/v_ch.c projects/bhyve_svm/contrib/nvi/vi/v_cmd.c projects/bhyve_svm/contrib/nvi/vi/v_delete.c projects/bhyve_svm/contrib/nvi/vi/v_ex.c projects/bhyve_svm/contrib/nvi/vi/v_increment.c projects/bhyve_svm/contrib/nvi/vi/v_init.c projects/bhyve_svm/contrib/nvi/vi/v_itxt.c projects/bhyve_svm/contrib/nvi/vi/v_left.c projects/bhyve_svm/contrib/nvi/vi/v_mark.c projects/bhyve_svm/contrib/nvi/vi/v_match.c projects/bhyve_svm/contrib/nvi/vi/v_paragraph.c projects/bhyve_svm/contrib/nvi/vi/v_put.c projects/bhyve_svm/contrib/nvi/vi/v_redraw.c projects/bhyve_svm/contrib/nvi/vi/v_replace.c projects/bhyve_svm/contrib/nvi/vi/v_right.c projects/bhyve_svm/contrib/nvi/vi/v_screen.c projects/bhyve_svm/contrib/nvi/vi/v_scroll.c projects/bhyve_svm/contrib/nvi/vi/v_search.c projects/bhyve_svm/contrib/nvi/vi/v_section.c projects/bhyve_svm/contrib/nvi/vi/v_sentence.c projects/bhyve_svm/contrib/nvi/vi/v_status.c projects/bhyve_svm/contrib/nvi/vi/v_txt.c projects/bhyve_svm/contrib/nvi/vi/v_ulcase.c projects/bhyve_svm/contrib/nvi/vi/v_undo.c projects/bhyve_svm/contrib/nvi/vi/v_util.c projects/bhyve_svm/contrib/nvi/vi/v_word.c projects/bhyve_svm/contrib/nvi/vi/v_xchar.c projects/bhyve_svm/contrib/nvi/vi/v_yank.c projects/bhyve_svm/contrib/nvi/vi/v_z.c projects/bhyve_svm/contrib/nvi/vi/v_zexit.c projects/bhyve_svm/contrib/nvi/vi/vi.c projects/bhyve_svm/contrib/nvi/vi/vi.h projects/bhyve_svm/contrib/nvi/vi/vs_line.c projects/bhyve_svm/contrib/nvi/vi/vs_msg.c projects/bhyve_svm/contrib/nvi/vi/vs_refresh.c projects/bhyve_svm/contrib/nvi/vi/vs_relative.c projects/bhyve_svm/contrib/nvi/vi/vs_smap.c projects/bhyve_svm/contrib/nvi/vi/vs_split.c projects/bhyve_svm/contrib/ofed/libsdp/src/linux/sdp_inet.h projects/bhyve_svm/contrib/ofed/management/infiniband-diags/src/sminfo.c projects/bhyve_svm/contrib/ofed/management/opensm/opensm/osm_console.c projects/bhyve_svm/contrib/ofed/management/opensm/opensm/osm_subnet.c projects/bhyve_svm/contrib/openpam/CREDITS projects/bhyve_svm/contrib/openpam/HISTORY projects/bhyve_svm/contrib/openpam/INSTALL projects/bhyve_svm/contrib/openpam/LICENSE projects/bhyve_svm/contrib/openpam/Makefile.am projects/bhyve_svm/contrib/openpam/Makefile.in projects/bhyve_svm/contrib/openpam/README projects/bhyve_svm/contrib/openpam/RELNOTES projects/bhyve_svm/contrib/openpam/TODO projects/bhyve_svm/contrib/openpam/aclocal.m4 projects/bhyve_svm/contrib/openpam/autogen.sh projects/bhyve_svm/contrib/openpam/bin/Makefile.am projects/bhyve_svm/contrib/openpam/bin/Makefile.in projects/bhyve_svm/contrib/openpam/bin/openpam_dump_policy/Makefile.am projects/bhyve_svm/contrib/openpam/bin/openpam_dump_policy/Makefile.in projects/bhyve_svm/contrib/openpam/bin/openpam_dump_policy/openpam_dump_policy.c projects/bhyve_svm/contrib/openpam/bin/pamtest/Makefile.am projects/bhyve_svm/contrib/openpam/bin/pamtest/Makefile.in projects/bhyve_svm/contrib/openpam/bin/pamtest/pamtest.1 projects/bhyve_svm/contrib/openpam/bin/pamtest/pamtest.c projects/bhyve_svm/contrib/openpam/bin/su/Makefile.am projects/bhyve_svm/contrib/openpam/bin/su/Makefile.in projects/bhyve_svm/contrib/openpam/bin/su/su.1 projects/bhyve_svm/contrib/openpam/bin/su/su.c projects/bhyve_svm/contrib/openpam/compile projects/bhyve_svm/contrib/openpam/config.guess projects/bhyve_svm/contrib/openpam/config.h.in projects/bhyve_svm/contrib/openpam/config.sub projects/bhyve_svm/contrib/openpam/configure projects/bhyve_svm/contrib/openpam/configure.ac projects/bhyve_svm/contrib/openpam/depcomp projects/bhyve_svm/contrib/openpam/doc/Makefile.am projects/bhyve_svm/contrib/openpam/doc/Makefile.in projects/bhyve_svm/contrib/openpam/doc/man/Makefile.am projects/bhyve_svm/contrib/openpam/doc/man/Makefile.in projects/bhyve_svm/contrib/openpam/doc/man/openpam.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam.man projects/bhyve_svm/contrib/openpam/doc/man/openpam_borrow_cred.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_free_data.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_free_envlist.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_get_feature.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_get_option.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_log.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_nullconv.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_readline.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_readlinev.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_readword.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_restore_cred.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_set_feature.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_set_option.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_straddch.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_subst.3 projects/bhyve_svm/contrib/openpam/doc/man/openpam_ttyconv.3 projects/bhyve_svm/contrib/openpam/doc/man/pam.3 projects/bhyve_svm/contrib/openpam/doc/man/pam.conf.5 projects/bhyve_svm/contrib/openpam/doc/man/pam.man projects/bhyve_svm/contrib/openpam/doc/man/pam_acct_mgmt.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_authenticate.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_chauthtok.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_close_session.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_conv.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_end.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_error.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_get_authtok.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_get_data.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_get_item.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_get_user.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_getenv.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_getenvlist.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_info.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_open_session.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_prompt.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_putenv.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_set_data.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_set_item.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_setcred.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_setenv.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_authenticate.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_chauthtok.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_close_session.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_open_session.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_sm_setcred.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_start.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_strerror.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_verror.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_vinfo.3 projects/bhyve_svm/contrib/openpam/doc/man/pam_vprompt.3 projects/bhyve_svm/contrib/openpam/include/Makefile.am projects/bhyve_svm/contrib/openpam/include/Makefile.in projects/bhyve_svm/contrib/openpam/include/security/Makefile.am projects/bhyve_svm/contrib/openpam/include/security/Makefile.in projects/bhyve_svm/contrib/openpam/include/security/openpam.h projects/bhyve_svm/contrib/openpam/include/security/openpam_attr.h projects/bhyve_svm/contrib/openpam/include/security/openpam_version.h projects/bhyve_svm/contrib/openpam/include/security/pam_appl.h projects/bhyve_svm/contrib/openpam/include/security/pam_constants.h projects/bhyve_svm/contrib/openpam/include/security/pam_modules.h projects/bhyve_svm/contrib/openpam/include/security/pam_types.h projects/bhyve_svm/contrib/openpam/install-sh projects/bhyve_svm/contrib/openpam/misc/gendoc.pl projects/bhyve_svm/contrib/openpam/missing projects/bhyve_svm/contrib/openpam/modules/Makefile.am projects/bhyve_svm/contrib/openpam/modules/Makefile.in projects/bhyve_svm/contrib/openpam/modules/pam_deny/Makefile.am projects/bhyve_svm/contrib/openpam/modules/pam_deny/Makefile.in projects/bhyve_svm/contrib/openpam/modules/pam_deny/pam_deny.c projects/bhyve_svm/contrib/openpam/modules/pam_permit/Makefile.am projects/bhyve_svm/contrib/openpam/modules/pam_permit/Makefile.in projects/bhyve_svm/contrib/openpam/modules/pam_permit/pam_permit.c projects/bhyve_svm/contrib/openpam/modules/pam_unix/Makefile.am projects/bhyve_svm/contrib/openpam/modules/pam_unix/Makefile.in projects/bhyve_svm/contrib/openpam/modules/pam_unix/pam_unix.c projects/bhyve_svm/contrib/openpam/pamgdb.in projects/bhyve_svm/contrib/openpam/t/Makefile.am projects/bhyve_svm/contrib/openpam/t/Makefile.in projects/bhyve_svm/contrib/openpam/t/t.h projects/bhyve_svm/contrib/openpam/t/t_main.c projects/bhyve_svm/contrib/openpam/t/t_openpam_readlinev.c projects/bhyve_svm/contrib/openpam/t/t_openpam_readword.c projects/bhyve_svm/contrib/pam_modules/pam_passwdqc/pam_passwdqc.c projects/bhyve_svm/contrib/sendmail/include/sm/os/sm_os_freebsd.h projects/bhyve_svm/contrib/tcpdump/tcpdump.c projects/bhyve_svm/contrib/unbound/configure projects/bhyve_svm/contrib/unbound/configure.ac projects/bhyve_svm/contrib/unbound/daemon/cachedump.c projects/bhyve_svm/contrib/unbound/daemon/remote.c projects/bhyve_svm/contrib/unbound/daemon/remote.h projects/bhyve_svm/contrib/unbound/daemon/unbound.c projects/bhyve_svm/contrib/unbound/daemon/worker.c projects/bhyve_svm/contrib/unbound/daemon/worker.h projects/bhyve_svm/contrib/unbound/libunbound/context.c projects/bhyve_svm/contrib/unbound/libunbound/context.h projects/bhyve_svm/contrib/unbound/libunbound/libunbound.c projects/bhyve_svm/contrib/unbound/libunbound/libworker.c projects/bhyve_svm/contrib/unbound/libunbound/libworker.h projects/bhyve_svm/contrib/unbound/libunbound/unbound.h projects/bhyve_svm/contrib/unbound/smallapp/unbound-anchor.c projects/bhyve_svm/contrib/unbound/smallapp/unbound-control-setup.sh projects/bhyve_svm/contrib/unbound/smallapp/worker_cb.c projects/bhyve_svm/contrib/unbound/util/config_file.c projects/bhyve_svm/contrib/unbound/util/config_file.h projects/bhyve_svm/contrib/unbound/util/configlexer.c projects/bhyve_svm/contrib/unbound/util/configparser.c projects/bhyve_svm/contrib/unbound/util/fptr_wlist.c projects/bhyve_svm/contrib/wpa/src/drivers/driver_wired.c projects/bhyve_svm/crypto/openssh/readconf.c projects/bhyve_svm/crypto/openssh/sftp.c projects/bhyve_svm/crypto/openssh/ssh_config projects/bhyve_svm/crypto/openssh/ssh_config.5 projects/bhyve_svm/crypto/openssl/ssl/s3_cbc.c projects/bhyve_svm/etc/Makefile projects/bhyve_svm/etc/defaults/periodic.conf projects/bhyve_svm/etc/defaults/rc.conf projects/bhyve_svm/etc/devd/usb.conf projects/bhyve_svm/etc/group projects/bhyve_svm/etc/master.passwd projects/bhyve_svm/etc/mtree/BSD.include.dist projects/bhyve_svm/etc/mtree/BSD.root.dist projects/bhyve_svm/etc/mtree/BSD.usr.dist projects/bhyve_svm/etc/mtree/BSD.var.dist projects/bhyve_svm/etc/namedb/named.conf projects/bhyve_svm/etc/network.subr projects/bhyve_svm/etc/periodic/monthly/Makefile projects/bhyve_svm/etc/periodic/security/100.chksetuid projects/bhyve_svm/etc/periodic/security/110.neggrpperm projects/bhyve_svm/etc/periodic/security/200.chkmounts projects/bhyve_svm/etc/periodic/security/300.chkuid0 projects/bhyve_svm/etc/periodic/security/400.passwdless projects/bhyve_svm/etc/periodic/security/410.logincheck projects/bhyve_svm/etc/periodic/security/460.chkportsum projects/bhyve_svm/etc/periodic/security/500.ipfwdenied projects/bhyve_svm/etc/periodic/security/510.ipfdenied projects/bhyve_svm/etc/periodic/security/520.pfdenied projects/bhyve_svm/etc/periodic/security/550.ipfwlimit projects/bhyve_svm/etc/periodic/security/610.ipf6denied projects/bhyve_svm/etc/periodic/security/700.kernelmsg projects/bhyve_svm/etc/periodic/security/800.loginfail projects/bhyve_svm/etc/periodic/security/900.tcpwrap projects/bhyve_svm/etc/periodic/security/security.functions projects/bhyve_svm/etc/periodic/weekly/Makefile projects/bhyve_svm/etc/rc.d/Makefile projects/bhyve_svm/etc/rc.d/bsnmpd projects/bhyve_svm/etc/rc.d/ipfilter projects/bhyve_svm/etc/rc.d/ipfs projects/bhyve_svm/etc/rc.d/ipmon projects/bhyve_svm/etc/rc.d/routing projects/bhyve_svm/etc/rc.d/savecore projects/bhyve_svm/etc/rc.d/sendmail projects/bhyve_svm/gnu/lib/Makefile projects/bhyve_svm/gnu/lib/libstdc++/Makefile projects/bhyve_svm/gnu/lib/libstdc++/config.h projects/bhyve_svm/gnu/lib/libsupc++/Makefile projects/bhyve_svm/gnu/usr.bin/Makefile projects/bhyve_svm/gnu/usr.bin/cc/Makefile projects/bhyve_svm/gnu/usr.bin/cc/include/Makefile projects/bhyve_svm/gnu/usr.bin/grep/grep.c projects/bhyve_svm/gnu/usr.bin/groff/tmac/mdoc.local projects/bhyve_svm/include/Makefile projects/bhyve_svm/include/dirent.h projects/bhyve_svm/include/iconv.h projects/bhyve_svm/include/paths.h projects/bhyve_svm/include/stdlib.h projects/bhyve_svm/include/unistd.h projects/bhyve_svm/kerberos5/Makefile.inc projects/bhyve_svm/kerberos5/lib/libheimipcc/Makefile projects/bhyve_svm/kerberos5/lib/libheimipcs/Makefile projects/bhyve_svm/kerberos5/lib/libkrb5/Makefile projects/bhyve_svm/kerberos5/libexec/digest-service/Makefile projects/bhyve_svm/kerberos5/libexec/kcm/Makefile projects/bhyve_svm/lib/Makefile projects/bhyve_svm/lib/bind/config.h projects/bhyve_svm/lib/bind/dns/Makefile projects/bhyve_svm/lib/bind/dns/code.h projects/bhyve_svm/lib/bind/dns/dns/rdatastruct.h projects/bhyve_svm/lib/bind/isc/Makefile projects/bhyve_svm/lib/libc++/Makefile projects/bhyve_svm/lib/libc/Makefile projects/bhyve_svm/lib/libc/amd64/sys/setlogin.S projects/bhyve_svm/lib/libc/arm/_fpmath.h projects/bhyve_svm/lib/libc/arm/arith.h projects/bhyve_svm/lib/libc/arm/softfloat/arm-gcc.h projects/bhyve_svm/lib/libc/db/btree/bt_open.c projects/bhyve_svm/lib/libc/db/hash/hash.c projects/bhyve_svm/lib/libc/db/hash/hash_page.c projects/bhyve_svm/lib/libc/gen/Makefile.inc projects/bhyve_svm/lib/libc/gen/Symbol.map projects/bhyve_svm/lib/libc/gen/closedir.c projects/bhyve_svm/lib/libc/gen/directory.3 projects/bhyve_svm/lib/libc/gen/errlst.c projects/bhyve_svm/lib/libc/gen/fnmatch.c projects/bhyve_svm/lib/libc/gen/getlogin.c projects/bhyve_svm/lib/libc/gen/lockf.3 projects/bhyve_svm/lib/libc/gen/signal.3 projects/bhyve_svm/lib/libc/gen/strtofflags.c projects/bhyve_svm/lib/libc/gen/wordexp.c projects/bhyve_svm/lib/libc/gmon/gmon.c projects/bhyve_svm/lib/libc/i386/sys/setlogin.S projects/bhyve_svm/lib/libc/iconv/Symbol.map projects/bhyve_svm/lib/libc/iconv/citrus_iconv.c projects/bhyve_svm/lib/libc/iconv/citrus_iconv_local.h projects/bhyve_svm/lib/libc/iconv/iconv.c projects/bhyve_svm/lib/libc/include/compat.h projects/bhyve_svm/lib/libc/include/libc_private.h projects/bhyve_svm/lib/libc/net/ether_addr.c projects/bhyve_svm/lib/libc/net/eui64.c projects/bhyve_svm/lib/libc/net/getaddrinfo.c projects/bhyve_svm/lib/libc/net/gethostbyht.c projects/bhyve_svm/lib/libc/net/gethostbyname.3 projects/bhyve_svm/lib/libc/net/getnetbyht.c projects/bhyve_svm/lib/libc/net/getprotoent.c projects/bhyve_svm/lib/libc/net/getservent.c projects/bhyve_svm/lib/libc/net/hesiod.c projects/bhyve_svm/lib/libc/net/if_nametoindex.c projects/bhyve_svm/lib/libc/net/name6.c projects/bhyve_svm/lib/libc/net/nscachedcli.c projects/bhyve_svm/lib/libc/net/nsdispatch.c projects/bhyve_svm/lib/libc/net/rcmd.c projects/bhyve_svm/lib/libc/posix1e/mac.c projects/bhyve_svm/lib/libc/resolv/res_init.c projects/bhyve_svm/lib/libc/resolv/res_query.c projects/bhyve_svm/lib/libc/resolv/res_send.c projects/bhyve_svm/lib/libc/stdio/Makefile.inc projects/bhyve_svm/lib/libc/stdio/Symbol.map projects/bhyve_svm/lib/libc/stdio/flags.c projects/bhyve_svm/lib/libc/stdio/mktemp.3 projects/bhyve_svm/lib/libc/stdio/mktemp.c projects/bhyve_svm/lib/libc/stdio/xprintf_errno.c projects/bhyve_svm/lib/libc/stdlib/strtonum.3 projects/bhyve_svm/lib/libc/stdlib/system.c projects/bhyve_svm/lib/libc/string/strerror.c projects/bhyve_svm/lib/libc/sys/Symbol.map projects/bhyve_svm/lib/libc/sys/cap_ioctls_limit.2 projects/bhyve_svm/lib/libc/sys/chflags.2 projects/bhyve_svm/lib/libc/sys/close.2 projects/bhyve_svm/lib/libc/sys/dup.2 projects/bhyve_svm/lib/libc/sys/ioctl.2 projects/bhyve_svm/lib/libc/sys/mmap.2 projects/bhyve_svm/lib/libc/sys/pdfork.2 projects/bhyve_svm/lib/libc/sys/pselect.2 projects/bhyve_svm/lib/libc/sys/read.2 projects/bhyve_svm/lib/libc/sys/sigaction.2 projects/bhyve_svm/lib/libc/sys/sigpending.2 projects/bhyve_svm/lib/libc/sys/sigreturn.2 projects/bhyve_svm/lib/libc/sys/sigsuspend.2 projects/bhyve_svm/lib/libc/sys/sigwait.2 projects/bhyve_svm/lib/libc/sys/socketpair.2 projects/bhyve_svm/lib/libc/sys/wait.2 projects/bhyve_svm/lib/libc/sys/write.2 projects/bhyve_svm/lib/libcompiler_rt/Makefile projects/bhyve_svm/lib/libelf/libelf_data.c projects/bhyve_svm/lib/libfetch/http.c projects/bhyve_svm/lib/libiconv_modules/Makefile.inc projects/bhyve_svm/lib/libkiconv/xlat16_iconv.c projects/bhyve_svm/lib/libldns/Makefile projects/bhyve_svm/lib/libpam/libpam/Makefile projects/bhyve_svm/lib/libpam/modules/pam_passwdqc/Makefile projects/bhyve_svm/lib/libpam/modules/pam_ssh/Makefile projects/bhyve_svm/lib/libproc/proc_sym.c projects/bhyve_svm/lib/libprocstat/libprocstat.c projects/bhyve_svm/lib/libprocstat/libprocstat.h projects/bhyve_svm/lib/libthread_db/arch/arm/libpthread_md.c projects/bhyve_svm/lib/libusb/libusb20_ugen20.c projects/bhyve_svm/lib/libutil/expand_number.c projects/bhyve_svm/lib/libutil/login_auth.c projects/bhyve_svm/lib/libutil/login_cap.c projects/bhyve_svm/lib/libutil/pidfile.c projects/bhyve_svm/lib/libutil/quotafile.c projects/bhyve_svm/lib/libutil/uucplock.c projects/bhyve_svm/lib/msun/Makefile projects/bhyve_svm/lib/msun/Symbol.map projects/bhyve_svm/lib/msun/src/math_private.h projects/bhyve_svm/lib/msun/src/s_erf.c projects/bhyve_svm/lib/msun/src/s_erff.c projects/bhyve_svm/release/picobsd/build/picobsd projects/bhyve_svm/release/powerpc/mkisoimages.sh projects/bhyve_svm/release/release.conf.sample projects/bhyve_svm/release/release.sh projects/bhyve_svm/release/scripts/mm-mtree.sh projects/bhyve_svm/sbin/camcontrol/camcontrol.8 projects/bhyve_svm/sbin/camcontrol/camcontrol.c projects/bhyve_svm/sbin/camcontrol/fwdownload.c projects/bhyve_svm/sbin/dhclient/bpf.c projects/bhyve_svm/sbin/dhclient/dhclient.c projects/bhyve_svm/sbin/etherswitchcfg/etherswitchcfg.8 projects/bhyve_svm/sbin/fdisk_pc98/fdisk.c projects/bhyve_svm/sbin/fsck_ffs/fsutil.c projects/bhyve_svm/sbin/hastd/subr.c projects/bhyve_svm/sbin/init/init.c projects/bhyve_svm/sbin/ipf/ipf/Makefile projects/bhyve_svm/sbin/ipf/ipftest/Makefile projects/bhyve_svm/sbin/ipf/libipf/Makefile projects/bhyve_svm/sbin/iscontrol/auth_subr.c projects/bhyve_svm/sbin/iscontrol/config.c projects/bhyve_svm/sbin/iscontrol/fsm.c projects/bhyve_svm/sbin/iscontrol/iscontrol.8 projects/bhyve_svm/sbin/iscontrol/iscontrol.c projects/bhyve_svm/sbin/iscontrol/iscsi.conf.5 projects/bhyve_svm/sbin/iscontrol/login.c projects/bhyve_svm/sbin/iscontrol/misc.c projects/bhyve_svm/sbin/iscontrol/pdu.c projects/bhyve_svm/sbin/newfs_msdos/newfs_msdos.c projects/bhyve_svm/sbin/swapon/swapon.c projects/bhyve_svm/secure/lib/libssh/Makefile projects/bhyve_svm/secure/libexec/sftp-server/Makefile projects/bhyve_svm/secure/libexec/ssh-keysign/Makefile projects/bhyve_svm/secure/libexec/ssh-pkcs11-helper/Makefile projects/bhyve_svm/secure/usr.bin/scp/Makefile projects/bhyve_svm/secure/usr.bin/sftp/Makefile projects/bhyve_svm/secure/usr.bin/ssh-add/Makefile projects/bhyve_svm/secure/usr.bin/ssh-agent/Makefile projects/bhyve_svm/secure/usr.bin/ssh-keygen/Makefile projects/bhyve_svm/secure/usr.bin/ssh-keyscan/Makefile projects/bhyve_svm/secure/usr.bin/ssh/Makefile projects/bhyve_svm/secure/usr.sbin/sshd/Makefile projects/bhyve_svm/share/doc/bind9/Makefile projects/bhyve_svm/share/examples/kld/Makefile projects/bhyve_svm/share/examples/scsi_target/scsi_target.c projects/bhyve_svm/share/i18n/csmapper/Makefile projects/bhyve_svm/share/i18n/esdb/Makefile projects/bhyve_svm/share/man/man4/Makefile projects/bhyve_svm/share/man/man4/capsicum.4 projects/bhyve_svm/share/man/man4/cd.4 projects/bhyve_svm/share/man/man4/ctl.4 projects/bhyve_svm/share/man/man4/geom.4 projects/bhyve_svm/share/man/man4/netgraph.4 projects/bhyve_svm/share/man/man4/ntb.4 projects/bhyve_svm/share/man/man4/psm.4 projects/bhyve_svm/share/man/man4/random.4 projects/bhyve_svm/share/man/man4/rsu.4 projects/bhyve_svm/share/man/man4/sa.4 projects/bhyve_svm/share/man/man4/sysmouse.4 projects/bhyve_svm/share/man/man4/udav.4 projects/bhyve_svm/share/man/man4/vtnet.4 projects/bhyve_svm/share/man/man5/Makefile projects/bhyve_svm/share/man/man5/fstab.5 projects/bhyve_svm/share/man/man5/periodic.conf.5 projects/bhyve_svm/share/man/man5/rc.conf.5 projects/bhyve_svm/share/man/man5/src.conf.5 projects/bhyve_svm/share/man/man7/release.7 projects/bhyve_svm/share/man/man9/EVENTHANDLER.9 projects/bhyve_svm/share/man/man9/Makefile projects/bhyve_svm/share/man/man9/SDT.9 projects/bhyve_svm/share/man/man9/VOP_GETPAGES.9 projects/bhyve_svm/share/man/man9/atomic.9 projects/bhyve_svm/share/man/man9/mutex.9 projects/bhyve_svm/share/man/man9/netisr.9 projects/bhyve_svm/share/man/man9/pfil.9 projects/bhyve_svm/share/man/man9/sleep.9 projects/bhyve_svm/share/man/man9/sysctl.9 projects/bhyve_svm/share/man/man9/sysctl_add_oid.9 projects/bhyve_svm/share/man/man9/timeout.9 projects/bhyve_svm/share/man/man9/vm_map_find.9 projects/bhyve_svm/share/man/man9/vm_page_alloc.9 projects/bhyve_svm/share/man/man9/vm_page_grab.9 projects/bhyve_svm/share/misc/committers-ports.dot projects/bhyve_svm/share/misc/committers-src.dot projects/bhyve_svm/share/mk/bsd.lib.mk projects/bhyve_svm/share/mk/bsd.libnames.mk projects/bhyve_svm/share/mk/bsd.own.mk projects/bhyve_svm/share/mk/bsd.prog.mk projects/bhyve_svm/share/mk/sys.mk projects/bhyve_svm/sys/amd64/amd64/apic_vector.S projects/bhyve_svm/sys/amd64/amd64/cpu_switch.S projects/bhyve_svm/sys/amd64/amd64/db_disasm.c projects/bhyve_svm/sys/amd64/amd64/genassym.c projects/bhyve_svm/sys/amd64/amd64/initcpu.c projects/bhyve_svm/sys/amd64/amd64/machdep.c projects/bhyve_svm/sys/amd64/amd64/minidump_machdep.c projects/bhyve_svm/sys/amd64/amd64/mp_machdep.c projects/bhyve_svm/sys/amd64/amd64/pmap.c projects/bhyve_svm/sys/amd64/amd64/sys_machdep.c projects/bhyve_svm/sys/amd64/amd64/vm_machdep.c projects/bhyve_svm/sys/amd64/conf/GENERIC projects/bhyve_svm/sys/amd64/conf/NOTES projects/bhyve_svm/sys/amd64/include/acpica_machdep.h projects/bhyve_svm/sys/amd64/include/apicvar.h projects/bhyve_svm/sys/amd64/include/asm.h projects/bhyve_svm/sys/amd64/include/atomic.h projects/bhyve_svm/sys/amd64/include/cpu.h projects/bhyve_svm/sys/amd64/include/cpufunc.h projects/bhyve_svm/sys/amd64/include/intr_machdep.h projects/bhyve_svm/sys/amd64/include/pcpu.h projects/bhyve_svm/sys/amd64/include/pmap.h projects/bhyve_svm/sys/amd64/include/sf_buf.h projects/bhyve_svm/sys/amd64/include/smp.h projects/bhyve_svm/sys/amd64/include/vmm.h (contents, props changed) projects/bhyve_svm/sys/amd64/include/vmparam.h projects/bhyve_svm/sys/amd64/include/xen/hypercall.h projects/bhyve_svm/sys/amd64/include/xen/xen-os.h projects/bhyve_svm/sys/amd64/linux32/linux32_machdep.c projects/bhyve_svm/sys/amd64/linux32/linux32_proto.h projects/bhyve_svm/sys/amd64/linux32/linux32_syscall.h projects/bhyve_svm/sys/amd64/linux32/linux32_syscalls.c projects/bhyve_svm/sys/amd64/linux32/linux32_sysent.c projects/bhyve_svm/sys/amd64/vmm/intel/vmx.c projects/bhyve_svm/sys/amd64/vmm/intel/vtd.c projects/bhyve_svm/sys/amd64/vmm/io/ppt.c projects/bhyve_svm/sys/amd64/vmm/io/ppt.h projects/bhyve_svm/sys/amd64/vmm/vmm.c projects/bhyve_svm/sys/amd64/vmm/vmm_instruction_emul.c projects/bhyve_svm/sys/amd64/vmm/vmm_msr.c projects/bhyve_svm/sys/amd64/vmm/x86.c projects/bhyve_svm/sys/amd64/vmm/x86.h projects/bhyve_svm/sys/arm/allwinner/common.c projects/bhyve_svm/sys/arm/allwinner/files.a10 projects/bhyve_svm/sys/arm/allwinner/timer.c projects/bhyve_svm/sys/arm/arm/bus_space_generic.c projects/bhyve_svm/sys/arm/arm/busdma_machdep-v6.c projects/bhyve_svm/sys/arm/arm/busdma_machdep.c projects/bhyve_svm/sys/arm/arm/genassym.c projects/bhyve_svm/sys/arm/arm/irq_dispatch.S projects/bhyve_svm/sys/arm/arm/machdep.c projects/bhyve_svm/sys/arm/arm/mp_machdep.c projects/bhyve_svm/sys/arm/arm/pmap-v6.c projects/bhyve_svm/sys/arm/arm/pmap.c projects/bhyve_svm/sys/arm/arm/stdatomic.c projects/bhyve_svm/sys/arm/arm/swtch.S projects/bhyve_svm/sys/arm/arm/sys_machdep.c projects/bhyve_svm/sys/arm/arm/undefined.c projects/bhyve_svm/sys/arm/arm/vfp.c projects/bhyve_svm/sys/arm/arm/vm_machdep.c projects/bhyve_svm/sys/arm/at91/at91.c projects/bhyve_svm/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/bhyve_svm/sys/arm/conf/ARMADAXP projects/bhyve_svm/sys/arm/conf/ARNDALE projects/bhyve_svm/sys/arm/conf/BEAGLEBONE projects/bhyve_svm/sys/arm/conf/CUBIEBOARD projects/bhyve_svm/sys/arm/conf/EFIKA_MX projects/bhyve_svm/sys/arm/conf/PANDABOARD projects/bhyve_svm/sys/arm/conf/RPI-B projects/bhyve_svm/sys/arm/conf/VERSATILEPB projects/bhyve_svm/sys/arm/conf/ZEDBOARD projects/bhyve_svm/sys/arm/freescale/imx/files.imx51 projects/bhyve_svm/sys/arm/freescale/imx/imx51_ccm.c projects/bhyve_svm/sys/arm/freescale/imx/imx51_gpio.c projects/bhyve_svm/sys/arm/freescale/imx/imx51_iomux.c projects/bhyve_svm/sys/arm/freescale/imx/imx_gpt.c projects/bhyve_svm/sys/arm/freescale/imx/imx_gptreg.h projects/bhyve_svm/sys/arm/freescale/imx/imx_wdog.c projects/bhyve_svm/sys/arm/include/fp.h projects/bhyve_svm/sys/arm/include/ieee.h projects/bhyve_svm/sys/arm/include/param.h projects/bhyve_svm/sys/arm/include/pcb.h projects/bhyve_svm/sys/arm/include/pcpu.h projects/bhyve_svm/sys/arm/include/pmap.h projects/bhyve_svm/sys/arm/include/pte.h projects/bhyve_svm/sys/arm/include/sf_buf.h projects/bhyve_svm/sys/arm/include/vmparam.h projects/bhyve_svm/sys/arm/mv/armadaxp/armadaxp_mp.c projects/bhyve_svm/sys/arm/s3c2xx0/s3c2xx0_space.c projects/bhyve_svm/sys/arm/samsung/exynos/exynos5_machdep.c projects/bhyve_svm/sys/arm/ti/am335x/am335x_prcm.c projects/bhyve_svm/sys/arm/ti/am335x/files.am335x projects/bhyve_svm/sys/arm/ti/files.ti projects/bhyve_svm/sys/arm/ti/ti_prcm.h projects/bhyve_svm/sys/arm/xscale/i80321/i80321_space.c projects/bhyve_svm/sys/arm/xscale/i8134x/i81342_space.c projects/bhyve_svm/sys/arm/xscale/ixp425/ixp425_pci_space.c projects/bhyve_svm/sys/boot/common/part.c projects/bhyve_svm/sys/boot/fdt/dts/am335x.dtsi projects/bhyve_svm/sys/boot/ficl/loader.c projects/bhyve_svm/sys/boot/forth/beastie.4th projects/bhyve_svm/sys/boot/forth/color.4th projects/bhyve_svm/sys/boot/forth/color.4th.8 projects/bhyve_svm/sys/boot/forth/loader.conf.5 projects/bhyve_svm/sys/boot/forth/menu.4th projects/bhyve_svm/sys/boot/forth/menu.4th.8 projects/bhyve_svm/sys/boot/forth/menu.rc projects/bhyve_svm/sys/boot/forth/version.4th projects/bhyve_svm/sys/boot/forth/version.4th.8 projects/bhyve_svm/sys/boot/i386/libi386/biosacpi.c projects/bhyve_svm/sys/boot/pc98/boot2/boot2.c projects/bhyve_svm/sys/boot/pc98/libpc98/biosdisk.c projects/bhyve_svm/sys/bsm/audit_kevents.h projects/bhyve_svm/sys/bsm/audit_record.h projects/bhyve_svm/sys/cam/ata/ata_da.c projects/bhyve_svm/sys/cam/cam_debug.h projects/bhyve_svm/sys/cam/cam_periph.c projects/bhyve_svm/sys/cam/cam_xpt.c projects/bhyve_svm/sys/cam/cam_xpt.h projects/bhyve_svm/sys/cam/cam_xpt_periph.h projects/bhyve_svm/sys/cam/ctl/ctl.c projects/bhyve_svm/sys/cam/ctl/ctl.h projects/bhyve_svm/sys/cam/ctl/ctl_backend.h projects/bhyve_svm/sys/cam/ctl/ctl_backend_block.c projects/bhyve_svm/sys/cam/ctl/ctl_backend_ramdisk.c projects/bhyve_svm/sys/cam/ctl/ctl_frontend.h projects/bhyve_svm/sys/cam/ctl/ctl_io.h projects/bhyve_svm/sys/cam/ctl/ctl_ioctl.h projects/bhyve_svm/sys/cam/ctl/scsi_ctl.c projects/bhyve_svm/sys/cam/scsi/scsi_all.c projects/bhyve_svm/sys/cam/scsi/scsi_all.h projects/bhyve_svm/sys/cam/scsi/scsi_ch.c projects/bhyve_svm/sys/cam/scsi/scsi_da.c projects/bhyve_svm/sys/cam/scsi/scsi_da.h projects/bhyve_svm/sys/cam/scsi/scsi_enc.c projects/bhyve_svm/sys/cam/scsi/scsi_enc_ses.c projects/bhyve_svm/sys/cam/scsi/scsi_sa.c projects/bhyve_svm/sys/cam/scsi/scsi_targ_bh.c projects/bhyve_svm/sys/cam/scsi/scsi_target.c projects/bhyve_svm/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c projects/bhyve_svm/sys/cddl/compat/opensolaris/sys/file.h projects/bhyve_svm/sys/cddl/compat/opensolaris/sys/kcondvar.h projects/bhyve_svm/sys/cddl/compat/opensolaris/sys/kmem.h projects/bhyve_svm/sys/cddl/compat/opensolaris/sys/time.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg_impl.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_onexit.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/bhyve_svm/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/bhyve_svm/sys/cddl/dev/dtrace/dtrace_clone.c projects/bhyve_svm/sys/cddl/dev/dtrace/dtrace_load.c projects/bhyve_svm/sys/cddl/dev/dtrace/dtrace_unload.c projects/bhyve_svm/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S projects/bhyve_svm/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c projects/bhyve_svm/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c projects/bhyve_svm/sys/cddl/dev/fbt/fbt.c projects/bhyve_svm/sys/cddl/dev/fbt/fbt_powerpc.c projects/bhyve_svm/sys/cddl/dev/sdt/sdt.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32.h projects/bhyve_svm/sys/compat/freebsd32/freebsd32_ioctl.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32_misc.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32_proto.h projects/bhyve_svm/sys/compat/freebsd32/freebsd32_syscall.h projects/bhyve_svm/sys/compat/freebsd32/freebsd32_syscalls.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32_sysent.c projects/bhyve_svm/sys/compat/freebsd32/freebsd32_systrace_args.c projects/bhyve_svm/sys/compat/freebsd32/syscalls.master projects/bhyve_svm/sys/compat/linux/linux_dtrace.h projects/bhyve_svm/sys/compat/linux/linux_file.c projects/bhyve_svm/sys/compat/linux/linux_ioctl.c projects/bhyve_svm/sys/compat/linux/linux_misc.c projects/bhyve_svm/sys/compat/linux/linux_socket.c projects/bhyve_svm/sys/compat/ndis/kern_ndis.c projects/bhyve_svm/sys/compat/ndis/ndis_var.h projects/bhyve_svm/sys/compat/ndis/subr_ntoskrnl.c projects/bhyve_svm/sys/compat/svr4/imgact_svr4.c projects/bhyve_svm/sys/compat/svr4/svr4_fcntl.c projects/bhyve_svm/sys/compat/svr4/svr4_filio.c projects/bhyve_svm/sys/compat/svr4/svr4_ioctl.c projects/bhyve_svm/sys/compat/svr4/svr4_misc.c projects/bhyve_svm/sys/compat/svr4/svr4_stream.c projects/bhyve_svm/sys/conf/Makefile.amd64 projects/bhyve_svm/sys/conf/NOTES projects/bhyve_svm/sys/conf/files projects/bhyve_svm/sys/conf/files.amd64 projects/bhyve_svm/sys/conf/files.arm projects/bhyve_svm/sys/conf/files.i386 projects/bhyve_svm/sys/conf/files.mips projects/bhyve_svm/sys/conf/files.powerpc projects/bhyve_svm/sys/conf/kern.post.mk projects/bhyve_svm/sys/conf/newvers.sh projects/bhyve_svm/sys/conf/options projects/bhyve_svm/sys/conf/options.amd64 projects/bhyve_svm/sys/conf/options.arm projects/bhyve_svm/sys/conf/options.i386 projects/bhyve_svm/sys/conf/options.powerpc projects/bhyve_svm/sys/contrib/dev/acpica/acpica_prep.sh projects/bhyve_svm/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/bhyve_svm/sys/contrib/dev/acpica/common/adisasm.c projects/bhyve_svm/sys/contrib/dev/acpica/common/adwalk.c projects/bhyve_svm/sys/contrib/dev/acpica/common/dmextern.c projects/bhyve_svm/sys/contrib/dev/acpica/common/dmtable.c projects/bhyve_svm/sys/contrib/dev/acpica/compiler/aslcompile.c projects/bhyve_svm/sys/contrib/dev/acpica/compiler/aslglobal.h projects/bhyve_svm/sys/contrib/dev/acpica/compiler/aslload.c projects/bhyve_svm/sys/contrib/dev/acpica/compiler/aslmain.c projects/bhyve_svm/sys/contrib/dev/acpica/compiler/asloptions.c projects/bhyve_svm/sys/contrib/dev/acpica/compiler/dtcompile.c projects/bhyve_svm/sys/contrib/dev/acpica/components/debugger/dbcmds.c projects/bhyve_svm/sys/contrib/dev/acpica/components/debugger/dbfileio.c projects/bhyve_svm/sys/contrib/dev/acpica/components/debugger/dbinput.c projects/bhyve_svm/sys/contrib/dev/acpica/components/debugger/dbnames.c projects/bhyve_svm/sys/contrib/dev/acpica/components/events/evgpeutil.c projects/bhyve_svm/sys/contrib/dev/acpica/components/events/evmisc.c projects/bhyve_svm/sys/contrib/dev/acpica/components/events/evregion.c projects/bhyve_svm/sys/contrib/dev/acpica/components/events/evsci.c projects/bhyve_svm/sys/contrib/dev/acpica/components/events/evxface.c projects/bhyve_svm/sys/contrib/dev/acpica/components/hardware/hwxface.c projects/bhyve_svm/sys/contrib/dev/acpica/components/namespace/nsaccess.c projects/bhyve_svm/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/bhyve_svm/sys/contrib/dev/acpica/components/namespace/nsxfeval.c projects/bhyve_svm/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/bhyve_svm/sys/contrib/dev/acpica/components/tables/tbprint.c projects/bhyve_svm/sys/contrib/dev/acpica/components/tables/tbxfroot.c projects/bhyve_svm/sys/contrib/dev/acpica/components/utilities/utdebug.c projects/bhyve_svm/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/bhyve_svm/sys/contrib/dev/acpica/include/acdebug.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acdisasm.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acevents.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acexcep.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acglobal.h projects/bhyve_svm/sys/contrib/dev/acpica/include/aclocal.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acnamesp.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acpiosxf.h projects/bhyve_svm/sys/contrib/dev/acpica/include/acpixf.h projects/bhyve_svm/sys/contrib/dev/acpica/include/actypes.h projects/bhyve_svm/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/fil.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_auth.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_auth.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_compat.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_fil.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_frag.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_frag.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_htable.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_htable.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_irc_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_log.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_lookup.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_lookup.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_nat.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_nat.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_pool.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_pool.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_pptp_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_proxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_proxy.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c (contents, props changed) projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_rpcb_pxy.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_rules.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_scan.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_scan.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_state.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_state.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_sync.c projects/bhyve_svm/sys/contrib/ipfilter/netinet/ip_sync.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/ipl.h projects/bhyve_svm/sys/contrib/ipfilter/netinet/mlfk_ipl.c projects/bhyve_svm/sys/contrib/rdma/krping/krping.c projects/bhyve_svm/sys/contrib/rdma/krping/krping.h projects/bhyve_svm/sys/contrib/rdma/krping/krping_dev.c projects/bhyve_svm/sys/crypto/aesni/aeskeys_amd64.S projects/bhyve_svm/sys/crypto/aesni/aesni.c projects/bhyve_svm/sys/crypto/aesni/aesni.h projects/bhyve_svm/sys/crypto/aesni/aesni_wrap.c projects/bhyve_svm/sys/dev/aac/aac_linux.c projects/bhyve_svm/sys/dev/aacraid/aacraid_linux.c projects/bhyve_svm/sys/dev/aacraid/aacraid_pci.c projects/bhyve_svm/sys/dev/acpica/Osd/OsdSynch.c projects/bhyve_svm/sys/dev/acpica/acpi_thermal.c projects/bhyve_svm/sys/dev/advansys/adw_pci.c projects/bhyve_svm/sys/dev/agp/agp.c projects/bhyve_svm/sys/dev/agp/agp_i810.c projects/bhyve_svm/sys/dev/ahci/ahci.c projects/bhyve_svm/sys/dev/aic7xxx/ahc_pci.c projects/bhyve_svm/sys/dev/aic7xxx/ahd_pci.c projects/bhyve_svm/sys/dev/amdtemp/amdtemp.c projects/bhyve_svm/sys/dev/amr/amr_linux.c projects/bhyve_svm/sys/dev/amr/amr_pci.c projects/bhyve_svm/sys/dev/an/if_an_pci.c projects/bhyve_svm/sys/dev/arcmsr/arcmsr.c projects/bhyve_svm/sys/dev/asr/asr.c projects/bhyve_svm/sys/dev/ata/ata-pci.c projects/bhyve_svm/sys/dev/ath/if_ath.c projects/bhyve_svm/sys/dev/ath/if_ath_tx.c projects/bhyve_svm/sys/dev/atkbdc/psm.c projects/bhyve_svm/sys/dev/bce/if_bce.c projects/bhyve_svm/sys/dev/bge/if_bge.c projects/bhyve_svm/sys/dev/bge/if_bgereg.h projects/bhyve_svm/sys/dev/bktr/bktr_core.c projects/bhyve_svm/sys/dev/bktr/bktr_os.c projects/bhyve_svm/sys/dev/buslogic/bt_pci.c projects/bhyve_svm/sys/dev/bwi/bwimac.c projects/bhyve_svm/sys/dev/bxe/if_bxe.c projects/bhyve_svm/sys/dev/cas/if_cas.c projects/bhyve_svm/sys/dev/cfi/cfi_bus_nexus.c projects/bhyve_svm/sys/dev/cfi/cfi_core.c projects/bhyve_svm/sys/dev/cfi/cfi_dev.c projects/bhyve_svm/sys/dev/cfi/cfi_disk.c projects/bhyve_svm/sys/dev/cfi/cfi_reg.h projects/bhyve_svm/sys/dev/cfi/cfi_var.h projects/bhyve_svm/sys/dev/cpuctl/cpuctl.c projects/bhyve_svm/sys/dev/cxgb/cxgb_sge.c projects/bhyve_svm/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c projects/bhyve_svm/sys/dev/cxgbe/adapter.h projects/bhyve_svm/sys/dev/cxgbe/offload.h projects/bhyve_svm/sys/dev/cxgbe/osdep.h projects/bhyve_svm/sys/dev/cxgbe/t4_main.c projects/bhyve_svm/sys/dev/cxgbe/t4_sge.c projects/bhyve_svm/sys/dev/cxgbe/t4_tracer.c projects/bhyve_svm/sys/dev/cxgbe/tom/t4_cpl_io.c projects/bhyve_svm/sys/dev/cxgbe/tom/t4_listen.c projects/bhyve_svm/sys/dev/cxgbe/tom/t4_tom.c projects/bhyve_svm/sys/dev/cxgbe/tom/t4_tom.h projects/bhyve_svm/sys/dev/dpt/dpt_pci.c projects/bhyve_svm/sys/dev/drm/drm_scatter.c projects/bhyve_svm/sys/dev/drm2/drmP.h projects/bhyve_svm/sys/dev/drm2/drm_atomic.h projects/bhyve_svm/sys/dev/drm2/drm_context.c projects/bhyve_svm/sys/dev/drm2/drm_crtc.c projects/bhyve_svm/sys/dev/drm2/drm_crtc.h projects/bhyve_svm/sys/dev/drm2/drm_crtc_helper.h projects/bhyve_svm/sys/dev/drm2/drm_dp_helper.h projects/bhyve_svm/sys/dev/drm2/drm_dp_iic_helper.c projects/bhyve_svm/sys/dev/drm2/drm_drv.c projects/bhyve_svm/sys/dev/drm2/drm_edid.c projects/bhyve_svm/sys/dev/drm2/drm_gem.c projects/bhyve_svm/sys/dev/drm2/drm_gem_names.c projects/bhyve_svm/sys/dev/drm2/drm_ioctl.c projects/bhyve_svm/sys/dev/drm2/drm_irq.c projects/bhyve_svm/sys/dev/drm2/drm_linux_list.h projects/bhyve_svm/sys/dev/drm2/drm_pci.c projects/bhyve_svm/sys/dev/drm2/drm_pciids.h projects/bhyve_svm/sys/dev/drm2/drm_scatter.c projects/bhyve_svm/sys/dev/drm2/drm_sysctl.c projects/bhyve_svm/sys/dev/drm2/i915/i915_gem.c projects/bhyve_svm/sys/dev/drm2/i915/i915_gem_execbuffer.c projects/bhyve_svm/sys/dev/drm2/i915/intel_crt.c projects/bhyve_svm/sys/dev/drm2/i915/intel_display.c projects/bhyve_svm/sys/dev/drm2/i915/intel_dp.c projects/bhyve_svm/sys/dev/drm2/i915/intel_drv.h projects/bhyve_svm/sys/dev/drm2/i915/intel_hdmi.c projects/bhyve_svm/sys/dev/drm2/i915/intel_lvds.c projects/bhyve_svm/sys/dev/drm2/i915/intel_panel.c projects/bhyve_svm/sys/dev/drm2/i915/intel_ringbuffer.c projects/bhyve_svm/sys/dev/drm2/i915/intel_sdvo.c projects/bhyve_svm/sys/dev/drm2/i915/intel_tv.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_bo.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_bo_driver.h projects/bhyve_svm/sys/dev/drm2/ttm/ttm_bo_util.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_bo_vm.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_execbuf_util.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_page_alloc.c projects/bhyve_svm/sys/dev/drm2/ttm/ttm_tt.c projects/bhyve_svm/sys/dev/e1000/if_em.c projects/bhyve_svm/sys/dev/e1000/if_igb.c projects/bhyve_svm/sys/dev/e1000/if_lem.c projects/bhyve_svm/sys/dev/fatm/if_fatm.c projects/bhyve_svm/sys/dev/fb/vesa.c projects/bhyve_svm/sys/dev/fdc/fdc.c projects/bhyve_svm/sys/dev/filemon/filemon.c projects/bhyve_svm/sys/dev/firewire/fwdev.c projects/bhyve_svm/sys/dev/firewire/fwohci_pci.c projects/bhyve_svm/sys/dev/flash/mx25l.c projects/bhyve_svm/sys/dev/fxp/if_fxp.c projects/bhyve_svm/sys/dev/glxsb/glxsb.c projects/bhyve_svm/sys/dev/gpio/gpiobus.c projects/bhyve_svm/sys/dev/gxemul/cons/gxemul_cons.c projects/bhyve_svm/sys/dev/gxemul/disk/gxemul_disk.c projects/bhyve_svm/sys/dev/gxemul/disk/gxemul_diskreg.h projects/bhyve_svm/sys/dev/gxemul/ether/gxreg.h projects/bhyve_svm/sys/dev/hatm/if_hatm.c projects/bhyve_svm/sys/dev/hatm/if_hatm_intr.c projects/bhyve_svm/sys/dev/hifn/hifn7751.c projects/bhyve_svm/sys/dev/hpt27xx/hpt27xx_osm_bsd.c projects/bhyve_svm/sys/dev/hwpmc/hwpmc_core.c projects/bhyve_svm/sys/dev/hwpmc/hwpmc_logging.c projects/bhyve_svm/sys/dev/hwpmc/hwpmc_mod.c projects/bhyve_svm/sys/dev/hwpmc/hwpmc_powerpc.c projects/bhyve_svm/sys/dev/hwpmc/pmc_events.h projects/bhyve_svm/sys/dev/if_ndis/if_ndis.c projects/bhyve_svm/sys/dev/iicbus/if_ic.c projects/bhyve_svm/sys/dev/iir/iir.c projects/bhyve_svm/sys/dev/iir/iir.h projects/bhyve_svm/sys/dev/iir/iir_ctrl.c projects/bhyve_svm/sys/dev/iir/iir_pci.c projects/bhyve_svm/sys/dev/ipmi/ipmi_linux.c projects/bhyve_svm/sys/dev/ips/ips_pci.c projects/bhyve_svm/sys/dev/isp/isp_freebsd.c projects/bhyve_svm/sys/dev/isp/isp_pci.c projects/bhyve_svm/sys/dev/iwn/if_iwn.c projects/bhyve_svm/sys/dev/iwn/if_iwnvar.h projects/bhyve_svm/sys/dev/ixgb/if_ixgb.c projects/bhyve_svm/sys/dev/ixgbe/ixgbe.c projects/bhyve_svm/sys/dev/ixgbe/ixv.c projects/bhyve_svm/sys/dev/jme/if_jme.c projects/bhyve_svm/sys/dev/lge/if_lge.c projects/bhyve_svm/sys/dev/lmc/if_lmc.c projects/bhyve_svm/sys/dev/md/md.c projects/bhyve_svm/sys/dev/mfi/mfi_cam.c projects/bhyve_svm/sys/dev/mfi/mfi_linux.c projects/bhyve_svm/sys/dev/mfi/mfi_pci.c projects/bhyve_svm/sys/dev/mfi/mfi_syspd.c projects/bhyve_svm/sys/dev/mge/if_mge.c projects/bhyve_svm/sys/dev/mly/mly.c projects/bhyve_svm/sys/dev/mmc/mmc.c projects/bhyve_svm/sys/dev/mmc/mmcsd.c projects/bhyve_svm/sys/dev/mn/if_mn.c projects/bhyve_svm/sys/dev/mps/mps.c projects/bhyve_svm/sys/dev/mps/mps_pci.c projects/bhyve_svm/sys/dev/mps/mps_sas.c projects/bhyve_svm/sys/dev/mps/mps_sas.h projects/bhyve_svm/sys/dev/mps/mps_sas_lsi.c projects/bhyve_svm/sys/dev/mps/mpsvar.h projects/bhyve_svm/sys/dev/mpt/mpt_pci.c projects/bhyve_svm/sys/dev/mwl/if_mwl.c projects/bhyve_svm/sys/dev/mwl/if_mwl_pci.c projects/bhyve_svm/sys/dev/mxge/if_mxge.c projects/bhyve_svm/sys/dev/nfe/if_nfe.c projects/bhyve_svm/sys/dev/ntb/if_ntb/if_ntb.c projects/bhyve_svm/sys/dev/ntb/ntb_hw/ntb_hw.c projects/bhyve_svm/sys/dev/ntb/ntb_hw/ntb_hw.h projects/bhyve_svm/sys/dev/ntb/ntb_hw/ntb_regs.h projects/bhyve_svm/sys/dev/nvme/nvme.c projects/bhyve_svm/sys/dev/nvme/nvme.h projects/bhyve_svm/sys/dev/nvme/nvme_ctrlr.c projects/bhyve_svm/sys/dev/nvme/nvme_ns.c projects/bhyve_svm/sys/dev/nvme/nvme_private.h projects/bhyve_svm/sys/dev/ofw/ofw_bus_subr.c projects/bhyve_svm/sys/dev/ofw/ofw_console.c projects/bhyve_svm/sys/dev/ofw/openfirm.c projects/bhyve_svm/sys/dev/ofw/openfirm.h projects/bhyve_svm/sys/dev/patm/if_patm.c projects/bhyve_svm/sys/dev/patm/if_patm_tx.c projects/bhyve_svm/sys/dev/pccbb/pccbb_pci.c projects/bhyve_svm/sys/dev/pci/fixup_pci.c projects/bhyve_svm/sys/dev/pci/pcivar.h projects/bhyve_svm/sys/dev/pci/vga_pci.c projects/bhyve_svm/sys/dev/ppbus/if_plip.c projects/bhyve_svm/sys/dev/pst/pst-pci.c projects/bhyve_svm/sys/dev/qlxgb/qla_hw.c projects/bhyve_svm/sys/dev/qlxgbe/ql_misc.c projects/bhyve_svm/sys/dev/qlxgbe/ql_os.c projects/bhyve_svm/sys/dev/random/harvest.c projects/bhyve_svm/sys/dev/random/hash.c projects/bhyve_svm/sys/dev/random/hash.h projects/bhyve_svm/sys/dev/random/ivy.c projects/bhyve_svm/sys/dev/random/nehemiah.c projects/bhyve_svm/sys/dev/random/randomdev.c projects/bhyve_svm/sys/dev/random/randomdev.h projects/bhyve_svm/sys/dev/random/randomdev_soft.c projects/bhyve_svm/sys/dev/random/randomdev_soft.h projects/bhyve_svm/sys/dev/random/yarrow.c projects/bhyve_svm/sys/dev/random/yarrow.h projects/bhyve_svm/sys/dev/rndtest/rndtest.c projects/bhyve_svm/sys/dev/rp/rp_pci.c projects/bhyve_svm/sys/dev/safe/safe.c projects/bhyve_svm/sys/dev/sdhci/sdhci.c projects/bhyve_svm/sys/dev/sdhci/sdhci.h projects/bhyve_svm/sys/dev/sfxge/sfxge_rx.c projects/bhyve_svm/sys/dev/sound/pci/als4000.c projects/bhyve_svm/sys/dev/sound/pci/aureal.c projects/bhyve_svm/sys/dev/sound/pci/cmi.c projects/bhyve_svm/sys/dev/sound/pci/cs4281.c projects/bhyve_svm/sys/dev/sound/pci/csa.c projects/bhyve_svm/sys/dev/sound/pci/ds1.c projects/bhyve_svm/sys/dev/sound/pci/emu10k1.c projects/bhyve_svm/sys/dev/sound/pci/emu10kx.c projects/bhyve_svm/sys/dev/sound/pci/envy24.c projects/bhyve_svm/sys/dev/sound/pci/envy24ht.c projects/bhyve_svm/sys/dev/sound/pci/es137x.c projects/bhyve_svm/sys/dev/sound/pci/fm801.c projects/bhyve_svm/sys/dev/sound/pci/hdspe.c projects/bhyve_svm/sys/dev/sound/pci/maestro.c projects/bhyve_svm/sys/dev/sound/pci/maestro3.c projects/bhyve_svm/sys/dev/sound/pci/neomagic.c projects/bhyve_svm/sys/dev/sound/pci/solo.c projects/bhyve_svm/sys/dev/sound/pci/t4dwave.c projects/bhyve_svm/sys/dev/sound/pci/via82c686.c projects/bhyve_svm/sys/dev/sound/pci/vibes.c projects/bhyve_svm/sys/dev/stge/if_stge.c projects/bhyve_svm/sys/dev/streams/streams.c projects/bhyve_svm/sys/dev/sym/sym_hipd.c projects/bhyve_svm/sys/dev/tdfx/tdfx_linux.c projects/bhyve_svm/sys/dev/tdfx/tdfx_pci.c projects/bhyve_svm/sys/dev/ti/if_ti.c projects/bhyve_svm/sys/dev/twa/tw_osl_freebsd.c projects/bhyve_svm/sys/dev/tws/tws.c projects/bhyve_svm/sys/dev/uart/uart.h projects/bhyve_svm/sys/dev/uart/uart_bus_fdt.c projects/bhyve_svm/sys/dev/uart/uart_core.c projects/bhyve_svm/sys/dev/uart/uart_cpu_fdt.c projects/bhyve_svm/sys/dev/uart/uart_dev_ns8250.c projects/bhyve_svm/sys/dev/ubsec/ubsec.c projects/bhyve_svm/sys/dev/usb/controller/dwc_otg.c projects/bhyve_svm/sys/dev/usb/controller/ehci.c projects/bhyve_svm/sys/dev/usb/controller/ehci_pci.c projects/bhyve_svm/sys/dev/usb/controller/musb_otg.c projects/bhyve_svm/sys/dev/usb/controller/ohci_pci.c projects/bhyve_svm/sys/dev/usb/controller/xhci.c projects/bhyve_svm/sys/dev/usb/input/ukbd.c projects/bhyve_svm/sys/dev/usb/net/if_udav.c projects/bhyve_svm/sys/dev/usb/net/if_usie.c projects/bhyve_svm/sys/dev/usb/net/uhso.c projects/bhyve_svm/sys/dev/usb/serial/uftdi.c projects/bhyve_svm/sys/dev/usb/storage/umass.c projects/bhyve_svm/sys/dev/usb/usb_compat_linux.c projects/bhyve_svm/sys/dev/usb/usb_hub.c projects/bhyve_svm/sys/dev/usb/usb_ioctl.h projects/bhyve_svm/sys/dev/usb/usb_request.c projects/bhyve_svm/sys/dev/usb/usbdevs projects/bhyve_svm/sys/dev/usb/wlan/if_run.c projects/bhyve_svm/sys/dev/virtio/balloon/virtio_balloon.c projects/bhyve_svm/sys/dev/virtio/network/if_vtnet.c projects/bhyve_svm/sys/dev/virtio/network/if_vtnetvar.h projects/bhyve_svm/sys/dev/virtio/network/virtio_net.h projects/bhyve_svm/sys/dev/virtio/pci/virtio_pci.c projects/bhyve_svm/sys/dev/virtio/virtio_if.m projects/bhyve_svm/sys/dev/virtio/virtqueue.c projects/bhyve_svm/sys/dev/virtio/virtqueue.h projects/bhyve_svm/sys/dev/vkbd/vkbd.c projects/bhyve_svm/sys/dev/wb/if_wb.c projects/bhyve_svm/sys/dev/wi/if_wi_pci.c projects/bhyve_svm/sys/dev/xen/balloon/balloon.c projects/bhyve_svm/sys/dev/xen/blkback/blkback.c projects/bhyve_svm/sys/dev/xen/blkfront/blkfront.c projects/bhyve_svm/sys/dev/xen/blkfront/block.h projects/bhyve_svm/sys/dev/xen/console/console.c projects/bhyve_svm/sys/dev/xen/console/xencons_ring.c projects/bhyve_svm/sys/dev/xen/control/control.c projects/bhyve_svm/sys/dev/xen/netback/netback.c projects/bhyve_svm/sys/dev/xen/netfront/netfront.c projects/bhyve_svm/sys/dev/xen/xenpci/xenpci.c projects/bhyve_svm/sys/dev/xen/xenpci/xenpcivar.h projects/bhyve_svm/sys/fs/devfs/devfs_vnops.c projects/bhyve_svm/sys/fs/ext2fs/ext2_alloc.c projects/bhyve_svm/sys/fs/ext2fs/ext2_balloc.c projects/bhyve_svm/sys/fs/ext2fs/ext2_bmap.c projects/bhyve_svm/sys/fs/ext2fs/ext2_dinode.h projects/bhyve_svm/sys/fs/ext2fs/ext2_extern.h projects/bhyve_svm/sys/fs/ext2fs/ext2_hash.c projects/bhyve_svm/sys/fs/ext2fs/ext2_htree.c projects/bhyve_svm/sys/fs/ext2fs/ext2_inode.c projects/bhyve_svm/sys/fs/ext2fs/ext2_inode_cnv.c projects/bhyve_svm/sys/fs/ext2fs/ext2_lookup.c projects/bhyve_svm/sys/fs/ext2fs/ext2_subr.c projects/bhyve_svm/sys/fs/ext2fs/ext2_vfsops.c projects/bhyve_svm/sys/fs/ext2fs/ext2_vnops.c projects/bhyve_svm/sys/fs/ext2fs/ext2fs.h projects/bhyve_svm/sys/fs/ext2fs/inode.h projects/bhyve_svm/sys/fs/fdescfs/fdesc_vnops.c projects/bhyve_svm/sys/fs/fuse/fuse_vfsops.c projects/bhyve_svm/sys/fs/fuse/fuse_vnops.c projects/bhyve_svm/sys/fs/msdosfs/msdosfs_denode.c projects/bhyve_svm/sys/fs/msdosfs/msdosfs_vnops.c projects/bhyve_svm/sys/fs/nfs/nfs.h projects/bhyve_svm/sys/fs/nfs/nfsport.h projects/bhyve_svm/sys/fs/nfs/nfsrvcache.h projects/bhyve_svm/sys/fs/nfsclient/nfs_clkrpc.c projects/bhyve_svm/sys/fs/nfsclient/nfs_clport.c projects/bhyve_svm/sys/fs/nfsclient/nfs_clvfsops.c projects/bhyve_svm/sys/fs/nfsserver/nfs_nfsdcache.c projects/bhyve_svm/sys/fs/nfsserver/nfs_nfsdport.c projects/bhyve_svm/sys/fs/nullfs/null_vnops.c projects/bhyve_svm/sys/fs/smbfs/smbfs_node.c projects/bhyve_svm/sys/fs/smbfs/smbfs_vnops.c projects/bhyve_svm/sys/fs/tmpfs/tmpfs_subr.c projects/bhyve_svm/sys/fs/tmpfs/tmpfs_vfsops.c projects/bhyve_svm/sys/fs/tmpfs/tmpfs_vnops.c projects/bhyve_svm/sys/geom/eli/g_eli.c projects/bhyve_svm/sys/geom/geom_dev.c projects/bhyve_svm/sys/geom/geom_disk.c projects/bhyve_svm/sys/geom/geom_pc98.c projects/bhyve_svm/sys/geom/mirror/g_mirror.c projects/bhyve_svm/sys/geom/part/g_part_gpt.c projects/bhyve_svm/sys/geom/part/g_part_ldm.c projects/bhyve_svm/sys/geom/part/g_part_pc98.c projects/bhyve_svm/sys/geom/raid/g_raid.c projects/bhyve_svm/sys/geom/raid/g_raid.h projects/bhyve_svm/sys/geom/raid/tr_raid5.c projects/bhyve_svm/sys/geom/zero/g_zero.c projects/bhyve_svm/sys/i386/conf/GENERIC projects/bhyve_svm/sys/i386/conf/NOTES projects/bhyve_svm/sys/i386/i386/apic_vector.s projects/bhyve_svm/sys/i386/i386/genassym.c projects/bhyve_svm/sys/i386/i386/initcpu.c projects/bhyve_svm/sys/i386/i386/machdep.c projects/bhyve_svm/sys/i386/i386/mp_machdep.c projects/bhyve_svm/sys/i386/i386/pmap.c projects/bhyve_svm/sys/i386/i386/sys_machdep.c projects/bhyve_svm/sys/i386/i386/vm_machdep.c projects/bhyve_svm/sys/i386/ibcs2/ibcs2_fcntl.c projects/bhyve_svm/sys/i386/ibcs2/ibcs2_ioctl.c projects/bhyve_svm/sys/i386/ibcs2/ibcs2_misc.c projects/bhyve_svm/sys/i386/ibcs2/imgact_coff.c projects/bhyve_svm/sys/i386/include/acpica_machdep.h projects/bhyve_svm/sys/i386/include/apicvar.h projects/bhyve_svm/sys/i386/include/asm.h projects/bhyve_svm/sys/i386/include/atomic.h projects/bhyve_svm/sys/i386/include/cpu.h projects/bhyve_svm/sys/i386/include/intr_machdep.h projects/bhyve_svm/sys/i386/include/pcpu.h projects/bhyve_svm/sys/i386/include/pmap.h projects/bhyve_svm/sys/i386/include/sf_buf.h projects/bhyve_svm/sys/i386/include/smp.h projects/bhyve_svm/sys/i386/include/xen/xen-os.h projects/bhyve_svm/sys/i386/include/xen/xenfunc.h projects/bhyve_svm/sys/i386/include/xen/xenvar.h projects/bhyve_svm/sys/i386/isa/npx.c projects/bhyve_svm/sys/i386/linux/imgact_linux.c projects/bhyve_svm/sys/i386/linux/linux_machdep.c projects/bhyve_svm/sys/i386/linux/linux_proto.h projects/bhyve_svm/sys/i386/linux/linux_syscall.h projects/bhyve_svm/sys/i386/linux/linux_syscalls.c projects/bhyve_svm/sys/i386/linux/linux_sysent.c projects/bhyve_svm/sys/i386/pci/pci_cfgreg.c projects/bhyve_svm/sys/i386/xen/clock.c projects/bhyve_svm/sys/i386/xen/exception.s projects/bhyve_svm/sys/i386/xen/locore.s projects/bhyve_svm/sys/i386/xen/mp_machdep.c projects/bhyve_svm/sys/i386/xen/mptable.c projects/bhyve_svm/sys/i386/xen/pmap.c projects/bhyve_svm/sys/i386/xen/xen_machdep.c projects/bhyve_svm/sys/ia64/conf/GENERIC projects/bhyve_svm/sys/ia64/ia32/ia32_signal.c projects/bhyve_svm/sys/ia64/ia64/mp_machdep.c projects/bhyve_svm/sys/ia64/ia64/pmap.c projects/bhyve_svm/sys/ia64/ia64/vm_machdep.c projects/bhyve_svm/sys/ia64/include/acpica_machdep.h projects/bhyve_svm/sys/ia64/include/sf_buf.h projects/bhyve_svm/sys/kern/capabilities.conf projects/bhyve_svm/sys/kern/imgact_elf.c projects/bhyve_svm/sys/kern/imgact_gzip.c projects/bhyve_svm/sys/kern/init_main.c projects/bhyve_svm/sys/kern/init_sysent.c projects/bhyve_svm/sys/kern/kern_descrip.c projects/bhyve_svm/sys/kern/kern_event.c projects/bhyve_svm/sys/kern/kern_exec.c projects/bhyve_svm/sys/kern/kern_exit.c projects/bhyve_svm/sys/kern/kern_fork.c projects/bhyve_svm/sys/kern/kern_intr.c projects/bhyve_svm/sys/kern/kern_jail.c projects/bhyve_svm/sys/kern/kern_kthread.c projects/bhyve_svm/sys/kern/kern_ktrace.c projects/bhyve_svm/sys/kern/kern_linker.c projects/bhyve_svm/sys/kern/kern_malloc.c projects/bhyve_svm/sys/kern/kern_mbuf.c projects/bhyve_svm/sys/kern/kern_mutex.c projects/bhyve_svm/sys/kern/kern_physio.c projects/bhyve_svm/sys/kern/kern_poll.c projects/bhyve_svm/sys/kern/kern_proc.c projects/bhyve_svm/sys/kern/kern_rangelock.c projects/bhyve_svm/sys/kern/kern_sdt.c projects/bhyve_svm/sys/kern/kern_sharedpage.c projects/bhyve_svm/sys/kern/kern_sig.c projects/bhyve_svm/sys/kern/kern_synch.c projects/bhyve_svm/sys/kern/kern_sysctl.c projects/bhyve_svm/sys/kern/kern_timeout.c projects/bhyve_svm/sys/kern/link_elf.c projects/bhyve_svm/sys/kern/link_elf_obj.c projects/bhyve_svm/sys/kern/makesyscalls.sh projects/bhyve_svm/sys/kern/sched_ule.c projects/bhyve_svm/sys/kern/subr_bus.c projects/bhyve_svm/sys/kern/subr_busdma_bufalloc.c projects/bhyve_svm/sys/kern/subr_mbpool.c projects/bhyve_svm/sys/kern/subr_prf.c projects/bhyve_svm/sys/kern/subr_taskqueue.c projects/bhyve_svm/sys/kern/subr_uio.c projects/bhyve_svm/sys/kern/subr_unit.c projects/bhyve_svm/sys/kern/subr_vmem.c projects/bhyve_svm/sys/kern/subr_witness.c projects/bhyve_svm/sys/kern/sys_capability.c projects/bhyve_svm/sys/kern/sys_generic.c projects/bhyve_svm/sys/kern/sys_pipe.c projects/bhyve_svm/sys/kern/sys_procdesc.c projects/bhyve_svm/sys/kern/sys_socket.c projects/bhyve_svm/sys/kern/syscalls.c projects/bhyve_svm/sys/kern/syscalls.master projects/bhyve_svm/sys/kern/systrace_args.c projects/bhyve_svm/sys/kern/sysv_shm.c projects/bhyve_svm/sys/kern/tty.c projects/bhyve_svm/sys/kern/tty_pts.c projects/bhyve_svm/sys/kern/uipc_cow.c projects/bhyve_svm/sys/kern/uipc_debug.c projects/bhyve_svm/sys/kern/uipc_mbuf.c projects/bhyve_svm/sys/kern/uipc_mqueue.c projects/bhyve_svm/sys/kern/uipc_sem.c projects/bhyve_svm/sys/kern/uipc_shm.c projects/bhyve_svm/sys/kern/uipc_sockbuf.c projects/bhyve_svm/sys/kern/uipc_socket.c projects/bhyve_svm/sys/kern/uipc_syscalls.c projects/bhyve_svm/sys/kern/uipc_usrreq.c projects/bhyve_svm/sys/kern/vfs_acl.c projects/bhyve_svm/sys/kern/vfs_aio.c projects/bhyve_svm/sys/kern/vfs_bio.c projects/bhyve_svm/sys/kern/vfs_cluster.c projects/bhyve_svm/sys/kern/vfs_extattr.c projects/bhyve_svm/sys/kern/vfs_lookup.c projects/bhyve_svm/sys/kern/vfs_mount.c projects/bhyve_svm/sys/kern/vfs_mountroot.c projects/bhyve_svm/sys/kern/vfs_subr.c projects/bhyve_svm/sys/kern/vfs_syscalls.c projects/bhyve_svm/sys/kern/vfs_vnops.c projects/bhyve_svm/sys/mips/atheros/ar71xx_gpio.c projects/bhyve_svm/sys/mips/atheros/ar71xx_gpiovar.h projects/bhyve_svm/sys/mips/atheros/ar71xx_spi.c projects/bhyve_svm/sys/mips/atheros/if_arge.c projects/bhyve_svm/sys/mips/cavium/octeon_rnd.c projects/bhyve_svm/sys/mips/conf/DIR-825 projects/bhyve_svm/sys/mips/conf/DIR-825.hints projects/bhyve_svm/sys/mips/conf/MALTA projects/bhyve_svm/sys/mips/conf/MALTA64 projects/bhyve_svm/sys/mips/conf/ROUTERSTATION.hints projects/bhyve_svm/sys/mips/conf/TP-WN1043ND projects/bhyve_svm/sys/mips/gxemul/mpreg.h projects/bhyve_svm/sys/mips/include/_stdint.h projects/bhyve_svm/sys/mips/include/sf_buf.h projects/bhyve_svm/sys/mips/malta/files.malta projects/bhyve_svm/sys/mips/malta/gt_pci.c projects/bhyve_svm/sys/mips/malta/malta_machdep.c projects/bhyve_svm/sys/mips/malta/yamon.c projects/bhyve_svm/sys/mips/mips/mp_machdep.c projects/bhyve_svm/sys/mips/mips/pmap.c projects/bhyve_svm/sys/mips/mips/support.S projects/bhyve_svm/sys/mips/mips/vm_machdep.c projects/bhyve_svm/sys/mips/nlm/board.c projects/bhyve_svm/sys/mips/nlm/board.h projects/bhyve_svm/sys/mips/nlm/board_cpld.c projects/bhyve_svm/sys/mips/nlm/dev/net/nae.c projects/bhyve_svm/sys/mips/nlm/dev/net/xaui.c projects/bhyve_svm/sys/mips/nlm/dev/net/xlpge.c projects/bhyve_svm/sys/mips/nlm/dev/net/xlpge.h projects/bhyve_svm/sys/mips/nlm/hal/nae.h projects/bhyve_svm/sys/mips/nlm/hal/nlm_hal.c projects/bhyve_svm/sys/mips/nlm/hal/sys.h projects/bhyve_svm/sys/mips/sibyte/sb_zbpci.c projects/bhyve_svm/sys/modules/Makefile projects/bhyve_svm/sys/modules/aesni/Makefile projects/bhyve_svm/sys/modules/cam/Makefile projects/bhyve_svm/sys/modules/ctl/Makefile projects/bhyve_svm/sys/modules/cxgb/cxgb/Makefile projects/bhyve_svm/sys/modules/drm2/Makefile projects/bhyve_svm/sys/modules/drm2/drm2/Makefile projects/bhyve_svm/sys/modules/dtrace/Makefile projects/bhyve_svm/sys/modules/dtrace/sdt/Makefile projects/bhyve_svm/sys/modules/ext2fs/Makefile projects/bhyve_svm/sys/modules/hwpmc/Makefile projects/bhyve_svm/sys/modules/ip6_mroute_mod/Makefile projects/bhyve_svm/sys/modules/ipfilter/Makefile projects/bhyve_svm/sys/modules/iscsi/Makefile projects/bhyve_svm/sys/modules/iwnfw/Makefile projects/bhyve_svm/sys/modules/iwnfw/iwn6000g2a/Makefile projects/bhyve_svm/sys/modules/linux/Makefile projects/bhyve_svm/sys/modules/random/Makefile projects/bhyve_svm/sys/modules/rdma/Makefile projects/bhyve_svm/sys/modules/send/Makefile projects/bhyve_svm/sys/modules/sfxge/Makefile projects/bhyve_svm/sys/modules/ti/Makefile projects/bhyve_svm/sys/modules/virtio/network/Makefile projects/bhyve_svm/sys/modules/vmm/Makefile projects/bhyve_svm/sys/net/if.c projects/bhyve_svm/sys/net/if.h projects/bhyve_svm/sys/net/if_ethersubr.c projects/bhyve_svm/sys/net/if_fddisubr.c projects/bhyve_svm/sys/net/if_gif.c projects/bhyve_svm/sys/net/if_gre.c projects/bhyve_svm/sys/net/if_iso88025subr.c projects/bhyve_svm/sys/net/if_lagg.c projects/bhyve_svm/sys/net/if_lagg.h projects/bhyve_svm/sys/net/if_llatbl.h projects/bhyve_svm/sys/net/if_pfsync.h projects/bhyve_svm/sys/net/if_spppsubr.c projects/bhyve_svm/sys/net/if_tap.c projects/bhyve_svm/sys/net/if_tun.c projects/bhyve_svm/sys/net/netisr.c projects/bhyve_svm/sys/net/pfil.c projects/bhyve_svm/sys/net/pfil.h projects/bhyve_svm/sys/net/rtsock.c projects/bhyve_svm/sys/net80211/ieee80211.c projects/bhyve_svm/sys/net80211/ieee80211_action.c projects/bhyve_svm/sys/net80211/ieee80211_freebsd.c projects/bhyve_svm/sys/net80211/ieee80211_freebsd.h projects/bhyve_svm/sys/net80211/ieee80211_hostap.c projects/bhyve_svm/sys/net80211/ieee80211_hwmp.c projects/bhyve_svm/sys/net80211/ieee80211_input.c projects/bhyve_svm/sys/net80211/ieee80211_mesh.c projects/bhyve_svm/sys/net80211/ieee80211_node.c projects/bhyve_svm/sys/net80211/ieee80211_output.c projects/bhyve_svm/sys/net80211/ieee80211_phy.c projects/bhyve_svm/sys/net80211/ieee80211_power.c projects/bhyve_svm/sys/net80211/ieee80211_proto.c projects/bhyve_svm/sys/net80211/ieee80211_proto.h projects/bhyve_svm/sys/net80211/ieee80211_scan_sta.c projects/bhyve_svm/sys/net80211/ieee80211_superg.c projects/bhyve_svm/sys/net80211/ieee80211_tdma.c projects/bhyve_svm/sys/net80211/ieee80211_var.h projects/bhyve_svm/sys/net80211/ieee80211_wds.c projects/bhyve_svm/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/bhyve_svm/sys/netgraph/netflow/ng_netflow.h projects/bhyve_svm/sys/netgraph/ng_iface.c projects/bhyve_svm/sys/netinet/icmp_var.h projects/bhyve_svm/sys/netinet/if_ether.c projects/bhyve_svm/sys/netinet/igmp.c projects/bhyve_svm/sys/netinet/igmp_var.h projects/bhyve_svm/sys/netinet/in.h projects/bhyve_svm/sys/netinet/in_mcast.c projects/bhyve_svm/sys/netinet/ip_carp.c projects/bhyve_svm/sys/netinet/ip_fastfwd.c projects/bhyve_svm/sys/netinet/ip_input.c projects/bhyve_svm/sys/netinet/ip_mroute.c projects/bhyve_svm/sys/netinet/ip_output.c projects/bhyve_svm/sys/netinet/ip_var.h projects/bhyve_svm/sys/netinet/pim_var.h projects/bhyve_svm/sys/netinet/sctp.h projects/bhyve_svm/sys/netinet/sctp_auth.c projects/bhyve_svm/sys/netinet/sctp_auth.h projects/bhyve_svm/sys/netinet/sctp_dtrace_define.h projects/bhyve_svm/sys/netinet/sctp_indata.c projects/bhyve_svm/sys/netinet/sctp_input.c projects/bhyve_svm/sys/netinet/sctp_os_bsd.h projects/bhyve_svm/sys/netinet/sctp_output.c projects/bhyve_svm/sys/netinet/sctp_pcb.h projects/bhyve_svm/sys/netinet/sctp_structs.h projects/bhyve_svm/sys/netinet/sctp_timer.c projects/bhyve_svm/sys/netinet/sctp_uio.h projects/bhyve_svm/sys/netinet/sctputil.c projects/bhyve_svm/sys/netinet/tcp_input.c projects/bhyve_svm/sys/netinet/tcp_lro.c projects/bhyve_svm/sys/netinet/tcp_lro.h projects/bhyve_svm/sys/netinet/tcp_output.c projects/bhyve_svm/sys/netinet/tcp_subr.c projects/bhyve_svm/sys/netinet/tcp_syncache.c projects/bhyve_svm/sys/netinet/tcp_usrreq.c projects/bhyve_svm/sys/netinet/tcp_var.h projects/bhyve_svm/sys/netinet/udp_usrreq.c projects/bhyve_svm/sys/netinet/udp_var.h projects/bhyve_svm/sys/netinet6/in6.c projects/bhyve_svm/sys/netinet6/in6_mcast.c projects/bhyve_svm/sys/netinet6/ip6_input.c projects/bhyve_svm/sys/netinet6/ip6_mroute.c projects/bhyve_svm/sys/netinet6/ip6_output.c projects/bhyve_svm/sys/netinet6/ip6_var.h projects/bhyve_svm/sys/netinet6/mld6.c projects/bhyve_svm/sys/netinet6/nd6.c projects/bhyve_svm/sys/netinet6/pim6_var.h projects/bhyve_svm/sys/netinet6/sctp6_usrreq.c projects/bhyve_svm/sys/netinet6/send.c projects/bhyve_svm/sys/netinet6/udp6_usrreq.c projects/bhyve_svm/sys/netipsec/ipsec.h projects/bhyve_svm/sys/netipsec/key_var.h projects/bhyve_svm/sys/netnatm/natm.c projects/bhyve_svm/sys/netpfil/ipfw/ip_dummynet.c projects/bhyve_svm/sys/netpfil/ipfw/ip_fw2.c projects/bhyve_svm/sys/netpfil/ipfw/ip_fw_nat.c projects/bhyve_svm/sys/netpfil/ipfw/ip_fw_private.h projects/bhyve_svm/sys/netpfil/pf/pf.c projects/bhyve_svm/sys/netpfil/pf/pf_lb.c projects/bhyve_svm/sys/netsmb/smb_dev.c projects/bhyve_svm/sys/nfsserver/nfs_srvkrpc.c projects/bhyve_svm/sys/nlm/nlm_prot_impl.c projects/bhyve_svm/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/bhyve_svm/sys/ofed/drivers/net/mlx4/en_frag.c projects/bhyve_svm/sys/ofed/include/linux/bitops.h projects/bhyve_svm/sys/ofed/include/linux/dma-mapping.h projects/bhyve_svm/sys/ofed/include/linux/file.h projects/bhyve_svm/sys/ofed/include/linux/gfp.h projects/bhyve_svm/sys/ofed/include/linux/linux_compat.c projects/bhyve_svm/sys/ofed/include/linux/net.h projects/bhyve_svm/sys/ofed/include/linux/page.h projects/bhyve_svm/sys/ofed/include/linux/sysfs.h projects/bhyve_svm/sys/ofed/include/rdma/sdp_socket.h projects/bhyve_svm/sys/opencrypto/cryptodev.c projects/bhyve_svm/sys/pc98/conf/GENERIC projects/bhyve_svm/sys/pc98/pc98/machdep.c projects/bhyve_svm/sys/pci/ncr.c projects/bhyve_svm/sys/powerpc/aim/mmu_oea.c projects/bhyve_svm/sys/powerpc/aim/mmu_oea64.c projects/bhyve_svm/sys/powerpc/aim/mmu_oea64.h projects/bhyve_svm/sys/powerpc/aim/nexus.c projects/bhyve_svm/sys/powerpc/aim/trap.c projects/bhyve_svm/sys/powerpc/aim/vm_machdep.c projects/bhyve_svm/sys/powerpc/booke/pmap.c projects/bhyve_svm/sys/powerpc/booke/vm_machdep.c projects/bhyve_svm/sys/powerpc/conf/DEFAULTS projects/bhyve_svm/sys/powerpc/conf/GENERIC projects/bhyve_svm/sys/powerpc/conf/GENERIC64 projects/bhyve_svm/sys/powerpc/include/_stdint.h projects/bhyve_svm/sys/powerpc/include/frame.h projects/bhyve_svm/sys/powerpc/include/param.h projects/bhyve_svm/sys/powerpc/include/platform.h projects/bhyve_svm/sys/powerpc/include/pmc_mdep.h projects/bhyve_svm/sys/powerpc/include/pte.h projects/bhyve_svm/sys/powerpc/include/sf_buf.h projects/bhyve_svm/sys/powerpc/include/spr.h projects/bhyve_svm/sys/powerpc/ofw/ofw_cpu.c projects/bhyve_svm/sys/powerpc/ofw/ofw_pcibus.c projects/bhyve_svm/sys/powerpc/ofw/ofw_syscons.c projects/bhyve_svm/sys/powerpc/ofw/rtas.c projects/bhyve_svm/sys/powerpc/powermac/atibl.c projects/bhyve_svm/sys/powerpc/powermac/kiic.c projects/bhyve_svm/sys/powerpc/powermac/nvbl.c projects/bhyve_svm/sys/powerpc/powermac/platform_powermac.c projects/bhyve_svm/sys/powerpc/powerpc/busdma_machdep.c projects/bhyve_svm/sys/powerpc/powerpc/cpu.c projects/bhyve_svm/sys/powerpc/powerpc/intr_machdep.c projects/bhyve_svm/sys/powerpc/powerpc/mmu_if.m projects/bhyve_svm/sys/powerpc/powerpc/mp_machdep.c projects/bhyve_svm/sys/powerpc/powerpc/platform.c projects/bhyve_svm/sys/powerpc/powerpc/platform_if.m projects/bhyve_svm/sys/powerpc/powerpc/pmap_dispatch.c projects/bhyve_svm/sys/rpc/clnt_dg.c projects/bhyve_svm/sys/security/audit/audit.h projects/bhyve_svm/sys/security/audit/audit_arg.c projects/bhyve_svm/sys/security/audit/audit_bsm.c projects/bhyve_svm/sys/security/audit/audit_bsm_klib.c projects/bhyve_svm/sys/security/audit/audit_pipe.c projects/bhyve_svm/sys/security/audit/audit_private.h projects/bhyve_svm/sys/security/audit/bsm_token.c projects/bhyve_svm/sys/security/mac/mac_framework.h projects/bhyve_svm/sys/security/mac/mac_policy.h projects/bhyve_svm/sys/security/mac/mac_posix_shm.c projects/bhyve_svm/sys/security/mac/mac_syscalls.c projects/bhyve_svm/sys/security/mac_biba/mac_biba.c projects/bhyve_svm/sys/security/mac_mls/mac_mls.c projects/bhyve_svm/sys/security/mac_stub/mac_stub.c projects/bhyve_svm/sys/security/mac_test/mac_test.c projects/bhyve_svm/sys/sparc64/conf/GENERIC projects/bhyve_svm/sys/sparc64/include/sf_buf.h projects/bhyve_svm/sys/sparc64/sparc64/bus_machdep.c projects/bhyve_svm/sys/sparc64/sparc64/genassym.c projects/bhyve_svm/sys/sparc64/sparc64/mem.c projects/bhyve_svm/sys/sparc64/sparc64/mp_machdep.c projects/bhyve_svm/sys/sparc64/sparc64/pmap.c projects/bhyve_svm/sys/sparc64/sparc64/sys_machdep.c projects/bhyve_svm/sys/sparc64/sparc64/vm_machdep.c projects/bhyve_svm/sys/sys/_types.h projects/bhyve_svm/sys/sys/bitset.h projects/bhyve_svm/sys/sys/buf.h projects/bhyve_svm/sys/sys/callout.h projects/bhyve_svm/sys/sys/capability.h projects/bhyve_svm/sys/sys/conf.h projects/bhyve_svm/sys/sys/cpuset.h projects/bhyve_svm/sys/sys/diskpc98.h projects/bhyve_svm/sys/sys/event.h projects/bhyve_svm/sys/sys/eventhandler.h projects/bhyve_svm/sys/sys/eventvar.h projects/bhyve_svm/sys/sys/fcntl.h projects/bhyve_svm/sys/sys/file.h projects/bhyve_svm/sys/sys/filedesc.h projects/bhyve_svm/sys/sys/jail.h projects/bhyve_svm/sys/sys/kernel.h projects/bhyve_svm/sys/sys/ktrace.h projects/bhyve_svm/sys/sys/linker.h projects/bhyve_svm/sys/sys/mbpool.h projects/bhyve_svm/sys/sys/mbuf.h projects/bhyve_svm/sys/sys/mman.h projects/bhyve_svm/sys/sys/mount.h projects/bhyve_svm/sys/sys/mouse.h projects/bhyve_svm/sys/sys/namei.h projects/bhyve_svm/sys/sys/param.h projects/bhyve_svm/sys/sys/pmckern.h projects/bhyve_svm/sys/sys/proc.h projects/bhyve_svm/sys/sys/procdesc.h projects/bhyve_svm/sys/sys/random.h projects/bhyve_svm/sys/sys/rangelock.h projects/bhyve_svm/sys/sys/sdt.h projects/bhyve_svm/sys/sys/sf_buf.h projects/bhyve_svm/sys/sys/sockbuf.h projects/bhyve_svm/sys/sys/socket.h projects/bhyve_svm/sys/sys/socketvar.h projects/bhyve_svm/sys/sys/stat.h projects/bhyve_svm/sys/sys/stdatomic.h projects/bhyve_svm/sys/sys/syscall.h projects/bhyve_svm/sys/sys/syscall.mk projects/bhyve_svm/sys/sys/syscallsubr.h projects/bhyve_svm/sys/sys/sysctl.h projects/bhyve_svm/sys/sys/sysproto.h projects/bhyve_svm/sys/sys/systm.h projects/bhyve_svm/sys/sys/time.h projects/bhyve_svm/sys/sys/types.h projects/bhyve_svm/sys/sys/uio.h projects/bhyve_svm/sys/sys/user.h projects/bhyve_svm/sys/sys/vmmeter.h projects/bhyve_svm/sys/sys/wait.h projects/bhyve_svm/sys/ufs/ffs/ffs_alloc.c projects/bhyve_svm/sys/ufs/ufs/ufs_dirhash.c projects/bhyve_svm/sys/ufs/ufs/ufs_vnops.c projects/bhyve_svm/sys/vm/_vm_radix.h projects/bhyve_svm/sys/vm/device_pager.c projects/bhyve_svm/sys/vm/memguard.c projects/bhyve_svm/sys/vm/memguard.h projects/bhyve_svm/sys/vm/phys_pager.c projects/bhyve_svm/sys/vm/pmap.h projects/bhyve_svm/sys/vm/sg_pager.c projects/bhyve_svm/sys/vm/swap_pager.c projects/bhyve_svm/sys/vm/uma_core.c projects/bhyve_svm/sys/vm/uma_int.h projects/bhyve_svm/sys/vm/vm_extern.h projects/bhyve_svm/sys/vm/vm_fault.c projects/bhyve_svm/sys/vm/vm_glue.c projects/bhyve_svm/sys/vm/vm_init.c projects/bhyve_svm/sys/vm/vm_kern.c projects/bhyve_svm/sys/vm/vm_kern.h projects/bhyve_svm/sys/vm/vm_map.c projects/bhyve_svm/sys/vm/vm_map.h projects/bhyve_svm/sys/vm/vm_mmap.c projects/bhyve_svm/sys/vm/vm_object.c projects/bhyve_svm/sys/vm/vm_object.h projects/bhyve_svm/sys/vm/vm_page.c projects/bhyve_svm/sys/vm/vm_page.h projects/bhyve_svm/sys/vm/vm_pageout.c projects/bhyve_svm/sys/vm/vm_param.h projects/bhyve_svm/sys/vm/vm_phys.c projects/bhyve_svm/sys/vm/vm_phys.h projects/bhyve_svm/sys/vm/vm_radix.c projects/bhyve_svm/sys/vm/vm_radix.h projects/bhyve_svm/sys/vm/vm_reserv.c projects/bhyve_svm/sys/vm/vm_zeroidle.c projects/bhyve_svm/sys/vm/vnode_pager.c projects/bhyve_svm/sys/x86/acpica/srat.c projects/bhyve_svm/sys/x86/include/segments.h projects/bhyve_svm/sys/x86/isa/clock.c projects/bhyve_svm/sys/x86/x86/busdma_machdep.c projects/bhyve_svm/sys/x86/x86/local_apic.c projects/bhyve_svm/sys/xen/evtchn.h projects/bhyve_svm/sys/xen/evtchn/evtchn_dev.c projects/bhyve_svm/sys/xen/features.c projects/bhyve_svm/sys/xen/gnttab.c projects/bhyve_svm/sys/xen/gnttab.h projects/bhyve_svm/sys/xen/hvm.h projects/bhyve_svm/sys/xen/interface/event_channel.h projects/bhyve_svm/sys/xen/xen_intr.h projects/bhyve_svm/sys/xen/xenbus/xenbus.c projects/bhyve_svm/sys/xen/xenbus/xenbus_if.m projects/bhyve_svm/sys/xen/xenbus/xenbusb_front.c projects/bhyve_svm/sys/xen/xenbus/xenbusvar.h projects/bhyve_svm/sys/xen/xenstore/xenstore.c projects/bhyve_svm/sys/xen/xenstore/xenstore_dev.c projects/bhyve_svm/sys/xen/xenstore/xenstorevar.h projects/bhyve_svm/tools/build/mk/OptionalObsoleteFiles.inc projects/bhyve_svm/tools/build/options/WITHOUT_GCC projects/bhyve_svm/tools/build/options/WITHOUT_LDNS projects/bhyve_svm/tools/make_libdeps.sh projects/bhyve_svm/tools/regression/file/dup/dup.c projects/bhyve_svm/tools/regression/lib/libc/gen/test-fnmatch.c projects/bhyve_svm/tools/regression/lib/libc/stdio/Makefile projects/bhyve_svm/tools/regression/lib/libc/stdio/test-fmemopen.t projects/bhyve_svm/tools/regression/lib/libc/stdio/test-open_memstream.t projects/bhyve_svm/tools/regression/lib/libc/stdio/test-open_wmemstream.t projects/bhyve_svm/tools/regression/sockets/sendfile/sendfile.c projects/bhyve_svm/tools/test/posixshm/shm_test.c projects/bhyve_svm/tools/tools/README projects/bhyve_svm/tools/tools/bus_autoconf/bus_load_file.c projects/bhyve_svm/tools/tools/ifinfo/ifinfo.c projects/bhyve_svm/tools/tools/net80211/wlanstats/Makefile projects/bhyve_svm/tools/tools/sysbuild/sysbuild.sh projects/bhyve_svm/tools/tools/sysdoc/sysdoc.sh projects/bhyve_svm/tools/tools/sysdoc/tunables.mdoc projects/bhyve_svm/usr.bin/Makefile projects/bhyve_svm/usr.bin/bmake/Makefile projects/bhyve_svm/usr.bin/bmake/unit-tests/Makefile projects/bhyve_svm/usr.bin/brandelf/brandelf.1 projects/bhyve_svm/usr.bin/calendar/Makefile projects/bhyve_svm/usr.bin/calendar/calendars/calendar.freebsd projects/bhyve_svm/usr.bin/dig/Makefile projects/bhyve_svm/usr.bin/dtc/dtc.1 projects/bhyve_svm/usr.bin/dtc/dtc.cc projects/bhyve_svm/usr.bin/dtc/fdt.cc projects/bhyve_svm/usr.bin/dtc/fdt.hh projects/bhyve_svm/usr.bin/dtc/input_buffer.cc projects/bhyve_svm/usr.bin/host/Makefile projects/bhyve_svm/usr.bin/kdump/kdump.c projects/bhyve_svm/usr.bin/kdump/mksubr projects/bhyve_svm/usr.bin/ldd/ldd.c projects/bhyve_svm/usr.bin/netstat/inet6.c projects/bhyve_svm/usr.bin/nslookup/Makefile projects/bhyve_svm/usr.bin/nsupdate/Makefile projects/bhyve_svm/usr.bin/patch/Makefile projects/bhyve_svm/usr.bin/patch/pch.c projects/bhyve_svm/usr.bin/patch/util.c projects/bhyve_svm/usr.bin/procstat/procstat_files.c projects/bhyve_svm/usr.bin/rwho/rwho.c projects/bhyve_svm/usr.bin/su/su.1 projects/bhyve_svm/usr.bin/su/su.c projects/bhyve_svm/usr.bin/truss/syscall.h projects/bhyve_svm/usr.bin/truss/syscalls.c projects/bhyve_svm/usr.bin/uniq/uniq.c projects/bhyve_svm/usr.bin/vi/Makefile projects/bhyve_svm/usr.bin/vi/config.h projects/bhyve_svm/usr.bin/vi/pathnames.h projects/bhyve_svm/usr.sbin/Makefile projects/bhyve_svm/usr.sbin/bhyve/acpi.c projects/bhyve_svm/usr.sbin/bhyve/ioapic.c projects/bhyve_svm/usr.sbin/bhyve/mevent.c projects/bhyve_svm/usr.sbin/bhyve/mevent.h projects/bhyve_svm/usr.sbin/bhyve/mevent_test.c projects/bhyve_svm/usr.sbin/bhyve/pci_emul.c projects/bhyve_svm/usr.sbin/bhyve/pci_virtio_block.c projects/bhyve_svm/usr.sbin/bhyve/pit_8254.c projects/bhyve_svm/usr.sbin/bhyve/rtc.c projects/bhyve_svm/usr.sbin/bhyve/virtio.c projects/bhyve_svm/usr.sbin/boot98cfg/boot98cfg.c projects/bhyve_svm/usr.sbin/bsdconfig/examples/browse_packages.sh projects/bhyve_svm/usr.sbin/bsdinstall/scripts/mirrorselect projects/bhyve_svm/usr.sbin/crashinfo/crashinfo.sh projects/bhyve_svm/usr.sbin/ctladm/ctladm.8 projects/bhyve_svm/usr.sbin/ctladm/ctladm.c projects/bhyve_svm/usr.sbin/daemon/daemon.8 projects/bhyve_svm/usr.sbin/daemon/daemon.c projects/bhyve_svm/usr.sbin/gpioctl/gpioctl.8 projects/bhyve_svm/usr.sbin/gpioctl/gpioctl.c projects/bhyve_svm/usr.sbin/jail/jail.8 projects/bhyve_svm/usr.sbin/makefs/makefs.8 projects/bhyve_svm/usr.sbin/makefs/makefs.c projects/bhyve_svm/usr.sbin/mergemaster/mergemaster.sh projects/bhyve_svm/usr.sbin/mfiutil/mfi_drive.c projects/bhyve_svm/usr.sbin/mfiutil/mfiutil.8 projects/bhyve_svm/usr.sbin/mfiutil/mfiutil.c projects/bhyve_svm/usr.sbin/mtree/create.c projects/bhyve_svm/usr.sbin/periodic/periodic.sh projects/bhyve_svm/usr.sbin/pkg/config.c projects/bhyve_svm/usr.sbin/pkg/elf_tables.h projects/bhyve_svm/usr.sbin/pkg_install/add/main.c projects/bhyve_svm/usr.sbin/rtadvd/config.c projects/bhyve_svm/usr.sbin/rtadvd/if.c projects/bhyve_svm/usr.sbin/rtsold/dump.c projects/bhyve_svm/usr.sbin/rtsold/if.c projects/bhyve_svm/usr.sbin/rtsold/probe.c projects/bhyve_svm/usr.sbin/rtsold/rtsock.c projects/bhyve_svm/usr.sbin/rtsold/rtsol.c projects/bhyve_svm/usr.sbin/rtsold/rtsold.c projects/bhyve_svm/usr.sbin/rtsold/rtsold.h projects/bhyve_svm/usr.sbin/rwhod/rwhod.c projects/bhyve_svm/usr.sbin/setfib/setfib.1 projects/bhyve_svm/usr.sbin/watch/watch.c projects/bhyve_svm/usr.sbin/watchdogd/watchdogd.c Directory Properties: projects/bhyve_svm/ (props changed) projects/bhyve_svm/cddl/ (props changed) projects/bhyve_svm/cddl/contrib/opensolaris/ (props changed) projects/bhyve_svm/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/bhyve_svm/contrib/bind9/ (props changed) projects/bhyve_svm/contrib/binutils/ (props changed) projects/bhyve_svm/contrib/bmake/ (props changed) projects/bhyve_svm/contrib/gcc/ (props changed) projects/bhyve_svm/contrib/ipfilter/ (props changed) projects/bhyve_svm/contrib/ipfilter/test/expected/i19 (props changed) projects/bhyve_svm/contrib/ldns/ (props changed) projects/bhyve_svm/contrib/libcxxrt/ (props changed) projects/bhyve_svm/contrib/llvm/ (props changed) projects/bhyve_svm/contrib/llvm/tools/clang/ (props changed) projects/bhyve_svm/contrib/nvi/ (props changed) projects/bhyve_svm/contrib/openpam/ (props changed) projects/bhyve_svm/contrib/sendmail/ (props changed) projects/bhyve_svm/contrib/tcpdump/ (props changed) projects/bhyve_svm/contrib/unbound/ (props changed) projects/bhyve_svm/contrib/wpa/ (props changed) projects/bhyve_svm/crypto/openssh/ (props changed) projects/bhyve_svm/crypto/openssl/ (props changed) projects/bhyve_svm/gnu/lib/ (props changed) projects/bhyve_svm/lib/libc/ (props changed) projects/bhyve_svm/lib/libutil/ (props changed) projects/bhyve_svm/sbin/ (props changed) projects/bhyve_svm/share/man/man4/ (props changed) projects/bhyve_svm/sys/ (props changed) projects/bhyve_svm/sys/amd64/include/xen/ (props changed) projects/bhyve_svm/sys/amd64/vmm/ (props changed) projects/bhyve_svm/sys/boot/ (props changed) projects/bhyve_svm/sys/cddl/contrib/opensolaris/ (props changed) projects/bhyve_svm/sys/conf/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/common/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/compiler/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/events/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/tables/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/include/ (props changed) projects/bhyve_svm/sys/contrib/dev/acpica/os_specific/ (props changed) projects/bhyve_svm/sys/contrib/ipfilter/ (props changed) projects/bhyve_svm/sys/modules/vmm/ (props changed) projects/bhyve_svm/usr.bin/calendar/ (props changed) projects/bhyve_svm/usr.bin/procstat/ (props changed) projects/bhyve_svm/usr.sbin/bhyve/ (props changed) projects/bhyve_svm/usr.sbin/jail/ (props changed) projects/bhyve_svm/usr.sbin/rtadvd/ (props changed) projects/bhyve_svm/usr.sbin/rtsold/ (props changed) Modified: projects/bhyve_svm/LOCKS ============================================================================== --- projects/bhyve_svm/LOCKS Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/LOCKS Fri Sep 20 00:46:29 2013 (r255720) @@ -12,3 +12,7 @@ releng/5.* Requires Security Officer app releng/6.* Requires Security Officer approval. releng/7.* Requires Security Officer approval. releng/8.* Requires Security Officer approval. +head/sys/dev/random Requires Security Officer approval. +head/sys/libkern/arc4random.c Requires Security Officer approval. +stable/*/sys/dev/random Requires Security Officer approval. +stable/*/sys/libkern/arc4random.c Requires Security Officer approval. Modified: projects/bhyve_svm/Makefile ============================================================================== --- projects/bhyve_svm/Makefile Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/Makefile Fri Sep 20 00:46:29 2013 (r255720) @@ -242,6 +242,7 @@ cleanworld: # skip this for -n to avoid changing previous behavior of # 'make -n buildworld' etc. ${TGTS}: .MAKE +tinderbox toolchains kernel-toolchains: .MAKE .endif ${TGTS}: @@ -348,19 +349,21 @@ make bmake: .PHONY @echo ">>> Building an up-to-date make(1)" @echo "--------------------------------------------------------------" ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ - ${MMAKE} obj && \ - ${MMAKE} depend && \ - ${MMAKE} all && \ + ${MMAKE} obj DESTDIR= && \ + ${MMAKE} depend DESTDIR= && \ + ${MMAKE} all DESTDIR= PROGNAME=${MYMAKE:T} && \ ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T} +tinderbox toolchains kernel-toolchains: upgrade_checks + tinderbox: - @cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe + @cd ${.CURDIR} && ${SUB_MAKE} DOING_TINDERBOX=YES universe toolchains: - @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe + @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe kernel-toolchains: - @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe + @cd ${.CURDIR} && ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe # # universe @@ -419,7 +422,7 @@ universe_${target}_prologue: universe_pr .if !defined(MAKE_JUST_KERNELS) .for target_arch in ${TARGET_ARCHES_${target}} universe_${target}: universe_${target}_${target_arch} -universe_${target}_${target_arch}: universe_${target}_prologue +universe_${target}_${target_arch}: universe_${target}_prologue .MAKE @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`" @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \ @@ -440,7 +443,7 @@ universe_${target}_kernels: universe_${t .endfor .endif universe_${target}: universe_${target}_kernels -universe_${target}_kernels: universe_${target}_prologue +universe_${target}_kernels: universe_${target}_prologue .MAKE .if exists(${KERNSRCDIR}/${target}/conf/NOTES) @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \ ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \ @@ -468,7 +471,7 @@ TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR} .error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old." .endif universe_kernconfs: universe_kernconf_${TARGET}_${kernel} -universe_kernconf_${TARGET}_${kernel}: +universe_kernconf_${TARGET}_${kernel}: .MAKE @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \ ${SUB_MAKE} ${JFLAG} buildkernel \ TARGET=${TARGET} \ @@ -495,3 +498,11 @@ universe_epilogue: buildLINT: ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT + +.if defined(.PARSEDIR) +.if make(universe) +# we do not want a failure of one branch abort all. +MAKE_JOB_ERROR_TOKEN= no +.export MAKE_JOB_ERROR_TOKEN +.endif +.endif Modified: projects/bhyve_svm/Makefile.inc1 ============================================================================== --- projects/bhyve_svm/Makefile.inc1 Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/Makefile.inc1 Fri Sep 20 00:46:29 2013 (r255720) @@ -265,7 +265,7 @@ WMAKEENV= ${CROSSENV} \ PATH=${TMPPATH} # make hierarchy -HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE} +HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} .if defined(NO_ROOT) HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT .endif @@ -382,6 +382,7 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR PATH=${TMPPATH} \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ + LIBPRIVATEDIR=/usr/lib32/private \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} LIB32WMAKEFLAGS+= \ CC="${XCC} ${LIB32FLAGS}" \ @@ -675,8 +676,9 @@ kernel-toolchain: ${TOOLCHAIN_TGTS:N_inc # # Checks to be sure system is ready for installworld/installkernel. # -installcheck: -installcheck_UGID: +installcheck: _installcheck_world _installcheck_kernel +_installcheck_world: +_installcheck_kernel: # # Require DESTDIR to be set if installing for a different architecture or @@ -685,8 +687,9 @@ installcheck_UGID: .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ defined(DB_FROM_SRC) .if !make(distributeworld) -installcheck: installcheck_DESTDIR -installcheck_DESTDIR: +_installcheck_world: __installcheck_DESTDIR +_installcheck_kernel: __installcheck_DESTDIR +__installcheck_DESTDIR: .if !defined(DESTDIR) || empty(DESTDIR) @echo "ERROR: Please set DESTDIR!"; \ false @@ -708,7 +711,12 @@ CHECK_GIDS+= smmsp CHECK_UIDS+= proxy CHECK_GIDS+= proxy authpf .endif -installcheck_UGID: +.if ${MK_UNBOUND} != "no" +CHECK_UIDS+= unbound +CHECK_GIDS+= unbound +.endif +_installcheck_world: __installcheck_UGID +__installcheck_UGID: .for uid in ${CHECK_UIDS} @if ! `id -u ${uid} >/dev/null 2>&1`; then \ echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ @@ -763,7 +771,7 @@ EXTRA_DISTRIBUTIONS+= lib32 MTREE_MAGIC?= mtree 2.0 -distributeworld installworld: installcheck installcheck_UGID +distributeworld installworld: _installcheck_world mkdir -p ${INSTALLTMP} progs=$$(for prog in ${ITOOLS}; do \ if progpath=`which $$prog`; then \ @@ -814,7 +822,7 @@ distributeworld installworld: installche cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ - LOCAL_MTREE=${LOCAL_MTREE} distrib-dirs + LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs .endif ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ ${IMAKEENV} rm -rf ${INSTALLTMP} @@ -888,7 +896,7 @@ reinstall: @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ - LOCAL_MTREE=${LOCAL_MTREE} hierarchy + LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy @echo @echo "--------------------------------------------------------------" @echo ">>> Installing everything" @@ -1041,7 +1049,7 @@ buildkernel: # Install the kernel defined by INSTALLKERNEL # installkernel installkernel.debug \ -reinstallkernel reinstallkernel.debug: installcheck +reinstallkernel reinstallkernel.debug: _installcheck_kernel .if empty(INSTALLKERNEL) @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ false @@ -1331,7 +1339,8 @@ build-tools: .MAKE usr.bin/awk \ lib/libmagic \ usr.bin/mkesdb_static \ - usr.bin/mkcsmapper_static + usr.bin/mkcsmapper_static \ + usr.bin/vi/catalog ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ cd ${.CURDIR}/${_tool} && \ ${MAKE} DIRPRFX=${_tool}/ obj && \ @@ -1468,8 +1477,8 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ ${_cddl_lib_libzfs_core} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ - ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ - ${_secure_lib_libssl} + ${_secure_lib_libcrypto} ${_lib_libldns} \ + ${_secure_lib_libssh} ${_secure_lib_libssl} .if ${MK_ATF} != "no" _lib_atf_libatf_c= lib/atf/libatf-c @@ -1505,9 +1514,16 @@ cddl/lib/libzfs_core__L: cddl/lib/libnvp _secure_lib_libcrypto= secure/lib/libcrypto _secure_lib_libssl= secure/lib/libssl lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L +.if ${MK_LDNS} != "no" +_lib_libldns= lib/libldns +lib/libldns__L: secure/lib/libcrypto__L +.endif .if ${MK_OPENSSH} != "no" _secure_lib_libssh= secure/lib/libssh secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L +.if ${MK_LDNS} != "no" +secure/lib/libssh__L: lib/libldns__L +.endif .if ${MK_KERBEROS_SUPPORT} != "no" secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ Modified: projects/bhyve_svm/ObsoleteFiles.inc ============================================================================== --- projects/bhyve_svm/ObsoleteFiles.inc Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/ObsoleteFiles.inc Fri Sep 20 00:46:29 2013 (r255720) @@ -38,6 +38,29 @@ # xargs -n1 | sort | uniq -d; # done +# 20130908: libssh becomes private +OLD_FILES+=usr/lib/libssh.a +OLD_FILES+=usr/lib/libssh.so +OLD_LIBS+=usr/lib/libssh.so.5 +OLD_FILES+=usr/lib/libssh_p.a +OLD_FILES+=usr/lib32/libssh.a +OLD_FILES+=usr/lib32/libssh.so +OLD_LIBS+=usr/lib32/libssh.so.5 +OLD_FILES+=usr/lib32/libssh_p.a +# 20130903: gnupatch is no more +OLD_FILES+=usr/bin/gnupatch +OLD_FILES+=usr/share/man/man1/gnupatch.1.gz +# 20130829: bsdpatch is patch unconditionally +OLD_FILES+=usr/bin/bsdpatch +OLD_FILES+=usr/share/man/man1/bsdpatch.1.gz +# 20130822: bind 9.9.3-P2 import +OLD_LIBS+=usr/lib/liblwres.so.80 +# 20130814: vm_page_busy(9) +OLD_FILES+=usr/share/man/man9/vm_page_flash.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_io.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_io_finish.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_io_start.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_wakeup.9.gz # 20130710: libkvm version bump OLD_LIBS+=lib/libkvm.so.5 OLD_LIBS+=usr/lib32/libkvm.so.5 @@ -114,6 +137,7 @@ OLD_FILES+=usr/include/clang/3.2/xmmintr OLD_FILES+=usr/include/clang/3.2/xopintrin.h OLD_DIRS+=usr/include/clang/3.2 # 20130404: legacy ATA stack removed +OLD_FILES+=etc/periodic/daily/405.status-ata-raid OLD_FILES+=rescue/atacontrol OLD_FILES+=sbin/atacontrol OLD_FILES+=usr/share/man/man8/atacontrol.8.gz Modified: projects/bhyve_svm/UPDATING ============================================================================== --- projects/bhyve_svm/UPDATING Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/UPDATING Fri Sep 20 00:46:29 2013 (r255720) @@ -31,6 +31,68 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130916: + With the addition of unbound(8), a new unbound user is now + required during installworld. "mergemaster -p" can be used to + add the user prior to installworld, as documented in the handbook. + +20130911: + OpenSSH is now built with DNSSEC support, and will by default + silently trust signed SSHFP records. This can be controlled with + the VerifyHostKeyDNS client configuration setting. DNSSEC support + can be disabled entirely with the WITHOUT_LDNS option in src.conf. + +20130906: + The GNU Compiler Collection and C++ standard library (libstdc++) + are no longer built by default on platforms where clang is the system + compiler. You can enable them with the WITH_GCC and WITH_GNUCXX + options in src.conf. + +20130905: + The PROCDESC kernel option is now part of the GENERIC kernel + configuration and is required for the rwhod(8) to work. + If you are using custom kernel configuration, you should include + 'options PROCDESC'. + +20130905: + The API and ABI related to the Capsicum framework was modified + in backward incompatible way. The userland libraries and programs + have to be recompiled to work with the new kernel. This includes the + following libraries and programs, but the whole buildworld is + advised: libc, libprocstat, dhclient, tcpdump, hastd, hastctl, + kdump, procstat, rwho, rwhod, uniq. + +20130903: + AES-NI intrinsic support has been added to gcc. The AES-NI module + has been updated to use this support. A new gcc is required to build + the aesni module on both i386 and amd64. + +20130827: + Thomas Dickey (vendor author thereof) reports that dialog(1) since + 2011/10/18 has a bug in handling --hline. Testers and I noticed the + --hline is not ignored but displayed as a NULL string, regardless of + value. This will cause confusion in some bsdconfig dialogs where the + --hline is used to inform users which keybindings to use. This will + likewise affect any other persons relying on --hline. It also looks + rather strange seeing "[]" at the bottom of dialog(1) widgets when + passing --hline "anything". Thomas said he will have a look in a few + weeks. NOTE: The "[]" brackets appear with the left-edge where it + would normally appear given the width of text to display, but the + displayed text is not there (part of the bug). + +20130821: + The PADLOCK_RNG and RDRAND_RNG kernel options are now devices. + Thus "device padlock_rng" and "device rdrand_rng" should be + used instead of "options PADLOCK_RNG" & "options RDRAND_RNG". + +20130813: + WITH_ICONV has been split into two feature sets. WITH_ICONV now + enables just the iconv* functionality and is now on by default. + WITH_LIBICONV_COMPAT enables the libiconv api and link time + compatability. Set WITHOUT_ICONV to build the old way. + If you have been using WITH_ICONV before, you will very likely + need to turn on WITH_LIBICONV_COMPAT. + 20130806: INVARIANTS option now enables DEBUG for code with OpenSolaris and Illumos origin, including ZFS. If you have INVARIANTS in your @@ -245,8 +307,8 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 20121201: With the addition of auditdistd(8), a new auditdistd user is now - depended on during installworld. "mergemaster -p" can be used to add - the user prior to installworld, as documented in the handbook. + required during installworld. "mergemaster -p" can be used to + add the user prior to installworld, as documented in the handbook. 20121117: The sin6_scope_id member variable in struct sockaddr_in6 is now @@ -332,9 +394,9 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 20120913: The random(4) support for the VIA hardware random number generator (`PADLOCK') is no longer enabled unconditionally. - Add the PADLOCK_RNG option in the custom kernel config if + Add the padlock_rng device in the custom kernel config if needed. The GENERIC kernels on i386 and amd64 do include the - option, so the change only affects the custom kernel + device, so the change only affects the custom kernel configurations. 20120908: Modified: projects/bhyve_svm/bin/chflags/chflags.1 ============================================================================== --- projects/bhyve_svm/bin/chflags/chflags.1 Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/chflags/chflags.1 Fri Sep 20 00:46:29 2013 (r255720) @@ -32,7 +32,7 @@ .\" @(#)chflags.1 8.4 (Berkeley) 5/2/95 .\" $FreeBSD$ .\" -.Dd March 3, 2006 +.Dd April 8, 2013 .Dt CHFLAGS 1 .Os .Sh NAME @@ -101,20 +101,36 @@ The following keywords are currently def .Bl -tag -offset indent -width ".Cm opaque" .It Cm arch , archived set the archived flag (super-user only) -.It Cm opaque -set the opaque flag (owner or super-user only) .It Cm nodump set the nodump flag (owner or super-user only) +.It Cm opaque +set the opaque flag (owner or super-user only) .It Cm sappnd , sappend set the system append-only flag (super-user only) .It Cm schg , schange , simmutable set the system immutable flag (super-user only) +.It Cm snapshot +set the snapshot flag (filesystems do not allow changing this flag) .It Cm sunlnk , sunlink set the system undeletable flag (super-user only) .It Cm uappnd , uappend set the user append-only flag (owner or super-user only) +.It Cm uarch , uarchive +set the archive flag (owner or super-user only) .It Cm uchg , uchange , uimmutable set the user immutable flag (owner or super-user only) +.It Cm uhidden , hidden +set the hidden file attribute (owner or super-user only) +.It Cm uoffline , offline +set the offline file attribute (owner or super-user only) +.It Cm urdonly , rdonly , readonly +set the DOS, Windows and CIFS readonly flag (owner or super-user only) +.It Cm usparse , sparse +set the sparse file attribute (owner or super-user only) +.It Cm usystem , system +set the DOS, Windows and CIFS system flag (owner or super-user only) +.It Cm ureparse , reparse +set the Windows reparse point file attribute (owner or super-user only) .It Cm uunlnk , uunlink set the user undeletable flag (owner or super-user only) .El Modified: projects/bhyve_svm/bin/ls/ls.1 ============================================================================== --- projects/bhyve_svm/bin/ls/ls.1 Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/ls/ls.1 Fri Sep 20 00:46:29 2013 (r255720) @@ -232,6 +232,9 @@ output. Include the file flags in a long .Pq Fl l output. +See +.Xr chflags 1 +for a list of file flags and their meanings. .It Fl p Write a slash .Pq Ql / Modified: projects/bhyve_svm/bin/pkill/pkill.1 ============================================================================== --- projects/bhyve_svm/bin/pkill/pkill.1 Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/pkill/pkill.1 Fri Sep 20 00:46:29 2013 (r255720) @@ -29,7 +29,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE .\" POSSIBILITY OF SUCH DAMAGE. .\" -.Dd February 11, 2010 +.Dd August 9, 2013 .Dt PKILL 1 .Os .Sh NAME @@ -44,6 +44,7 @@ .Op Fl N Ar system .Op Fl P Ar ppid .Op Fl U Ar uid +.Op Fl c Ar class .Op Fl d Ar delim .Op Fl g Ar pgrp .Op Fl j Ar jid @@ -60,6 +61,7 @@ .Op Fl N Ar system .Op Fl P Ar ppid .Op Fl U Ar uid +.Op Fl c Ar class .Op Fl g Ar pgrp .Op Fl j Ar jid .Op Fl s Ar sid @@ -130,6 +132,9 @@ or process and all of its ancestors are excluded (unless .Fl v is used). +.It Fl c Ar class +Restrict matches to processes running with specified login class +.Ar class . .It Fl f Match against full argument lists. The default is to match against process names. Modified: projects/bhyve_svm/bin/pkill/pkill.c ============================================================================== --- projects/bhyve_svm/bin/pkill/pkill.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/pkill/pkill.c Fri Sep 20 00:46:29 2013 (r255720) @@ -79,12 +79,14 @@ enum listtype { LT_TTY, LT_PGRP, LT_JID, - LT_SID + LT_SID, + LT_CLASS }; struct list { SLIST_ENTRY(list) li_chain; long li_number; + char *li_name; }; SLIST_HEAD(listhead, list); @@ -116,6 +118,7 @@ static struct listhead ppidlist = SLIST_ static struct listhead tdevlist = SLIST_HEAD_INITIALIZER(tdevlist); static struct listhead sidlist = SLIST_HEAD_INITIALIZER(sidlist); static struct listhead jidlist = SLIST_HEAD_INITIALIZER(jidlist); +static struct listhead classlist = SLIST_HEAD_INITIALIZER(classlist); static void usage(void) __attribute__((__noreturn__)); static int killact(const struct kinfo_proc *); @@ -179,7 +182,7 @@ main(int argc, char **argv) execf = NULL; coref = _PATH_DEVNULL; - while ((ch = getopt(argc, argv, "DF:G:ILM:N:P:SU:ad:fg:ij:lnoqs:t:u:vx")) != -1) + while ((ch = getopt(argc, argv, "DF:G:ILM:N:P:SU:ac:d:fg:ij:lnoqs:t:u:vx")) != -1) switch (ch) { case 'D': debug_opt++; @@ -222,6 +225,10 @@ main(int argc, char **argv) case 'a': ancestors++; break; + case 'c': + makelist(&classlist, LT_CLASS, optarg); + criteria = 1; + break; case 'd': if (!pgrep) usage(); @@ -469,6 +476,20 @@ main(int argc, char **argv) continue; } + SLIST_FOREACH(li, &classlist, li_chain) { + /* + * We skip P_SYSTEM processes to match ps(1) output. + */ + if ((kp->ki_flag & P_SYSTEM) == 0 && + kp->ki_loginclass != NULL && + strcmp(kp->ki_loginclass, li->li_name) == 0) + break; + } + if (SLIST_FIRST(&classlist) != NULL && li == NULL) { + selected[i] = 0; + continue; + } + if (argc == 0) selected[i] = 1; } @@ -562,9 +583,9 @@ usage(void) fprintf(stderr, "usage: %s %s [-F pidfile] [-G gid] [-M core] [-N system]\n" - " [-P ppid] [-U uid] [-g pgrp] [-j jid] [-s sid]\n" - " [-t tty] [-u euid] pattern ...\n", getprogname(), - ustr); + " [-P ppid] [-U uid] [-c class] [-g pgrp] [-j jid]\n" + " [-s sid] [-t tty] [-u euid] pattern ...\n", + getprogname(), ustr); exit(STATUS_BADUSAGE); } @@ -664,8 +685,10 @@ makelist(struct listhead *head, enum lis SLIST_INSERT_HEAD(head, li, li_chain); empty = 0; - li->li_number = (uid_t)strtol(sp, &ep, 0); - if (*ep == '\0') { + if (type != LT_CLASS) + li->li_number = (uid_t)strtol(sp, &ep, 0); + + if (type != LT_CLASS && *ep == '\0') { switch (type) { case LT_PGRP: if (li->li_number == 0) @@ -750,6 +773,12 @@ foundtty: if ((st.st_mode & S_IFCHR) == errx(STATUS_BADUSAGE, "Invalid jail ID `%s'", sp); break; + case LT_CLASS: + li->li_number = -1; + li->li_name = strdup(sp); + if (li->li_name == NULL) + err(STATUS_ERROR, "Cannot allocate memory"); + break; default: usage(); } Modified: projects/bhyve_svm/bin/ps/keyword.c ============================================================================== --- projects/bhyve_svm/bin/ps/keyword.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/ps/keyword.c Fri Sep 20 00:46:29 2013 (r255720) @@ -87,6 +87,7 @@ static VAR var[] = { {"etimes", "ELAPSED", NULL, USER, elapseds, 0, CHAR, NULL, 0}, {"euid", "", "uid", 0, NULL, 0, CHAR, NULL, 0}, {"f", "F", NULL, 0, kvar, KOFF(ki_flag), INT, "x", 0}, + {"fib", "FIB", NULL, 0, kvar, KOFF(ki_fibnum), INT, "d", 0}, {"flags", "", "f", 0, NULL, 0, CHAR, NULL, 0}, {"gid", "GID", NULL, 0, kvar, KOFF(ki_groups), UINT, UIDFMT, 0}, {"group", "GROUP", NULL, LJUST, egroupname, 0, CHAR, NULL, 0}, Modified: projects/bhyve_svm/bin/ps/ps.1 ============================================================================== --- projects/bhyve_svm/bin/ps/ps.1 Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/ps/ps.1 Fri Sep 20 00:46:29 2013 (r255720) @@ -512,6 +512,9 @@ elapsed running time, format minutes:seconds. .It Cm etimes elapsed running time, in decimal integer seconds +.It Cm fib +default FIB number, see +.Xr setfib 1 .It Cm flags the process flags, in hexadecimal (alias .Cm f ) Modified: projects/bhyve_svm/bin/sh/alias.c ============================================================================== --- projects/bhyve_svm/bin/sh/alias.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/alias.c Fri Sep 20 00:46:29 2013 (r255720) @@ -237,17 +237,19 @@ printaliases(void) } int -aliascmd(int argc, char **argv) +aliascmd(int argc __unused, char **argv __unused) { char *n, *v; int ret = 0; struct alias *ap; - if (argc == 1) { + nextopt(""); + + if (*argptr == NULL) { printaliases(); return (0); } - while ((n = *++argv) != NULL) { + while ((n = *argptr++) != NULL) { if ((v = strchr(n+1, '=')) == NULL) /* n+1: funny ksh stuff */ if ((ap = lookupalias(n, 0)) == NULL) { warning("%s: not found", n); Modified: projects/bhyve_svm/bin/sh/arith_yylex.c ============================================================================== --- projects/bhyve_svm/bin/sh/arith_yylex.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/arith_yylex.c Fri Sep 20 00:46:29 2013 (r255720) @@ -218,9 +218,13 @@ checkeqcur: value += ARITH_REM - '%'; goto checkeq; case '+': + if (buf[1] == '+') + return ARITH_BAD; value += ARITH_ADD - '+'; goto checkeq; case '-': + if (buf[1] == '-') + return ARITH_BAD; value += ARITH_SUB - '-'; goto checkeq; case '~': Modified: projects/bhyve_svm/bin/sh/eval.c ============================================================================== --- projects/bhyve_svm/bin/sh/eval.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/eval.c Fri Sep 20 00:46:29 2013 (r255720) @@ -109,7 +109,6 @@ reseteval(void) { evalskip = 0; loopnest = 0; - funcnest = 0; } @@ -325,7 +324,7 @@ skipping: if (evalskip == SKIPCONT && } if (evalskip == SKIPBREAK && --skipcount <= 0) evalskip = 0; - if (evalskip == SKIPFUNC || evalskip == SKIPFILE) + if (evalskip == SKIPRETURN) status = exitstatus; break; } @@ -1069,7 +1068,7 @@ evalcommand(union node *cmd, int flags, funcnest--; popredir(); INTON; - if (evalskip == SKIPFUNC) { + if (evalskip == SKIPRETURN) { evalskip = 0; skipcount = 0; } @@ -1306,14 +1305,8 @@ returncmd(int argc, char **argv) { int ret = argc > 1 ? number(argv[1]) : oexitstatus; - if (funcnest) { - evalskip = SKIPFUNC; - skipcount = 1; - } else { - /* skip the rest of the file */ - evalskip = SKIPFILE; - skipcount = 1; - } + evalskip = SKIPRETURN; + skipcount = 1; return ret; } Modified: projects/bhyve_svm/bin/sh/eval.h ============================================================================== --- projects/bhyve_svm/bin/sh/eval.h Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/eval.h Fri Sep 20 00:46:29 2013 (r255720) @@ -67,5 +67,4 @@ extern int skipcount; /* reasons for skipping commands (see comment on breakcmd routine) */ #define SKIPBREAK 1 #define SKIPCONT 2 -#define SKIPFUNC 3 -#define SKIPFILE 4 +#define SKIPRETURN 3 Modified: projects/bhyve_svm/bin/sh/exec.c ============================================================================== --- projects/bhyve_svm/bin/sh/exec.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/exec.c Fri Sep 20 00:46:29 2013 (r255720) @@ -762,5 +762,7 @@ typecmd_impl(int argc, char **argv, int int typecmd(int argc, char **argv) { + if (argc > 2 && strcmp(argv[1], "--") == 0) + argc--, argv++; return typecmd_impl(argc, argv, TYPECMD_TYPE, bltinlookup("PATH", 1)); } Modified: projects/bhyve_svm/bin/sh/jobs.c ============================================================================== --- projects/bhyve_svm/bin/sh/jobs.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/jobs.c Fri Sep 20 00:46:29 2013 (r255720) @@ -83,13 +83,12 @@ static struct job *bgjob = NULL; /* last static struct job *jobmru; /* most recently used job list */ static pid_t initialpgrp; /* pgrp of shell on invocation */ #endif -int in_waitcmd = 0; /* are we in waitcmd()? */ -volatile sig_atomic_t breakwaitcmd = 0; /* should wait be terminated? */ static int ttyfd = -1; /* mode flags for dowait */ #define DOWAIT_BLOCK 0x1 /* wait until a child exits */ -#define DOWAIT_SIG 0x2 /* if DOWAIT_BLOCK, abort on signals */ +#define DOWAIT_SIG 0x2 /* if DOWAIT_BLOCK, abort on SIGINT/SIGQUIT */ +#define DOWAIT_SIG_ANY 0x4 /* if DOWAIT_SIG, abort on any signal */ #if JOBS static void restartjob(struct job *); @@ -183,13 +182,14 @@ out: out2fmt_flush("sh: can't access #if JOBS int -fgcmd(int argc __unused, char **argv) +fgcmd(int argc __unused, char **argv __unused) { struct job *jp; pid_t pgrp; int status; - jp = getjob(argv[1]); + nextopt(""); + jp = getjob(*argptr); if (jp->jobctl == 0) error("job not created under job control"); printjobcmd(jp); @@ -210,8 +210,9 @@ bgcmd(int argc, char **argv) { struct job *jp; + nextopt(""); do { - jp = getjob(*++argv); + jp = getjob(*argptr); if (jp->jobctl == 0) error("job not created under job control"); if (jp->state == JOBDONE) @@ -220,7 +221,7 @@ bgcmd(int argc, char **argv) jp->foreground = 0; out1fmt("[%td] ", jp - jobtab + 1); printjobcmd(jp); - } while (--argc > 1); + } while (*argptr != NULL && *++argptr != NULL); return 0; } @@ -482,7 +483,7 @@ waitcmd(int argc __unused, char **argv _ static int waitcmdloop(struct job *job) { - int status, retval; + int status, retval, sig; struct job *jp; /* @@ -490,17 +491,12 @@ waitcmdloop(struct job *job) * received. */ - in_waitcmd++; do { if (job != NULL) { - if (job->state) { + if (job->state == JOBDONE) { status = job->ps[job->nprocs - 1].status; if (WIFEXITED(status)) retval = WEXITSTATUS(status); -#if JOBS - else if (WIFSTOPPED(status)) - retval = WSTOPSIG(status) + 128; -#endif else retval = WTERMSIG(status) + 128; if (! iflag || ! job->changed) @@ -510,7 +506,6 @@ waitcmdloop(struct job *job) if (job == bgjob) bgjob = NULL; } - in_waitcmd--; return retval; } } else { @@ -526,7 +521,6 @@ waitcmdloop(struct job *job) } for (jp = jobtab ; ; jp++) { if (jp >= jobtab + njobs) { /* no running procs */ - in_waitcmd--; return 0; } if (jp->used && jp->state == 0) @@ -534,20 +528,22 @@ waitcmdloop(struct job *job) } } } while (dowait(DOWAIT_BLOCK | DOWAIT_SIG, (struct job *)NULL) != -1); - in_waitcmd--; - return pendingsig + 128; + sig = pendingsig_waitcmd; + pendingsig_waitcmd = 0; + return sig + 128; } int -jobidcmd(int argc __unused, char **argv) +jobidcmd(int argc __unused, char **argv __unused) { struct job *jp; int i; - jp = getjob(argv[1]); + nextopt(""); + jp = getjob(*argptr); for (i = 0 ; i < jp->nprocs ; ) { out1fmt("%d", (int)jp->ps[i].pid); out1c(++i < jp->nprocs? ' ' : '\n'); @@ -991,7 +987,8 @@ waitforjob(struct job *jp, int *origstat INTOFF; TRACE(("waitforjob(%%%td) called\n", jp - jobtab + 1)); while (jp->state == 0) - if (dowait(DOWAIT_BLOCK | (Tflag ? DOWAIT_SIG : 0), jp) == -1) + if (dowait(DOWAIT_BLOCK | (Tflag ? DOWAIT_SIG | + DOWAIT_SIG_ANY : 0), jp) == -1) dotrap(); #if JOBS if (jp->jobctl) { @@ -1082,12 +1079,17 @@ dowait(int mode, struct job *job) pid = wait3(&status, wflags, (struct rusage *)NULL); TRACE(("wait returns %d, status=%d\n", (int)pid, status)); if (pid == 0 && (mode & DOWAIT_SIG) != 0) { - sigsuspend(&omask); pid = -1; + if (((mode & DOWAIT_SIG_ANY) != 0 ? + pendingsig : pendingsig_waitcmd) != 0) { + errno = EINTR; + break; + } + sigsuspend(&omask); if (int_pending()) break; } - } while (pid == -1 && errno == EINTR && breakwaitcmd == 0); + } while (pid == -1 && errno == EINTR); if (pid == -1 && errno == ECHILD && job != NULL) job->state = JOBDONE; if ((mode & DOWAIT_SIG) != 0) { @@ -1096,11 +1098,6 @@ dowait(int mode, struct job *job) sigprocmask(SIG_SETMASK, &omask, NULL); INTON; } - if (breakwaitcmd != 0) { - breakwaitcmd = 0; - if (pid <= 0) - return -1; - } if (pid <= 0) return pid; INTOFF; Modified: projects/bhyve_svm/bin/sh/jobs.h ============================================================================== --- projects/bhyve_svm/bin/sh/jobs.h Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/jobs.h Fri Sep 20 00:46:29 2013 (r255720) @@ -83,8 +83,6 @@ enum { }; extern int job_warning; /* user was warned about stopped jobs */ -extern int in_waitcmd; /* are we in waitcmd()? */ -extern volatile sig_atomic_t breakwaitcmd; /* break wait to process traps? */ void setjobctl(int); void showjobs(int, int); Modified: projects/bhyve_svm/bin/sh/main.c ============================================================================== --- projects/bhyve_svm/bin/sh/main.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/main.c Fri Sep 20 00:46:29 2013 (r255720) @@ -185,8 +185,6 @@ reset(void) { reseteval(); resetinput(); - resetparser(); - resetredir(); } /* @@ -233,7 +231,7 @@ cmdloop(int top) popstackmark(&smark); setstackmark(&smark); if (evalskip != 0) { - if (evalskip == SKIPFILE) + if (evalskip == SKIPRETURN) evalskip = 0; break; } Modified: projects/bhyve_svm/bin/sh/parser.c ============================================================================== --- projects/bhyve_svm/bin/sh/parser.c Thu Sep 19 22:06:28 2013 (r255719) +++ projects/bhyve_svm/bin/sh/parser.c Fri Sep 20 00:46:29 2013 (r255720) @@ -96,7 +96,7 @@ static struct heredoc *heredoclist; /* l static int doprompt; /* if set, prompt the user */ static int needprompt; /* true if interactive and at start of line */ static int lasttoken; /* last token read */ -int tokpushback; /* last token pushed back */ +static int tokpushback; /* last token pushed back */ static char *wordtext; /* text of last word returned by readtoken */ static int checkkwd; static struct nodelist *backquotelist; @@ -108,12 +108,13 @@ static int funclinno; /* line # where t static struct parser_temp *parser_temp; -static union node *list(int, int); +static union node *list(int); static union node *andor(void); static union node *pipeline(void); static union node *command(void); static union node *simplecmd(union node **, union node *); static union node *makename(void); +static union node *makebinary(int type, union node *n1, union node *n2); static void parsefname(void); static void parseheredoc(void); static int peektoken(void); @@ -121,6 +122,7 @@ static int readtoken(void); static int xxreadtoken(void); static int readtoken1(int, const char *, const char *, int); static int noexpand(char *); +static void consumetoken(int); static void synexpect(int) __dead2; static void synerror(const char *) __dead2; static void setprompt(int); @@ -210,6 +212,7 @@ parsecmd(int interact) heredoclist = NULL; tokpushback = 0; + checkkwd = 0; doprompt = interact; if (doprompt) setprompt(1); @@ -222,18 +225,18 @@ parsecmd(int interact) if (t == TNL) return NULL; tokpushback++; - return list(1, 1); + return list(1); } static union node * -list(int nlflag, int erflag) +list(int nlflag) { union node *ntop, *n1, *n2, *n3; int tok; checkkwd = CHKNL | CHKKWD | CHKALIAS; - if (!nlflag && !erflag && tokendlist[peektoken()]) + if (!nlflag && tokendlist[peektoken()]) return NULL; ntop = n1 = NULL; for (;;) { @@ -255,17 +258,11 @@ list(int nlflag, int erflag) if (ntop == NULL) ntop = n2; else if (n1 == NULL) { - n1 = (union node *)stalloc(sizeof (struct nbinary)); - n1->type = NSEMI; - n1->nbinary.ch1 = ntop; - n1->nbinary.ch2 = n2; + n1 = makebinary(NSEMI, ntop, n2); ntop = n1; } else { - n3 = (union node *)stalloc(sizeof (struct nbinary)); - n3->type = NSEMI; - n3->nbinary.ch1 = n1->nbinary.ch2; - n3->nbinary.ch2 = n2; + n3 = makebinary(NSEMI, n1->nbinary.ch2, n2); n1->nbinary.ch2 = n3; n1 = n3; } @@ -286,8 +283,7 @@ list(int nlflag, int erflag) tokpushback++; } checkkwd = CHKNL | CHKKWD | CHKALIAS; - if (!nlflag && (erflag ? peektoken() == TEOF : - tokendlist[peektoken()])) + if (!nlflag && tokendlist[peektoken()]) return ntop; break; case TEOF: @@ -297,7 +293,7 @@ list(int nlflag, int erflag) pungetc(); /* push back EOF on input */ return ntop; default: - if (nlflag || erflag) + if (nlflag) synexpect(-1); tokpushback++; return ntop; @@ -310,10 +306,10 @@ list(int nlflag, int erflag) static union node * andor(void) { - union node *n1, *n2, *n3; + union node *n; int t; - n1 = pipeline(); + n = pipeline(); for (;;) { if ((t = readtoken()) == TAND) { t = NAND; @@ -321,14 +317,9 @@ andor(void) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Fri Sep 20 21:53:15 2013 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 98C55C1C; Fri, 20 Sep 2013 21:53:15 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 844B524B3; Fri, 20 Sep 2013 21:53:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r8KLrFQe004522; Fri, 20 Sep 2013 21:53:15 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r8KLr9Uw004480; Fri, 20 Sep 2013 21:53:09 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201309202153.r8KLr9Uw004480@svn.freebsd.org> From: Neel Natu Date: Fri, 20 Sep 2013 21:53:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r255742 - in projects/bhyve_npt_pmap: . contrib/llvm/tools/lldb/docs contrib/llvm/tools/lldb/source etc etc/rc.d include lib/clang lib/clang/liblldb lib/clang/liblldbAPI lib/clang/libll... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Sep 2013 21:53:15 -0000 Author: neel Date: Fri Sep 20 21:53:08 2013 New Revision: 255742 URL: http://svnweb.freebsd.org/changeset/base/255742 Log: IFC @r255724 Added: projects/bhyve_npt_pmap/contrib/llvm/tools/lldb/docs/ - copied from r255724, head/contrib/llvm/tools/lldb/docs/ projects/bhyve_npt_pmap/lib/clang/liblldb/ - copied from r255724, head/lib/clang/liblldb/ projects/bhyve_npt_pmap/lib/clang/liblldbAPI/ - copied from r255724, head/lib/clang/liblldbAPI/ projects/bhyve_npt_pmap/lib/clang/liblldbBreakpoint/ - copied from r255724, head/lib/clang/liblldbBreakpoint/ projects/bhyve_npt_pmap/lib/clang/liblldbCommands/ - copied from r255724, head/lib/clang/liblldbCommands/ projects/bhyve_npt_pmap/lib/clang/liblldbCore/ - copied from r255724, head/lib/clang/liblldbCore/ projects/bhyve_npt_pmap/lib/clang/liblldbDataFormatters/ - copied from r255724, head/lib/clang/liblldbDataFormatters/ projects/bhyve_npt_pmap/lib/clang/liblldbExpression/ - copied from r255724, head/lib/clang/liblldbExpression/ projects/bhyve_npt_pmap/lib/clang/liblldbHostCommon/ - copied from r255724, head/lib/clang/liblldbHostCommon/ projects/bhyve_npt_pmap/lib/clang/liblldbHostFreeBSD/ - copied from r255724, head/lib/clang/liblldbHostFreeBSD/ projects/bhyve_npt_pmap/lib/clang/liblldbInterpreter/ - copied from r255724, head/lib/clang/liblldbInterpreter/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginABISysV_x86_64/ - copied from r255724, head/lib/clang/liblldbPluginABISysV_x86_64/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginCXXItaniumABI/ - copied from r255724, head/lib/clang/liblldbPluginCXXItaniumABI/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginDisassemblerLLVM/ - copied from r255724, head/lib/clang/liblldbPluginDisassemblerLLVM/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/ - copied from r255724, head/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginDynamicLoaderStatic/ - copied from r255724, head/lib/clang/liblldbPluginDynamicLoaderStatic/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginInstructionARM/ - copied from r255724, head/lib/clang/liblldbPluginInstructionARM/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginObjectContainerBSDArchive/ - copied from r255724, head/lib/clang/liblldbPluginObjectContainerBSDArchive/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginObjectFileELF/ - copied from r255724, head/lib/clang/liblldbPluginObjectFileELF/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginPlatformFreeBSD/ - copied from r255724, head/lib/clang/liblldbPluginPlatformFreeBSD/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginPlatformGDB/ - copied from r255724, head/lib/clang/liblldbPluginPlatformGDB/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginProcessElfCore/ - copied from r255724, head/lib/clang/liblldbPluginProcessElfCore/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginProcessFreeBSD/ - copied from r255724, head/lib/clang/liblldbPluginProcessFreeBSD/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginProcessGDBRemote/ - copied from r255724, head/lib/clang/liblldbPluginProcessGDBRemote/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginProcessPOSIX/ - copied from r255724, head/lib/clang/liblldbPluginProcessPOSIX/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginProcessUtility/ - copied from r255724, head/lib/clang/liblldbPluginProcessUtility/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginSymbolFileDWARF/ - copied from r255724, head/lib/clang/liblldbPluginSymbolFileDWARF/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginSymbolFileSymtab/ - copied from r255724, head/lib/clang/liblldbPluginSymbolFileSymtab/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginSymbolVendorELF/ - copied from r255724, head/lib/clang/liblldbPluginSymbolVendorELF/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/ - copied from r255724, head/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/ projects/bhyve_npt_pmap/lib/clang/liblldbPluginUnwindAssemblyX86/ - copied from r255724, head/lib/clang/liblldbPluginUnwindAssemblyX86/ projects/bhyve_npt_pmap/lib/clang/liblldbSymbol/ - copied from r255724, head/lib/clang/liblldbSymbol/ projects/bhyve_npt_pmap/lib/clang/liblldbTarget/ - copied from r255724, head/lib/clang/liblldbTarget/ projects/bhyve_npt_pmap/lib/clang/liblldbUtility/ - copied from r255724, head/lib/clang/liblldbUtility/ projects/bhyve_npt_pmap/lib/clang/lldb.lib.mk - copied unchanged from r255724, head/lib/clang/lldb.lib.mk projects/bhyve_npt_pmap/lib/libc/sys/procctl.2 - copied unchanged from r255724, head/lib/libc/sys/procctl.2 projects/bhyve_npt_pmap/sys/mips/conf/WZR-300HP - copied unchanged from r255724, head/sys/mips/conf/WZR-300HP projects/bhyve_npt_pmap/sys/mips/conf/WZR-300HP.hints - copied unchanged from r255724, head/sys/mips/conf/WZR-300HP.hints projects/bhyve_npt_pmap/sys/powerpc/pseries/ - copied from r255724, head/sys/powerpc/pseries/ projects/bhyve_npt_pmap/sys/sys/procctl.h - copied unchanged from r255724, head/sys/sys/procctl.h projects/bhyve_npt_pmap/tools/build/options/WITH_LLDB - copied unchanged from r255724, head/tools/build/options/WITH_LLDB projects/bhyve_npt_pmap/usr.bin/calendar/calcpp.c - copied unchanged from r255724, head/usr.bin/calendar/calcpp.c projects/bhyve_npt_pmap/usr.bin/clang/lldb/ - copied from r255724, head/usr.bin/clang/lldb/ projects/bhyve_npt_pmap/usr.bin/protect/ - copied from r255724, head/usr.bin/protect/ Modified: projects/bhyve_npt_pmap/LOCKS projects/bhyve_npt_pmap/Makefile projects/bhyve_npt_pmap/Makefile.inc1 projects/bhyve_npt_pmap/UPDATING projects/bhyve_npt_pmap/contrib/llvm/tools/lldb/source/lldb.cpp projects/bhyve_npt_pmap/etc/network.subr projects/bhyve_npt_pmap/etc/rc.d/sendmail projects/bhyve_npt_pmap/include/paths.h projects/bhyve_npt_pmap/lib/clang/Makefile projects/bhyve_npt_pmap/lib/clang/libllvmmc/Makefile projects/bhyve_npt_pmap/lib/clang/libllvmsupport/Makefile projects/bhyve_npt_pmap/lib/clang/libllvmx86disassembler/Makefile projects/bhyve_npt_pmap/lib/libc/net/sctp_sys_calls.c projects/bhyve_npt_pmap/lib/libc/sys/Makefile.inc projects/bhyve_npt_pmap/lib/libc/sys/Symbol.map projects/bhyve_npt_pmap/release/powerpc/mkisoimages.sh projects/bhyve_npt_pmap/release/release.sh projects/bhyve_npt_pmap/sbin/hastd/hast.h projects/bhyve_npt_pmap/sbin/hastd/primary.c projects/bhyve_npt_pmap/sbin/hastd/secondary.c projects/bhyve_npt_pmap/share/i18n/csmapper/Makefile projects/bhyve_npt_pmap/share/i18n/esdb/Makefile projects/bhyve_npt_pmap/share/man/man4/capsicum.4 projects/bhyve_npt_pmap/share/man/man4/psm.4 projects/bhyve_npt_pmap/share/man/man5/fstab.5 projects/bhyve_npt_pmap/share/man/man5/rc.conf.5 projects/bhyve_npt_pmap/share/man/man5/src.conf.5 projects/bhyve_npt_pmap/share/mk/bsd.libnames.mk projects/bhyve_npt_pmap/share/mk/bsd.own.mk projects/bhyve_npt_pmap/sys/amd64/amd64/pmap.c projects/bhyve_npt_pmap/sys/amd64/amd64/sys_machdep.c projects/bhyve_npt_pmap/sys/amd64/conf/GENERIC projects/bhyve_npt_pmap/sys/amd64/linux32/linux32_proto.h projects/bhyve_npt_pmap/sys/amd64/linux32/linux32_syscall.h projects/bhyve_npt_pmap/sys/amd64/linux32/linux32_syscalls.c projects/bhyve_npt_pmap/sys/amd64/linux32/linux32_sysent.c projects/bhyve_npt_pmap/sys/amd64/vmm/vmm_instruction_emul.c projects/bhyve_npt_pmap/sys/amd64/vmm/x86.c projects/bhyve_npt_pmap/sys/arm/arm/pmap-v6.c projects/bhyve_npt_pmap/sys/arm/arm/pmap.c projects/bhyve_npt_pmap/sys/arm/arm/sys_machdep.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32.h projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_capability.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_misc.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_proto.h projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_syscall.h projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_syscalls.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_sysent.c projects/bhyve_npt_pmap/sys/compat/freebsd32/freebsd32_systrace_args.c projects/bhyve_npt_pmap/sys/compat/freebsd32/syscalls.master projects/bhyve_npt_pmap/sys/conf/files.powerpc projects/bhyve_npt_pmap/sys/conf/options.powerpc projects/bhyve_npt_pmap/sys/dev/arcmsr/arcmsr.c projects/bhyve_npt_pmap/sys/dev/hyperv/stordisengage/hv_ata_pci_disengage.c (contents, props changed) projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi.c projects/bhyve_npt_pmap/sys/dev/iscsi/iscsi_ioctl.h projects/bhyve_npt_pmap/sys/dev/nfe/if_nfe.c projects/bhyve_npt_pmap/sys/i386/conf/GENERIC projects/bhyve_npt_pmap/sys/i386/i386/pmap.c projects/bhyve_npt_pmap/sys/i386/i386/sys_machdep.c projects/bhyve_npt_pmap/sys/i386/linux/linux_proto.h projects/bhyve_npt_pmap/sys/i386/linux/linux_syscall.h projects/bhyve_npt_pmap/sys/i386/linux/linux_syscalls.c projects/bhyve_npt_pmap/sys/i386/linux/linux_sysent.c projects/bhyve_npt_pmap/sys/i386/xen/mp_machdep.c projects/bhyve_npt_pmap/sys/i386/xen/pmap.c projects/bhyve_npt_pmap/sys/ia64/ia64/pmap.c projects/bhyve_npt_pmap/sys/kern/init_main.c projects/bhyve_npt_pmap/sys/kern/init_sysent.c projects/bhyve_npt_pmap/sys/kern/kern_fork.c projects/bhyve_npt_pmap/sys/kern/kern_ktrace.c projects/bhyve_npt_pmap/sys/kern/kern_proc.c projects/bhyve_npt_pmap/sys/kern/sys_process.c projects/bhyve_npt_pmap/sys/kern/syscalls.c projects/bhyve_npt_pmap/sys/kern/syscalls.master projects/bhyve_npt_pmap/sys/kern/systrace_args.c projects/bhyve_npt_pmap/sys/kern/uipc_syscalls.c projects/bhyve_npt_pmap/sys/kern/vfs_lookup.c projects/bhyve_npt_pmap/sys/mips/conf/TP-WN1043ND projects/bhyve_npt_pmap/sys/mips/mips/pmap.c projects/bhyve_npt_pmap/sys/powerpc/aim/mmu_oea.c projects/bhyve_npt_pmap/sys/powerpc/aim/mmu_oea64.c projects/bhyve_npt_pmap/sys/powerpc/booke/pmap.c projects/bhyve_npt_pmap/sys/powerpc/conf/DEFAULTS projects/bhyve_npt_pmap/sys/powerpc/conf/GENERIC projects/bhyve_npt_pmap/sys/powerpc/conf/GENERIC64 projects/bhyve_npt_pmap/sys/powerpc/include/spr.h projects/bhyve_npt_pmap/sys/powerpc/ofw/ofw_syscons.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/busdma_machdep.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/cpu.c projects/bhyve_npt_pmap/sys/powerpc/powerpc/pmap_dispatch.c projects/bhyve_npt_pmap/sys/sparc64/sparc64/pmap.c projects/bhyve_npt_pmap/sys/sparc64/sparc64/sys_machdep.c projects/bhyve_npt_pmap/sys/sys/proc.h projects/bhyve_npt_pmap/sys/sys/syscall.h projects/bhyve_npt_pmap/sys/sys/syscall.mk projects/bhyve_npt_pmap/sys/sys/syscallsubr.h projects/bhyve_npt_pmap/sys/sys/sysproto.h projects/bhyve_npt_pmap/sys/sys/user.h projects/bhyve_npt_pmap/sys/vm/pmap.h projects/bhyve_npt_pmap/sys/vm/uma_int.h projects/bhyve_npt_pmap/sys/vm/vm_mmap.c projects/bhyve_npt_pmap/sys/vm/vm_page.c projects/bhyve_npt_pmap/sys/vm/vm_page.h projects/bhyve_npt_pmap/sys/vm/vm_reserv.c projects/bhyve_npt_pmap/tools/tools/sysbuild/sysbuild.sh projects/bhyve_npt_pmap/usr.bin/Makefile projects/bhyve_npt_pmap/usr.bin/calendar/Makefile (contents, props changed) projects/bhyve_npt_pmap/usr.bin/calendar/calendar.1 (contents, props changed) projects/bhyve_npt_pmap/usr.bin/calendar/calendar.h (contents, props changed) projects/bhyve_npt_pmap/usr.bin/calendar/io.c (contents, props changed) projects/bhyve_npt_pmap/usr.bin/calendar/pathnames.h (contents, props changed) projects/bhyve_npt_pmap/usr.bin/clang/Makefile projects/bhyve_npt_pmap/usr.bin/iscsictl/iscsictl.c projects/bhyve_npt_pmap/usr.bin/kdump/kdump.c projects/bhyve_npt_pmap/usr.bin/kdump/mksubr projects/bhyve_npt_pmap/usr.bin/procstat/procstat.1 projects/bhyve_npt_pmap/usr.bin/svn/lib/libapr/apr.h projects/bhyve_npt_pmap/usr.bin/truss/syscall.h projects/bhyve_npt_pmap/usr.bin/truss/syscalls.c projects/bhyve_npt_pmap/usr.sbin/bhyve/mevent.c projects/bhyve_npt_pmap/usr.sbin/bhyve/mevent.h projects/bhyve_npt_pmap/usr.sbin/bhyve/mevent_test.c projects/bhyve_npt_pmap/usr.sbin/bhyve/pit_8254.c projects/bhyve_npt_pmap/usr.sbin/bhyve/rtc.c projects/bhyve_npt_pmap/usr.sbin/bhyve/virtio.c projects/bhyve_npt_pmap/usr.sbin/ctld/ctld.c projects/bhyve_npt_pmap/usr.sbin/ctld/kernel.c projects/bhyve_npt_pmap/usr.sbin/daemon/daemon.c projects/bhyve_npt_pmap/usr.sbin/gpioctl/gpioctl.8 projects/bhyve_npt_pmap/usr.sbin/gpioctl/gpioctl.c projects/bhyve_npt_pmap/usr.sbin/iscsid/iscsid.c projects/bhyve_npt_pmap/usr.sbin/iscsid/login.c Directory Properties: projects/bhyve_npt_pmap/ (props changed) projects/bhyve_npt_pmap/contrib/llvm/ (props changed) projects/bhyve_npt_pmap/lib/libc/ (props changed) projects/bhyve_npt_pmap/sbin/ (props changed) projects/bhyve_npt_pmap/share/man/man4/ (props changed) projects/bhyve_npt_pmap/sys/ (props changed) projects/bhyve_npt_pmap/sys/amd64/vmm/ (props changed) projects/bhyve_npt_pmap/sys/conf/ (props changed) projects/bhyve_npt_pmap/sys/dev/hyperv/ (props changed) projects/bhyve_npt_pmap/usr.bin/calendar/ (props changed) projects/bhyve_npt_pmap/usr.bin/procstat/ (props changed) projects/bhyve_npt_pmap/usr.sbin/bhyve/ (props changed) Modified: projects/bhyve_npt_pmap/LOCKS ============================================================================== --- projects/bhyve_npt_pmap/LOCKS Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/LOCKS Fri Sep 20 21:53:08 2013 (r255742) @@ -12,3 +12,7 @@ releng/5.* Requires Security Officer app releng/6.* Requires Security Officer approval. releng/7.* Requires Security Officer approval. releng/8.* Requires Security Officer approval. +head/sys/dev/random Requires Security Officer approval. +head/sys/libkern/arc4random.c Requires Security Officer approval. +stable/*/sys/dev/random Requires Security Officer approval. +stable/*/sys/libkern/arc4random.c Requires Security Officer approval. Modified: projects/bhyve_npt_pmap/Makefile ============================================================================== --- projects/bhyve_npt_pmap/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -341,7 +341,7 @@ MMAKEENV= MAKEOBJDIRPREFIX=${MYMAKE:H} \ MMAKE= ${MMAKEENV} ${MAKE} \ -D_UPGRADING \ -DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \ - -DNO_CPU_CFLAGS -DNO_WERROR + -DNO_CPU_CFLAGS -DNO_WERROR DESTDIR= PROGNAME=${MYMAKE:T} make bmake: .PHONY @echo @@ -349,10 +349,10 @@ make bmake: .PHONY @echo ">>> Building an up-to-date make(1)" @echo "--------------------------------------------------------------" ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ - ${MMAKE} obj DESTDIR= && \ - ${MMAKE} depend DESTDIR= && \ - ${MMAKE} all DESTDIR= PROGNAME=${MYMAKE:T} && \ - ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= PROGNAME=${MYMAKE:T} + ${MMAKE} obj && \ + ${MMAKE} depend && \ + ${MMAKE} all && \ + ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= tinderbox toolchains kernel-toolchains: upgrade_checks Modified: projects/bhyve_npt_pmap/Makefile.inc1 ============================================================================== --- projects/bhyve_npt_pmap/Makefile.inc1 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/Makefile.inc1 Fri Sep 20 21:53:08 2013 (r255742) @@ -676,8 +676,9 @@ kernel-toolchain: ${TOOLCHAIN_TGTS:N_inc # # Checks to be sure system is ready for installworld/installkernel. # -installcheck: -installcheck_UGID: +installcheck: _installcheck_world _installcheck_kernel +_installcheck_world: +_installcheck_kernel: # # Require DESTDIR to be set if installing for a different architecture or @@ -686,8 +687,9 @@ installcheck_UGID: .if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ defined(DB_FROM_SRC) .if !make(distributeworld) -installcheck: installcheck_DESTDIR -installcheck_DESTDIR: +_installcheck_world: __installcheck_DESTDIR +_installcheck_kernel: __installcheck_DESTDIR +__installcheck_DESTDIR: .if !defined(DESTDIR) || empty(DESTDIR) @echo "ERROR: Please set DESTDIR!"; \ false @@ -709,7 +711,12 @@ CHECK_GIDS+= smmsp CHECK_UIDS+= proxy CHECK_GIDS+= proxy authpf .endif -installcheck_UGID: +.if ${MK_UNBOUND} != "no" +CHECK_UIDS+= unbound +CHECK_GIDS+= unbound +.endif +_installcheck_world: __installcheck_UGID +__installcheck_UGID: .for uid in ${CHECK_UIDS} @if ! `id -u ${uid} >/dev/null 2>&1`; then \ echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ @@ -764,7 +771,7 @@ EXTRA_DISTRIBUTIONS+= lib32 MTREE_MAGIC?= mtree 2.0 -distributeworld installworld: installcheck installcheck_UGID +distributeworld installworld: _installcheck_world mkdir -p ${INSTALLTMP} progs=$$(for prog in ${ITOOLS}; do \ if progpath=`which $$prog`; then \ @@ -1042,7 +1049,7 @@ buildkernel: # Install the kernel defined by INSTALLKERNEL # installkernel installkernel.debug \ -reinstallkernel reinstallkernel.debug: installcheck +reinstallkernel reinstallkernel.debug: _installcheck_kernel .if empty(INSTALLKERNEL) @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ false Modified: projects/bhyve_npt_pmap/UPDATING ============================================================================== --- projects/bhyve_npt_pmap/UPDATING Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/UPDATING Fri Sep 20 21:53:08 2013 (r255742) @@ -31,6 +31,11 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20130916: + With the addition of unbound(8), a new unbound user is now + required during installworld. "mergemaster -p" can be used to + add the user prior to installworld, as documented in the handbook. + 20130911: OpenSSH is now built with DNSSEC support, and will by default silently trust signed SSHFP records. This can be controlled with @@ -58,9 +63,9 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 kdump, procstat, rwho, rwhod, uniq. 20130903: - AES-NI intrinsic support has been added to gcc. The AES-NI module - has been updated to use this support. A new gcc is required to build - the aesni module on both i386 and amd64. + AES-NI intrinsic support has been added to gcc. The AES-NI module + has been updated to use this support. A new gcc is required to build + the aesni module on both i386 and amd64. 20130827: Thomas Dickey (vendor author thereof) reports that dialog(1) since @@ -302,8 +307,8 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 20121201: With the addition of auditdistd(8), a new auditdistd user is now - depended on during installworld. "mergemaster -p" can be used to add - the user prior to installworld, as documented in the handbook. + required during installworld. "mergemaster -p" can be used to + add the user prior to installworld, as documented in the handbook. 20121117: The sin6_scope_id member variable in struct sockaddr_in6 is now Modified: projects/bhyve_npt_pmap/contrib/llvm/tools/lldb/source/lldb.cpp ============================================================================== --- projects/bhyve_npt_pmap/contrib/llvm/tools/lldb/source/lldb.cpp Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/contrib/llvm/tools/lldb/source/lldb.cpp Fri Sep 20 21:53:08 2013 (r255742) @@ -24,8 +24,6 @@ #include "llvm/ADT/StringRef.h" -#include "Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h" -#include "Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h" #include "Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h" #include "Plugins/Disassembler/llvm/DisassemblerLLVMC.h" #include "Plugins/Instruction/ARM/EmulateInstructionARM.h" @@ -92,8 +90,6 @@ lldb_private::Initialize () Timer::Initialize (); Timer scoped_timer (__PRETTY_FUNCTION__, __PRETTY_FUNCTION__); - ABIMacOSX_i386::Initialize(); - ABIMacOSX_arm::Initialize(); ABISysV_x86_64::Initialize(); DisassemblerLLVMC::Initialize(); ObjectContainerBSDArchive::Initialize(); @@ -172,8 +168,6 @@ lldb_private::Terminate () // Terminate and unload and loaded system or user LLDB plug-ins PluginManager::Terminate(); - ABIMacOSX_i386::Terminate(); - ABIMacOSX_arm::Terminate(); ABISysV_x86_64::Terminate(); DisassemblerLLVMC::Terminate(); ObjectContainerBSDArchive::Terminate(); Modified: projects/bhyve_npt_pmap/etc/network.subr ============================================================================== --- projects/bhyve_npt_pmap/etc/network.subr Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/etc/network.subr Fri Sep 20 21:53:08 2013 (r255742) @@ -654,18 +654,16 @@ ipv4_down() ifalias ${_if} inet -alias && _ret=0 - inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet ' | tr "\n" "$_ifs"`" + inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet ' | tr "\n\t" "$_ifs"`" oldifs="$IFS" IFS="$_ifs" for _inet in $inetList ; do # get rid of extraneous line case $_inet in - "") break ;; - \ inet\ *|inet\ *) ;; - *) continue ;; + inet\ *) ;; + *) continue ;; esac - [ -z "$_inet" ] && break _inet=`expr "$_inet" : '.*\(inet \([0-9]\{1,3\}\.\)\{3\}[0-9]\{1,3\}\).*'` @@ -696,13 +694,16 @@ ipv6_down() ipv6_prefix_hostid_addr_common ${_if} -alias && _ret=0 ifalias ${_if} inet6 -alias && _ret=0 - inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet6 ' | tr "\n" "$_ifs"`" + inetList="`${IFCONFIG_CMD} ${_if} | grep 'inet6 ' | tr "\n\t" "$_ifs"`" oldifs="$IFS" IFS="$_ifs" for _inet6 in $inetList ; do # get rid of extraneous line - [ -z "$_inet6" ] && break + case $_inet in + inet6\ *) ;; + *) continue ;; + esac _inet6=`expr "$_inet6" : '.*\(inet6 \([0-9a-f:]*\)\).*'` Modified: projects/bhyve_npt_pmap/etc/rc.d/sendmail ============================================================================== --- projects/bhyve_npt_pmap/etc/rc.d/sendmail Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/etc/rc.d/sendmail Fri Sep 20 21:53:08 2013 (r255742) @@ -80,20 +80,17 @@ required_files= if checkyesno sendmail_submit_enable; then name="sendmail_submit" rcvar="sendmail_submit_enable" - start_cmd="${command} ${sendmail_submit_flags}" run_rc_command "$1" fi if checkyesno sendmail_outbound_enable; then name="sendmail_outbound" rcvar="sendmail_outbound_enable" - start_cmd="${command} ${sendmail_outbound_flags}" run_rc_command "$1" fi -name="sendmail_clientmqueue" +name="sendmail_msp_queue" rcvar="sendmail_msp_queue_enable" -start_cmd="${command} ${sendmail_msp_queue_flags}" -pidfile="${sendmail_mspq_pidfile:-/var/spool/clientmqueue/sm-client.pid}" +pidfile="${sendmail_msp_queue_pidfile:-/var/spool/clientmqueue/sm-client.pid}" required_files="/etc/mail/submit.cf" run_rc_command "$1" Modified: projects/bhyve_npt_pmap/include/paths.h ============================================================================== --- projects/bhyve_npt_pmap/include/paths.h Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/include/paths.h Fri Sep 20 21:53:08 2013 (r255742) @@ -50,6 +50,7 @@ #define _PATH_CSHELL "/bin/csh" #define _PATH_CSMAPPER "/usr/share/i18n/csmapper" #define _PATH_DEFTAPE "/dev/sa0" +#define _PATH_DEVGPIOC "/dev/gpioc" #define _PATH_DEVNULL "/dev/null" #define _PATH_DEVZERO "/dev/zero" #define _PATH_DRUM "/dev/drum" Modified: projects/bhyve_npt_pmap/lib/clang/Makefile ============================================================================== --- projects/bhyve_npt_pmap/lib/clang/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/clang/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -3,17 +3,22 @@ .include .if !make(install) -.if !defined(EARLY_BUILD) && defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no" +.if !defined(EARLY_BUILD) +.if defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no" _libclangstaticanalyzer= \ libclangstaticanalyzercheckers \ libclangstaticanalyzercore \ libclangstaticanalyzerfrontend _libclangarcmigrate= \ libclangarcmigrate +.endif # MK_CLANG_FULL +.if (defined(MK_CLANG_FULL) && ${MK_CLANG_FULL} != "no") || \ + (defined(MK_LLDB) && ${MK_LLDB} != "no") _libclangrewriter= \ libclangrewritecore \ libclangrewritefrontend -.endif # !EARLY_BUILD && MK_CLANG_FULL +.endif # (MK_CLANG_FULL || MK_LLDB) +.endif # !EARLY_BUILD SUBDIR= libclanganalysis \ ${_libclangarcmigrate} \ @@ -82,14 +87,55 @@ SUBDIR= libclanganalysis \ libllvmx86utils .if ${MK_CLANG_EXTRAS} != "no" -SUBDIR+=libllvmdebuginfo \ - libllvmexecutionengine \ +SUBDIR+=libllvmdebuginfo +.endif # MK_CLANG_EXTRAS +.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" +SUBDIR+=libllvmexecutionengine \ libllvminterpreter \ libllvmjit \ libllvmmcdisassembler \ libllvmmcjit \ libllvmruntimedyld -.endif # MK_CLANG_EXTRAS +.endif # MK_CLANG_EXTRAS | LLDB + +.if !defined(EARLY_BUILD) && ${MK_LLDB} != "no" +SUBDIR+=liblldb \ + \ + liblldbAPI \ + liblldbBreakpoint \ + liblldbCommands \ + liblldbCore \ + liblldbDataFormatters \ + liblldbExpression \ + liblldbHostCommon \ + liblldbHostFreeBSD \ + liblldbInterpreter \ + liblldbSymbol \ + liblldbTarget \ + liblldbUtility \ + \ + liblldbPluginABISysV_x86_64 \ + liblldbPluginCXXItaniumABI \ + liblldbPluginDisassemblerLLVM \ + liblldbPluginDynamicLoaderStatic \ + liblldbPluginDynamicLoaderPosixDYLD \ + liblldbPluginInstructionARM \ + liblldbPluginObjectContainerBSDArchive \ + liblldbPluginObjectFileELF \ + liblldbPluginPlatformFreeBSD \ + liblldbPluginPlatformGDB \ + liblldbPluginProcessElfCore \ + liblldbPluginProcessFreeBSD \ + liblldbPluginProcessGDBRemote \ + liblldbPluginProcessPOSIX \ + liblldbPluginProcessUtility \ + liblldbPluginSymbolFileDWARF \ + liblldbPluginSymbolFileSymtab \ + liblldbPluginSymbolVendorELF \ + liblldbPluginUnwindAssemblyInstEmulation \ + liblldbPluginUnwindAssemblyX86 +.endif # !EARLY_BUILD && MK_LLDB + .endif # !make(install) SUBDIR+= include Modified: projects/bhyve_npt_pmap/lib/clang/libllvmmc/Makefile ============================================================================== --- projects/bhyve_npt_pmap/lib/clang/libllvmmc/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/clang/libllvmmc/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -48,7 +48,7 @@ SRCS= ELFObjectWriter.cpp \ WinCOFFObjectWriter.cpp \ WinCOFFStreamer.cpp -.if ${MK_CLANG_EXTRAS} != "no" +.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" SRCS+= MCDisassembler.cpp .endif Modified: projects/bhyve_npt_pmap/lib/clang/libllvmsupport/Makefile ============================================================================== --- projects/bhyve_npt_pmap/lib/clang/libllvmsupport/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/clang/libllvmsupport/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -84,11 +84,14 @@ SRCS= APFloat.cpp \ regstrlcpy.c \ system_error.cpp +.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" +SRCS+= DataExtractor.cpp \ + Disassembler.cpp +.endif + .if ${MK_CLANG_EXTRAS} != "no" SRCS+= Compression.cpp \ - DataExtractor.cpp \ DataStream.cpp \ - Disassembler.cpp \ FileUtilities.cpp \ SystemUtils.cpp .endif Modified: projects/bhyve_npt_pmap/lib/clang/libllvmx86disassembler/Makefile ============================================================================== --- projects/bhyve_npt_pmap/lib/clang/libllvmx86disassembler/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/clang/libllvmx86disassembler/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -8,7 +8,7 @@ SRCDIR= lib/Target/X86/Disassembler INCDIR= lib/Target/X86 SRCS= X86Disassembler.cpp -.if ${MK_CLANG_EXTRAS} != "no" +.if ${MK_CLANG_EXTRAS} != "no" || ${MK_LLDB} != "no" SRCS+= X86DisassemblerDecoder.c .endif Copied: projects/bhyve_npt_pmap/lib/clang/lldb.lib.mk (from r255724, head/lib/clang/lldb.lib.mk) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bhyve_npt_pmap/lib/clang/lldb.lib.mk Fri Sep 20 21:53:08 2013 (r255742, copy of r255724, head/lib/clang/lldb.lib.mk) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +LLDB_SRCS= ${.CURDIR}/../../../contrib/llvm/tools/lldb + +CFLAGS+=-I${LLDB_SRCS}/include -I${LLDB_SRCS}/source +CXXFLAGS+=-std=c++11 -DLLDB_DISABLE_PYTHON + +.include "clang.lib.mk" Modified: projects/bhyve_npt_pmap/lib/libc/net/sctp_sys_calls.c ============================================================================== --- projects/bhyve_npt_pmap/lib/libc/net/sctp_sys_calls.c Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/libc/net/sctp_sys_calls.c Fri Sep 20 21:53:08 2013 (r255742) @@ -101,10 +101,10 @@ sctp_connectx(int sd, const struct socka sctp_assoc_t * id) { char *buf; - int i, ret, cnt, *aa; + int i, ret, *aa; char *cpto; const struct sockaddr *at; - size_t len = sizeof(int); + size_t len; /* validate the address count and list */ if ((addrs == NULL) || (addrcnt <= 0)) { @@ -115,8 +115,8 @@ sctp_connectx(int sd, const struct socka errno = E2BIG; return (-1); } + len = sizeof(int); at = addrs; - cnt = 0; cpto = buf + sizeof(int); /* validate all the addresses and get the size */ for (i = 0; i < addrcnt; i++) { @@ -161,6 +161,7 @@ sctp_connectx(int sd, const struct socka if ((ret == 0) && (id != NULL)) { *id = *(sctp_assoc_t *) buf; } + free(buf); return (ret); } Modified: projects/bhyve_npt_pmap/lib/libc/sys/Makefile.inc ============================================================================== --- projects/bhyve_npt_pmap/lib/libc/sys/Makefile.inc Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/libc/sys/Makefile.inc Fri Sep 20 21:53:08 2013 (r255742) @@ -197,6 +197,7 @@ MAN+= abort2.2 \ posix_fadvise.2 \ posix_fallocate.2 \ posix_openpt.2 \ + procctl.2 \ profil.2 \ pselect.2 \ ptrace.2 \ Modified: projects/bhyve_npt_pmap/lib/libc/sys/Symbol.map ============================================================================== --- projects/bhyve_npt_pmap/lib/libc/sys/Symbol.map Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/lib/libc/sys/Symbol.map Fri Sep 20 21:53:08 2013 (r255742) @@ -395,6 +395,7 @@ FBSD_1.3 { ffclock_setestimate; pipe2; posix_fadvise; + procctl; wait6; }; @@ -822,6 +823,8 @@ FBSDprivate_1.0 { __sys_poll; _preadv; __sys_preadv; + _procctl; + __sys_procctl; _profil; __sys_profil; _pselect; Copied: projects/bhyve_npt_pmap/lib/libc/sys/procctl.2 (from r255724, head/lib/libc/sys/procctl.2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bhyve_npt_pmap/lib/libc/sys/procctl.2 Fri Sep 20 21:53:08 2013 (r255742, copy of r255724, head/lib/libc/sys/procctl.2) @@ -0,0 +1,142 @@ +.\" Copyright (c) 2013 Advanced Computing Technologies LLC +.\" Written by: John H. Baldwin +.\" All rights reserved. +.\" +.\" Redistribution and use in source and binary forms, with or without +.\" modification, are permitted provided that the following conditions +.\" are met: +.\" 1. Redistributions of source code must retain the above copyright +.\" notice, this list of conditions and the following disclaimer. +.\" 2. Redistributions in binary form must reproduce the above copyright +.\" notice, this list of conditions and the following disclaimer in the +.\" documentation and/or other materials provided with the distribution. +.\" +.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 AUTHOR 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$ +.\" +.Dd September 19, 2013 +.Dt PROCCTL 2 +.Os +.Sh NAME +.Nm procctl +.Nd control processes +.Sh LIBRARY +.Lb libc +.Sh SYNOPSIS +.In sys/procctl.h +.Ft int +.Fn procctl "idtype_t idtype" "id_t id" "int cmd" "void *arg" +.Sh DESCRIPTION +The +.Fn procctl +system call provides for control over processes. +The +.Fa idtype +and +.Fa id +arguments specify the set of processes to control. +If multiple processes match the identifier, +.Nm +will make a +.Dq best effort +to control as many of the selected possibles as possible. +An error is only returned if no selected processes successfully complete +the request. +The following identifier types are supported: +.Bl -tag -width "Dv P_PGID" +.It Dv P_PID +Control the process with the process ID +.Fa id . +.It Dv P_PGID +Control processes belonging to the process group with the ID +.Fa id . +.El +.Pp +The control request to perform is specified by the +.Fa cmd +argument. +The following commands are supported: +.Bl -tag -width "Dv PROC_SPROTECT" +.It Dv PROC_SPROTECT +Set process protection state. +This is used to mark a process as protected from being killed if the system +exhausts available memory and swap. +The +.Fa arg +parameter must point to an integer containing an operation and zero or more +optional flags. +The following operations are supported: +.Bl -tag -width "Dv PPROT_CLEAR" +.It Dv PPROT_SET +Mark the selected processes as protected. +.It Dv PPROT_CLEAR +Clear the protected state of selected processes. +.El +.Pp +The following optional flags are supported: +.Bl -tag -width "Dv PPROT_DESCE" +.It Dv PPROT_DESCEND +Apply the requested operation to all child processes of each selected process +in addition to each selected process. +.It Dv PPROT_INHERIT +When used with +.Dv PPROT_SET , +mark all future child processes of each selected process as protected. +Future child processes will also mark all of their future child processes. +.El +.El +.Sh RETURN VALUES +If an error occurs, a value of -1 is returned and +.Va errno +is set to indicate the error. +.Sh ERRORS +The +.Fn procctl +system call +will fail if: +.Bl -tag -width Er +.It Bq Er EFAULT +The +.Fa arg +points outside the process's allocated address space. +.It Bq Er EINVAL +The +.Fa cmd +argument specifies an unsupported command. +.Pp +The +.Fa idtype +argument specifies an unsupported identifier type. +.It Bq Er EPERM +The calling process does not have permission to perform the requested +operation on any of the selected processes. +.It Bq Er ESRCH +No processes matched the requested +.Fa idtype +and +.Fa id . +.It Bq Er EINVAL +An invalid operation or flag was passed in +.Fa arg +for a +.Dv PROC_SPROTECT +command. +.El +.Sh SEE ALSO +.Xr ptrace 2 +.Sh HISTORY +The +.Fn procctl +function appeared in +.Fx 10 . Modified: projects/bhyve_npt_pmap/release/powerpc/mkisoimages.sh ============================================================================== --- projects/bhyve_npt_pmap/release/powerpc/mkisoimages.sh Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/release/powerpc/mkisoimages.sh Fri Sep 20 21:53:08 2013 (r255742) @@ -40,7 +40,7 @@ if [ "x$1" = "x-b" ]; then FreeBSD Install FreeBSD -boot &device;:&partition;,\ppc\chrp\loader +boot &device;:,\ppc\chrp\loader EOF bootable="$bootable -o chrp-boot" Modified: projects/bhyve_npt_pmap/release/release.sh ============================================================================== --- projects/bhyve_npt_pmap/release/release.sh Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/release/release.sh Fri Sep 20 21:53:08 2013 (r255742) @@ -71,7 +71,6 @@ KERNEL="GENERIC" # ports/ checkout also forces NODOC to be set. NODOC= NOPORTS= -MAKE_FLAGS="${MAKE_FLAGS}" usage() { echo "Usage: $0 [-c release.conf]" Modified: projects/bhyve_npt_pmap/sbin/hastd/hast.h ============================================================================== --- projects/bhyve_npt_pmap/sbin/hastd/hast.h Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/sbin/hastd/hast.h Fri Sep 20 21:53:08 2013 (r255742) @@ -226,8 +226,10 @@ struct hast_resource { /* Activemap structure. */ struct activemap *hr_amp; - /* Locked used to synchronize access to hr_amp. */ + /* Lock used to synchronize access to hr_amp. */ pthread_mutex_t hr_amp_lock; + /* Lock used to synchronize access to hr_amp diskmap. */ + pthread_mutex_t hr_amp_diskmap_lock; /* Number of BIO_READ requests. */ uint64_t hr_stat_read; Modified: projects/bhyve_npt_pmap/sbin/hastd/primary.c ============================================================================== --- projects/bhyve_npt_pmap/sbin/hastd/primary.c Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/sbin/hastd/primary.c Fri Sep 20 21:53:08 2013 (r255742) @@ -172,7 +172,7 @@ static pthread_mutex_t metadata_lock; hio_next[(ncomp)]); \ mtx_unlock(&hio_##name##_list_lock[ncomp]); \ if (_wakeup) \ - cv_signal(&hio_##name##_list_cond[(ncomp)]); \ + cv_broadcast(&hio_##name##_list_cond[(ncomp)]); \ } while (0) #define QUEUE_INSERT2(hio, name) do { \ bool _wakeup; \ @@ -182,7 +182,7 @@ static pthread_mutex_t metadata_lock; TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_##name##_next);\ mtx_unlock(&hio_##name##_list_lock); \ if (_wakeup) \ - cv_signal(&hio_##name##_list_cond); \ + cv_broadcast(&hio_##name##_list_cond); \ } while (0) #define QUEUE_TAKE1(hio, name, ncomp, timeout) do { \ bool _last; \ @@ -291,22 +291,28 @@ primary_exitx(int exitcode, const char * exit(exitcode); } +/* Expects res->hr_amp locked, returns unlocked. */ static int hast_activemap_flush(struct hast_resource *res) { const unsigned char *buf; size_t size; + int ret; + mtx_lock(&res->hr_amp_diskmap_lock); buf = activemap_bitmap(res->hr_amp, &size); + mtx_unlock(&res->hr_amp_lock); PJDLOG_ASSERT(buf != NULL); PJDLOG_ASSERT((size % res->hr_local_sectorsize) == 0); + ret = 0; if (pwrite(res->hr_localfd, buf, size, METADATA_SIZE) != (ssize_t)size) { pjdlog_errno(LOG_ERR, "Unable to flush activemap to disk"); res->hr_stat_activemap_write_error++; - return (-1); + ret = -1; } - if (res->hr_metaflush == 1 && g_flush(res->hr_localfd) == -1) { + if (ret == 0 && res->hr_metaflush == 1 && + g_flush(res->hr_localfd) == -1) { if (errno == EOPNOTSUPP) { pjdlog_warning("The %s provider doesn't support flushing write cache. Disabling it.", res->hr_localpath); @@ -315,10 +321,11 @@ hast_activemap_flush(struct hast_resourc pjdlog_errno(LOG_ERR, "Unable to flush disk cache on activemap update"); res->hr_stat_activemap_flush_error++; - return (-1); + ret = -1; } } - return (0); + mtx_unlock(&res->hr_amp_diskmap_lock); + return (ret); } static bool @@ -783,6 +790,7 @@ init_remote(struct hast_resource *res, s * Now that we merged bitmaps from both nodes, flush it to the * disk before we start to synchronize. */ + mtx_lock(&res->hr_amp_lock); (void)hast_activemap_flush(res); } nv_free(nvin); @@ -1288,8 +1296,9 @@ ggate_recv_thread(void *arg) ggio->gctl_offset, ggio->gctl_length)) { res->hr_stat_activemap_update++; (void)hast_activemap_flush(res); + } else { + mtx_unlock(&res->hr_amp_lock); } - mtx_unlock(&res->hr_amp_lock); break; case BIO_DELETE: res->hr_stat_delete++; @@ -1650,8 +1659,9 @@ done_queue: if (activemap_need_sync(res->hr_amp, ggio->gctl_offset, ggio->gctl_length)) { (void)hast_activemap_flush(res); + } else { + mtx_unlock(&res->hr_amp_lock); } - mtx_unlock(&res->hr_amp_lock); if (hio->hio_replication == HAST_REPLICATION_MEMSYNC) (void)refcnt_release(&hio->hio_countdown); } @@ -1918,8 +1928,9 @@ ggate_send_thread(void *arg) ggio->gctl_offset, ggio->gctl_length)) { res->hr_stat_activemap_update++; (void)hast_activemap_flush(res); + } else { + mtx_unlock(&res->hr_amp_lock); } - mtx_unlock(&res->hr_amp_lock); } if (ggio->gctl_cmd == BIO_WRITE) { /* @@ -2015,8 +2026,11 @@ sync_thread(void *arg __unused) */ if (activemap_extent_complete(res->hr_amp, syncext)) (void)hast_activemap_flush(res); + else + mtx_unlock(&res->hr_amp_lock); + } else { + mtx_unlock(&res->hr_amp_lock); } - mtx_unlock(&res->hr_amp_lock); if (dorewind) { dorewind = false; if (offset == -1) Modified: projects/bhyve_npt_pmap/sbin/hastd/secondary.c ============================================================================== --- projects/bhyve_npt_pmap/sbin/hastd/secondary.c Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/sbin/hastd/secondary.c Fri Sep 20 21:53:08 2013 (r255742) @@ -85,14 +85,13 @@ static TAILQ_HEAD(, hio) hio_free_list; static pthread_mutex_t hio_free_list_lock; static pthread_cond_t hio_free_list_cond; /* - * Disk thread (the one that do I/O requests) takes requests from this list. + * Disk thread (the one that does I/O requests) takes requests from this list. */ static TAILQ_HEAD(, hio) hio_disk_list; static pthread_mutex_t hio_disk_list_lock; static pthread_cond_t hio_disk_list_cond; /* - * There is one recv list for every component, although local components don't - * use recv lists as local requests are done synchronously. + * Thread that sends requests back to primary takes requests from this list. */ static TAILQ_HEAD(, hio) hio_send_list; static pthread_mutex_t hio_send_list_lock; @@ -115,7 +114,7 @@ static void *send_thread(void *arg); TAILQ_INSERT_TAIL(&hio_##name##_list, (hio), hio_next); \ mtx_unlock(&hio_##name##_list_lock); \ if (_wakeup) \ - cv_signal(&hio_##name##_list_cond); \ + cv_broadcast(&hio_##name##_list_cond); \ } while (0) #define QUEUE_TAKE(name, hio) do { \ mtx_lock(&hio_##name##_list_lock); \ Modified: projects/bhyve_npt_pmap/share/i18n/csmapper/Makefile ============================================================================== --- projects/bhyve_npt_pmap/share/i18n/csmapper/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/i18n/csmapper/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -7,10 +7,11 @@ SUBDIR= APPLE AST BIG5 CNS CP EBCDIC GB KAZAKH KOI KS MISC TCVN mapper.dir: ${SUBDIR} - > ${.TARGET} -.for i in ${SUBDIR} - cat ${i}/mapper.dir.${i} >> ${.TARGET} -.endfor + newfile=$$(for i in ${SUBDIR}; do \ + cat $$i/mapper.dir.$$i; \ + done); \ + [ "$$newfile" = "$$(cat ${.TARGET} 2>/dev/null)" ] || \ + printf '%s\n' "$$newfile" >${.TARGET} mapper.dir.db: mapper.dir ${MKCSMAPPER} -m -o ${.TARGET} ${.ALLSRC} @@ -18,10 +19,11 @@ FILES+= mapper.dir mapper.dir.db CLEANFILES+= mapper.dir mapper.dir.db charset.pivot: ${SUBDIR} - > ${.TARGET} -.for i in ${SUBDIR} - cat ${i}/charset.pivot.${i} >> ${.TARGET} -.endfor + newfile=$$(for i in ${SUBDIR}; do \ + cat $$i/charset.pivot.$$i; \ + done); \ + [ "$$newfile" = "$$(cat ${.TARGET} 2>/dev/null)" ] || \ + printf '%s\n' "$$newfile" >${.TARGET} charset.pivot.pvdb: charset.pivot ${MKCSMAPPER} -p -o ${.TARGET} ${.ALLSRC} Modified: projects/bhyve_npt_pmap/share/i18n/esdb/Makefile ============================================================================== --- projects/bhyve_npt_pmap/share/i18n/esdb/Makefile Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/i18n/esdb/Makefile Fri Sep 20 21:53:08 2013 (r255742) @@ -10,18 +10,20 @@ FILES+= esdb.dir esdb.dir.db esdb.alias CLEANFILES= ${FILES} esdb.dir: ${SUBDIR} - > $@ -.for i in ${SUBDIR} - cat ${i}/esdb.dir.${i} >>${.TARGET} -.endfor + newfile=$$(for i in ${SUBDIR}; do \ + cat $$i/esdb.dir.$$i; \ + done); \ + [ "$$newfile" = "$$(cat ${.TARGET} 2>/dev/null)" ] || \ + printf '%s\n' "$$newfile" >${.TARGET} esdb.dir.db: esdb.dir ${MKESDB} -m -o ${.TARGET} ${.ALLSRC} esdb.alias: ${SUBDIR} - > $@ -.for i in ${SUBDIR} - cat ${i}/esdb.alias.${i} >>${.TARGET} -.endfor + newfile=$$(for i in ${SUBDIR}; do \ + cat $$i/esdb.alias.$$i; \ + done); \ + [ "$$newfile" = "$$(cat ${.TARGET} 2>/dev/null)" ] || \ + printf '%s\n' "$$newfile" >${.TARGET} esdb.alias.db: esdb.alias ${MKESDB} -m -o ${.TARGET} ${.ALLSRC} Modified: projects/bhyve_npt_pmap/share/man/man4/capsicum.4 ============================================================================== --- projects/bhyve_npt_pmap/share/man/man4/capsicum.4 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/man/man4/capsicum.4 Fri Sep 20 21:53:08 2013 (r255742) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd August 21, 2013 +.Dd September 17, 2013 .Dt CAPSICUM 4 .Os .Sh NAME @@ -62,7 +62,7 @@ File descriptors that wrap other file de be called on them; for example, a file descriptor returned by .Xr open 2 may be refined using -.Xr cap_new 2 +.Xr cap_rights_limit 2 so that only .Xr read 2 and @@ -89,8 +89,8 @@ associated with file descriptors; descri .Sh SEE ALSO .Xr cap_enter 2 , .Xr cap_getmode 2 , -.Xr cap_getrights 2 , -.Xr cap_new 2 , +.Xr cap_rights_get 2 , +.Xr cap_rights_limit 2 , .Xr fchmod 2 , .Xr open 2 , .Xr pdfork 2 , Modified: projects/bhyve_npt_pmap/share/man/man4/psm.4 ============================================================================== --- projects/bhyve_npt_pmap/share/man/man4/psm.4 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/man/man4/psm.4 Fri Sep 20 21:53:08 2013 (r255742) @@ -460,7 +460,7 @@ typedef struct synapticshw { int infoHardware; /* hardware model */ int infoNewAbs; /* supports the newabs format */ int capPen; /* can detect a pen */ - int infoSimpleC; /* supports simple commands */ + int infoSimplC; /* supports simple commands */ int infoGeometry; /* touchpad dimensions */ int capExtended; /* supports extended packets */ int capSleep; /* can be suspended/resumed */ @@ -468,6 +468,9 @@ typedef struct synapticshw { int capMultiFinger; /* can detect multiple fingers */ int capPalmDetect; /* can detect a palm */ int capPassthrough; /* can passthrough guest packets */ + int capMiddle; /* has a physical middle button */ + int nExtendedButtons; /* has N additionnal buttons */ + int nExtendedQueries; /* supports N extended queries */ } synapticshw_t; .Ed .Pp Modified: projects/bhyve_npt_pmap/share/man/man5/fstab.5 ============================================================================== --- projects/bhyve_npt_pmap/share/man/man5/fstab.5 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/man/man5/fstab.5 Fri Sep 20 21:53:08 2013 (r255742) @@ -32,7 +32,7 @@ .\" @(#)fstab.5 8.1 (Berkeley) 6/5/93 .\" $FreeBSD$ .\" -.Dd July 15, 2013 +.Dd September 10, 2013 .Dt FSTAB 5 .Os .Sh NAME @@ -378,9 +378,45 @@ The file resides in .Pa /etc . .El +.Sh EXAMPLES +.Bd -literal +# Device Mountpoint FStype Options Dump Pass# +# +# UFS file system. +/dev/da0p2 / ufs rw 1 1 +# +# Swap space on a block device. +/dev/da0p1 none swap sw 0 0 +# +# Swap space using a block device with GBDE/GELI encyption. +# aalgo, ealgo, keylen, sectorsize options are available +# for .eli devices. +/dev/da1p1.bde none swap sw 0 0 +/dev/da1p2.eli none swap sw 0 0 +# +# tmpfs. +tmpfs /tmp tmpfs rw,size=1g,mode=1777 0 0 +# +# UFS file system on a swap-backed md(4). /dev/md10 is +# automatically created. If it is "md", a unit number +# will be automatically selected. +md10 /scratch mfs rw,-s1g 0 0 +# +# Swap space on a vnode-backed md(4). +md11 none swap sw,file=/swapfile 0 0 +# +# CDROM. "noauto" option is typically used because the +# media is removable. +/dev/cd0 /cdrom cd9660 ro,noauto 0 0 +# +# NFS-exported file system. "serv" is an NFS server name +# or IP address. +serv:/export /nfs nfs rw,noinet6 0 0 +.Ed .Sh SEE ALSO .Xr getfsent 3 , .Xr getvfsbyname 3 , +.Xr strunvis 3 , .Xr ccd 4 , .Xr dump 8 , .Xr fsck 8 , @@ -388,7 +424,6 @@ resides in .Xr mount 8 , .Xr quotacheck 8 , .Xr quotaon 8 , -.Xr strunvis 3 , .Xr swapon 8 , .Xr umount 8 .Sh HISTORY Modified: projects/bhyve_npt_pmap/share/man/man5/rc.conf.5 ============================================================================== --- projects/bhyve_npt_pmap/share/man/man5/rc.conf.5 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/man/man5/rc.conf.5 Fri Sep 20 21:53:08 2013 (r255742) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd July 22, 2013 +.Dd September 10, 2013 .Dt RC.CONF 5 .Os .Sh NAME @@ -1192,10 +1192,8 @@ be added since the search would stop with the missing .Dq Li alias3 entry. -Due to this difficult to manage behavior, the -.Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n -form is deprecated. -There is +Because of this difficult to manage behavior, +there is .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _aliases variable, which has the same functionality as .Va ifconfig_ Ns Ao Ar interface Ac Ns Va _alias Ns Aq Ar n Modified: projects/bhyve_npt_pmap/share/man/man5/src.conf.5 ============================================================================== --- projects/bhyve_npt_pmap/share/man/man5/src.conf.5 Fri Sep 20 21:52:33 2013 (r255741) +++ projects/bhyve_npt_pmap/share/man/man5/src.conf.5 Fri Sep 20 21:53:08 2013 (r255742) @@ -1,7 +1,7 @@ .\" DO NOT EDIT-- this file is automatically generated. .\" from FreeBSD: head/tools/build/options/makeman 253304 2013-07-12 23:08:44Z bapt .\" $FreeBSD$ -.Dd September 15, 2013 +.Dd September 19, 2013 .Dt SRC.CONF 5 .Os .Sh NAME @@ -295,6 +295,8 @@ When set, it also enforces the following .Va WITHOUT_CLANG_FULL .It .Va WITHOUT_CLANG_IS_CC +.It +.Va WITHOUT_LLDB .El .It Va WITH_CLANG .\" from FreeBSD: head/tools/build/options/WITH_CLANG 221730 2011-05-10 11:14:40Z ru @@ -329,6 +331,12 @@ and .Pp It is a default setting on arm/armeb, arm/armv6eb, ia64/ia64, mips/mipsel, mips/mips, mips/mips64el, mips/mips64, mips/mipsn32, powerpc/powerpc, powerpc/powerpc64 and sparc64/sparc64. +When set, it also enforces the following options: +.Pp +.Bl -item -compact +.It *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***