From owner-svn-src-user@FreeBSD.ORG Sun Oct 27 15:14:27 2013 Return-Path: Delivered-To: svn-src-user@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 D8AEB458; Sun, 27 Oct 2013 15:14:27 +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 C58FB2C39; Sun, 27 Oct 2013 15:14:27 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9RFERMK014290; Sun, 27 Oct 2013 15:14:27 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9RFERP4014289; Sun, 27 Oct 2013 15:14:27 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201310271514.r9RFERP4014289@svn.freebsd.org> From: Nathan Whitehorn Date: Sun, 27 Oct 2013 15:14:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257211 - user/ed/newcons/sys/dev/vt/hw/ofwfb X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Oct 2013 15:14:27 -0000 Author: nwhitehorn Date: Sun Oct 27 15:14:27 2013 New Revision: 257211 URL: http://svnweb.freebsd.org/changeset/base/257211 Log: Get colors right on mac framebuffers. Modified: user/ed/newcons/sys/dev/vt/hw/ofwfb/ofwfb.c Modified: user/ed/newcons/sys/dev/vt/hw/ofwfb/ofwfb.c ============================================================================== --- user/ed/newcons/sys/dev/vt/hw/ofwfb/ofwfb.c Sun Oct 27 14:27:11 2013 (r257210) +++ user/ed/newcons/sys/dev/vt/hw/ofwfb/ofwfb.c Sun Oct 27 15:14:27 2013 (r257211) @@ -158,7 +158,7 @@ ofwfb_initialize(struct vt_device *vd) switch (sc->sc_depth) { case 8: vt_generate_vga_palette(sc->sc_colormap, COLOR_FORMAT_RGB, 255, - 16, 255, 8, 255, 0); + 0, 255, 8, 255, 16); for (i = 0; i < 16; i++) { OF_call_method("color!", ih, 4, 1, From owner-svn-src-user@FreeBSD.ORG Mon Oct 28 04:03:17 2013 Return-Path: Delivered-To: svn-src-user@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 DC4FD424; Mon, 28 Oct 2013 04:03:17 +0000 (UTC) (envelope-from ae@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 AEF512F0C; Mon, 28 Oct 2013 04:03:17 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9S43HEf075360; Mon, 28 Oct 2013 04:03:17 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9S43HGI075359; Mon, 28 Oct 2013 04:03:17 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201310280403.r9S43HGI075359@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Mon, 28 Oct 2013 04:03:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257237 - user/ae/inet6/sys/netinet6 X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 04:03:17 -0000 Author: ae Date: Mon Oct 28 04:03:17 2013 New Revision: 257237 URL: http://svnweb.freebsd.org/changeset/base/257237 Log: Remove in6_setscope() calls and unneeded variables. Use in6_getscopezone() to determine zone indexes. Modified: user/ae/inet6/sys/netinet6/ip6_mroute.c Modified: user/ae/inet6/sys/netinet6/ip6_mroute.c ============================================================================== --- user/ae/inet6/sys/netinet6/ip6_mroute.c Mon Oct 28 02:36:34 2013 (r257236) +++ user/ae/inet6/sys/netinet6/ip6_mroute.c Mon Oct 28 04:03:17 2013 (r257237) @@ -1402,9 +1402,8 @@ ip6_mdq(struct mbuf *m, struct ifnet *if mifi_t mifi, iif; struct mif6 *mifp; int plen = m->m_pkthdr.len; - struct in6_addr src0, dst0; /* copies for local work */ - u_int32_t iszone, idzone, oszone, odzone; - int error = 0; + uint32_t srczone, dstzone; + int srcscope, dstscope; /* * Macro to send packet on mif. Since RSVP packets don't get counted on @@ -1520,14 +1519,20 @@ ip6_mdq(struct mbuf *m, struct ifnet *if return (0); } /* if wrong iif */ + srcscope = in6_addrscope(&ip6->ip6_src); + dstscope = in6_addrscope(&ip6->ip6_dst); /* If I sourced this packet, it counts as output, else it was input. */ if (m->m_pkthdr.rcvif == NULL) { /* XXX: is rcvif really NULL when output?? */ mif6table[mifi].m6_pkt_out++; mif6table[mifi].m6_bytes_out += plen; + srczone = in6_getscopezone(ifp, srcscope); + dstzone = in6_getscopezone(ifp, dstscope); } else { mif6table[mifi].m6_pkt_in++; mif6table[mifi].m6_bytes_in += plen; + srczone = in6_getscopezone(m->m_pkthdr.rcvif, srcscope); + dstzone = in6_getscopezone(m->m_pkthdr.rcvif, dstscope); } rt->mf6c_pkt_cnt++; rt->mf6c_byte_cnt += plen; @@ -1536,13 +1541,6 @@ ip6_mdq(struct mbuf *m, struct ifnet *if * For each mif, forward a copy of the packet if there are group * members downstream on the interface. */ - src0 = ip6->ip6_src; - dst0 = ip6->ip6_dst; - if ((error = in6_setscope(&src0, ifp, &iszone)) != 0 || - (error = in6_setscope(&dst0, ifp, &idzone)) != 0) { - IP6STAT_INC(ip6s_badscope); - return (error); - } for (mifp = mif6table, mifi = 0; mifi < nummifs; mifp++, mifi++) { if (IF_ISSET(mifi, &rt->mf6c_ifset)) { /* @@ -1554,12 +1552,10 @@ ip6_mdq(struct mbuf *m, struct ifnet *if if (!(mif6table[rt->mf6c_parent].m6_flags & MIFF_REGISTER) && !(mif6table[mifi].m6_flags & MIFF_REGISTER)) { - if (in6_setscope(&src0, mif6table[mifi].m6_ifp, - &oszone) || - in6_setscope(&dst0, mif6table[mifi].m6_ifp, - &odzone) || - iszone != oszone || - idzone != odzone) { + if (srczone != in6_getscopezone( + mif6table[mifi].m6_ifp, srcscope) || + dstzone != in6_getscopezone( + mif6table[mifi].m6_ifp, dstscope)) { IP6STAT_INC(ip6s_badscope); continue; } From owner-svn-src-user@FreeBSD.ORG Mon Oct 28 04:41:49 2013 Return-Path: Delivered-To: svn-src-user@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 B807F8C6; Mon, 28 Oct 2013 04:41:49 +0000 (UTC) (envelope-from ae@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 8C54D20C4; Mon, 28 Oct 2013 04:41:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9S4fn0k088549; Mon, 28 Oct 2013 04:41:49 GMT (envelope-from ae@svn.freebsd.org) Received: (from ae@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9S4fnPo088548; Mon, 28 Oct 2013 04:41:49 GMT (envelope-from ae@svn.freebsd.org) Message-Id: <201310280441.r9S4fnPo088548@svn.freebsd.org> From: "Andrey V. Elsukov" Date: Mon, 28 Oct 2013 04:41:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257238 - user/ae/inet6/sys/netinet X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 04:41:49 -0000 Author: ae Date: Mon Oct 28 04:41:49 2013 New Revision: 257238 URL: http://svnweb.freebsd.org/changeset/base/257238 Log: Remove in6_setscope() and handmade in6_clearscope() calls. Modified: user/ae/inet6/sys/netinet/ip_carp.c Modified: user/ae/inet6/sys/netinet/ip_carp.c ============================================================================== --- user/ae/inet6/sys/netinet/ip_carp.c Mon Oct 28 04:03:17 2013 (r257237) +++ user/ae/inet6/sys/netinet/ip_carp.c Mon Oct 28 04:41:49 2013 (r257238) @@ -373,8 +373,6 @@ carp_hmac_prepare(struct carp_softc *sc) memset(&cur6, 0xff, sizeof(cur6)); CARP_FOREACH_IFA(sc, ifa) { in6 = ifatoia6(ifa)->ia_addr.sin6_addr; - if (IN6_IS_SCOPE_EMBED(&in6)) - in6.s6_addr16[1] = 0; if (ifa->ifa_addr->sa_family == AF_INET6 && memcmp(&in6, &last6, sizeof(in6)) > 0 && memcmp(&in6, &cur6, sizeof(in6)) < 0) { @@ -893,12 +891,6 @@ carp_send_ad_locked(struct carp_softc *s /* Set the multicast destination. */ ip6->ip6_dst.s6_addr16[0] = htons(0xff02); ip6->ip6_dst.s6_addr8[15] = 0x12; - if (in6_setscope(&ip6->ip6_dst, sc->sc_carpdev, NULL) != 0) { - m_freem(m); - CARP_DEBUG("%s: in6_setscope failed\n", __func__); - goto resched; - } - ch_ptr = (struct carp_header *)(&ip6[1]); bcopy(&ch, ch_ptr, sizeof(ch)); if (carp_prepare_ad(m, sc, ch_ptr)) @@ -1320,10 +1312,6 @@ carp_multicast_setup(struct carp_if *cif bzero(&in6, sizeof(in6)); in6.s6_addr16[0] = htons(0xff02); in6.s6_addr8[15] = 0x12; - if ((error = in6_setscope(&in6, ifp, NULL)) != 0) { - free(im6o->im6o_membership, M_CARP); - break; - } in6m = NULL; if ((error = in6_mc_join(ifp, &in6, NULL, &in6m, 0)) != 0) { free(im6o->im6o_membership, M_CARP); @@ -1339,11 +1327,6 @@ carp_multicast_setup(struct carp_if *cif in6.s6_addr32[2] = htonl(1); in6.s6_addr32[3] = 0; in6.s6_addr8[12] = 0xff; - if ((error = in6_setscope(&in6, ifp, NULL)) != 0) { - in6_mc_leave(im6o->im6o_membership[0], NULL); - free(im6o->im6o_membership, M_CARP); - break; - } in6m = NULL; if ((error = in6_mc_join(ifp, &in6, NULL, &in6m, 0)) != 0) { in6_mc_leave(im6o->im6o_membership[0], NULL); From owner-svn-src-user@FreeBSD.ORG Mon Oct 28 09:43:22 2013 Return-Path: Delivered-To: svn-src-user@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 D0CBEBBA; Mon, 28 Oct 2013 09:43:22 +0000 (UTC) (envelope-from andre@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 BAE132F24; Mon, 28 Oct 2013 09:43:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9S9hMsC090873; Mon, 28 Oct 2013 09:43:22 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9S9hHEO090839; Mon, 28 Oct 2013 09:43:17 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201310280943.r9S9hHEO090839@svn.freebsd.org> From: Andre Oppermann Date: Mon, 28 Oct 2013 09:43:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257245 - in user/andre/mbuf_staging: amd64/amd64 arm/allwinner arm/allwinner/a20 arm/arm arm/at91 arm/broadcom/bcm2835 arm/conf arm/econa arm/freescale/imx arm/include arm/lpc arm/mv a... X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 09:43:22 -0000 Author: andre Date: Mon Oct 28 09:43:15 2013 New Revision: 257245 URL: http://svnweb.freebsd.org/changeset/base/257245 Log: IFC @257244. Added: user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_bsc.c - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_bsc.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_bscreg.h - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_bscvar.h - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_spi.c - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_spi.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_spireg.h - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_spireg.h user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_spivar.h - copied unchanged from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_spivar.h user/andre/mbuf_staging/arm/conf/RADXA - copied unchanged from r257244, head/sys/arm/conf/RADXA user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.c - copied unchanged from r257244, head/sys/arm/freescale/imx/imx_machdep.c user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h - copied unchanged from r257244, head/sys/arm/freescale/imx/imx_machdep.h user/andre/mbuf_staging/arm/rockchip/ - copied from r257244, head/sys/arm/rockchip/ user/andre/mbuf_staging/boot/fdt/dts/rk3188-radxa.dts - copied unchanged from r257244, head/sys/boot/fdt/dts/rk3188-radxa.dts user/andre/mbuf_staging/boot/fdt/dts/rk3188.dtsi - copied unchanged from r257244, head/sys/boot/fdt/dts/rk3188.dtsi user/andre/mbuf_staging/dev/iwn/if_iwn_debug.h - copied unchanged from r257244, head/sys/dev/iwn/if_iwn_debug.h user/andre/mbuf_staging/dev/ofw/ofw_nexus.c - copied unchanged from r257244, head/sys/dev/ofw/ofw_nexus.c user/andre/mbuf_staging/dev/ofw/ofw_nexus.h - copied unchanged from r257244, head/sys/dev/ofw/ofw_nexus.h user/andre/mbuf_staging/dev/spibus/ofw_spibus.c - copied unchanged from r257244, head/sys/dev/spibus/ofw_spibus.c user/andre/mbuf_staging/mips/conf/ALFA_HORNET_UB - copied unchanged from r257244, head/sys/mips/conf/ALFA_HORNET_UB user/andre/mbuf_staging/mips/conf/ALFA_HORNET_UB.hints - copied unchanged from r257244, head/sys/mips/conf/ALFA_HORNET_UB.hints user/andre/mbuf_staging/netpfil/pf/pf.h - copied unchanged from r257244, head/sys/netpfil/pf/pf.h user/andre/mbuf_staging/netpfil/pf/pf_altq.h - copied unchanged from r257244, head/sys/netpfil/pf/pf_altq.h user/andre/mbuf_staging/netpfil/pf/pf_mtag.h - copied unchanged from r257244, head/sys/netpfil/pf/pf_mtag.h user/andre/mbuf_staging/powerpc/mpc85xx/pci_mpc85xx.c - copied unchanged from r257244, head/sys/powerpc/mpc85xx/pci_mpc85xx.c user/andre/mbuf_staging/x86/include/busdma_impl.h - copied unchanged from r257244, head/sys/x86/include/busdma_impl.h user/andre/mbuf_staging/x86/x86/busdma_bounce.c - copied unchanged from r257244, head/sys/x86/x86/busdma_bounce.c Deleted: user/andre/mbuf_staging/kern/dtio_kdtrace.c user/andre/mbuf_staging/mips/conf/BERI_SIM.hints user/andre/mbuf_staging/modules/dtrace/dtio/ user/andre/mbuf_staging/net/pf_mtag.h user/andre/mbuf_staging/powerpc/include/trap_aim.h user/andre/mbuf_staging/powerpc/include/trap_booke.h user/andre/mbuf_staging/powerpc/mpc85xx/pci_fdt.c Modified: user/andre/mbuf_staging/amd64/amd64/bpf_jit_machdep.c user/andre/mbuf_staging/amd64/amd64/minidump_machdep.c user/andre/mbuf_staging/arm/allwinner/a10_clk.c user/andre/mbuf_staging/arm/allwinner/a10_gpio.c user/andre/mbuf_staging/arm/allwinner/a10_machdep.c user/andre/mbuf_staging/arm/allwinner/a20/a20_cpu_cfg.c user/andre/mbuf_staging/arm/allwinner/timer.c user/andre/mbuf_staging/arm/arm/busdma_machdep-v6.c user/andre/mbuf_staging/arm/arm/busdma_machdep.c user/andre/mbuf_staging/arm/arm/cpufunc.c user/andre/mbuf_staging/arm/arm/genassym.c user/andre/mbuf_staging/arm/arm/generic_timer.c user/andre/mbuf_staging/arm/arm/machdep.c user/andre/mbuf_staging/arm/arm/minidump_machdep.c user/andre/mbuf_staging/arm/arm/mpcore_timer.c user/andre/mbuf_staging/arm/arm/nexus.c user/andre/mbuf_staging/arm/arm/pmap-v6.c user/andre/mbuf_staging/arm/arm/pmap.c user/andre/mbuf_staging/arm/arm/stack_machdep.c user/andre/mbuf_staging/arm/arm/trap.c user/andre/mbuf_staging/arm/arm/undefined.c user/andre/mbuf_staging/arm/arm/vfp.c user/andre/mbuf_staging/arm/arm/vm_machdep.c user/andre/mbuf_staging/arm/at91/at91_mci.c user/andre/mbuf_staging/arm/at91/at91_pmc.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_dma.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_fb.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_gpio.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_machdep.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_mbox.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_sdhci.c user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_systimer.c user/andre/mbuf_staging/arm/broadcom/bcm2835/files.bcm2835 user/andre/mbuf_staging/arm/conf/ARMADAXP user/andre/mbuf_staging/arm/conf/RPI-B user/andre/mbuf_staging/arm/econa/timer.c user/andre/mbuf_staging/arm/freescale/imx/files.imx51 user/andre/mbuf_staging/arm/freescale/imx/files.imx53 user/andre/mbuf_staging/arm/freescale/imx/imx51_ipuv3.c user/andre/mbuf_staging/arm/freescale/imx/imx51_machdep.c user/andre/mbuf_staging/arm/freescale/imx/imx53_machdep.c user/andre/mbuf_staging/arm/freescale/imx/imx_gpt.c user/andre/mbuf_staging/arm/include/atomic.h user/andre/mbuf_staging/arm/include/cpu.h user/andre/mbuf_staging/arm/include/fdt.h user/andre/mbuf_staging/arm/include/frame.h user/andre/mbuf_staging/arm/include/pcb.h user/andre/mbuf_staging/arm/include/pcpu.h user/andre/mbuf_staging/arm/include/pmap.h user/andre/mbuf_staging/arm/include/undefined.h user/andre/mbuf_staging/arm/lpc/if_lpe.c user/andre/mbuf_staging/arm/lpc/lpc_fb.c user/andre/mbuf_staging/arm/lpc/lpc_gpio.c user/andre/mbuf_staging/arm/lpc/lpc_machdep.c user/andre/mbuf_staging/arm/lpc/lpc_mmc.c user/andre/mbuf_staging/arm/lpc/lpc_spi.c user/andre/mbuf_staging/arm/lpc/lpc_timer.c user/andre/mbuf_staging/arm/mv/gpio.c user/andre/mbuf_staging/arm/mv/mv_machdep.c user/andre/mbuf_staging/arm/mv/mv_sata.c user/andre/mbuf_staging/arm/mv/mvvar.h user/andre/mbuf_staging/arm/mv/orion/db88f5xxx.c user/andre/mbuf_staging/arm/mv/timer.c user/andre/mbuf_staging/arm/sa11x0/sa11x0_io.c user/andre/mbuf_staging/arm/samsung/exynos/arch_timer.c user/andre/mbuf_staging/arm/samsung/exynos/exynos5_machdep.c user/andre/mbuf_staging/arm/tegra/tegra2_machdep.c user/andre/mbuf_staging/arm/ti/am335x/am335x_dmtimer.c user/andre/mbuf_staging/arm/ti/am335x/am335x_lcd_syscons.c user/andre/mbuf_staging/arm/ti/am335x/am335x_prcm.c user/andre/mbuf_staging/arm/ti/am335x/am335x_scm_padconf.c user/andre/mbuf_staging/arm/ti/omap4/omap4_prcm_clks.c user/andre/mbuf_staging/arm/ti/omap4/omap4_scm_padconf.c user/andre/mbuf_staging/arm/ti/omap4/pandaboard/pandaboard.c user/andre/mbuf_staging/arm/ti/ti_cpuid.c user/andre/mbuf_staging/arm/ti/ti_machdep.c user/andre/mbuf_staging/arm/ti/ti_mmchs.c user/andre/mbuf_staging/arm/ti/ti_prcm.c user/andre/mbuf_staging/arm/ti/ti_scm.c user/andre/mbuf_staging/arm/ti/twl/twl.c user/andre/mbuf_staging/arm/ti/twl/twl_clks.c user/andre/mbuf_staging/arm/ti/twl/twl_vreg.c user/andre/mbuf_staging/arm/versatile/pl050.c user/andre/mbuf_staging/arm/versatile/sp804.c user/andre/mbuf_staging/arm/versatile/versatile_clcd.c user/andre/mbuf_staging/arm/versatile/versatile_machdep.c user/andre/mbuf_staging/arm/versatile/versatile_pci.c user/andre/mbuf_staging/arm/versatile/versatile_timer.c user/andre/mbuf_staging/arm/xilinx/zy7_machdep.c user/andre/mbuf_staging/arm/xscale/i80321/i80321_pci.c user/andre/mbuf_staging/arm/xscale/i8134x/i81342_pci.c user/andre/mbuf_staging/arm/xscale/ixp425/if_npe.c user/andre/mbuf_staging/arm/xscale/ixp425/ixp425_mem.c user/andre/mbuf_staging/arm/xscale/ixp425/ixp425_pci.c user/andre/mbuf_staging/arm/xscale/ixp425/ixp425_wdog.c user/andre/mbuf_staging/boot/arm/uboot/Makefile user/andre/mbuf_staging/boot/fdt/dts/bcm2835.dtsi user/andre/mbuf_staging/boot/fdt/dts/db78460.dts user/andre/mbuf_staging/boot/i386/libi386/Makefile user/andre/mbuf_staging/boot/i386/libi386/smbios.c user/andre/mbuf_staging/boot/powerpc/ps3/start.S user/andre/mbuf_staging/boot/uboot/lib/disk.c user/andre/mbuf_staging/boot/uboot/lib/glue.c user/andre/mbuf_staging/cam/ata/ata_da.c user/andre/mbuf_staging/cam/cam_xpt.c user/andre/mbuf_staging/cam/ctl/ctl_backend_block.c user/andre/mbuf_staging/cam/scsi/scsi_all.h user/andre/mbuf_staging/cam/scsi/scsi_da.c user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c user/andre/mbuf_staging/cddl/contrib/opensolaris/uts/intel/dtrace/fasttrap_isa.c user/andre/mbuf_staging/cddl/dev/dtrace/powerpc/dtrace_isa.c user/andre/mbuf_staging/cddl/dev/sdt/sdt.c user/andre/mbuf_staging/compat/linprocfs/linprocfs.c user/andre/mbuf_staging/compat/linsysfs/linsysfs.c user/andre/mbuf_staging/compat/linux/linux_ioctl.c user/andre/mbuf_staging/compat/linux/linux_socket.c user/andre/mbuf_staging/compat/ndis/kern_ndis.c user/andre/mbuf_staging/compat/ndis/subr_ndis.c user/andre/mbuf_staging/compat/ndis/subr_usbd.c user/andre/mbuf_staging/conf/NOTES user/andre/mbuf_staging/conf/files user/andre/mbuf_staging/conf/files.amd64 user/andre/mbuf_staging/conf/files.i386 user/andre/mbuf_staging/conf/files.pc98 user/andre/mbuf_staging/conf/files.powerpc user/andre/mbuf_staging/conf/options.mips user/andre/mbuf_staging/contrib/altq/altq/altq_cbq.c user/andre/mbuf_staging/contrib/altq/altq/altq_cdnr.c user/andre/mbuf_staging/contrib/altq/altq/altq_hfsc.c user/andre/mbuf_staging/contrib/altq/altq/altq_priq.c user/andre/mbuf_staging/contrib/altq/altq/altq_red.c user/andre/mbuf_staging/contrib/altq/altq/altq_rio.c user/andre/mbuf_staging/contrib/altq/altq/altq_rmclass.c user/andre/mbuf_staging/contrib/altq/altq/altq_subr.c user/andre/mbuf_staging/contrib/ipfilter/netinet/ip_compat.h user/andre/mbuf_staging/dev/ae/if_ae.c user/andre/mbuf_staging/dev/age/if_age.c user/andre/mbuf_staging/dev/alc/if_alc.c user/andre/mbuf_staging/dev/ale/if_ale.c user/andre/mbuf_staging/dev/an/if_an.c user/andre/mbuf_staging/dev/ath/ath_dfs/null/dfs_null.c user/andre/mbuf_staging/dev/ath/ath_rate/sample/sample.c user/andre/mbuf_staging/dev/ath/if_ath.c user/andre/mbuf_staging/dev/ath/if_ath_beacon.c user/andre/mbuf_staging/dev/ath/if_ath_btcoex.c user/andre/mbuf_staging/dev/ath/if_ath_keycache.c user/andre/mbuf_staging/dev/ath/if_ath_lna_div.c user/andre/mbuf_staging/dev/ath/if_ath_pci.c user/andre/mbuf_staging/dev/ath/if_ath_rx.c user/andre/mbuf_staging/dev/ath/if_ath_rx_edma.c user/andre/mbuf_staging/dev/ath/if_ath_spectral.c user/andre/mbuf_staging/dev/ath/if_ath_sysctl.c user/andre/mbuf_staging/dev/ath/if_ath_tdma.c user/andre/mbuf_staging/dev/ath/if_ath_tx.c user/andre/mbuf_staging/dev/ath/if_ath_tx_edma.c user/andre/mbuf_staging/dev/bce/if_bce.c user/andre/mbuf_staging/dev/bce/if_bcereg.h user/andre/mbuf_staging/dev/bfe/if_bfe.c user/andre/mbuf_staging/dev/bge/if_bge.c user/andre/mbuf_staging/dev/bm/if_bm.c user/andre/mbuf_staging/dev/bwi/bwimac.c user/andre/mbuf_staging/dev/bwi/bwiphy.c user/andre/mbuf_staging/dev/bwi/bwirf.c user/andre/mbuf_staging/dev/bwi/if_bwi.c user/andre/mbuf_staging/dev/bwi/if_bwi_pci.c user/andre/mbuf_staging/dev/bwn/if_bwn.c user/andre/mbuf_staging/dev/cadence/if_cgem.c user/andre/mbuf_staging/dev/cas/if_cas.c user/andre/mbuf_staging/dev/ce/if_ce.c user/andre/mbuf_staging/dev/cesa/cesa.c user/andre/mbuf_staging/dev/cm/smc90cx6.c user/andre/mbuf_staging/dev/cp/if_cp.c user/andre/mbuf_staging/dev/cs/if_cs.c user/andre/mbuf_staging/dev/ctau/if_ct.c user/andre/mbuf_staging/dev/cx/if_cx.c user/andre/mbuf_staging/dev/cxgb/cxgb_adapter.h user/andre/mbuf_staging/dev/cxgb/cxgb_main.c user/andre/mbuf_staging/dev/cxgb/cxgb_sge.c user/andre/mbuf_staging/dev/cxgb/ulp/tom/cxgb_cpl_io.c user/andre/mbuf_staging/dev/cxgb/ulp/tom/cxgb_listen.c user/andre/mbuf_staging/dev/cxgbe/adapter.h user/andre/mbuf_staging/dev/cxgbe/common/t4_hw.c user/andre/mbuf_staging/dev/cxgbe/t4_l2t.c user/andre/mbuf_staging/dev/cxgbe/t4_sge.c user/andre/mbuf_staging/dev/cxgbe/t4_tracer.c user/andre/mbuf_staging/dev/cxgbe/tom/t4_tom.c user/andre/mbuf_staging/dev/dc/dcphy.c user/andre/mbuf_staging/dev/dc/if_dc.c user/andre/mbuf_staging/dev/dc/pnphy.c user/andre/mbuf_staging/dev/de/if_de.c user/andre/mbuf_staging/dev/e1000/if_em.c user/andre/mbuf_staging/dev/e1000/if_igb.c user/andre/mbuf_staging/dev/e1000/if_lem.c user/andre/mbuf_staging/dev/ed/if_ed.c user/andre/mbuf_staging/dev/ed/if_ed_3c503.c user/andre/mbuf_staging/dev/ed/if_ed_hpp.c user/andre/mbuf_staging/dev/ed/if_ed_pccard.c user/andre/mbuf_staging/dev/ed/if_ed_rtl80x9.c user/andre/mbuf_staging/dev/en/if_en_pci.c user/andre/mbuf_staging/dev/en/midway.c user/andre/mbuf_staging/dev/ep/if_ep.c user/andre/mbuf_staging/dev/et/if_et.c user/andre/mbuf_staging/dev/ex/if_ex.c user/andre/mbuf_staging/dev/fatm/if_fatm.c user/andre/mbuf_staging/dev/fdt/fdt_common.c user/andre/mbuf_staging/dev/fdt/fdt_pci.c user/andre/mbuf_staging/dev/fdt/fdt_slicer.c user/andre/mbuf_staging/dev/fdt/fdtbus.c user/andre/mbuf_staging/dev/fdt/simplebus.c user/andre/mbuf_staging/dev/fe/if_fe.c user/andre/mbuf_staging/dev/fe/if_fe_pccard.c user/andre/mbuf_staging/dev/ffec/if_ffec.c user/andre/mbuf_staging/dev/firewire/if_fwe.c user/andre/mbuf_staging/dev/firewire/if_fwip.c user/andre/mbuf_staging/dev/fxp/if_fxp.c user/andre/mbuf_staging/dev/fxp/inphy.c user/andre/mbuf_staging/dev/gem/if_gem.c user/andre/mbuf_staging/dev/hatm/if_hatm.c user/andre/mbuf_staging/dev/hatm/if_hatm_intr.c user/andre/mbuf_staging/dev/hatm/if_hatm_ioctl.c user/andre/mbuf_staging/dev/hatm/if_hatm_rx.c user/andre/mbuf_staging/dev/hatm/if_hatm_tx.c user/andre/mbuf_staging/dev/hme/if_hme.c user/andre/mbuf_staging/dev/hme/if_hme_pci.c user/andre/mbuf_staging/dev/hyperv/netvsc/hv_net_vsc.c user/andre/mbuf_staging/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c user/andre/mbuf_staging/dev/ic/ns16550.h user/andre/mbuf_staging/dev/ie/if_ie.c user/andre/mbuf_staging/dev/if_ndis/if_ndis.c user/andre/mbuf_staging/dev/if_ndis/if_ndis_pccard.c user/andre/mbuf_staging/dev/if_ndis/if_ndis_pci.c user/andre/mbuf_staging/dev/if_ndis/if_ndis_usb.c user/andre/mbuf_staging/dev/iicbus/if_ic.c user/andre/mbuf_staging/dev/ipw/if_ipw.c user/andre/mbuf_staging/dev/iscsi/icl.c user/andre/mbuf_staging/dev/iwi/if_iwi.c user/andre/mbuf_staging/dev/iwn/if_iwn.c user/andre/mbuf_staging/dev/iwn/if_iwnreg.h user/andre/mbuf_staging/dev/iwn/if_iwnvar.h user/andre/mbuf_staging/dev/ixgb/if_ixgb.h user/andre/mbuf_staging/dev/ixgbe/ixgbe.h user/andre/mbuf_staging/dev/ixgbe/ixv.h user/andre/mbuf_staging/dev/jme/if_jme.c user/andre/mbuf_staging/dev/le/lance.c user/andre/mbuf_staging/dev/lge/if_lge.c user/andre/mbuf_staging/dev/lmc/if_lmc.c user/andre/mbuf_staging/dev/lmc/if_lmc.h user/andre/mbuf_staging/dev/malo/if_malo.c user/andre/mbuf_staging/dev/malo/if_malo_pci.c user/andre/mbuf_staging/dev/malo/if_malohal.c user/andre/mbuf_staging/dev/mge/if_mge.c user/andre/mbuf_staging/dev/mii/acphy.c user/andre/mbuf_staging/dev/mii/amphy.c user/andre/mbuf_staging/dev/mii/atphy.c user/andre/mbuf_staging/dev/mii/axphy.c user/andre/mbuf_staging/dev/mii/bmtphy.c user/andre/mbuf_staging/dev/mii/brgphy.c user/andre/mbuf_staging/dev/mii/ciphy.c user/andre/mbuf_staging/dev/mii/e1000phy.c user/andre/mbuf_staging/dev/mii/gentbi.c user/andre/mbuf_staging/dev/mii/icsphy.c user/andre/mbuf_staging/dev/mii/ip1000phy.c user/andre/mbuf_staging/dev/mii/jmphy.c user/andre/mbuf_staging/dev/mii/lxtphy.c user/andre/mbuf_staging/dev/mii/mii.c user/andre/mbuf_staging/dev/mii/mii_physubr.c user/andre/mbuf_staging/dev/mii/mlphy.c user/andre/mbuf_staging/dev/mii/nsgphy.c user/andre/mbuf_staging/dev/mii/nsphy.c user/andre/mbuf_staging/dev/mii/nsphyter.c user/andre/mbuf_staging/dev/mii/pnaphy.c user/andre/mbuf_staging/dev/mii/qsphy.c user/andre/mbuf_staging/dev/mii/rdcphy.c user/andre/mbuf_staging/dev/mii/rgephy.c user/andre/mbuf_staging/dev/mii/rlphy.c user/andre/mbuf_staging/dev/mii/rlswitch.c user/andre/mbuf_staging/dev/mii/smcphy.c user/andre/mbuf_staging/dev/mii/smscphy.c user/andre/mbuf_staging/dev/mii/tdkphy.c user/andre/mbuf_staging/dev/mii/tlphy.c user/andre/mbuf_staging/dev/mii/truephy.c user/andre/mbuf_staging/dev/mii/ukphy.c user/andre/mbuf_staging/dev/mii/xmphy.c user/andre/mbuf_staging/dev/msk/if_msk.c user/andre/mbuf_staging/dev/mvs/mvs_soc.c user/andre/mbuf_staging/dev/mwl/if_mwl.c user/andre/mbuf_staging/dev/mwl/if_mwl_pci.c user/andre/mbuf_staging/dev/mxge/if_mxge.c user/andre/mbuf_staging/dev/my/if_my.c user/andre/mbuf_staging/dev/netmap/netmap.c user/andre/mbuf_staging/dev/nfe/if_nfe.c user/andre/mbuf_staging/dev/nge/if_nge.c user/andre/mbuf_staging/dev/nve/if_nve.c user/andre/mbuf_staging/dev/nxge/if_nxge.c user/andre/mbuf_staging/dev/oce/oce_hw.c user/andre/mbuf_staging/dev/oce/oce_hw.h user/andre/mbuf_staging/dev/oce/oce_if.c user/andre/mbuf_staging/dev/oce/oce_if.h user/andre/mbuf_staging/dev/oce/oce_mbox.c user/andre/mbuf_staging/dev/oce/oce_queue.c user/andre/mbuf_staging/dev/oce/oce_sysctl.c user/andre/mbuf_staging/dev/oce/oce_util.c user/andre/mbuf_staging/dev/ofw/ofw_bus.h user/andre/mbuf_staging/dev/ofw/ofw_bus_if.m user/andre/mbuf_staging/dev/ofw/ofw_bus_subr.c user/andre/mbuf_staging/dev/ofw/ofw_bus_subr.h user/andre/mbuf_staging/dev/ofw/ofw_console.c user/andre/mbuf_staging/dev/ofw/ofw_fdt.c user/andre/mbuf_staging/dev/ofw/ofw_iicbus.c user/andre/mbuf_staging/dev/ofw/openfirm.c user/andre/mbuf_staging/dev/ofw/openfirm.h user/andre/mbuf_staging/dev/patm/if_patm.c user/andre/mbuf_staging/dev/patm/if_patm_attach.c user/andre/mbuf_staging/dev/patm/if_patm_intr.c user/andre/mbuf_staging/dev/patm/if_patm_ioctl.c user/andre/mbuf_staging/dev/patm/if_patm_rx.c user/andre/mbuf_staging/dev/patm/if_patm_tx.c user/andre/mbuf_staging/dev/pci/pci.c user/andre/mbuf_staging/dev/pci/pci_private.h user/andre/mbuf_staging/dev/pci/pcireg.h user/andre/mbuf_staging/dev/pci/pcivar.h user/andre/mbuf_staging/dev/pcn/if_pcn.c user/andre/mbuf_staging/dev/pdq/if_fpa.c user/andre/mbuf_staging/dev/pdq/pdq_freebsd.h user/andre/mbuf_staging/dev/pdq/pdq_ifsubr.c user/andre/mbuf_staging/dev/ppbus/if_plip.c user/andre/mbuf_staging/dev/qlxgb/qla_os.h user/andre/mbuf_staging/dev/qlxgbe/ql_os.h user/andre/mbuf_staging/dev/qlxge/qls_os.h user/andre/mbuf_staging/dev/ral/rt2560.c user/andre/mbuf_staging/dev/ral/rt2661.c user/andre/mbuf_staging/dev/ral/rt2860.c user/andre/mbuf_staging/dev/re/if_re.c user/andre/mbuf_staging/dev/rt/if_rt.c user/andre/mbuf_staging/dev/sbni/if_sbni.c user/andre/mbuf_staging/dev/sf/if_sf.c user/andre/mbuf_staging/dev/sfxge/sfxge.c user/andre/mbuf_staging/dev/sfxge/sfxge.h user/andre/mbuf_staging/dev/sfxge/sfxge_dma.c user/andre/mbuf_staging/dev/sfxge/sfxge_ev.c user/andre/mbuf_staging/dev/sfxge/sfxge_intr.c user/andre/mbuf_staging/dev/sge/if_sge.c user/andre/mbuf_staging/dev/siba/siba_bwn.c user/andre/mbuf_staging/dev/siba/siba_core.c user/andre/mbuf_staging/dev/sis/if_sis.c user/andre/mbuf_staging/dev/sk/if_sk.c user/andre/mbuf_staging/dev/smc/if_smc.c user/andre/mbuf_staging/dev/sn/if_sn.c user/andre/mbuf_staging/dev/sn/if_sn_isa.c user/andre/mbuf_staging/dev/spibus/spibus.c user/andre/mbuf_staging/dev/spibus/spibusvar.h user/andre/mbuf_staging/dev/ste/if_ste.c user/andre/mbuf_staging/dev/stge/if_stge.c user/andre/mbuf_staging/dev/ti/if_ti.c user/andre/mbuf_staging/dev/tl/if_tl.c user/andre/mbuf_staging/dev/tsec/if_tsec.c user/andre/mbuf_staging/dev/tx/if_tx.c user/andre/mbuf_staging/dev/txp/if_txp.c user/andre/mbuf_staging/dev/uart/uart_cpu_fdt.c user/andre/mbuf_staging/dev/uart/uart_dev_imx.c user/andre/mbuf_staging/dev/uart/uart_dev_ns8250.c user/andre/mbuf_staging/dev/usb/net/if_aue.c user/andre/mbuf_staging/dev/usb/net/if_axe.c user/andre/mbuf_staging/dev/usb/net/if_cdce.c user/andre/mbuf_staging/dev/usb/net/if_cue.c user/andre/mbuf_staging/dev/usb/net/if_ipheth.c user/andre/mbuf_staging/dev/usb/net/if_kue.c user/andre/mbuf_staging/dev/usb/net/if_mos.c user/andre/mbuf_staging/dev/usb/net/if_rue.c user/andre/mbuf_staging/dev/usb/net/if_smsc.c user/andre/mbuf_staging/dev/usb/net/if_udav.c user/andre/mbuf_staging/dev/usb/net/if_usie.c user/andre/mbuf_staging/dev/usb/net/ruephy.c user/andre/mbuf_staging/dev/usb/net/uhso.c user/andre/mbuf_staging/dev/usb/net/usb_ethernet.c user/andre/mbuf_staging/dev/usb/serial/u3g.c user/andre/mbuf_staging/dev/usb/usb_dev.c user/andre/mbuf_staging/dev/usb/usb_device.h user/andre/mbuf_staging/dev/usb/usb_generic.c user/andre/mbuf_staging/dev/usb/usb_hub.c user/andre/mbuf_staging/dev/usb/usb_pf.c user/andre/mbuf_staging/dev/usb/usbdevs user/andre/mbuf_staging/dev/usb/wlan/if_rsu.c user/andre/mbuf_staging/dev/usb/wlan/if_rum.c user/andre/mbuf_staging/dev/usb/wlan/if_run.c user/andre/mbuf_staging/dev/usb/wlan/if_uath.c user/andre/mbuf_staging/dev/usb/wlan/if_upgt.c user/andre/mbuf_staging/dev/usb/wlan/if_ural.c user/andre/mbuf_staging/dev/usb/wlan/if_urtw.c user/andre/mbuf_staging/dev/usb/wlan/if_urtwn.c user/andre/mbuf_staging/dev/usb/wlan/if_zyd.c user/andre/mbuf_staging/dev/vge/if_vge.c user/andre/mbuf_staging/dev/virtio/network/if_vtnet.c user/andre/mbuf_staging/dev/vmware/vmxnet3/if_vmx.c user/andre/mbuf_staging/dev/vr/if_vr.c user/andre/mbuf_staging/dev/vte/if_vte.c user/andre/mbuf_staging/dev/vx/if_vx.c user/andre/mbuf_staging/dev/vx/if_vx_pci.c user/andre/mbuf_staging/dev/wb/if_wb.c user/andre/mbuf_staging/dev/wi/if_wi.c user/andre/mbuf_staging/dev/wi/if_wi_pccard.c user/andre/mbuf_staging/dev/wi/if_wi_pci.c user/andre/mbuf_staging/dev/wl/if_wl.c user/andre/mbuf_staging/dev/wpi/if_wpi.c user/andre/mbuf_staging/dev/xe/if_xe.c user/andre/mbuf_staging/dev/xe/if_xe_pccard.c user/andre/mbuf_staging/dev/xl/if_xl.c user/andre/mbuf_staging/dev/xl/xlphy.c user/andre/mbuf_staging/fs/ext2fs/ext2_vnops.c user/andre/mbuf_staging/fs/nfs/nfsport.h user/andre/mbuf_staging/geom/geom.h user/andre/mbuf_staging/geom/geom_disk.c user/andre/mbuf_staging/geom/geom_disk.h user/andre/mbuf_staging/geom/geom_subr.c user/andre/mbuf_staging/geom/nop/g_nop.c user/andre/mbuf_staging/ia64/ia64/busdma_machdep.c user/andre/mbuf_staging/kern/kern_jail.c user/andre/mbuf_staging/kern/kern_poll.c user/andre/mbuf_staging/kern/subr_bus_dma.c user/andre/mbuf_staging/kern/subr_devstat.c user/andre/mbuf_staging/kern/subr_kdb.c user/andre/mbuf_staging/kern/subr_param.c user/andre/mbuf_staging/kern/sys_socket.c user/andre/mbuf_staging/mips/beri/beri_pic.c user/andre/mbuf_staging/mips/beri/std.beri user/andre/mbuf_staging/mips/conf/BERI_DE4_BASE user/andre/mbuf_staging/mips/include/cpufunc.h user/andre/mbuf_staging/mips/include/pte.h user/andre/mbuf_staging/mips/mips/busdma_machdep.c user/andre/mbuf_staging/mips/mips/cache.c user/andre/mbuf_staging/mips/mips/cpu.c user/andre/mbuf_staging/mips/mips/trap.c user/andre/mbuf_staging/modules/dtrace/Makefile user/andre/mbuf_staging/modules/dtrace/dtraceall/dtraceall.c user/andre/mbuf_staging/net/bpf.c user/andre/mbuf_staging/net/bpf.h user/andre/mbuf_staging/net/bridgestp.c user/andre/mbuf_staging/net/ieee8023ad_lacp.c user/andre/mbuf_staging/net/if.h user/andre/mbuf_staging/net/if_arcsubr.c user/andre/mbuf_staging/net/if_atmsubr.c user/andre/mbuf_staging/net/if_bridge.c user/andre/mbuf_staging/net/if_clone.c user/andre/mbuf_staging/net/if_clone.h user/andre/mbuf_staging/net/if_disc.c user/andre/mbuf_staging/net/if_edsc.c user/andre/mbuf_staging/net/if_ef.c user/andre/mbuf_staging/net/if_enc.c user/andre/mbuf_staging/net/if_epair.c user/andre/mbuf_staging/net/if_ethersubr.c user/andre/mbuf_staging/net/if_faith.c user/andre/mbuf_staging/net/if_fddisubr.c user/andre/mbuf_staging/net/if_fwsubr.c user/andre/mbuf_staging/net/if_gif.c user/andre/mbuf_staging/net/if_gre.c user/andre/mbuf_staging/net/if_iso88025subr.c user/andre/mbuf_staging/net/if_loop.c user/andre/mbuf_staging/net/if_media.h user/andre/mbuf_staging/net/if_mib.c user/andre/mbuf_staging/net/if_spppfr.c user/andre/mbuf_staging/net/if_spppsubr.c user/andre/mbuf_staging/net/if_stf.c user/andre/mbuf_staging/net/if_tap.c user/andre/mbuf_staging/net/if_tun.c user/andre/mbuf_staging/net/if_var.h user/andre/mbuf_staging/net/if_vlan.c user/andre/mbuf_staging/net/if_vlan_var.h user/andre/mbuf_staging/net/pfil.c user/andre/mbuf_staging/net/pfvar.h user/andre/mbuf_staging/net/raw_cb.c user/andre/mbuf_staging/net/raw_usrreq.c user/andre/mbuf_staging/net/route.c user/andre/mbuf_staging/net/rtsock.c user/andre/mbuf_staging/net80211/ieee80211.c user/andre/mbuf_staging/net80211/ieee80211_action.c user/andre/mbuf_staging/net80211/ieee80211_adhoc.c user/andre/mbuf_staging/net80211/ieee80211_ageq.c user/andre/mbuf_staging/net80211/ieee80211_amrr.c user/andre/mbuf_staging/net80211/ieee80211_ddb.c user/andre/mbuf_staging/net80211/ieee80211_dfs.c user/andre/mbuf_staging/net80211/ieee80211_freebsd.c user/andre/mbuf_staging/net80211/ieee80211_hostap.c user/andre/mbuf_staging/net80211/ieee80211_ht.c user/andre/mbuf_staging/net80211/ieee80211_input.c user/andre/mbuf_staging/net80211/ieee80211_ioctl.c user/andre/mbuf_staging/net80211/ieee80211_mesh.c user/andre/mbuf_staging/net80211/ieee80211_monitor.c user/andre/mbuf_staging/net80211/ieee80211_node.c user/andre/mbuf_staging/net80211/ieee80211_output.c user/andre/mbuf_staging/net80211/ieee80211_phy.c user/andre/mbuf_staging/net80211/ieee80211_power.c user/andre/mbuf_staging/net80211/ieee80211_proto.c user/andre/mbuf_staging/net80211/ieee80211_proto.h user/andre/mbuf_staging/net80211/ieee80211_radiotap.c user/andre/mbuf_staging/net80211/ieee80211_ratectl.c user/andre/mbuf_staging/net80211/ieee80211_ratectl_none.c user/andre/mbuf_staging/net80211/ieee80211_regdomain.c user/andre/mbuf_staging/net80211/ieee80211_rssadapt.c user/andre/mbuf_staging/net80211/ieee80211_scan.c user/andre/mbuf_staging/net80211/ieee80211_scan_sta.c user/andre/mbuf_staging/net80211/ieee80211_wds.c user/andre/mbuf_staging/netatalk/aarp.c user/andre/mbuf_staging/netatalk/at_control.c user/andre/mbuf_staging/netatalk/ddp_input.c user/andre/mbuf_staging/netatalk/ddp_output.c user/andre/mbuf_staging/netatalk/ddp_pcb.c user/andre/mbuf_staging/netatalk/ddp_usrreq.c user/andre/mbuf_staging/netgraph/netflow/netflow.c user/andre/mbuf_staging/netgraph/ng_bridge.c user/andre/mbuf_staging/netgraph/ng_cisco.c user/andre/mbuf_staging/netgraph/ng_eiface.c user/andre/mbuf_staging/netgraph/ng_ether.c user/andre/mbuf_staging/netgraph/ng_fec.c user/andre/mbuf_staging/netgraph/ng_iface.c user/andre/mbuf_staging/netgraph/ng_ipfw.c user/andre/mbuf_staging/netgraph/ng_one2many.c user/andre/mbuf_staging/netgraph/ng_sppp.c user/andre/mbuf_staging/netinet/if_atm.c user/andre/mbuf_staging/netinet/if_ether.c user/andre/mbuf_staging/netinet/igmp.c user/andre/mbuf_staging/netinet/in.c user/andre/mbuf_staging/netinet/in.h user/andre/mbuf_staging/netinet/in_gif.c user/andre/mbuf_staging/netinet/in_mcast.c user/andre/mbuf_staging/netinet/in_pcb.c user/andre/mbuf_staging/netinet/in_proto.c user/andre/mbuf_staging/netinet/in_rmx.c user/andre/mbuf_staging/netinet/ip_carp.c user/andre/mbuf_staging/netinet/ip_divert.c user/andre/mbuf_staging/netinet/ip_gre.c user/andre/mbuf_staging/netinet/ip_icmp.c user/andre/mbuf_staging/netinet/ip_ipsec.c user/andre/mbuf_staging/netinet/ip_mroute.c user/andre/mbuf_staging/netinet/ip_output.c user/andre/mbuf_staging/netinet/libalias/alias_db.c user/andre/mbuf_staging/netinet/raw_ip.c user/andre/mbuf_staging/netinet/siftr.c user/andre/mbuf_staging/netinet/tcp_hostcache.c user/andre/mbuf_staging/netinet/tcp_input.c user/andre/mbuf_staging/netinet/tcp_offload.c user/andre/mbuf_staging/netinet/tcp_reass.c user/andre/mbuf_staging/netinet/tcp_sack.c user/andre/mbuf_staging/netinet/tcp_subr.c user/andre/mbuf_staging/netinet/tcp_syncache.c user/andre/mbuf_staging/netinet/tcp_timewait.c user/andre/mbuf_staging/netinet/tcp_usrreq.c user/andre/mbuf_staging/netinet/toecore.c user/andre/mbuf_staging/netinet/udp_usrreq.c user/andre/mbuf_staging/netinet6/dest6.c user/andre/mbuf_staging/netinet6/frag6.c user/andre/mbuf_staging/netinet6/icmp6.c user/andre/mbuf_staging/netinet6/in6.c user/andre/mbuf_staging/netinet6/in6_gif.c user/andre/mbuf_staging/netinet6/in6_ifattach.c user/andre/mbuf_staging/netinet6/in6_mcast.c user/andre/mbuf_staging/netinet6/in6_pcb.c user/andre/mbuf_staging/netinet6/in6_proto.c user/andre/mbuf_staging/netinet6/in6_rmx.c user/andre/mbuf_staging/netinet6/in6_src.c user/andre/mbuf_staging/netinet6/ip6_forward.c user/andre/mbuf_staging/netinet6/ip6_id.c user/andre/mbuf_staging/netinet6/ip6_input.c user/andre/mbuf_staging/netinet6/ip6_ipsec.c user/andre/mbuf_staging/netinet6/ip6_mroute.c user/andre/mbuf_staging/netinet6/ip6_output.c user/andre/mbuf_staging/netinet6/mld6.c user/andre/mbuf_staging/netinet6/nd6.c user/andre/mbuf_staging/netinet6/nd6_rtr.c user/andre/mbuf_staging/netinet6/raw_ip6.c user/andre/mbuf_staging/netinet6/route6.c user/andre/mbuf_staging/netinet6/scope6.c user/andre/mbuf_staging/netinet6/udp6_usrreq.c user/andre/mbuf_staging/netipsec/ipsec.c user/andre/mbuf_staging/netipsec/ipsec_input.c user/andre/mbuf_staging/netipsec/ipsec_output.c user/andre/mbuf_staging/netipsec/key.c user/andre/mbuf_staging/netipsec/keysock.c user/andre/mbuf_staging/netipsec/xform_ah.c user/andre/mbuf_staging/netipsec/xform_esp.c user/andre/mbuf_staging/netipsec/xform_ipip.c user/andre/mbuf_staging/netipx/ipx.c user/andre/mbuf_staging/netipx/ipx_input.c user/andre/mbuf_staging/netipx/ipx_outputfl.c user/andre/mbuf_staging/netipx/ipx_pcb.c user/andre/mbuf_staging/netipx/ipx_usrreq.c user/andre/mbuf_staging/netnatm/natm.c user/andre/mbuf_staging/netnatm/natm_pcb.c user/andre/mbuf_staging/netnatm/natm_proto.c user/andre/mbuf_staging/netpfil/ipfw/ip_dn_io.c user/andre/mbuf_staging/netpfil/ipfw/ip_dummynet.c user/andre/mbuf_staging/netpfil/ipfw/ip_fw2.c user/andre/mbuf_staging/netpfil/ipfw/ip_fw_dynamic.c user/andre/mbuf_staging/netpfil/ipfw/ip_fw_log.c user/andre/mbuf_staging/netpfil/ipfw/ip_fw_nat.c user/andre/mbuf_staging/netpfil/pf/if_pflog.c user/andre/mbuf_staging/netpfil/pf/if_pfsync.c user/andre/mbuf_staging/netpfil/pf/pf.c user/andre/mbuf_staging/netpfil/pf/pf_if.c user/andre/mbuf_staging/netpfil/pf/pf_ioctl.c user/andre/mbuf_staging/netpfil/pf/pf_lb.c user/andre/mbuf_staging/netpfil/pf/pf_norm.c user/andre/mbuf_staging/netpfil/pf/pf_osfp.c user/andre/mbuf_staging/netpfil/pf/pf_ruleset.c user/andre/mbuf_staging/netpfil/pf/pf_table.c user/andre/mbuf_staging/nfs/bootp_subr.c user/andre/mbuf_staging/nfsclient/nfs_vfsops.c user/andre/mbuf_staging/nfsclient/nfs_vnops.c user/andre/mbuf_staging/nfsserver/nfs_srvkrpc.c user/andre/mbuf_staging/ofed/drivers/infiniband/ulp/ipoib/ipoib.h user/andre/mbuf_staging/ofed/drivers/infiniband/ulp/sdp/sdp.h user/andre/mbuf_staging/ofed/include/linux/list.h user/andre/mbuf_staging/pci/if_rl.c user/andre/mbuf_staging/powerpc/aim/machdep.c user/andre/mbuf_staging/powerpc/aim/mmu_oea.c user/andre/mbuf_staging/powerpc/aim/mmu_oea64.c user/andre/mbuf_staging/powerpc/aim/mp_cpudep.c user/andre/mbuf_staging/powerpc/booke/locore.S user/andre/mbuf_staging/powerpc/booke/machdep.c user/andre/mbuf_staging/powerpc/booke/machdep_e500.c user/andre/mbuf_staging/powerpc/booke/platform_bare.c user/andre/mbuf_staging/powerpc/booke/pmap.c user/andre/mbuf_staging/powerpc/include/intr_machdep.h user/andre/mbuf_staging/powerpc/include/pmap.h user/andre/mbuf_staging/powerpc/include/psl.h user/andre/mbuf_staging/powerpc/include/tlb.h user/andre/mbuf_staging/powerpc/include/trap.h user/andre/mbuf_staging/powerpc/include/vmparam.h user/andre/mbuf_staging/powerpc/mpc85xx/atpic.c user/andre/mbuf_staging/powerpc/mpc85xx/fsl_sdhc.c user/andre/mbuf_staging/powerpc/mpc85xx/mpc85xx.c user/andre/mbuf_staging/powerpc/mpc85xx/mpc85xx.h user/andre/mbuf_staging/powerpc/ofw/ofw_pci.c user/andre/mbuf_staging/powerpc/ofw/ofw_pcib_pci.c user/andre/mbuf_staging/powerpc/ofw/ofw_pcibus.c user/andre/mbuf_staging/powerpc/ofw/openpic_ofw.c user/andre/mbuf_staging/powerpc/powermac/powermac_thermal.c user/andre/mbuf_staging/powerpc/powerpc/bus_machdep.c user/andre/mbuf_staging/powerpc/powerpc/busdma_machdep.c user/andre/mbuf_staging/powerpc/powerpc/exec_machdep.c user/andre/mbuf_staging/powerpc/powerpc/genassym.c user/andre/mbuf_staging/powerpc/powerpc/intr_machdep.c user/andre/mbuf_staging/powerpc/powerpc/nexus.c user/andre/mbuf_staging/powerpc/powerpc/pic_if.m user/andre/mbuf_staging/powerpc/pseries/platform_chrp.c user/andre/mbuf_staging/powerpc/pseries/vdevice.c user/andre/mbuf_staging/security/mac_ifoff/mac_ifoff.c user/andre/mbuf_staging/sparc64/include/bus.h user/andre/mbuf_staging/sparc64/include/bus_dma.h user/andre/mbuf_staging/sparc64/include/bus_private.h user/andre/mbuf_staging/sparc64/pci/fire.c user/andre/mbuf_staging/sparc64/pci/psycho.c user/andre/mbuf_staging/sparc64/pci/schizo.c user/andre/mbuf_staging/sparc64/sbus/sbus.c user/andre/mbuf_staging/sparc64/sparc64/bus_machdep.c user/andre/mbuf_staging/sys/ata.h user/andre/mbuf_staging/sys/bus_dma.h user/andre/mbuf_staging/sys/eventhandler.h user/andre/mbuf_staging/sys/sdt.h user/andre/mbuf_staging/ufs/ffs/ffs_vnops.c user/andre/mbuf_staging/ufs/ufs/dinode.h user/andre/mbuf_staging/x86/x86/busdma_machdep.c user/andre/mbuf_staging/x86/x86/io_apic.c Directory Properties: user/andre/mbuf_staging/ (props changed) user/andre/mbuf_staging/boot/ (props changed) user/andre/mbuf_staging/cddl/contrib/opensolaris/ (props changed) user/andre/mbuf_staging/conf/ (props changed) user/andre/mbuf_staging/contrib/ipfilter/ (props changed) user/andre/mbuf_staging/dev/hyperv/ (props changed) Modified: user/andre/mbuf_staging/amd64/amd64/bpf_jit_machdep.c ============================================================================== --- user/andre/mbuf_staging/amd64/amd64/bpf_jit_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/amd64/amd64/bpf_jit_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #else #include Modified: user/andre/mbuf_staging/amd64/amd64/minidump_machdep.c ============================================================================== --- user/andre/mbuf_staging/amd64/amd64/minidump_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/amd64/amd64/minidump_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -127,8 +127,9 @@ report_progress(size_t progress, size_t int sofar, i; sofar = 100 - ((progress * 100) / dumpsize); - for (i = 0; i < 10; i++) { - if (sofar < progress_track[i].min_per || sofar > progress_track[i].max_per) + for (i = 0; i < nitems(progress_track); i++) { + if (sofar < progress_track[i].min_per || + sofar > progress_track[i].max_per) continue; if (progress_track[i].visited) return; @@ -157,8 +158,8 @@ blk_write(struct dumperinfo *di, char *p printf("cant have both va and pa!\n"); return (EINVAL); } - if (pa != 0 && (((uintptr_t)ptr) % PAGE_SIZE) != 0) { - printf("address not page aligned\n"); + if ((((uintptr_t)pa) % PAGE_SIZE) != 0) { + printf("address not page aligned %p\n", ptr); return (EINVAL); } if (ptr != NULL) { @@ -230,6 +231,8 @@ minidumpsys(struct dumperinfo *di) retry: retry_count++; counter = 0; + for (i = 0; i < nitems(progress_track); i++) + progress_track[i].visited = 0; /* Walk page table pages, set bits in vm_page_dump */ pmapsize = 0; for (va = VM_MIN_KERNEL_ADDRESS; va < MAX(KERNBASE + nkpt * NBPDR, Modified: user/andre/mbuf_staging/arm/allwinner/a10_clk.c ============================================================================== --- user/andre/mbuf_staging/arm/allwinner/a10_clk.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/allwinner/a10_clk.c Mon Oct 28 09:43:15 2013 (r257245) @@ -41,7 +41,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/allwinner/a10_gpio.c ============================================================================== --- user/andre/mbuf_staging/arm/allwinner/a10_gpio.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/allwinner/a10_gpio.c Mon Oct 28 09:43:15 2013 (r257245) @@ -45,7 +45,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/allwinner/a10_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/allwinner/a10_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/allwinner/a10_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -43,9 +43,7 @@ __FBSDID("$FreeBSD$"); #include #include -#include /* For trapframe_t, used in */ #include -#include #include @@ -59,7 +57,7 @@ vm_offset_t initarm_lastaddr(void) { - return (DEVMAP_BOOTSTRAP_MAP_START - ARM_NOCACHE_KVA_SIZE); + return (DEVMAP_BOOTSTRAP_MAP_START); } void Modified: user/andre/mbuf_staging/arm/allwinner/a20/a20_cpu_cfg.c ============================================================================== --- user/andre/mbuf_staging/arm/allwinner/a20/a20_cpu_cfg.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/allwinner/a20/a20_cpu_cfg.c Mon Oct 28 09:43:15 2013 (r257245) @@ -41,7 +41,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/allwinner/timer.c ============================================================================== --- user/andre/mbuf_staging/arm/allwinner/timer.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/allwinner/timer.c Mon Oct 28 09:43:15 2013 (r257245) @@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/arm/busdma_machdep-v6.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/busdma_machdep-v6.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/busdma_machdep-v6.c Mon Oct 28 09:43:15 2013 (r257245) @@ -975,6 +975,16 @@ _bus_dmamap_load_phys(bus_dma_tag_t dmat return (0); } +int +_bus_dmamap_load_ma(bus_dma_tag_t dmat, bus_dmamap_t map, + struct vm_page **ma, bus_size_t tlen, int ma_offs, int flags, + bus_dma_segment_t *segs, int *segp) +{ + + return (bus_dmamap_load_ma_triv(dmat, map, ma, tlen, ma_offs, flags, + segs, segp)); +} + /* * Utility function to load a linear buffer. segp contains * the starting segment on entrace, and the ending segment on exit. Modified: user/andre/mbuf_staging/arm/arm/busdma_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/busdma_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/busdma_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -122,7 +122,6 @@ struct bus_dma_tag { struct bounce_page { vm_offset_t vaddr; /* kva of bounce buffer */ - vm_offset_t vaddr_nocache; /* kva of bounce buffer uncached */ bus_addr_t busaddr; /* Physical address */ vm_offset_t datavaddr; /* kva of client data */ bus_addr_t dataaddr; /* client physical address */ @@ -808,7 +807,7 @@ _bus_dmamap_count_phys(bus_dma_tag_t dma bus_addr_t curaddr; bus_size_t sgsize; - if ((map->pagesneeded == 0)) { + if (map->pagesneeded == 0) { CTR3(KTR_BUSDMA, "lowaddr= %d, boundary= %d, alignment= %d", dmat->lowaddr, dmat->boundary, dmat->alignment); CTR2(KTR_BUSDMA, "map= %p, pagesneeded= %d", @@ -839,7 +838,7 @@ _bus_dmamap_count_pages(bus_dma_tag_t dm vm_offset_t vendaddr; bus_addr_t paddr; - if ((map->pagesneeded == 0)) { + if (map->pagesneeded == 0) { CTR3(KTR_BUSDMA, "lowaddr= %d, boundary= %d, alignment= %d", dmat->lowaddr, dmat->boundary, dmat->alignment); CTR2(KTR_BUSDMA, "map= %p, pagesneeded= %d", @@ -993,6 +992,17 @@ _bus_dmamap_load_phys(bus_dma_tag_t dmat } return (0); } + +int +_bus_dmamap_load_ma(bus_dma_tag_t dmat, bus_dmamap_t map, + struct vm_page **ma, bus_size_t tlen, int ma_offs, int flags, + bus_dma_segment_t *segs, int *segp) +{ + + return (bus_dmamap_load_ma_triv(dmat, map, ma, tlen, ma_offs, flags, + segs, segp)); +} + /* * Utility function to load a linear buffer. segp contains * the starting segment on entrance, and the ending segment on exit. @@ -1196,39 +1206,23 @@ _bus_dmamap_sync_bp(bus_dma_tag_t dmat, STAILQ_FOREACH(bpage, &map->bpages, links) { if (op & BUS_DMASYNC_PREWRITE) { if (bpage->datavaddr != 0) - bcopy((void *)bpage->datavaddr, - (void *)(bpage->vaddr_nocache != 0 ? - bpage->vaddr_nocache : - bpage->vaddr), - bpage->datacount); + bcopy((void *)bpage->datavaddr, + (void *)bpage->vaddr, bpage->datacount); else physcopyout(bpage->dataaddr, - (void *)(bpage->vaddr_nocache != 0 ? - bpage->vaddr_nocache : - bpage->vaddr), - bpage->datacount); - if (bpage->vaddr_nocache == 0) { - cpu_dcache_wb_range(bpage->vaddr, - bpage->datacount); - cpu_l2cache_wb_range(bpage->vaddr, - bpage->datacount); - } + (void *)bpage->vaddr,bpage->datacount); + cpu_dcache_wb_range(bpage->vaddr, bpage->datacount); + cpu_l2cache_wb_range(bpage->vaddr, bpage->datacount); dmat->bounce_zone->total_bounced++; } if (op & BUS_DMASYNC_POSTREAD) { - if (bpage->vaddr_nocache == 0) { - cpu_dcache_inv_range(bpage->vaddr, - bpage->datacount); - cpu_l2cache_inv_range(bpage->vaddr, - bpage->datacount); - } + cpu_dcache_inv_range(bpage->vaddr, bpage->datacount); + cpu_l2cache_inv_range(bpage->vaddr, bpage->datacount); if (bpage->datavaddr != 0) - bcopy((void *)(bpage->vaddr_nocache != 0 ? - bpage->vaddr_nocache : bpage->vaddr), + bcopy((void *)bpage->vaddr, (void *)bpage->datavaddr, bpage->datacount); else - physcopyin((void *)(bpage->vaddr_nocache != 0 ? - bpage->vaddr_nocache : bpage->vaddr), + physcopyin((void *)bpage->vaddr, bpage->dataaddr, bpage->datacount); dmat->bounce_zone->total_bounced++; } @@ -1385,8 +1379,6 @@ alloc_bounce_pages(bus_dma_tag_t dmat, u break; } bpage->busaddr = pmap_kextract(bpage->vaddr); - bpage->vaddr_nocache = (vm_offset_t)arm_remap_nocache( - (void *)bpage->vaddr, PAGE_SIZE); mtx_lock(&bounce_lock); STAILQ_INSERT_TAIL(&bz->bounce_page_list, bpage, links); total_bpages++; Modified: user/andre/mbuf_staging/arm/arm/cpufunc.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/cpufunc.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/cpufunc.c Mon Oct 28 09:43:15 2013 (r257245) @@ -1721,7 +1721,7 @@ int early_abort_fixup(arg) void *arg; { - trapframe_t *frame = arg; + struct trapframe *frame = arg; u_int fault_pc; u_int fault_instruction; int saved_lr = 0; @@ -1862,7 +1862,7 @@ int late_abort_fixup(arg) void *arg; { - trapframe_t *frame = arg; + struct trapframe *frame = arg; u_int fault_pc; u_int fault_instruction; int saved_lr = 0; Modified: user/andre/mbuf_staging/arm/arm/genassym.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/genassym.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/genassym.c Mon Oct 28 09:43:15 2013 (r257245) @@ -39,6 +39,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include Modified: user/andre/mbuf_staging/arm/arm/generic_timer.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/generic_timer.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/generic_timer.c Mon Oct 28 09:43:15 2013 (r257245) @@ -49,7 +49,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/arm/machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -90,11 +90,11 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include #include -#include #include #include #include Modified: user/andre/mbuf_staging/arm/arm/minidump_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/minidump_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/minidump_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -43,7 +43,6 @@ __FBSDID("$FreeBSD$"); #endif #include #include -#include #include #include #include Modified: user/andre/mbuf_staging/arm/arm/mpcore_timer.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/mpcore_timer.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/mpcore_timer.c Mon Oct 28 09:43:15 2013 (r257245) @@ -57,7 +57,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/arm/nexus.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/nexus.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/nexus.c Mon Oct 28 09:43:15 2013 (r257245) @@ -56,7 +56,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/arm/pmap-v6.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/pmap-v6.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/pmap-v6.c Mon Oct 28 09:43:15 2013 (r257245) @@ -1951,7 +1951,6 @@ pmap_bootstrap(vm_offset_t firstaddr, st virtual_avail = round_page(virtual_avail); virtual_end = vm_max_kernel_address; kernel_vm_end = pmap_curmaxkvaddr; - arm_nocache_startaddr = vm_max_kernel_address; mtx_init(&cmtx, "TMP mappings mtx", NULL, MTX_DEF); pmap_set_pcb_pagedir(kernel_pmap, thread0.td_pcb); Modified: user/andre/mbuf_staging/arm/arm/pmap.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/pmap.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/pmap.c Mon Oct 28 09:43:15 2013 (r257245) @@ -2423,7 +2423,6 @@ pmap_bootstrap(vm_offset_t firstaddr, st virtual_avail = round_page(virtual_avail); virtual_end = vm_max_kernel_address; kernel_vm_end = pmap_curmaxkvaddr; - arm_nocache_startaddr = vm_max_kernel_address; mtx_init(&cmtx, "TMP mappings mtx", NULL, MTX_DEF); #ifdef ARM_USE_SMALL_ALLOC Modified: user/andre/mbuf_staging/arm/arm/stack_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/stack_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/stack_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -43,13 +43,16 @@ __FBSDID("$FreeBSD$"); * APCS where it lays out the stack incorrectly. Because of this we disable * this when building for ARM EABI or when building with clang. */ + +extern vm_offset_t kernel_vm_end; + static void stack_capture(struct stack *st, u_int32_t *frame) { #if !defined(__ARM_EABI__) && !defined(__clang__) vm_offset_t callpc; - while (INKERNEL(frame)) { + while (INKERNEL(frame) && (vm_offset_t)frame < kernel_vm_end) { callpc = frame[FR_SCP]; if (stack_put(st, callpc) == -1) break; Modified: user/andre/mbuf_staging/arm/arm/trap.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/trap.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/trap.c Mon Oct 28 09:43:15 2013 (r257245) @@ -123,8 +123,8 @@ __FBSDID("$FreeBSD$"); #endif -void swi_handler(trapframe_t *); -void undefinedinstruction(trapframe_t *); +void swi_handler(struct trapframe *); +void undefinedinstruction(struct trapframe *); #include #include @@ -145,13 +145,17 @@ struct ksig { u_long code; }; struct data_abort { - int (*func)(trapframe_t *, u_int, u_int, struct thread *, struct ksig *); + int (*func)(struct trapframe *, u_int, u_int, struct thread *, + struct ksig *); const char *desc; }; -static int dab_fatal(trapframe_t *, u_int, u_int, struct thread *, struct ksig *); -static int dab_align(trapframe_t *, u_int, u_int, struct thread *, struct ksig *); -static int dab_buserr(trapframe_t *, u_int, u_int, struct thread *, struct ksig *); +static int dab_fatal(struct trapframe *, u_int, u_int, struct thread *, + struct ksig *); +static int dab_align(struct trapframe *, u_int, u_int, struct thread *, + struct ksig *); +static int dab_buserr(struct trapframe *, u_int, u_int, struct thread *, + struct ksig *); static const struct data_abort data_aborts[] = { {dab_fatal, "Vector Exception"}, @@ -196,7 +200,8 @@ call_trapsignal(struct thread *td, int s } static __inline int -data_abort_fixup(trapframe_t *tf, u_int fsr, u_int far, struct thread *td, struct ksig *ksig) +data_abort_fixup(struct trapframe *tf, u_int fsr, u_int far, struct thread *td, + struct ksig *ksig) { #ifdef CPU_ABORT_FIXUP_REQUIRED int error; @@ -226,7 +231,7 @@ data_abort_fixup(trapframe_t *tf, u_int } void -data_abort_handler(trapframe_t *tf) +data_abort_handler(struct trapframe *tf) { struct vm_map *map; struct pcb *pcb; @@ -482,7 +487,8 @@ out: * Note: If 'l' is NULL, we assume we're dealing with a prefetch abort. */ static int -dab_fatal(trapframe_t *tf, u_int fsr, u_int far, struct thread *td, struct ksig *ksig) +dab_fatal(struct trapframe *tf, u_int fsr, u_int far, struct thread *td, + struct ksig *ksig) { const char *mode; @@ -538,7 +544,8 @@ dab_fatal(trapframe_t *tf, u_int fsr, u_ * deliver a bus error to the process. */ static int -dab_align(trapframe_t *tf, u_int fsr, u_int far, struct thread *td, struct ksig *ksig) +dab_align(struct trapframe *tf, u_int fsr, u_int far, struct thread *td, + struct ksig *ksig) { /* Alignment faults are always fatal if they occur in kernel mode */ @@ -586,7 +593,8 @@ dab_align(trapframe_t *tf, u_int fsr, u_ * In all other cases, these data aborts are considered fatal. */ static int -dab_buserr(trapframe_t *tf, u_int fsr, u_int far, struct thread *td, struct ksig *ksig) +dab_buserr(struct trapframe *tf, u_int fsr, u_int far, struct thread *td, + struct ksig *ksig) { struct pcb *pcb = td->td_pcb; @@ -607,7 +615,7 @@ dab_buserr(trapframe_t *tf, u_int fsr, u * If the current trapframe is at the top of the kernel stack, * the fault _must_ have come from user mode. */ - if (tf != ((trapframe_t *)pcb->un_32.pcb32_sp) - 1) { + if (tf != ((struct trapframe *)pcb->un_32.pcb32_sp) - 1) { /* * Kernel mode. We're either about to die a * spectacular death, or pcb_onfault will come @@ -660,7 +668,7 @@ dab_buserr(trapframe_t *tf, u_int fsr, u } static __inline int -prefetch_abort_fixup(trapframe_t *tf, struct ksig *ksig) +prefetch_abort_fixup(struct trapframe *tf, struct ksig *ksig) { #ifdef CPU_ABORT_FIXUP_REQUIRED int error; @@ -691,7 +699,7 @@ prefetch_abort_fixup(trapframe_t *tf, st } /* - * void prefetch_abort_handler(trapframe_t *tf) + * void prefetch_abort_handler(struct trapframe *tf) * * Abort handler called when instruction execution occurs at * a non existent or restricted (access permissions) memory page. @@ -702,7 +710,7 @@ prefetch_abort_fixup(trapframe_t *tf, st * Otherwise fault the page in and try again. */ void -prefetch_abort_handler(trapframe_t *tf) +prefetch_abort_handler(struct trapframe *tf) { struct thread *td; struct proc * p; @@ -907,7 +915,7 @@ cpu_fetch_syscall_args(struct thread *td #include "../../kern/subr_syscall.c" static void -syscall(struct thread *td, trapframe_t *frame) +syscall(struct thread *td, struct trapframe *frame) { struct syscall_args sa; int error; @@ -932,7 +940,7 @@ syscall(struct thread *td, trapframe_t * } void -swi_handler(trapframe_t *frame) +swi_handler(struct trapframe *frame) { struct thread *td = curthread; Modified: user/andre/mbuf_staging/arm/arm/undefined.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/undefined.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/undefined.c Mon Oct 28 09:43:15 2013 (r257245) @@ -166,7 +166,7 @@ undefined_init() void -undefinedinstruction(trapframe_t *frame) +undefinedinstruction(struct trapframe *frame) { struct thread *td; u_int fault_pc; Modified: user/andre/mbuf_staging/arm/arm/vfp.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/vfp.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/vfp.c Mon Oct 28 09:43:15 2013 (r257245) @@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include Modified: user/andre/mbuf_staging/arm/arm/vm_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/vm_machdep.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/arm/vm_machdep.c Mon Oct 28 09:43:15 2013 (r257245) @@ -56,6 +56,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -294,7 +295,7 @@ done: void cpu_set_syscall_retval(struct thread *td, int error) { - trapframe_t *frame; + struct trapframe *frame; int fixup; #ifdef __ARMEB__ uint32_t insn; @@ -481,80 +482,6 @@ cpu_exit(struct thread *td) { } -#define BITS_PER_INT (8 * sizeof(int)) -vm_offset_t arm_nocache_startaddr; -static int arm_nocache_allocated[ARM_NOCACHE_KVA_SIZE / (PAGE_SIZE * - BITS_PER_INT)]; - -/* - * Functions to map and unmap memory non-cached into KVA the kernel won't try - * to allocate. The goal is to provide uncached memory to busdma, to honor - * BUS_DMA_COHERENT. - * We can allocate at most ARM_NOCACHE_KVA_SIZE bytes. - * The allocator is rather dummy, each page is represented by a bit in - * a bitfield, 0 meaning the page is not allocated, 1 meaning it is. - * As soon as it finds enough contiguous pages to satisfy the request, - * it returns the address. - */ -void * -arm_remap_nocache(void *addr, vm_size_t size) -{ - int i, j; - - size = round_page(size); - for (i = 0; i < ARM_NOCACHE_KVA_SIZE / PAGE_SIZE; i++) { - if (!(arm_nocache_allocated[i / BITS_PER_INT] & (1 << (i % - BITS_PER_INT)))) { - for (j = i; j < i + (size / (PAGE_SIZE)); j++) - if (arm_nocache_allocated[j / BITS_PER_INT] & - (1 << (j % BITS_PER_INT))) - break; - if (j == i + (size / (PAGE_SIZE))) - break; - } - } - if (i < ARM_NOCACHE_KVA_SIZE / PAGE_SIZE) { - vm_offset_t tomap = arm_nocache_startaddr + i * PAGE_SIZE; - void *ret = (void *)tomap; - vm_paddr_t physaddr = vtophys((vm_offset_t)addr); - vm_offset_t vaddr = (vm_offset_t) addr; - - vaddr = vaddr & ~PAGE_MASK; - for (; tomap < (vm_offset_t)ret + size; tomap += PAGE_SIZE, - vaddr += PAGE_SIZE, physaddr += PAGE_SIZE, i++) { - cpu_idcache_wbinv_range(vaddr, PAGE_SIZE); -#ifdef ARM_L2_PIPT - cpu_l2cache_wbinv_range(physaddr, PAGE_SIZE); -#else - cpu_l2cache_wbinv_range(vaddr, PAGE_SIZE); -#endif - pmap_kenter_nocache(tomap, physaddr); - cpu_tlb_flushID_SE(vaddr); - arm_nocache_allocated[i / BITS_PER_INT] |= 1 << (i % - BITS_PER_INT); - } - return (ret); - } - - return (NULL); -} - -void -arm_unmap_nocache(void *addr, vm_size_t size) -{ - vm_offset_t raddr = (vm_offset_t)addr; - int i; - - size = round_page(size); - i = (raddr - arm_nocache_startaddr) / (PAGE_SIZE); - for (; size > 0; size -= PAGE_SIZE, i++) { - arm_nocache_allocated[i / BITS_PER_INT] &= ~(1 << (i % - BITS_PER_INT)); - pmap_kremove(raddr); - raddr += PAGE_SIZE; - } -} - #ifdef ARM_USE_SMALL_ALLOC static TAILQ_HEAD(,arm_small_page) pages_normal = Modified: user/andre/mbuf_staging/arm/at91/at91_mci.c ============================================================================== --- user/andre/mbuf_staging/arm/at91/at91_mci.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/at91/at91_mci.c Mon Oct 28 09:43:15 2013 (r257245) @@ -52,7 +52,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include Modified: user/andre/mbuf_staging/arm/at91/at91_pmc.c ============================================================================== --- user/andre/mbuf_staging/arm/at91/at91_pmc.c Mon Oct 28 08:03:40 2013 (r257244) +++ user/andre/mbuf_staging/arm/at91/at91_pmc.c Mon Oct 28 09:43:15 2013 (r257245) @@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include #include Copied: user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_bsc.c (from r257244, head/sys/arm/broadcom/bcm2835/bcm2835_bsc.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/broadcom/bcm2835/bcm2835_bsc.c Mon Oct 28 09:43:15 2013 (r257245, copy of r257244, head/sys/arm/broadcom/bcm2835/bcm2835_bsc.c) @@ -0,0 +1,485 @@ +/*- + * Copyright (c) 2001 Tsubai Masanari. + * Copyright (c) 2012 Oleksandr Tymoshenko + * Copyright (c) 2013 Luiz Otavio O Souza + * 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. + * + */ +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include +#include +#include + +#include "iicbus_if.h" + +static void bcm_bsc_intr(void *); + +static void +bcm_bsc_modifyreg(struct bcm_bsc_softc *sc, uint32_t off, uint32_t mask, + uint32_t value) +{ + uint32_t reg; + + mtx_assert(&sc->sc_mtx, MA_OWNED); + reg = BCM_BSC_READ(sc, off); + reg &= ~mask; + reg |= value; + BCM_BSC_WRITE(sc, off, reg); +} + +static int +bcm_bsc_clock_proc(SYSCTL_HANDLER_ARGS) +{ + struct bcm_bsc_softc *sc; + uint32_t clk; + int error; + + sc = (struct bcm_bsc_softc *)arg1; + + BCM_BSC_LOCK(sc); + clk = BCM_BSC_READ(sc, BCM_BSC_CLOCK); + BCM_BSC_UNLOCK(sc); + clk &= 0xffff; + if (clk == 0) + clk = 32768; + clk = BCM_BSC_CORE_CLK / clk; + error = sysctl_handle_int(oidp, &clk, sizeof(clk), req); + if (error != 0 || req->newptr == NULL) + return (error); + + clk = BCM_BSC_CORE_CLK / clk; + if (clk % 2) + clk--; + if (clk > 0xffff) + clk = 0xffff; + BCM_BSC_LOCK(sc); + BCM_BSC_WRITE(sc, BCM_BSC_CLOCK, clk); + BCM_BSC_UNLOCK(sc); + + return (0); +} + +static int +bcm_bsc_clkt_proc(SYSCTL_HANDLER_ARGS) +{ + struct bcm_bsc_softc *sc; + uint32_t clkt; + int error; + + sc = (struct bcm_bsc_softc *)arg1; + + BCM_BSC_LOCK(sc); + clkt = BCM_BSC_READ(sc, BCM_BSC_CLKT); + BCM_BSC_UNLOCK(sc); + clkt &= 0xffff; + error = sysctl_handle_int(oidp, &clkt, sizeof(clkt), req); + if (error != 0 || req->newptr == NULL) + return (error); + + BCM_BSC_LOCK(sc); + BCM_BSC_WRITE(sc, BCM_BSC_CLKT, clkt & 0xffff); + BCM_BSC_UNLOCK(sc); + + return (0); +} + +static int +bcm_bsc_fall_proc(SYSCTL_HANDLER_ARGS) +{ + struct bcm_bsc_softc *sc; + uint32_t clk, reg; + int error; + + sc = (struct bcm_bsc_softc *)arg1; + + BCM_BSC_LOCK(sc); + reg = BCM_BSC_READ(sc, BCM_BSC_DELAY); + BCM_BSC_UNLOCK(sc); + reg >>= 16; + error = sysctl_handle_int(oidp, ®, sizeof(reg), req); + if (error != 0 || req->newptr == NULL) + return (error); + + BCM_BSC_LOCK(sc); + clk = BCM_BSC_READ(sc, BCM_BSC_CLOCK); + clk = BCM_BSC_CORE_CLK / clk; + if (reg > clk / 2) + reg = clk / 2 - 1; + bcm_bsc_modifyreg(sc, BCM_BSC_DELAY, 0xffff0000, reg << 16); + BCM_BSC_UNLOCK(sc); + + return (0); +} + +static int +bcm_bsc_rise_proc(SYSCTL_HANDLER_ARGS) +{ + struct bcm_bsc_softc *sc; + uint32_t clk, reg; + int error; + + sc = (struct bcm_bsc_softc *)arg1; + + BCM_BSC_LOCK(sc); + reg = BCM_BSC_READ(sc, BCM_BSC_DELAY); + BCM_BSC_UNLOCK(sc); + reg &= 0xffff; + error = sysctl_handle_int(oidp, ®, sizeof(reg), req); + if (error != 0 || req->newptr == NULL) + return (error); + + BCM_BSC_LOCK(sc); + clk = BCM_BSC_READ(sc, BCM_BSC_CLOCK); + clk = BCM_BSC_CORE_CLK / clk; + if (reg > clk / 2) + reg = clk / 2 - 1; + bcm_bsc_modifyreg(sc, BCM_BSC_DELAY, 0xffff, reg); + BCM_BSC_UNLOCK(sc); + + return (0); +} + +static void +bcm_bsc_sysctl_init(struct bcm_bsc_softc *sc) +{ + struct sysctl_ctx_list *ctx; + struct sysctl_oid *tree_node; + struct sysctl_oid_list *tree; + + /* + * Add system sysctl tree/handlers. + */ + ctx = device_get_sysctl_ctx(sc->sc_dev); + tree_node = device_get_sysctl_tree(sc->sc_dev); + tree = SYSCTL_CHILDREN(tree_node); + SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "clock", + CTLFLAG_RW | CTLTYPE_UINT, sc, sizeof(*sc), + bcm_bsc_clock_proc, "IU", "I2C BUS clock frequency"); + SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "clock_stretch", + CTLFLAG_RW | CTLTYPE_UINT, sc, sizeof(*sc), + bcm_bsc_clkt_proc, "IU", "I2C BUS clock stretch timeout"); + SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "fall_edge_delay", + CTLFLAG_RW | CTLTYPE_UINT, sc, sizeof(*sc), + bcm_bsc_fall_proc, "IU", "I2C BUS falling edge delay"); + SYSCTL_ADD_PROC(ctx, tree, OID_AUTO, "rise_edge_delay", + CTLFLAG_RW | CTLTYPE_UINT, sc, sizeof(*sc), + bcm_bsc_rise_proc, "IU", "I2C BUS rising edge delay"); +} + +static void +bcm_bsc_reset(struct bcm_bsc_softc *sc) +{ + + /* Clear pending interrupts. */ + BCM_BSC_WRITE(sc, BCM_BSC_STATUS, BCM_BSC_STATUS_CLKT | + BCM_BSC_STATUS_ERR | BCM_BSC_STATUS_DONE); + /* Clear the FIFO. */ + bcm_bsc_modifyreg(sc, BCM_BSC_CTRL, BCM_BSC_CTRL_CLEAR0, + BCM_BSC_CTRL_CLEAR0); +} + +static int +bcm_bsc_probe(device_t dev) +{ + + if (!ofw_bus_is_compatible(dev, "broadcom,bcm2835-bsc")) + return (ENXIO); + + device_set_desc(dev, "BCM2708/2835 BSC controller"); + + return (BUS_PROBE_DEFAULT); +} + +static int +bcm_bsc_attach(device_t dev) +{ + struct bcm_bsc_softc *sc; + device_t gpio; + int rid; + + if (device_get_unit(dev) > 1) { + device_printf(dev, "only bsc0 and bsc1 are supported\n"); + return (ENXIO); + } + + sc = device_get_softc(dev); + sc->sc_dev = dev; + + /* + * Configure the GPIO pins to ALT0 function to enable BSC control + * over the pins. + */ + gpio = devclass_get_device(devclass_find("gpio"), 0); + if (!gpio) { + device_printf(dev, "cannot find gpio0\n"); + return (ENXIO); + } + bcm_gpio_set_alternate(gpio, bcm_bsc_pins[device_get_unit(dev)].sda, + BCM_GPIO_ALT0); + bcm_gpio_set_alternate(gpio, bcm_bsc_pins[device_get_unit(dev)].scl, + BCM_GPIO_ALT0); + + rid = 0; + sc->sc_mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, + RF_ACTIVE); + if (!sc->sc_mem_res) { + device_printf(dev, "cannot allocate memory window\n"); + return (ENXIO); + } + + sc->sc_bst = rman_get_bustag(sc->sc_mem_res); + sc->sc_bsh = rman_get_bushandle(sc->sc_mem_res); + + rid = 0; + sc->sc_irq_res = bus_alloc_resource_any(dev, SYS_RES_IRQ, &rid, + RF_ACTIVE | RF_SHAREABLE); + if (!sc->sc_irq_res) { + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res); + device_printf(dev, "cannot allocate interrupt\n"); + return (ENXIO); + } + + /* Hook up our interrupt handler. */ + if (bus_setup_intr(dev, sc->sc_irq_res, INTR_TYPE_MISC | INTR_MPSAFE, + NULL, bcm_bsc_intr, sc, &sc->sc_intrhand)) { + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res); + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res); + device_printf(dev, "cannot setup the interrupt handler\n"); + return (ENXIO); + } + + mtx_init(&sc->sc_mtx, "bcm_bsc", NULL, MTX_DEF); + + bcm_bsc_sysctl_init(sc); + + /* Enable the BSC controller. Flush the FIFO. */ + BCM_BSC_LOCK(sc); + BCM_BSC_WRITE(sc, BCM_BSC_CTRL, BCM_BSC_CTRL_I2CEN); + bcm_bsc_reset(sc); + BCM_BSC_UNLOCK(sc); + + device_add_child(dev, "iicbus", -1); + + return (bus_generic_attach(dev)); +} + +static int +bcm_bsc_detach(device_t dev) +{ + struct bcm_bsc_softc *sc; + + bus_generic_detach(dev); + + sc = device_get_softc(dev); + mtx_destroy(&sc->sc_mtx); + if (sc->sc_intrhand) + bus_teardown_intr(dev, sc->sc_irq_res, sc->sc_intrhand); + if (sc->sc_irq_res) + bus_release_resource(dev, SYS_RES_IRQ, 0, sc->sc_irq_res); + if (sc->sc_mem_res) + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->sc_mem_res); + + return (0); +} + +static void +bcm_bsc_intr(void *arg) +{ + struct bcm_bsc_softc *sc; + uint32_t status; + + sc = (struct bcm_bsc_softc *)arg; + + BCM_BSC_LOCK(sc); + + /* The I2C interrupt is shared among all the BSC controllers. */ + if ((sc->sc_flags & BCM_I2C_BUSY) == 0) { + BCM_BSC_UNLOCK(sc); + return; + } + + status = BCM_BSC_READ(sc, BCM_BSC_STATUS); + + /* Check for errors. */ + if (status & (BCM_BSC_STATUS_CLKT | BCM_BSC_STATUS_ERR)) { + /* Disable interrupts. */ + BCM_BSC_WRITE(sc, BCM_BSC_CTRL, BCM_BSC_CTRL_I2CEN); + sc->sc_flags |= BCM_I2C_ERROR; + bcm_bsc_reset(sc); + wakeup(sc->sc_dev); + BCM_BSC_UNLOCK(sc); + return; + } + + if (sc->sc_flags & BCM_I2C_READ) { + while (sc->sc_resid > 0 && (status & BCM_BSC_STATUS_RXD)) { + *sc->sc_data++ = BCM_BSC_READ(sc, BCM_BSC_DATA); + sc->sc_resid--; + status = BCM_BSC_READ(sc, BCM_BSC_STATUS); + } + } else { + while (sc->sc_resid > 0 && (status & BCM_BSC_STATUS_TXD)) { + BCM_BSC_WRITE(sc, BCM_BSC_DATA, *sc->sc_data++); + sc->sc_resid--; + status = BCM_BSC_READ(sc, BCM_BSC_STATUS); + } *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Mon Oct 28 14:00:06 2013 Return-Path: Delivered-To: svn-src-user@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 E9A931B7; Mon, 28 Oct 2013 14:00:06 +0000 (UTC) (envelope-from ray@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 D7EE92114; Mon, 28 Oct 2013 14:00: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 r9SE06Ab078886; Mon, 28 Oct 2013 14:00:06 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9SE06tI078885; Mon, 28 Oct 2013 14:00:06 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310281400.r9SE06tI078885@svn.freebsd.org> From: Aleksandr Rybalko Date: Mon, 28 Oct 2013 14:00:06 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257252 - user/ed/newcons/sys/kern X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Oct 2013 14:00:07 -0000 Author: ray Date: Mon Oct 28 14:00:06 2013 New Revision: 257252 URL: http://svnweb.freebsd.org/changeset/base/257252 Log: Do not reset terminal state if it is not cleared on resize. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/kern/subr_terminal.c Modified: user/ed/newcons/sys/kern/subr_terminal.c ============================================================================== --- user/ed/newcons/sys/kern/subr_terminal.c Mon Oct 28 13:33:29 2013 (r257251) +++ user/ed/newcons/sys/kern/subr_terminal.c Mon Oct 28 14:00:06 2013 (r257252) @@ -200,12 +200,19 @@ terminal_set_winsize_blank(struct termin r.tr_end.tp_col = size->ws_col; TERMINAL_LOCK(tm); - teken_set_winsize(&tm->tm_emulator, &r.tr_end); + if (blank == 0) + /* + * Assigned directly, to avoid terminal reset in the + * teken_set_winsize. + */ + tm->tm_emulator.t_winsize = r.tr_end; + else + teken_set_winsize(&tm->tm_emulator, &r.tr_end); TERMINAL_UNLOCK(tm); - if (blank) - tm->tm_class->tc_fill(tm, &r, - TCHAR_CREATE((teken_char_t)' ', &default_message)); + if (blank != 0) + tm->tm_class->tc_fill(tm, &r, TCHAR_CREATE((teken_char_t)' ', + &default_message)); terminal_sync_ttysize(tm); } From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 00:52:03 2013 Return-Path: Delivered-To: svn-src-user@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 65D40BA7; Tue, 29 Oct 2013 00:52:03 +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 387CC2C7D; Tue, 29 Oct 2013 00:52:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9T0q3Fn015127; Tue, 29 Oct 2013 00:52:03 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T0q3qp015126; Tue, 29 Oct 2013 00:52:03 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201310290052.r9T0q3qp015126@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 29 Oct 2013 00:52:03 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257294 - user/ed/newcons/sys/dev/vt X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 00:52:03 -0000 Author: nwhitehorn Date: Tue Oct 29 00:52:02 2013 New Revision: 257294 URL: http://svnweb.freebsd.org/changeset/base/257294 Log: It is perfectly possible for keyboard drivers to queue up more than one key press per notification call. Loop until there are no more queued key presses, like syscons did. This fixes stuttering observed in particular on key repeats with ADB and USB keyboards. Modified: user/ed/newcons/sys/dev/vt/vt_core.c Modified: user/ed/newcons/sys/dev/vt/vt_core.c ============================================================================== --- user/ed/newcons/sys/dev/vt/vt_core.c Tue Oct 29 00:18:11 2013 (r257293) +++ user/ed/newcons/sys/dev/vt/vt_core.c Tue Oct 29 00:52:02 2013 (r257294) @@ -79,14 +79,14 @@ const struct terminal_class vt_termclass }; /* - * Use a constant timer of 25 Hz to redraw the screen. + * Use a constant timer of 50 Hz to redraw the screen. * * XXX: In theory we should only fire up the timer when there is really * activity. Unfortunately we cannot always start timers. We really * don't want to process kernel messages synchronously, because it * really slows down the system. */ -#define VT_TIMERFREQ 25 +#define VT_TIMERFREQ 50 /* Bell pitch/duration. */ #define VT_BELLDURATION ((5 * hz + 99) / 100) @@ -380,27 +380,11 @@ vt_scrollmode_kbdevent(struct vt_window } static int -vt_kbdevent(keyboard_t *kbd, int event, void *arg) +vt_processkey(keyboard_t *kbd, struct vt_device *vd, int c) { - struct vt_device *vd = arg; struct vt_window *vw = vd->vd_curwindow; - int c, state; - - state = 0; - switch (event) { - case KBDIO_KEYINPUT: - break; - case KBDIO_UNLOADING: - mtx_lock(&Giant); - vd->vd_keyboard = -1; - kbd_release(kbd, (void *)&vd->vd_keyboard); - mtx_unlock(&Giant); - return (0); - default: - return (EINVAL); - } + int state = 0; - c = kbdd_read_char(kbd, 0); if (c & RELKEY) return (0); @@ -491,6 +475,31 @@ vt_kbdevent(keyboard_t *kbd, int event, } static int +vt_kbdevent(keyboard_t *kbd, int event, void *arg) +{ + struct vt_device *vd = arg; + int c; + + switch (event) { + case KBDIO_KEYINPUT: + break; + case KBDIO_UNLOADING: + mtx_lock(&Giant); + vd->vd_keyboard = -1; + kbd_release(kbd, (void *)&vd->vd_keyboard); + mtx_unlock(&Giant); + return (0); + default: + return (EINVAL); + } + + while ((c = kbdd_read_char(kbd, 0)) != NOKEY) + vt_processkey(kbd, vd, c); + + return (0); +} + +static int vt_allocate_keyboard(struct vt_device *vd) { int idx0, idx; From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 00:56:22 2013 Return-Path: Delivered-To: svn-src-user@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 677D0F38; Tue, 29 Oct 2013 00:56:22 +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 550A32CAD; Tue, 29 Oct 2013 00:56:22 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9T0uMdb015709; Tue, 29 Oct 2013 00:56:22 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T0uMex015708; Tue, 29 Oct 2013 00:56:22 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <201310290056.r9T0uMex015708@svn.freebsd.org> From: Nathan Whitehorn Date: Tue, 29 Oct 2013 00:56:22 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257296 - user/ed/newcons/sys/dev/vt X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 00:56:22 -0000 Author: nwhitehorn Date: Tue Oct 29 00:56:21 2013 New Revision: 257296 URL: http://svnweb.freebsd.org/changeset/base/257296 Log: Remove some local changes unrelated to r257294. Modified: user/ed/newcons/sys/dev/vt/vt_core.c Modified: user/ed/newcons/sys/dev/vt/vt_core.c ============================================================================== --- user/ed/newcons/sys/dev/vt/vt_core.c Tue Oct 29 00:53:17 2013 (r257295) +++ user/ed/newcons/sys/dev/vt/vt_core.c Tue Oct 29 00:56:21 2013 (r257296) @@ -79,14 +79,14 @@ const struct terminal_class vt_termclass }; /* - * Use a constant timer of 50 Hz to redraw the screen. + * Use a constant timer of 25 Hz to redraw the screen. * * XXX: In theory we should only fire up the timer when there is really * activity. Unfortunately we cannot always start timers. We really * don't want to process kernel messages synchronously, because it * really slows down the system. */ -#define VT_TIMERFREQ 50 +#define VT_TIMERFREQ 25 /* Bell pitch/duration. */ #define VT_BELLDURATION ((5 * hz + 99) / 100) From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 09:01:38 2013 Return-Path: Delivered-To: svn-src-user@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 183228BC; Tue, 29 Oct 2013 09:01:38 +0000 (UTC) (envelope-from cperciva@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 EB0D2257A; Tue, 29 Oct 2013 09:01:37 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9T91bfm084356; Tue, 29 Oct 2013 09:01:37 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T91bHg084354; Tue, 29 Oct 2013 09:01:37 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310290901.r9T91bHg084354@svn.freebsd.org> From: Colin Percival Date: Tue, 29 Oct 2013 09:01:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257318 - user/cperciva/pkesh X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 09:01:38 -0000 Author: cperciva Date: Tue Oct 29 09:01:37 2013 New Revision: 257318 URL: http://svnweb.freebsd.org/changeset/base/257318 Log: Code for performing public-key encryption of a message. To be precise, the message is encrypted using AES256 in CBC mode; and the AES key, the CBC IV, and the SHA256 hash of the plaintext are then encrypted using RSA. In short, think GPG except without the "web of trust" and implemented as a shell script using only utilities in the FreeBSD base system. Added: user/cperciva/pkesh/ user/cperciva/pkesh/README user/cperciva/pkesh/pkesh.sh (contents, props changed) Added: user/cperciva/pkesh/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/cperciva/pkesh/README Tue Oct 29 09:01:37 2013 (r257318) @@ -0,0 +1,33 @@ +pkesh -- Public Key Encryption SHell script +=========================================== + +Usage +----- +# pkesh gen priv.key pub.key + Generates a public/private key pair. +# pkesh enc pub.key in out + Encrypts "in" using the public key, writing to "out". +# pkesh dec priv.key in out + Decrypts "in" using the private key, writing to "out". + +Note: Temporary working space is used under $TMP (or /tmp); if this is not +a memory filesystem then keys or data may be leaked to permanent storage. +There must be sufficient temporary space to hold the entire message. + +Encrypted format +---------------- +Encrypted Message = base64([Encrypted Header][Encrypted Data]) +Encrypted Header = RSA2048-OAEP([Header]) +Header = [AES256-CBC Key][AES256-CBC IV][Hash] +AES256-CBC Key = 256 bits (random) +AES256-CBC IV = 128 bits (random) +Hash = SHA256(Encrypted Data) +Encrypted Data = AES256-CBC(Data) +Data = arbitrary length input "in" + +Requirements +------------ + +openssl +POSIX utilities: sh, cat, cmp, dd, od, rm, tr, wc +non-POSIX but standard UNIX: mktemp Added: user/cperciva/pkesh/pkesh.sh ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/cperciva/pkesh/pkesh.sh Tue Oct 29 09:01:37 2013 (r257318) @@ -0,0 +1,116 @@ +#!/bin/sh -e + +usage () { + echo "usage: pkesh gen priv.key pub.key" + echo "usage: pkesh enc pub.key in out" + echo "usage: pkesh dec priv.key in out" + exit 1 +} + +# gen priv.key pub.key +gen () { + # Generate the key + openssl genrsa -out $D/rsakey -f4 2048 2>/dev/null + + # Write out private and public parts + cat $D/rsakey > $1 + openssl rsa -in $D/rsakey -pubout > $2 2>/dev/null +} + +# enc pub.key in out +enc () { + # Generate a random 256-bit AES key + openssl rand 32 > $D/aeskey + + # Generate a random 128-bit IV + openssl rand 16 > $D/aesIV + + # Generate the encrypted data + KEY=`od -An -v -t x1 < $D/aeskey | tr -Cd '0-9a-fA-F'` + IV=`od -An -v -t x1 < $D/aesIV | tr -Cd '0-9a-fA-F'` + openssl enc -aes-256-cbc -K $KEY -iv $IV < $2 > $D/encdata + + # Compute the SHA256 hash of the encrypted data + openssl dgst -sha256 -binary $D/encdata > $D/hash + + # Generate the header + cat $D/aeskey $D/aesIV $D/hash > $D/header + + # Generate the encrypted header + openssl rsautl -inkey $1 -pubin -encrypt -oaep \ + < $D/header > $D/encheader + + # Generate the entire encrypted message + cat $D/encheader $D/encdata | openssl enc -base64 > $3 +} + +# dec priv.key in out +dec () { + # Base-64 decode the encrypted message + openssl enc -d -base64 < $2 > $D/encmessage + + # Make sure the message is long enough + if [ `wc -c < $D/encmessage` -lt 256 ]; then + echo "Message is corrupt or truncated" >/dev/stderr + exit 1 + fi + + # Decrypt the header + dd if=$D/encmessage bs=256 count=1 of=$D/encheader 2>/dev/null + openssl rsautl -inkey $1 -decrypt -oaep < $D/encheader > $D/header + + # Make sure the header is the right size + if [ `wc -c < $D/header` -ne 80 ]; then + echo "Message is corrupt" >/dev/stderr + exit 1 + fi + + # Split header into components + dd if=$D/header bs=1 count=32 of=$D/aeskey 2>/dev/null + dd if=$D/header bs=1 skip=32 count=16 of=$D/aesIV 2>/dev/null + dd if=$D/header bs=1 skip=48 count=32 of=$D/hash 2>/dev/null + + # Verify the encrypted data hash + dd if=$D/encmessage bs=256 skip=1 2>/dev/null | + openssl dgst -sha256 -binary > $D/encmessage.hash + if ! cmp -s $D/hash $D/encmessage.hash; then + echo "Message is corrupt or truncated" >/dev/stderr + exit 1 + fi + + # Decrypt the message + KEY=`od -An -v -t x1 < $D/aeskey | tr -Cd '0-9a-fA-F'` + IV=`od -An -v -t x1 < $D/aesIV | tr -Cd '0-9a-fA-F'` + dd if=$D/encmessage bs=256 skip=1 2>/dev/null | + openssl enc -d -aes-256-cbc -K $KEY -iv $IV > $3 +} + +# Get operation type +if [ $# -lt 1 ]; then + usage +fi +OP=$1 +shift + +# Check operation type and number of operands +case $OP in +gen) + if [ $# -ne 2 ]; then + usage + fi + ;; +enc|dec) + if [ $# -ne 3 ]; then + usage + fi + ;; +*) + usage +esac + +# Create temporary working directory +D=`mktemp -d "${TMP:-/tmp}/pkesh.XXXXXX"` +trap 'rm -r "$D"' EXIT + +# Perform the operation +$OP "$@" From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 09:04:26 2013 Return-Path: Delivered-To: svn-src-user@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 147D2AA7; Tue, 29 Oct 2013 09:04:26 +0000 (UTC) (envelope-from cperciva@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 E6F1F2595; Tue, 29 Oct 2013 09:04:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9T94P16085186; Tue, 29 Oct 2013 09:04:25 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T94PhW085185; Tue, 29 Oct 2013 09:04:25 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310290904.r9T94PhW085185@svn.freebsd.org> From: Colin Percival Date: Tue, 29 Oct 2013 09:04:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257319 - user/cperciva/panicmail X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 09:04:26 -0000 Author: cperciva Date: Tue Oct 29 09:04:25 2013 New Revision: 257319 URL: http://svnweb.freebsd.org/changeset/base/257319 Log: rc.d script for automatically emailing kernel panic reports. The kernel panic reports are encrypted using pkesh; and depending on the $panicmail_autosubmit variable they are either sent directly or an email is sent to root@ containing the encrypted report and a plaintext version with instructions to please forward the encrypted report. Added: user/cperciva/panicmail/ user/cperciva/panicmail/panicmail Added: user/cperciva/panicmail/panicmail ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/cperciva/panicmail/panicmail Tue Oct 29 09:04:25 2013 (r257319) @@ -0,0 +1,152 @@ +#!/bin/sh + +# PROVIDE: panicmail +# REQUIRE: savecore mail + +# Add the following lines to /etc/rc.conf to enable panicmail: +# +# panicmail_enable (bool): Set to "NO" by default. +# Set it to "YES" to enable panicmail. +# +# panicmail_autosubmit (bool): Set to "NO" by default. +# Set it to "YES" to automatically submit panic +# emails instead of sending them to root for +# review first. +# +# panicmail_sendto (str): Set to "cperciva-panicmail@daemonology.net" +# by default. +# Change to your desired panic submission target. +# +# panicmail_key (str): Set to "/usr/local/etc/cperciva-panicmail.pem" +# by default. +# Change to the encryption key for your panic +# submission target. +: ${panicmail_enable:="NO"} +: ${panicmail_autosubmit:="NO"} +: ${panicmail_sendto:="cperciva-panicmail@daemonology.net"} +: ${panicmail_key:="/usr/local/etc/cperciva-panicmail.pem"} + +. /etc/rc.subr + +name="panicmail" +rcvar=panicmail_enable +start_cmd="panicmail_run" +stop_cmd=":" + +# Gather the data we want to include in a panic report +panicmail_gather() +{ + local tmpfile=`mktemp` || exit 1 + + # We want the dump header. + cat ${dumpdir}/info.$1 >> ${dumpdir}/panicmail.$1 + echo >> ${dumpdir}/panicmail.$1 + + # And we want a backtrace (we should be able to pipe the commands + # directly into kgdb, but that doesn't work with our /bin/sh): + echo "Backtrace:" >> ${dumpdir}/panicmail.$1 + echo bt > ${tmpfile} + echo quit >> ${tmpfile} + kgdb -q `sysctl -n kern.bootfile` ${dumpdir}/vmcore.$1 \ + < ${tmpfile} >> ${dumpdir}/panicmail.$1 2> /dev/null + echo >> ${dumpdir}/panicmail.$1 + rm ${tmpfile} +} + +# Encrypt the information in the panic report +panicmail_encrypt() +{ + local tmpfile=`mktemp` || exit 1 + + # Encrypt using pkesh. + pkesh enc $2 ${dumpdir}/panicmail.$1 ${tmpfile} + + # Add extra armour + echo "-----ENCRYPTED FREEBSD PANIC DATA STARTS HERE---------------------" > ${dumpdir}/panicmail.$1.enc + lam -s '|' ${tmpfile} -s '|' >> ${dumpdir}/panicmail.$1.enc + echo "-----ENCRYPTED FREEBSD PANIC DATA ENDS HERE-----------------------" >> ${dumpdir}/panicmail.$1.enc + + # Remove temporary file + rm ${tmpfile} +} + +panicmail_root() +{ + + cat <<-EOF + To: root + From: FreeBSD Panic Reporting <${panicmail_sendto}> + Subject: Kernel panic + + A kernel panic has occurred on this system. You can assist in + debugging this by allowing some information to be reported + about this panic. + + The following information is contained in the encrypted panic + report at the end of this email: + + EOF + lam -s "> " ${dumpdir}/panicmail.$1 + cat <<-EOF + + If you are happy to have this information submitted (i.e., it + does not contain any information you want kept private), please + submit the following ASCII armoured block to + ${panicmail_sendto}; + you should be able to do this by hitting "Reply" in your mail + client and removing everything up to this point. + + EOF + cat ${dumpdir}/panicmail.$1.enc +} + +panicmail_auto() +{ + + cat <<-EOF + To: FreeBSD Panic Reporting <${panicmail_sendto}> + From: root + Subject: Kernel panic + + EOF + cat ${dumpdir}/panicmail.$1.enc +} + +panicmail_run() +{ + local nr + + # Quit if we have no dumps + if ! [ -f "${dumpdir}/bounds" ]; then + return 0; + fi + + # Figure out which dump is the most recent + nr=$((`cat ${dumpdir}/bounds` - 1)) + + # Make sure it actually exists + if ! [ -f "${dumpdir}/info.${nr}" ]; then + return 0; + fi + + # Have we already sent an email about this one? + if [ -f "${dumpdir}/panicmail.${nr}" ]; then + return 0; + fi + + # Gather information about this panic. + panicmail_gather ${nr} + + # Encrypt the panic information. + panicmail_encrypt ${nr} ${panicmail_key} + + # Generate and send an email. + if checkyesno panicmail_autosubmit; then + panicmail_auto ${nr} | sendmail -t + else + panicmail_root ${nr} | sendmail -t + fi +} + +load_rc_config $name +run_rc_command "$1" From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 09:52:15 2013 Return-Path: Delivered-To: svn-src-user@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 CD47E4B3; Tue, 29 Oct 2013 09:52:15 +0000 (UTC) (envelope-from cperciva@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 BAAE027EE; Tue, 29 Oct 2013 09:52: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 r9T9qFEx001832; Tue, 29 Oct 2013 09:52:15 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9T9qFsd001831; Tue, 29 Oct 2013 09:52:15 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201310290952.r9T9qFsd001831@svn.freebsd.org> From: Colin Percival Date: Tue, 29 Oct 2013 09:52:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257322 - user/cperciva/panicmail X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 09:52:15 -0000 Author: cperciva Date: Tue Oct 29 09:52:15 2013 New Revision: 257322 URL: http://svnweb.freebsd.org/changeset/base/257322 Log: We're going to need a full path for pkesh. Modified: user/cperciva/panicmail/panicmail Modified: user/cperciva/panicmail/panicmail ============================================================================== --- user/cperciva/panicmail/panicmail Tue Oct 29 09:24:39 2013 (r257321) +++ user/cperciva/panicmail/panicmail Tue Oct 29 09:52:15 2013 (r257322) @@ -59,7 +59,7 @@ panicmail_encrypt() local tmpfile=`mktemp` || exit 1 # Encrypt using pkesh. - pkesh enc $2 ${dumpdir}/panicmail.$1 ${tmpfile} + /usr/local/bin/pkesh enc $2 ${dumpdir}/panicmail.$1 ${tmpfile} # Add extra armour echo "-----ENCRYPTED FREEBSD PANIC DATA STARTS HERE---------------------" > ${dumpdir}/panicmail.$1.enc From owner-svn-src-user@FreeBSD.ORG Tue Oct 29 12:56:21 2013 Return-Path: Delivered-To: svn-src-user@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 EB6B1711; Tue, 29 Oct 2013 12:56:21 +0000 (UTC) (envelope-from pho@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 BF9392497; Tue, 29 Oct 2013 12:56:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9TCuLnY065002; Tue, 29 Oct 2013 12:56:21 GMT (envelope-from pho@svn.freebsd.org) Received: (from pho@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9TCuL0h065001; Tue, 29 Oct 2013 12:56:21 GMT (envelope-from pho@svn.freebsd.org) Message-Id: <201310291256.r9TCuL0h065001@svn.freebsd.org> From: Peter Holm Date: Tue, 29 Oct 2013 12:56:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257331 - user/pho/stress2/misc X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Oct 2013 12:56:22 -0000 Author: pho Date: Tue Oct 29 12:56:21 2013 New Revision: 257331 URL: http://svnweb.freebsd.org/changeset/base/257331 Log: Added missing "fixed in". Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/mmap5.sh Modified: user/pho/stress2/misc/mmap5.sh ============================================================================== --- user/pho/stress2/misc/mmap5.sh Tue Oct 29 12:53:23 2013 (r257330) +++ user/pho/stress2/misc/mmap5.sh Tue Oct 29 12:56:21 2013 (r257331) @@ -30,6 +30,7 @@ # Test scenario inspired by alc@ # "panic: vm_page_dirty: page is invalid!" seen. +# Fixed in r255396. dir=/tmp odir=`pwd` From owner-svn-src-user@FreeBSD.ORG Wed Oct 30 07:51:09 2013 Return-Path: Delivered-To: svn-src-user@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 3FC022D5; Wed, 30 Oct 2013 07:51:09 +0000 (UTC) (envelope-from pho@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 2E8512B3A; Wed, 30 Oct 2013 07:51:09 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9U7p9DL070724; Wed, 30 Oct 2013 07:51:09 GMT (envelope-from pho@svn.freebsd.org) Received: (from pho@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9U7p9dU070723; Wed, 30 Oct 2013 07:51:09 GMT (envelope-from pho@svn.freebsd.org) Message-Id: <201310300751.r9U7p9dU070723@svn.freebsd.org> From: Peter Holm Date: Wed, 30 Oct 2013 07:51:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257374 - user/pho/stress2/misc X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 07:51:09 -0000 Author: pho Date: Wed Oct 30 07:51:08 2013 New Revision: 257374 URL: http://svnweb.freebsd.org/changeset/base/257374 Log: Do not loop forever trying to unmount a busy file system. Detach from the controlling terminal to ignore SIGSTOP. Sponsored by: EMC / Isilon storage division Modified: user/pho/stress2/misc/syscall4.sh Modified: user/pho/stress2/misc/syscall4.sh ============================================================================== --- user/pho/stress2/misc/syscall4.sh Wed Oct 30 06:18:54 2013 (r257373) +++ user/pho/stress2/misc/syscall4.sh Wed Oct 30 07:51:08 2013 (r257374) @@ -1,7 +1,7 @@ #!/bin/sh # -# Copyright (c) 2011 Peter Holm +# Copyright (c) 2011-2013 Peter Holm # All rights reserved. # # Redistribution and use in source and binary forms, with or without @@ -59,17 +59,24 @@ chmod 777 $mntpoint sleeptime=${sleeptime:-12} for i in `jot 10`; do -echo "Loop #$i" (cd $mntpoint; /tmp/syscall4 $* < /dev/null) & - [ $# -eq 1 ] && sleep $sleeptime || sleep 180 - killall -9 syscall4 + [ $# -eq 1 ] && sleep $sleeptime || sleep 120 + killall -9 syscall4 > /dev/null 2>&1 + wait ipcs | awk '/^(q|m|s)/ {print " -" $1, $2}' | xargs -L 1 ipcrm done -while mount | grep $mntpoint | grep -q /dev/md; do - umount $mntpoint || sleep 1 + +for i in `jot 10`; do + mount | grep -q md${mdstart}$part && \ + umount $mntpoint && mdconfig -d -u $mdstart && break + sleep 10 done -mdconfig -d -u $mdstart +if mount | grep -q md${mdstart}$part; then + fstat $mntpoint + echo "umount $mntpoint failed" + exit 1 +fi rm -f /tmp/syscall4 exit EOF @@ -276,6 +283,9 @@ main(int argc, char **argv) errx(0, "syscall #%d is on the ignore list.", syscallno); } + if (daemon(0, 0) == -1) + err(1, "daemon()"); + start = time(NULL); while ((time(NULL) - start) < 120) { if (fork() == 0) { From owner-svn-src-user@FreeBSD.ORG Wed Oct 30 15:25:23 2013 Return-Path: Delivered-To: svn-src-user@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 C261F904; Wed, 30 Oct 2013 15:25:23 +0000 (UTC) (envelope-from ray@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 B0FA22A38; Wed, 30 Oct 2013 15:25: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 r9UFPNpq029614; Wed, 30 Oct 2013 15:25:23 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9UFPNVT029613; Wed, 30 Oct 2013 15:25:23 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310301525.r9UFPNVT029613@svn.freebsd.org> From: Aleksandr Rybalko Date: Wed, 30 Oct 2013 15:25:23 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257387 - user/ed/newcons/sys/dev/vt X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 30 Oct 2013 15:25:23 -0000 Author: ray Date: Wed Oct 30 15:25:23 2013 New Revision: 257387 URL: http://svnweb.freebsd.org/changeset/base/257387 Log: o Remove extra check for status of processes who hold terminals. o Clean up and comment things. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/vt/vt_core.c Modified: user/ed/newcons/sys/dev/vt/vt_core.c ============================================================================== --- user/ed/newcons/sys/dev/vt/vt_core.c Wed Oct 30 14:48:46 2013 (r257386) +++ user/ed/newcons/sys/dev/vt/vt_core.c Wed Oct 30 15:25:23 2013 (r257387) @@ -701,14 +701,12 @@ vt_flush(struct vt_device *vd) static void vt_timer(void *arg) { - struct vt_device *vd = arg; - unsigned int i; + struct vt_device *vd; + vd = arg; + /* Update screen if required. */ vt_flush(vd); - - for (i = 0; i < VT_MAXWINDOWS; i++) - vt_proc_alive(vd->vd_windows[i]); - + /* Schedule for next update. */ callout_schedule(&vd->vd_timer, hz / VT_TIMERFREQ); } From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 06:36:11 2013 Return-Path: Delivered-To: svn-src-user@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 C5F763D8; Thu, 31 Oct 2013 06:36:11 +0000 (UTC) (envelope-from glebius@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 B3F6D233B; Thu, 31 Oct 2013 06:36:11 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V6aBQK056668; Thu, 31 Oct 2013 06:36:11 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V6aBse056666; Thu, 31 Oct 2013 06:36:11 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201310310636.r9V6aBse056666@svn.freebsd.org> From: Gleb Smirnoff Date: Thu, 31 Oct 2013 06:36:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257424 - user/glebius/course/01.intro/module X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 06:36:11 -0000 Author: glebius Date: Thu Oct 31 06:36:11 2013 New Revision: 257424 URL: http://svnweb.freebsd.org/changeset/base/257424 Log: An empty module, that we used to run on the introduction lection. Added: user/glebius/course/01.intro/module/ user/glebius/course/01.intro/module/Makefile (contents, props changed) user/glebius/course/01.intro/module/module.c (contents, props changed) Added: user/glebius/course/01.intro/module/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/01.intro/module/Makefile Thu Oct 31 06:36:11 2013 (r257424) @@ -0,0 +1,4 @@ +KMOD=module +SRCS=module.c + +.include Added: user/glebius/course/01.intro/module/module.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/01.intro/module/module.c Thu Oct 31 06:36:11 2013 (r257424) @@ -0,0 +1,21 @@ +#include +#include +#include +#include + +static int +foo_handler(module_t mod, int what, void *arg) +{ + + printf("demo: %d, %p\n", what, arg); + + return (0); +} + +static moduledata_t mod_data= { + .name = "foo", + .evhand = foo_handler, +}; + +MODULE_VERSION(foo, 1); +DECLARE_MODULE(foo, mod_data, SI_SUB_EXEC, SI_ORDER_ANY); From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 06:36:43 2013 Return-Path: Delivered-To: svn-src-user@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 1963C4BE; Thu, 31 Oct 2013 06:36:43 +0000 (UTC) (envelope-from glebius@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 EB47C2340; Thu, 31 Oct 2013 06:36: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 r9V6agNt056749; Thu, 31 Oct 2013 06:36:42 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V6agJ2056745; Thu, 31 Oct 2013 06:36:42 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201310310636.r9V6agJ2056745@svn.freebsd.org> From: Gleb Smirnoff Date: Thu, 31 Oct 2013 06:36:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257425 - in user/glebius/course/practical: . 01.readstat X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 06:36:43 -0000 Author: glebius Date: Thu Oct 31 06:36:41 2013 New Revision: 257425 URL: http://svnweb.freebsd.org/changeset/base/257425 Log: Results of first practical session. Added: user/glebius/course/practical/ user/glebius/course/practical/01.readstat/ user/glebius/course/practical/01.readstat/Makefile (contents, props changed) user/glebius/course/practical/01.readstat/README user/glebius/course/practical/01.readstat/readstat1.c (contents, props changed) user/glebius/course/practical/README Added: user/glebius/course/practical/01.readstat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/practical/01.readstat/Makefile Thu Oct 31 06:36:41 2013 (r257425) @@ -0,0 +1,4 @@ +KMOD=readstat +SRCS=readstat.c + +.include Added: user/glebius/course/practical/01.readstat/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/practical/01.readstat/README Thu Oct 31 06:36:41 2013 (r257425) @@ -0,0 +1,69 @@ +"readstat" does the following: + +1) Intercepts an important syscall. We used read(2) and this seems fine, + but we can use any widely used syscall. +2) Accumulates statistics on which processes called the syscall and + with which arguments. + +The readstat1.c is the state that can be achieved during one academical +hour (experimentally proved!). + +We start coding together with students, starting with 01.intro/module/module.c, +and step by step enhance the code, discussing every step. For future lecturers +I'd suggest to do the same and do not use my readstat1.c as reference, +otherwise you can just type everything in too fast and not clear to students. + +Coding readstat1.c requires that students are familiar with the following: + +module(9) +sysent vector (lection 02.entering_kernel) +struct td, struct proc (lection 03.processes&threads) +queue(3) +tree(3) +mutex(9) +malloc(9) + +(1) Start with 01.intro/module/module.c, and make it simply intercept syscall. + At this step chances that students can code theirselves is pretty low, so + you have to do it yourself. You have to explain where did you get all the + symbol names and constants. Open kern/init_sysent.c, sys/sysproto.h, etc. + Run kgdb before and after module is loaded. + (kgdb) p sysent[3] + +(2) Include and initialize RB tree. + +(3) Discuss reentrability of syscall and whether the tree should be protected. + Now it is probably time to pass access to file to a student and watch(8) + her or him. Add static mutex, initialize/destroy it in module evhand. + +(4) Ask students on how can we obtain process name in interceptor. Let them + dictate you, or code theirselves. Ask/explain: + - Do we need any locking to read process name? + - Why do we strcpy() the name and not point to it from struct node? + - How do we use a libc function here? + +(4) Code RB find/insertion in the interceptor. We started with + + if (RB_FIND) { + + } else { + RB_INSERT() + } + + But thanks to students who have read tree(3) quickly, we ended with + a more optimal code. + +(5) Now we do insert entries into tree and come to malloc(). Let's do not + initialize LIST(3) in nodes, just gather process names. + Ask/explain: + - Which wait flag to use with malloc() and why? + - Is there any ways to make interceptor more robust and not use M_NOWAIT. + +(6) Compile and run it. + (kgdb) p readstat + ... further kgdb investigation of tree ... + +(7) Initialize mutex and LIST in entry. Code interlocking between the tree lock + and a node lock. Gather stats. + +(8) Compile and run it. Traverse tree in kgdb. Added: user/glebius/course/practical/01.readstat/readstat1.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/practical/01.readstat/readstat1.c Thu Oct 31 06:36:41 2013 (r257425) @@ -0,0 +1,115 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +static struct mtx tree_mtx; +static int (*original_read)(struct thread *, void *); + +struct elm { + LIST_ENTRY(elm) entry; + size_t size; + u_int count; +}; + +struct node { + RB_ENTRY(node) tree; + LIST_HEAD(,elm) elms; + struct mtx list_mtx; + char name[MAXCOMLEN+1]; +}; + +static int +node_compare(struct node *a, struct node *b) +{ + + return (strcmp(a->name, b->name)); +} + +static RB_HEAD(head, node) readstat = RB_INITIALIZER(&readstat); +static RB_PROTOTYPE(head, node, tree, node_compare); +static RB_GENERATE(head, node, tree, node_compare); + +static MALLOC_DEFINE(M_LEAF, "rsnode", "read stat node"); +static MALLOC_DEFINE(M_ELM, "rselm", "read stat element"); + +static int +stat_read(struct thread *td, void *v) +{ + struct read_args *uap = (struct read_args *)v; + struct node *key, *node; + struct elm *elm, *elm0; + + key = malloc(sizeof(*node), M_LEAF, M_WAITOK | M_ZERO); + mtx_init(&key->list_mtx, "list lock", NULL, MTX_DEF); + LIST_INIT(&key->elms); + + elm0 = malloc(sizeof(*elm), M_ELM, M_WAITOK | M_ZERO); + + strcpy(key->name, td->td_proc->p_comm); + + mtx_lock(&tree_mtx); + node = RB_INSERT(head, &readstat, key); + if (node == NULL) + node = key; + mtx_lock(&node->list_mtx); + mtx_unlock(&tree_mtx); + + if (node != key) { + mtx_destroy(&key->list_mtx); + free(key, M_LEAF); + } + + LIST_FOREACH(elm, &node->elms, entry) + if (uap->nbyte == elm->size) + break; + if (elm == NULL) { + elm = elm0; + LIST_INSERT_HEAD(&node->elms, elm, entry); + elm->size = uap->nbyte; + } else + free(elm0, M_ELM); + + elm->count++; + + mtx_unlock(&node->list_mtx); + + return (original_read(td, v)); +} + +static int +readstat_load(module_t mod, int what, void *arg) +{ + + switch (what) { + case MOD_LOAD: + mtx_init(&tree_mtx, "tree lock", NULL, MTX_DEF); + original_read = sysent[SYS_read].sy_call; + sysent[SYS_read].sy_call = stat_read; + break; + case MOD_UNLOAD: + sysent[SYS_read].sy_call = original_read; + mtx_destroy(&tree_mtx); + break; + } + + return (0); +} + +static moduledata_t mod_data= { + .name = "readstat", + .evhand = readstat_load, +}; + +MODULE_VERSION(readstat, 1); +DECLARE_MODULE(readstat, mod_data, SI_SUB_EXEC, SI_ORDER_ANY); Added: user/glebius/course/practical/README ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/glebius/course/practical/README Thu Oct 31 06:36:41 2013 (r257425) @@ -0,0 +1,25 @@ +/* This README and all in underlying directories are just glebius' braindumps + that some day can be reformatted to a better notes. */ + +All practical sessions require a shell box shared between lecturer and +students. I use dedicated FreeBSD-CURRENT instance under bhyve. All +students are provided shell and superuser there. Students are encouraged +to run things on their own boxes or VMs, but shared shellbox is always +available. + +Problems(bhyve): +- It is impossible to share kernel debugger console to students, it requires + root on host. So only lecturer can work once VM goes into ddb. +- Sometimes when VM enters ddb, the bhyve process exits. + +During entire practical session the beamer displays my terminal. I use +Xterm running fullscreen w/o any widgets and using +x11-fonts/inconsolata-lgc-ttf font. I encourage students to do some steps +theirselves, in these cases I use watch(8) on students' tty to intercept +it and make viewable by everyone on beamer. + +Problems: +- If watch(8) a terminal that is bigger than yours, you got a mess on + screen (and on beamer, too!). +- Modules should be build with DEBUG_FLAGS=-g knob, so that any kgdb + session display their symbols. This secret knowledge isn't documented :( From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 09:44:49 2013 Return-Path: Delivered-To: svn-src-user@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 8BCA83BF; Thu, 31 Oct 2013 09:44:49 +0000 (UTC) (envelope-from ray@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 5F6212DD9; Thu, 31 Oct 2013 09:44:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9V9inVh022083; Thu, 31 Oct 2013 09:44:49 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9V9im7k022079; Thu, 31 Oct 2013 09:44:48 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310310944.r9V9im7k022079@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 31 Oct 2013 09:44:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257431 - in user/ed/newcons/sys: kern teken X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 09:44:49 -0000 Author: ray Date: Thu Oct 31 09:44:48 2013 New Revision: 257431 URL: http://svnweb.freebsd.org/changeset/base/257431 Log: Add teken_subr_do_resize new method, to update taken sizes w/o reset positions and use it in case we update terminal size not touching existing data. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/kern/subr_terminal.c user/ed/newcons/sys/teken/teken.c user/ed/newcons/sys/teken/teken.h user/ed/newcons/sys/teken/teken_subr.h Modified: user/ed/newcons/sys/kern/subr_terminal.c ============================================================================== --- user/ed/newcons/sys/kern/subr_terminal.c Thu Oct 31 09:29:37 2013 (r257430) +++ user/ed/newcons/sys/kern/subr_terminal.c Thu Oct 31 09:44:48 2013 (r257431) @@ -201,11 +201,7 @@ terminal_set_winsize_blank(struct termin TERMINAL_LOCK(tm); if (blank == 0) - /* - * Assigned directly, to avoid terminal reset in the - * teken_set_winsize. - */ - tm->tm_emulator.t_winsize = r.tr_end; + teken_set_winsize_noreset(&tm->tm_emulator, &r.tr_end); else teken_set_winsize(&tm->tm_emulator, &r.tr_end); TERMINAL_UNLOCK(tm); Modified: user/ed/newcons/sys/teken/teken.c ============================================================================== --- user/ed/newcons/sys/teken/teken.c Thu Oct 31 09:29:37 2013 (r257430) +++ user/ed/newcons/sys/teken/teken.c Thu Oct 31 09:44:48 2013 (r257431) @@ -347,6 +347,14 @@ teken_set_winsize(teken_t *t, const teke } void +teken_set_winsize_noreset(teken_t *t, const teken_pos_t *p) +{ + + t->t_winsize = *p; + teken_subr_do_resize(t); +} + +void teken_set_8bit(teken_t *t) { Modified: user/ed/newcons/sys/teken/teken.h ============================================================================== --- user/ed/newcons/sys/teken/teken.h Thu Oct 31 09:29:37 2013 (r257430) +++ user/ed/newcons/sys/teken/teken.h Thu Oct 31 09:44:48 2013 (r257431) @@ -168,6 +168,7 @@ void teken_set_cursor(teken_t *, const t void teken_set_curattr(teken_t *, const teken_attr_t *); void teken_set_defattr(teken_t *, const teken_attr_t *); void teken_set_winsize(teken_t *, const teken_pos_t *); +void teken_set_winsize_noreset(teken_t *, const teken_pos_t *); /* Key input escape sequences. */ #define TKEY_UP 0x00 Modified: user/ed/newcons/sys/teken/teken_subr.h ============================================================================== --- user/ed/newcons/sys/teken/teken_subr.h Thu Oct 31 09:29:37 2013 (r257430) +++ user/ed/newcons/sys/teken/teken_subr.h Thu Oct 31 09:44:48 2013 (r257431) @@ -956,6 +956,15 @@ teken_subr_reset_mode(teken_t *t, unsign } static void +teken_subr_do_resize(teken_t *t) +{ + + t->t_scrollreg.ts_begin = 0; + t->t_scrollreg.ts_end = t->t_winsize.tp_row; + t->t_originreg = t->t_scrollreg; +} + +static void teken_subr_do_reset(teken_t *t) { From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 09:50:01 2013 Return-Path: Delivered-To: svn-src-user@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 A44626B0; Thu, 31 Oct 2013 09:50:01 +0000 (UTC) (envelope-from ray@freebsd.org) Received: from smtp.dlink.ua (smtp.dlink.ua [193.138.187.146]) by mx1.freebsd.org (Postfix) with ESMTP id 5EEBF2E28; Thu, 31 Oct 2013 09:50:01 +0000 (UTC) Received: from terran (unknown [192.168.99.1]) (Authenticated sender: ray) by smtp.dlink.ua (Postfix) with ESMTPA id E1835C4955; Thu, 31 Oct 2013 11:49:53 +0200 (EET) Date: Thu, 31 Oct 2013 11:50:07 +0200 From: Aleksandr Rybalko To: Aleksandr Rybalko Subject: Re: svn commit: r257431 - in user/ed/newcons/sys: kern teken Message-Id: <20131031115007.a989e91b4bc7ef0b14764469@freebsd.org> In-Reply-To: <201310310944.r9V9im7k022079@svn.freebsd.org> References: <201310310944.r9V9im7k022079@svn.freebsd.org> X-Mailer: Sylpheed 3.2.0 (GTK+ 2.24.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: src-committers@freebsd.org, svn-src-user@freebsd.org X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 09:50:01 -0000 On Thu, 31 Oct 2013 09:44:48 +0000 (UTC) Aleksandr Rybalko wrote: > Author: ray > Date: Thu Oct 31 09:44:48 2013 > New Revision: 257431 > URL: http://svnweb.freebsd.org/changeset/base/257431 > > Log: > Add teken_subr_do_resize new method, to update taken sizes w/o reset positions > and use it in case we update terminal size not touching existing data. Oops, should be about teken_set_winsize_noreset. teken_subr_do_resize added to, but it is teken internal. > > Sponsored by: The FreeBSD Foundation > > Modified: > user/ed/newcons/sys/kern/subr_terminal.c > user/ed/newcons/sys/teken/teken.c > user/ed/newcons/sys/teken/teken.h > user/ed/newcons/sys/teken/teken_subr.h > -- Aleksandr Rybalko From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 11:51:19 2013 Return-Path: Delivered-To: svn-src-user@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 116F0342; Thu, 31 Oct 2013 11:51:19 +0000 (UTC) (envelope-from ray@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 F35B02629; Thu, 31 Oct 2013 11:51:18 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VBpIoN066160; Thu, 31 Oct 2013 11:51:18 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VBpIxf066158; Thu, 31 Oct 2013 11:51:18 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310311151.r9VBpIxf066158@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 31 Oct 2013 11:51:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257437 - in user/ed/newcons/sys: conf dev/fb X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 11:51:19 -0000 Author: ray Date: Thu Oct 31 11:51:18 2013 New Revision: 257437 URL: http://svnweb.freebsd.org/changeset/base/257437 Log: Define fb newbus interface to connect framebuffer providers with fbd. Sponsored by: The FreeBSD Foundation Added: user/ed/newcons/sys/dev/fb/fb_if.m Modified: user/ed/newcons/sys/conf/files Modified: user/ed/newcons/sys/conf/files ============================================================================== --- user/ed/newcons/sys/conf/files Thu Oct 31 11:38:25 2013 (r257436) +++ user/ed/newcons/sys/conf/files Thu Oct 31 11:51:18 2013 (r257437) @@ -1400,6 +1400,7 @@ dev/ex/if_ex_pccard.c optional ex pccar dev/exca/exca.c optional cbb dev/fatm/if_fatm.c optional fatm pci dev/fb/fbd.c optional fbd | vt +dev/fb/fb_if.m optional fbd | vt dev/fb/splash.c optional splash dev/fdt/fdt_common.c optional fdt dev/fdt/fdt_ic_if.m optional fdt Added: user/ed/newcons/sys/dev/fb/fb_if.m ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/ed/newcons/sys/dev/fb/fb_if.m Thu Oct 31 11:51:18 2013 (r257437) @@ -0,0 +1,13 @@ +#include +#include + +INTERFACE fb; + +METHOD int pin_max { + device_t dev; + int *npins; +}; + +METHOD struct fb_info * getinfo { + device_t dev; +}; From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 11:56:04 2013 Return-Path: Delivered-To: svn-src-user@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 A6E76565; Thu, 31 Oct 2013 11:56:04 +0000 (UTC) (envelope-from ray@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 7D37A264D; Thu, 31 Oct 2013 11:56:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VBu4hv066837; Thu, 31 Oct 2013 11:56:04 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VBu4SU066836; Thu, 31 Oct 2013 11:56:04 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310311156.r9VBu4SU066836@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 31 Oct 2013 11:56:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257438 - user/ed/newcons/sys/dev/fb X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 11:56:04 -0000 Author: ray Date: Thu Oct 31 11:56:03 2013 New Revision: 257438 URL: http://svnweb.freebsd.org/changeset/base/257438 Log: Allow fbd to be attached as newbus device. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/fb/fbd.c Modified: user/ed/newcons/sys/dev/fb/fbd.c ============================================================================== --- user/ed/newcons/sys/dev/fb/fbd.c Thu Oct 31 11:51:18 2013 (r257437) +++ user/ed/newcons/sys/dev/fb/fbd.c Thu Oct 31 11:56:03 2013 (r257438) @@ -38,13 +38,20 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include #include +#include #include #include + +#include + #include +#include "fb_if.h" + LIST_HEAD(fb_list_head_t, fb_list_entry) fb_list_head = LIST_HEAD_INITIALIZER(fb_list_head); struct fb_list_entry { @@ -53,6 +60,11 @@ struct fb_list_entry { LIST_ENTRY(fb_list_entry) fb_list; }; +struct fbd_softc { + device_t sc_dev; + struct fb_info *sc_info; +}; + static void fbd_evh_init(void *); /* SI_ORDER_SECOND, just after EVENTHANDLERs initialized. */ SYSINIT(fbd_evh_init, SI_SUB_CONFIGURE, SI_ORDER_SECOND, fbd_evh_init, NULL); @@ -341,3 +353,65 @@ fbd_evh_init(void *ctx) EVENTHANDLER_REGISTER(unregister_framebuffer, unregister_fb_wrap, NULL, EVENTHANDLER_PRI_ANY); } + +/* Newbus methods. */ +static int +fbd_probe(device_t dev) +{ + + return (BUS_PROBE_NOWILDCARD); +} + +static int +fbd_attach(device_t dev) +{ + struct fbd_softc *sc; + int err; + + sc = device_get_softc(dev); + + sc->sc_dev = dev; + sc->sc_info = FB_GETINFO(device_get_parent(dev)); + err = fbd_register(sc->sc_info); + + return (err); +} + +static int +fbd_detach(device_t dev) +{ + struct fbd_softc *sc; + int err; + + sc = device_get_softc(dev); + + err = fbd_unregister(sc->sc_info); + + return (err); +} + + +static device_method_t fbd_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, fbd_probe), + DEVMETHOD(device_attach, fbd_attach), + DEVMETHOD(device_detach, fbd_detach), + + DEVMETHOD(device_shutdown, bus_generic_shutdown), + DEVMETHOD(device_suspend, bus_generic_suspend), + DEVMETHOD(device_resume, bus_generic_resume), + + { 0, 0 } +}; + +driver_t fbd_driver = { + "fbd", + fbd_methods, + sizeof(struct fbd_softc) +}; + +devclass_t fbd_devclass; + +DRIVER_MODULE(fbd, fb, fbd_driver, fbd_devclass, 0, 0); +MODULE_VERSION(fbd, 1); + From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 11:59:04 2013 Return-Path: Delivered-To: svn-src-user@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 D296479F; Thu, 31 Oct 2013 11:59:04 +0000 (UTC) (envelope-from ray@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 A76E6267D; Thu, 31 Oct 2013 11:59:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VBx4xC067185; Thu, 31 Oct 2013 11:59:04 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VBx4JM067184; Thu, 31 Oct 2013 11:59:04 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310311159.r9VBx4JM067184@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 31 Oct 2013 11:59:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257439 - user/ed/newcons/sys/arm/freescale/imx X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 11:59:04 -0000 Author: ray Date: Thu Oct 31 11:59:04 2013 New Revision: 257439 URL: http://svnweb.freebsd.org/changeset/base/257439 Log: o Add fb_getinfo method. o Attach fbd. o Comments other possible ways to attach fbd. (Should be moved to man page). Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/arm/freescale/imx/imx51_ipuv3_newcons.c Modified: user/ed/newcons/sys/arm/freescale/imx/imx51_ipuv3_newcons.c ============================================================================== --- user/ed/newcons/sys/arm/freescale/imx/imx51_ipuv3_newcons.c Thu Oct 31 11:56:03 2013 (r257438) +++ user/ed/newcons/sys/arm/freescale/imx/imx51_ipuv3_newcons.c Thu Oct 31 11:59:04 2013 (r257439) @@ -72,11 +72,14 @@ __FBSDID("$FreeBSD$"); #include +#include "fb_if.h" + #define IMX51_IPU_HSP_CLOCK 665000000 #define IPU3FB_FONT_HEIGHT 16 struct ipu3sc_softc { device_t dev; + device_t sc_fbd; /* fbd child */ struct fb_info sc_info; bus_space_tag_t iot; @@ -309,9 +312,20 @@ ipu3_fb_attach(device_t dev) ipu3_fb_init_cmap(sc->sc_info.fb_cmap, sc->sc_info.fb_depth); sc->sc_info.fb_cmsize = 16; + /* XXX: Should be moved into man page. */ +#ifdef USE_EVENTHANDLER_TO_ATTACH_FB EVENTHANDLER_INVOKE(register_framebuffer, &sc->sc_info); +#endif - return (0); +#ifdef USE_DIRECT_CALL_TO_ATTACH_FB + fbd_register(&sc->sc_info) +#endif + /* Ask newbus to attach framebuffer device to me. */ + sc->sc_fbd = device_add_child(dev, "fbd", device_get_unit(dev)); + if (sc->sc_fbd == NULL) + device_printf(dev, "Can't attach fbd device\n"); + + return (bus_generic_attach(dev)); fail_retarn_dctmpl: bus_space_unmap(sc->iot, sc->cpmem_ioh, IPU_CPMEM_SIZE); @@ -335,11 +349,21 @@ fail_retarn_cm: return (err); } +static struct fb_info * +ipu3_fb_getinfo(device_t dev) +{ + struct ipu3sc_softc *sc = device_get_softc(dev); + + return (&sc->sc_info); +} + static device_method_t ipu3_fb_methods[] = { /* Device interface */ DEVMETHOD(device_probe, ipu3_fb_probe), DEVMETHOD(device_attach, ipu3_fb_attach), + /* Framebuffer service methods */ + DEVMETHOD(fb_getinfo, ipu3_fb_getinfo), { 0, 0 } }; @@ -351,4 +375,4 @@ static driver_t ipu3_fb_driver = { sizeof(struct ipu3sc_softc), }; -DRIVER_MODULE(ipu3fb, simplebus, ipu3_fb_driver, ipu3_fb_devclass, 0, 0); +DRIVER_MODULE(fb, simplebus, ipu3_fb_driver, ipu3_fb_devclass, 0, 0); From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 12:50:49 2013 Return-Path: Delivered-To: svn-src-user@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 2E6DBB3F; Thu, 31 Oct 2013 12:50:49 +0000 (UTC) (envelope-from andre@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 02A3329EC; Thu, 31 Oct 2013 12:50:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VComlH086834; Thu, 31 Oct 2013 12:50:48 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VComkT086833; Thu, 31 Oct 2013 12:50:48 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201310311250.r9VComkT086833@svn.freebsd.org> From: Andre Oppermann Date: Thu, 31 Oct 2013 12:50:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257441 - user/andre/mbuf_staging/net X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 12:50:49 -0000 Author: andre Date: Thu Oct 31 12:50:48 2013 New Revision: 257441 URL: http://svnweb.freebsd.org/changeset/base/257441 Log: Remove local net/ifq.h for upcoming integrate from HEAD. Deleted: user/andre/mbuf_staging/net/ifq.h From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 12:59:32 2013 Return-Path: Delivered-To: svn-src-user@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 404F3F76; Thu, 31 Oct 2013 12:59:32 +0000 (UTC) (envelope-from andre@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 2A3392A52; Thu, 31 Oct 2013 12:59:32 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VCxW8V088184; Thu, 31 Oct 2013 12:59:32 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VCxQHb088149; Thu, 31 Oct 2013 12:59:26 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201310311259.r9VCxQHb088149@svn.freebsd.org> From: Andre Oppermann Date: Thu, 31 Oct 2013 12:59:26 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257443 - in user/andre/mbuf_staging: amd64/amd64 amd64/conf amd64/vmm amd64/vmm/intel amd64/vmm/io arm/arm arm/at91 arm/conf arm/econa arm/freescale/imx arm/include arm/lpc arm/mv arm/... X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 12:59:32 -0000 Author: andre Date: Thu Oct 31 12:59:25 2013 New Revision: 257443 URL: http://svnweb.freebsd.org/changeset/base/257443 Log: IFC @257441. Added: user/andre/mbuf_staging/arm/freescale/imx/imx_nop_usbphy.c - copied unchanged from r257441, head/sys/arm/freescale/imx/imx_nop_usbphy.c user/andre/mbuf_staging/net/ifq.h - copied unchanged from r257441, head/sys/net/ifq.h user/andre/mbuf_staging/x86/iommu/ - copied from r257441, head/sys/x86/iommu/ Deleted: user/andre/mbuf_staging/modules/netgraph/fec/ user/andre/mbuf_staging/netgraph/ng_fec.c user/andre/mbuf_staging/netgraph/ng_fec.h Modified: user/andre/mbuf_staging/amd64/amd64/trap.c user/andre/mbuf_staging/amd64/conf/GENERIC user/andre/mbuf_staging/amd64/conf/NOTES user/andre/mbuf_staging/amd64/vmm/intel/vmcs.c user/andre/mbuf_staging/amd64/vmm/intel/vmx.c user/andre/mbuf_staging/amd64/vmm/intel/vmx_genassym.c user/andre/mbuf_staging/amd64/vmm/intel/vtd.c user/andre/mbuf_staging/amd64/vmm/io/vlapic.c user/andre/mbuf_staging/amd64/vmm/vmm.c user/andre/mbuf_staging/amd64/vmm/vmm_dev.c user/andre/mbuf_staging/amd64/vmm/vmm_instruction_emul.c user/andre/mbuf_staging/amd64/vmm/vmm_ktr.h user/andre/mbuf_staging/arm/arm/cpufunc.c user/andre/mbuf_staging/arm/arm/cpufunc_asm_pj4b.S user/andre/mbuf_staging/arm/arm/gic.c user/andre/mbuf_staging/arm/arm/identcpu.c user/andre/mbuf_staging/arm/arm/locore.S user/andre/mbuf_staging/arm/arm/mp_machdep.c user/andre/mbuf_staging/arm/at91/at91.c user/andre/mbuf_staging/arm/at91/if_ate.c user/andre/mbuf_staging/arm/conf/DIGI-CCWMX53 user/andre/mbuf_staging/arm/econa/econa.c user/andre/mbuf_staging/arm/econa/if_ece.c user/andre/mbuf_staging/arm/freescale/imx/files.imx51 user/andre/mbuf_staging/arm/freescale/imx/files.imx53 user/andre/mbuf_staging/arm/freescale/imx/imx51_ccm.c user/andre/mbuf_staging/arm/freescale/imx/imx51_ccmreg.h user/andre/mbuf_staging/arm/freescale/imx/imx_gpt.c user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h user/andre/mbuf_staging/arm/freescale/imx/tzic.c user/andre/mbuf_staging/arm/include/armreg.h user/andre/mbuf_staging/arm/include/cpufunc.h user/andre/mbuf_staging/arm/include/pmap.h user/andre/mbuf_staging/arm/lpc/if_lpe.c user/andre/mbuf_staging/arm/mv/armadaxp/std.armadaxp user/andre/mbuf_staging/arm/mv/common.c user/andre/mbuf_staging/arm/mv/mv_machdep.c user/andre/mbuf_staging/arm/s3c2xx0/s3c24x0.c user/andre/mbuf_staging/arm/sa11x0/sa11x0.c user/andre/mbuf_staging/arm/ti/cpsw/if_cpsw.c user/andre/mbuf_staging/arm/versatile/if_smc_fdt.c user/andre/mbuf_staging/arm/xscale/i80321/iq80321.c user/andre/mbuf_staging/arm/xscale/ixp425/if_npe.c user/andre/mbuf_staging/arm/xscale/pxa/if_smc_smi.c user/andre/mbuf_staging/arm/xscale/pxa/pxa_obio.c user/andre/mbuf_staging/boot/fdt/dts/digi-ccwmx53.dts user/andre/mbuf_staging/boot/fdt/dts/efikamx.dts user/andre/mbuf_staging/boot/fdt/dts/imx51x.dtsi user/andre/mbuf_staging/boot/fdt/dts/imx53-qsb.dts user/andre/mbuf_staging/boot/fdt/dts/imx53x.dtsi user/andre/mbuf_staging/boot/forth/loader.conf user/andre/mbuf_staging/cam/cam.h user/andre/mbuf_staging/cam/cam_xpt.c user/andre/mbuf_staging/cam/scsi/scsi_xpt.c user/andre/mbuf_staging/cddl/dev/dtrace/amd64/dtrace_subr.c user/andre/mbuf_staging/compat/svr4/svr4_sockio.c user/andre/mbuf_staging/conf/Makefile.arm user/andre/mbuf_staging/conf/NOTES user/andre/mbuf_staging/conf/files user/andre/mbuf_staging/conf/files.amd64 user/andre/mbuf_staging/conf/files.i386 user/andre/mbuf_staging/conf/options user/andre/mbuf_staging/contrib/ipfilter/netinet/radix_ipf.c user/andre/mbuf_staging/dev/acpica/acpi.c user/andre/mbuf_staging/dev/acpica/acpi_pci.c user/andre/mbuf_staging/dev/adb/adb_kbd.c user/andre/mbuf_staging/dev/altera/atse/if_atse_fdt.c user/andre/mbuf_staging/dev/altera/atse/if_atse_nexus.c user/andre/mbuf_staging/dev/altera/avgen/altera_avgen_nexus.c user/andre/mbuf_staging/dev/altera/jtag_uart/altera_jtag_uart_nexus.c user/andre/mbuf_staging/dev/altera/sdcard/altera_sdcard_nexus.c user/andre/mbuf_staging/dev/arcmsr/arcmsr.c user/andre/mbuf_staging/dev/asr/asr.c user/andre/mbuf_staging/dev/ath/if_ath_ahb.c user/andre/mbuf_staging/dev/ath/if_ath_tx.c user/andre/mbuf_staging/dev/bce/if_bce.c user/andre/mbuf_staging/dev/cesa/cesa.c user/andre/mbuf_staging/dev/cfe/cfe_resource.c user/andre/mbuf_staging/dev/cm/if_cm_isa.c user/andre/mbuf_staging/dev/cs/if_cs_isa.c user/andre/mbuf_staging/dev/cs/if_cs_pccard.c user/andre/mbuf_staging/dev/cs/if_csvar.h user/andre/mbuf_staging/dev/cxgbe/tom/t4_connect.c user/andre/mbuf_staging/dev/ep/if_ep_mca.c user/andre/mbuf_staging/dev/etherswitch/arswitch/arswitch.c user/andre/mbuf_staging/dev/etherswitch/arswitch/arswitch_phy.c user/andre/mbuf_staging/dev/etherswitch/arswitch/arswitch_vlans.c user/andre/mbuf_staging/dev/etherswitch/miiproxy.c user/andre/mbuf_staging/dev/etherswitch/rtl8366/rtl8366rb.c user/andre/mbuf_staging/dev/etherswitch/ukswitch/ukswitch.c user/andre/mbuf_staging/dev/firewire/sbp.c user/andre/mbuf_staging/dev/gxemul/disk/gxemul_disk.c user/andre/mbuf_staging/dev/gxemul/ether/if_gx.c user/andre/mbuf_staging/dev/hme/if_hme_sbus.c user/andre/mbuf_staging/dev/hptiop/hptiop.c user/andre/mbuf_staging/dev/hyperv/netvsc/hv_netvsc_drv_freebsd.c user/andre/mbuf_staging/dev/hyperv/vmbus/hv_vmbus_drv_freebsd.c user/andre/mbuf_staging/dev/ie/if_ie_isa.c user/andre/mbuf_staging/dev/ipmi/ipmi.c user/andre/mbuf_staging/dev/iscsi_initiator/isc_cam.c user/andre/mbuf_staging/dev/isp/isp_freebsd.c user/andre/mbuf_staging/dev/isp/isp_freebsd.h user/andre/mbuf_staging/dev/iwn/if_iwn.c user/andre/mbuf_staging/dev/le/if_le_ledma.c user/andre/mbuf_staging/dev/mii/miidevs user/andre/mbuf_staging/dev/mii/rgephy.c user/andre/mbuf_staging/dev/mps/mps_sas.c user/andre/mbuf_staging/dev/mpt/mpt_cam.c user/andre/mbuf_staging/dev/pdq/if_fea.c user/andre/mbuf_staging/dev/re/if_re.c user/andre/mbuf_staging/dev/rt/if_rt.c user/andre/mbuf_staging/dev/sbni/if_sbni_isa.c user/andre/mbuf_staging/dev/snc/dp83932.c user/andre/mbuf_staging/dev/snc/if_snc.c user/andre/mbuf_staging/dev/snc/if_snc_pccard.c user/andre/mbuf_staging/dev/terasic/de4led/terasic_de4led_nexus.c user/andre/mbuf_staging/dev/terasic/mtl/terasic_mtl_nexus.c user/andre/mbuf_staging/dev/tsec/if_tsec_fdt.c user/andre/mbuf_staging/dev/twa/tw_osl_cam.c user/andre/mbuf_staging/dev/usb/controller/ehci_imx.c user/andre/mbuf_staging/dev/usb/storage/umass.c user/andre/mbuf_staging/dev/usb/usbdevs user/andre/mbuf_staging/dev/usb/wlan/if_run.c user/andre/mbuf_staging/dev/usb/wlan/if_runreg.h user/andre/mbuf_staging/dev/vx/if_vx_eisa.c user/andre/mbuf_staging/dev/wds/wd7000.c user/andre/mbuf_staging/dev/xen/console/console.c user/andre/mbuf_staging/dev/xen/netback/netback.c user/andre/mbuf_staging/dev/xen/netfront/netfront.c user/andre/mbuf_staging/dev/xen/pcifront/pcifront.c user/andre/mbuf_staging/dev/xen/timer/timer.c user/andre/mbuf_staging/i386/conf/NOTES user/andre/mbuf_staging/i386/i386/bpf_jit_machdep.c user/andre/mbuf_staging/i386/i386/trap.c user/andre/mbuf_staging/mips/adm5120/if_admsw.c user/andre/mbuf_staging/mips/adm5120/obio.c user/andre/mbuf_staging/mips/alchemy/obio.c user/andre/mbuf_staging/mips/atheros/apb.c user/andre/mbuf_staging/mips/atheros/ar71xx_ehci.c user/andre/mbuf_staging/mips/atheros/ar71xx_pci.c user/andre/mbuf_staging/mips/atheros/ar71xx_spi.c user/andre/mbuf_staging/mips/atheros/ar71xx_wdog.c user/andre/mbuf_staging/mips/atheros/ar724x_pci.c user/andre/mbuf_staging/mips/atheros/if_arge.c user/andre/mbuf_staging/mips/cavium/ciu.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-common.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-mdio.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-mem.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-rgmii.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-rx.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-sgmii.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-spi.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-tx.c user/andre/mbuf_staging/mips/cavium/octe/ethernet-xaui.c user/andre/mbuf_staging/mips/cavium/octe/ethernet.c user/andre/mbuf_staging/mips/cavium/octeon_ebt3000_cf.c user/andre/mbuf_staging/mips/cavium/octeon_pmc.c user/andre/mbuf_staging/mips/cavium/octeon_rnd.c user/andre/mbuf_staging/mips/cavium/octeon_rtc.c user/andre/mbuf_staging/mips/idt/if_kr.c user/andre/mbuf_staging/mips/idt/obio.c user/andre/mbuf_staging/mips/malta/gt.c user/andre/mbuf_staging/mips/mips/tick.c user/andre/mbuf_staging/mips/mips/trap.c user/andre/mbuf_staging/mips/nlm/dev/net/xlpge.c user/andre/mbuf_staging/mips/nlm/tick.c user/andre/mbuf_staging/mips/nlm/xlp_pci.c user/andre/mbuf_staging/mips/rmi/dev/nlge/if_nlge.c user/andre/mbuf_staging/mips/rmi/iodi.c user/andre/mbuf_staging/mips/rmi/tick.c user/andre/mbuf_staging/mips/rt305x/obio.c user/andre/mbuf_staging/mips/sibyte/sb_zbbus.c user/andre/mbuf_staging/modules/netgraph/Makefile user/andre/mbuf_staging/net/bpf.h user/andre/mbuf_staging/net/if_clone.h user/andre/mbuf_staging/net/if_var.h user/andre/mbuf_staging/net/if_vlan_var.h user/andre/mbuf_staging/net80211/ieee80211_alq.c user/andre/mbuf_staging/net80211/ieee80211_amrr.c user/andre/mbuf_staging/net80211/ieee80211_superg.c user/andre/mbuf_staging/netinet/in_mcast.c user/andre/mbuf_staging/netinet/in_var.h user/andre/mbuf_staging/netinet/sctp_pcb.c user/andre/mbuf_staging/netinet/sctp_timer.c user/andre/mbuf_staging/netinet/sctp_usrreq.c user/andre/mbuf_staging/netpfil/pf/pf.c user/andre/mbuf_staging/pci/if_rlreg.h user/andre/mbuf_staging/powerpc/aim/trap.c user/andre/mbuf_staging/powerpc/ps3/if_glc.c user/andre/mbuf_staging/powerpc/pseries/phyp_llan.c user/andre/mbuf_staging/powerpc/pseries/phyp_vscsi.c user/andre/mbuf_staging/powerpc/pseries/plpar_iommu.c user/andre/mbuf_staging/sys/dtrace_bsd.h user/andre/mbuf_staging/sys/eventhandler.h user/andre/mbuf_staging/sys/mount.h user/andre/mbuf_staging/x86/include/busdma_impl.h user/andre/mbuf_staging/x86/include/trap.h Directory Properties: user/andre/mbuf_staging/ (props changed) user/andre/mbuf_staging/amd64/vmm/ (props changed) user/andre/mbuf_staging/boot/ (props changed) user/andre/mbuf_staging/conf/ (props changed) user/andre/mbuf_staging/contrib/ipfilter/ (props changed) user/andre/mbuf_staging/dev/hyperv/ (props changed) Modified: user/andre/mbuf_staging/amd64/amd64/trap.c ============================================================================== --- user/andre/mbuf_staging/amd64/amd64/trap.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/amd64/trap.c Thu Oct 31 12:59:25 2013 (r257443) @@ -114,9 +114,8 @@ dtrace_doubletrap_func_t dtrace_doubletr systrace_probe_func_t systrace_probe_func; /* - * These hooks are necessary for the pid, usdt and fasttrap providers. + * These hooks are necessary for the pid and usdt providers. */ -dtrace_fasttrap_probe_ptr_t dtrace_fasttrap_probe_ptr; dtrace_pid_probe_ptr_t dtrace_pid_probe_ptr; dtrace_return_probe_ptr_t dtrace_return_probe_ptr; #endif @@ -128,7 +127,7 @@ void dblfault_handler(struct trapframe * static int trap_pfault(struct trapframe *, int); static void trap_fatal(struct trapframe *, vm_offset_t); -#define MAX_TRAP_MSG 33 +#define MAX_TRAP_MSG 32 static char *trap_msg[] = { "", /* 0 unused */ "privileged instruction fault", /* 1 T_PRIVINFLT */ @@ -163,7 +162,6 @@ static char *trap_msg[] = { "reserved (unknown) fault", /* 30 T_RESERVED */ "", /* 31 unused (reserved) */ "DTrace pid return trap", /* 32 T_DTRACE_RET */ - "DTrace fasttrap probe trap", /* 33 T_DTRACE_PROBE */ }; #ifdef KDB @@ -255,16 +253,11 @@ trap(struct trapframe *frame) * handled the trap and modified the trap frame so that this * function can return normally. */ - if (type == T_DTRACE_PROBE || type == T_DTRACE_RET || - type == T_BPTFLT) { + if (type == T_DTRACE_RET || type == T_BPTFLT) { struct reg regs; fill_frame_regs(frame, ®s); - if (type == T_DTRACE_PROBE && - dtrace_fasttrap_probe_ptr != NULL && - dtrace_fasttrap_probe_ptr(®s) == 0) - goto out; - else if (type == T_BPTFLT && + if (type == T_BPTFLT && dtrace_pid_probe_ptr != NULL && dtrace_pid_probe_ptr(®s) == 0) goto out; Modified: user/andre/mbuf_staging/amd64/conf/GENERIC ============================================================================== --- user/andre/mbuf_staging/amd64/conf/GENERIC Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/conf/GENERIC Thu Oct 31 12:59:25 2013 (r257443) @@ -94,6 +94,7 @@ device cpufreq # Bus support. device acpi +options ACPI_DMAR device pci # Floppy drives Modified: user/andre/mbuf_staging/amd64/conf/NOTES ============================================================================== --- user/andre/mbuf_staging/amd64/conf/NOTES Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/conf/NOTES Thu Oct 31 12:59:25 2013 (r257443) @@ -473,6 +473,12 @@ device virtio_blk # VirtIO Block device device virtio_scsi # VirtIO SCSI device device virtio_balloon # VirtIO Memory Balloon device +device hyperv # HyperV drivers + +# Xen HVM Guest Optimizations +options XENHVM # Xen HVM kernel infrastructure +device xenpci # Xen HVM Hypervisor services driver + ##################################################################### # Modified: user/andre/mbuf_staging/amd64/vmm/intel/vmcs.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/intel/vmcs.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/intel/vmcs.c Thu Oct 31 12:59:25 2013 (r257443) @@ -39,8 +39,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include - #include #include "vmm_host.h" #include "vmcs.h" Modified: user/andre/mbuf_staging/amd64/vmm/intel/vmx.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/intel/vmx.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/intel/vmx.c Thu Oct 31 12:59:25 2013 (r257443) @@ -44,7 +44,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include #include @@ -308,8 +307,8 @@ vmx_setjmp_rc2str(int rc) } } -#define SETJMP_TRACE(vmx, vcpu, vmxctx, regname) \ - VMM_CTR1((vmx)->vm, (vcpu), "setjmp trace " #regname " 0x%016lx", \ +#define SETJMP_TRACE(vmx, vcpu, vmxctx, regname) \ + VCPU_CTR1((vmx)->vm, (vcpu), "setjmp trace " #regname " 0x%016lx", \ (vmxctx)->regname) static void @@ -321,14 +320,14 @@ vmx_setjmp_trace(struct vmx *vmx, int vc panic("vmx_setjmp_trace: invalid vmxctx %p; should be %p", vmxctx, &vmx->ctx[vcpu]); - VMM_CTR1((vmx)->vm, (vcpu), "vmxctx = %p", vmxctx); - VMM_CTR2((vmx)->vm, (vcpu), "setjmp return code %s(%d)", + VCPU_CTR1((vmx)->vm, (vcpu), "vmxctx = %p", vmxctx); + VCPU_CTR2((vmx)->vm, (vcpu), "setjmp return code %s(%d)", vmx_setjmp_rc2str(rc), rc); host_rsp = host_rip = ~0; vmread(VMCS_HOST_RIP, &host_rip); vmread(VMCS_HOST_RSP, &host_rsp); - VMM_CTR2((vmx)->vm, (vcpu), "vmcs host_rip 0x%016lx, host_rsp 0x%016lx", + VCPU_CTR2((vmx)->vm, (vcpu), "vmcs host_rip 0x%016lx, host_rsp %#lx", host_rip, host_rsp); SETJMP_TRACE(vmx, vcpu, vmxctx, host_r15); @@ -887,7 +886,7 @@ static __inline void vmx_run_trace(struct vmx *vmx, int vcpu) { #ifdef KTR - VMM_CTR1(vmx->vm, vcpu, "Resume execution at 0x%0lx", vmcs_guest_rip()); + VCPU_CTR1(vmx->vm, vcpu, "Resume execution at %#lx", vmcs_guest_rip()); #endif } @@ -896,7 +895,7 @@ vmx_exit_trace(struct vmx *vmx, int vcpu int handled) { #ifdef KTR - VMM_CTR3(vmx->vm, vcpu, "%s %s vmexit at 0x%0lx", + VCPU_CTR3(vmx->vm, vcpu, "%s %s vmexit at 0x%0lx", handled ? "handled" : "unhandled", exit_reason_to_str(exit_reason), rip); #endif @@ -906,7 +905,7 @@ static __inline void vmx_astpending_trace(struct vmx *vmx, int vcpu, uint64_t rip) { #ifdef KTR - VMM_CTR1(vmx->vm, vcpu, "astpending vmexit at 0x%0lx", rip); + VCPU_CTR1(vmx->vm, vcpu, "astpending vmexit at 0x%0lx", rip); #endif } @@ -1055,7 +1054,7 @@ vmx_inject_nmi(struct vmx *vmx, int vcpu if (error) panic("vmx_inject_nmi: vmwrite(intrinfo) %d", error); - VMM_CTR0(vmx->vm, vcpu, "Injecting vNMI"); + VCPU_CTR0(vmx->vm, vcpu, "Injecting vNMI"); /* Clear the request */ vm_nmi_clear(vmx->vm, vcpu); @@ -1068,7 +1067,7 @@ nmiblocked: */ vmx_set_nmi_window_exiting(vmx, vcpu); - VMM_CTR0(vmx->vm, vcpu, "Enabling NMI window exiting"); + VCPU_CTR0(vmx->vm, vcpu, "Enabling NMI window exiting"); return (1); } @@ -1134,7 +1133,7 @@ vmx_inject_interrupts(struct vmx *vmx, i /* Update the Local APIC ISR */ lapic_intr_accepted(vmx->vm, vcpu, vector); - VMM_CTR1(vmx->vm, vcpu, "Injecting hwintr at vector %d", vector); + VCPU_CTR1(vmx->vm, vcpu, "Injecting hwintr at vector %d", vector); return; @@ -1145,7 +1144,7 @@ cantinject: */ vmx_set_int_window_exiting(vmx, vcpu); - VMM_CTR0(vmx->vm, vcpu, "Enabling interrupt window exiting"); + VCPU_CTR0(vmx->vm, vcpu, "Enabling interrupt window exiting"); } static int @@ -1435,7 +1434,7 @@ vmx_exit_process(struct vmx *vmx, int vc case EXIT_REASON_INTR_WINDOW: vmm_stat_incr(vmx->vm, vcpu, VMEXIT_INTR_WINDOW, 1); vmx_clear_int_window_exiting(vmx, vcpu); - VMM_CTR0(vmx->vm, vcpu, "Disabling interrupt window exiting"); + VCPU_CTR0(vmx->vm, vcpu, "Disabling interrupt window exiting"); return (1); case EXIT_REASON_EXT_INTR: /* @@ -1458,7 +1457,7 @@ vmx_exit_process(struct vmx *vmx, int vc /* Exit to allow the pending virtual NMI to be injected */ vmm_stat_incr(vmx->vm, vcpu, VMEXIT_NMI_WINDOW, 1); vmx_clear_nmi_window_exiting(vmx, vcpu); - VMM_CTR0(vmx->vm, vcpu, "Disabling NMI window exiting"); + VCPU_CTR0(vmx->vm, vcpu, "Disabling NMI window exiting"); return (1); case EXIT_REASON_INOUT: vmm_stat_incr(vmx->vm, vcpu, VMEXIT_INOUT, 1); @@ -1659,7 +1658,7 @@ vmx_run(void *arg, int vcpu, register_t if (!handled) vmm_stat_incr(vmx->vm, vcpu, VMEXIT_USERSPACE, 1); - VMM_CTR1(vmx->vm, vcpu, "goto userland: exitcode %d",vmexit->exitcode); + VCPU_CTR1(vmx->vm, vcpu, "goto userland: exitcode %d",vmexit->exitcode); /* * XXX Modified: user/andre/mbuf_staging/amd64/vmm/intel/vmx_genassym.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/intel/vmx_genassym.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/intel/vmx_genassym.c Thu Oct 31 12:59:25 2013 (r257443) @@ -38,8 +38,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include - #include #include "vmx.h" #include "vmx_cpufunc.h" Modified: user/andre/mbuf_staging/amd64/vmm/intel/vtd.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/intel/vtd.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/intel/vtd.c Thu Oct 31 12:59:25 2013 (r257443) @@ -39,7 +39,6 @@ __FBSDID("$FreeBSD$"); #include -#include #include #include Modified: user/andre/mbuf_staging/amd64/vmm/io/vlapic.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/io/vlapic.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/io/vlapic.c Thu Oct 31 12:59:25 2013 (r257443) @@ -48,10 +48,10 @@ __FBSDID("$FreeBSD$"); #include "vlapic.h" #define VLAPIC_CTR0(vlapic, format) \ - VMM_CTR0((vlapic)->vm, (vlapic)->vcpuid, format) + VCPU_CTR0((vlapic)->vm, (vlapic)->vcpuid, format) #define VLAPIC_CTR1(vlapic, format, p1) \ - VMM_CTR1((vlapic)->vm, (vlapic)->vcpuid, format, p1) + VCPU_CTR1((vlapic)->vm, (vlapic)->vcpuid, format, p1) #define VLAPIC_CTR_IRR(vlapic, msg) \ do { \ Modified: user/andre/mbuf_staging/amd64/vmm/vmm.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/vmm.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/vmm.c Thu Oct 31 12:59:25 2013 (r257443) @@ -56,7 +56,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include @@ -919,8 +918,8 @@ vm_handle_paging(struct vm *vm, int vcpu map = &vm->vmspace->vm_map; rv = vm_fault(map, vme->u.paging.gpa, ftype, VM_FAULT_NORMAL); - VMM_CTR3(vm, vcpuid, "vm_handle_paging rv = %d, gpa = %#lx, ftype = %d", - rv, vme->u.paging.gpa, ftype); + VCPU_CTR3(vm, vcpuid, "vm_handle_paging rv = %d, gpa = %#lx, " + "ftype = %d", rv, vme->u.paging.gpa, ftype); if (rv != KERN_SUCCESS) return (EFAULT); Modified: user/andre/mbuf_staging/amd64/vmm/vmm_dev.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/vmm_dev.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/vmm_dev.c Thu Oct 31 12:59:25 2013 (r257443) @@ -46,7 +46,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include Modified: user/andre/mbuf_staging/amd64/vmm/vmm_instruction_emul.c ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/vmm_instruction_emul.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/vmm_instruction_emul.c Thu Oct 31 12:59:25 2013 (r257443) @@ -38,7 +38,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include #else /* !_KERNEL */ Modified: user/andre/mbuf_staging/amd64/vmm/vmm_ktr.h ============================================================================== --- user/andre/mbuf_staging/amd64/vmm/vmm_ktr.h Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/amd64/vmm/vmm_ktr.h Thu Oct 31 12:59:25 2013 (r257443) @@ -34,18 +34,30 @@ #define KTR_VMM KTR_GEN -#define VMM_CTR0(vm, vcpuid, format) \ +#define VCPU_CTR0(vm, vcpuid, format) \ CTR3(KTR_VMM, "vm %s-%d(%d): " format, vm_name((vm)), (vcpuid), curcpu) -#define VMM_CTR1(vm, vcpuid, format, p1) \ +#define VCPU_CTR1(vm, vcpuid, format, p1) \ CTR4(KTR_VMM, "vm %s-%d(%d): " format, vm_name((vm)), (vcpuid), curcpu, \ (p1)) -#define VMM_CTR2(vm, vcpuid, format, p1, p2) \ +#define VCPU_CTR2(vm, vcpuid, format, p1, p2) \ CTR5(KTR_VMM, "vm %s-%d(%d): " format, vm_name((vm)), (vcpuid), curcpu, \ (p1), (p2)) -#define VMM_CTR3(vm, vcpuid, format, p1, p2, p3) \ +#define VCPU_CTR3(vm, vcpuid, format, p1, p2, p3) \ CTR6(KTR_VMM, "vm %s-%d(%d): " format, vm_name((vm)), (vcpuid), curcpu, \ (p1), (p2), (p3)) + +#define VM_CTR0(vm, format) \ +CTR2(KTR_VMM, "vm %s(%d): " format, vm_name((vm)), curcpu) + +#define VM_CTR1(vm, format, p1) \ +CTR3(KTR_VMM, "vm %s(%d): " format, vm_name((vm)), curcpu, (p1)) + +#define VM_CTR2(vm, format, p1, p2) \ +CTR4(KTR_VMM, "vm %s(%d): " format, vm_name((vm)), curcpu, (p1), (p2)) + +#define VM_CTR3(vm, format, p1, p2, p3) \ +CTR5(KTR_VMM, "vm %s(%d): " format, vm_name((vm)), curcpu, (p1), (p2), (p3)) #endif Modified: user/andre/mbuf_staging/arm/arm/cpufunc.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/cpufunc.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/cpufunc.c Thu Oct 31 12:59:25 2013 (r257443) @@ -541,65 +541,6 @@ struct cpu_functions pj4bv7_cpufuncs = { pj4bv7_setup /* cpu setup */ }; - -struct cpu_functions pj4bv6_cpufuncs = { - /* CPU functions */ - - cpufunc_id, /* id */ - arm11_drain_writebuf, /* cpwait */ - - /* MMU functions */ - - cpufunc_control, /* control */ - cpufunc_domains, /* Domain */ - pj4b_setttb, /* Setttb */ - cpufunc_faultstatus, /* Faultstatus */ - cpufunc_faultaddress, /* Faultaddress */ - - /* TLB functions */ - - arm11_tlb_flushID, /* tlb_flushID */ - arm11_tlb_flushID_SE, /* tlb_flushID_SE */ - arm11_tlb_flushI, /* tlb_flushI */ - arm11_tlb_flushI_SE, /* tlb_flushI_SE */ - arm11_tlb_flushD, /* tlb_flushD */ - arm11_tlb_flushD_SE, /* tlb_flushD_SE */ - - /* Cache operations */ - armv6_icache_sync_all, /* icache_sync_all */ - pj4b_icache_sync_range, /* icache_sync_range */ - - armv6_dcache_wbinv_all, /* dcache_wbinv_all */ - pj4b_dcache_wbinv_range, /* dcache_wbinv_range */ - pj4b_dcache_inv_range, /* dcache_inv_range */ - pj4b_dcache_wb_range, /* dcache_wb_range */ - - armv6_idcache_wbinv_all, /* idcache_wbinv_all */ - pj4b_idcache_wbinv_range, /* idcache_wbinv_all */ - - (void *)cpufunc_nullop, /* l2cache_wbinv_all */ - (void *)cpufunc_nullop, /* l2cache_wbinv_range */ - (void *)cpufunc_nullop, /* l2cache_inv_range */ - (void *)cpufunc_nullop, /* l2cache_wb_range */ - - /* Other functions */ - - pj4b_drain_readbuf, /* flush_prefetchbuf */ - arm11_drain_writebuf, /* drain_writebuf */ - pj4b_flush_brnchtgt_all, /* flush_brnchtgt_C */ - pj4b_flush_brnchtgt_va, /* flush_brnchtgt_E */ - - (void *)cpufunc_nullop, /* sleep */ - - /* Soft functions */ - - cpufunc_null_fixup, /* dataabt_fixup */ - cpufunc_null_fixup, /* prefetchabt_fixup */ - - arm11_context_switch, /* context_switch */ - - pj4bv6_setup /* cpu setup */ -}; #endif /* CPU_MV_PJ4B */ #ifdef CPU_SA110 @@ -1497,27 +1438,14 @@ set_cpufuncs() #endif /* CPU_CORTEXA */ #if defined(CPU_MV_PJ4B) - if (cputype == CPU_ID_MV88SV581X_V6 || - cputype == CPU_ID_MV88SV581X_V7 || + if (cputype == CPU_ID_MV88SV581X_V7 || cputype == CPU_ID_MV88SV584X_V7 || - cputype == CPU_ID_ARM_88SV581X_V6 || cputype == CPU_ID_ARM_88SV581X_V7) { - if (cpu_pfr(0) & ARM_PFR0_THUMBEE_MASK) - cpufuncs = pj4bv7_cpufuncs; - else - cpufuncs = pj4bv6_cpufuncs; - - get_cachetype_cp15(); - pmap_pte_init_mmu_v6(); - goto out; - } else if (cputype == CPU_ID_ARM_88SV584X_V6 || - cputype == CPU_ID_MV88SV584X_V6) { - cpufuncs = pj4bv6_cpufuncs; + cpufuncs = pj4bv7_cpufuncs; get_cachetype_cp15(); pmap_pte_init_mmu_v6(); goto out; } - #endif /* CPU_MV_PJ4B */ #ifdef CPU_SA110 if (cputype == CPU_ID_SA110) { @@ -2447,44 +2375,6 @@ arm11x6_setup(char *args) #ifdef CPU_MV_PJ4B void -pj4bv6_setup(char *args) -{ - int cpuctrl; - - pj4b_config(); - - cpuctrl = CPU_CONTROL_MMU_ENABLE; -#ifndef ARM32_DISABLE_ALIGNMENT_FAULTS - cpuctrl |= CPU_CONTROL_AFLT_ENABLE; -#endif - cpuctrl |= CPU_CONTROL_DC_ENABLE; - cpuctrl |= (0xf << 3); -#ifdef __ARMEB__ - cpuctrl |= CPU_CONTROL_BEND_ENABLE; -#endif - cpuctrl |= CPU_CONTROL_SYST_ENABLE; - cpuctrl |= CPU_CONTROL_BPRD_ENABLE; - cpuctrl |= CPU_CONTROL_IC_ENABLE; - if (vector_page == ARM_VECTORS_HIGH) - cpuctrl |= CPU_CONTROL_VECRELOC; - cpuctrl |= (0x5 << 16); - cpuctrl |= CPU_CONTROL_V6_EXTPAGE; - /* XXX not yet */ - /* cpuctrl |= CPU_CONTROL_L2_ENABLE; */ - - /* Make sure caches are clean. */ - cpu_idcache_wbinv_all(); - cpu_l2cache_wbinv_all(); - - /* Set the control register */ - ctrl = cpuctrl; - cpu_control(0xffffffff, cpuctrl); - - cpu_idcache_wbinv_all(); - cpu_l2cache_wbinv_all(); -} - -void pj4bv7_setup(args) char *args; { Modified: user/andre/mbuf_staging/arm/arm/cpufunc_asm_pj4b.S ============================================================================== --- user/andre/mbuf_staging/arm/arm/cpufunc_asm_pj4b.S Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/cpufunc_asm_pj4b.S Thu Oct 31 12:59:25 2013 (r257443) @@ -34,9 +34,6 @@ __FBSDID("$FreeBSD$"); #include -.Lpj4b_cache_line_size: - .word _C_LABEL(arm_pdcache_line_size) - .Lpj4b_sf_ctrl_reg: .word 0xf1021820 @@ -52,135 +49,6 @@ ENTRY(pj4b_setttb) RET END(pj4b_setttb) -ENTRY_NP(armv6_icache_sync_all) - /* - * We assume that the code here can never be out of sync with the - * dcache, so that we can safely flush the Icache and fall through - * into the Dcache cleaning code. - */ - mov r0, #0 - mcr p15, 0, r0, c7, c5, 0 /* Invalidate ICache */ - mcr p15, 0, r0, c7, c10, 0 /* Clean (don't invalidate) DCache */ - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(armv6_icache_sync_all) - -ENTRY(pj4b_icache_sync_range) - sub r1, r1, #1 - add r1, r0, r1 - mcrr p15, 0, r1, r0, c5 /* invalidate IC range */ - mcrr p15, 0, r1, r0, c12 /* clean DC range */ - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(pj4b_icache_sync_range) - -ENTRY(pj4b_dcache_inv_range) - ldr ip, .Lpj4b_cache_line_size - ldr ip, [ip] - sub r1, r1, #1 /* Don't overrun */ - sub r3, ip, #1 - and r2, r0, r3 - add r1, r1, r2 - bic r0, r0, r3 - - mcr p15, 0, r0, c7, c10, 5 /* Data Memory Barrier err:4413 */ -1: - mcr p15, 0, r0, c7, c6, 1 - add r0, r0, ip - subs r1, r1, ip - bpl 1b - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(pj4b_dcache_inv_range) - -ENTRY(armv6_idcache_wbinv_all) - mov r0, #0 - mcr p15, 0, r0, c7, c5, 0 /* invalidate ICache */ - mcr p15, 0, r0, c7, c14, 0 /* clean and invalidate DCache */ - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(armv6_idcache_wbinv_all) - -ENTRY(armv6_dcache_wbinv_all) - mov r0, #0 - mcr p15, 0, r0, c7, c14, 0 /* clean and invalidate DCache */ - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(armv6_dcache_wbinv_all) - -ENTRY(pj4b_idcache_wbinv_range) - ldr ip, .Lpj4b_cache_line_size - ldr ip, [ip] - sub r1, r1, #1 /* Don't overrun */ - sub r3, ip, #1 - and r2, r0, r3 - add r1, r1, r2 - bic r0, r0, r3 - - mcr p15, 0, r0, c7, c10, 5 /* Data Memory Barrier err:4611 */ -1: -#ifdef SMP - /* Request for ownership */ - ldr r2, [r0] - str r2, [r0] -#endif - mcr p15, 0, r0, c7, c5, 1 - mcr p15, 0, r0, c7, c14, 1 /* L2C clean and invalidate entry */ - add r0, r0, ip - subs r1, r1, ip - bpl 1b - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(pj4b_idcache_wbinv_range) - -ENTRY(pj4b_dcache_wbinv_range) - ldr ip, .Lpj4b_cache_line_size - ldr ip, [ip] - sub r1, r1, #1 /* Don't overrun */ - sub r3, ip, #1 - and r2, r0, r3 - add r1, r1, r2 - bic r0, r0, r3 - - mcr p15, 0, r0, c7, c10, 5 /* Data Memory Barrier err:4611 */ -1: -#ifdef SMP - /* Request for ownership */ - ldr r2, [r0] - str r2, [r0] -#endif - mcr p15, 0, r0, c7, c14, 1 - add r0, r0, ip - subs r1, r1, ip - bpl 1b - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(pj4b_dcache_wbinv_range) - -ENTRY(pj4b_dcache_wb_range) - ldr ip, .Lpj4b_cache_line_size - ldr ip, [ip] - sub r1, r1, #1 /* Don't overrun */ - sub r3, ip, #1 - and r2, r0, r3 - add r1, r1, r2 - bic r0, r0, r3 - - mcr p15, 0, r0, c7, c10, 5 /* Data Memory Barrier err:4611 */ -1: -#ifdef SMP - /* Request for ownership */ - ldr r2, [r0] - str r2, [r0] -#endif - mcr p15, 0, r0, c7, c10, 1 /* L2C clean single entry by MVA */ - add r0, r0, ip - subs r1, r1, ip - bpl 1b - mcr p15, 0, r0, c7, c10, 4 /* drain the write buffer */ - RET -END(pj4b_dcache_wb_range) - ENTRY(pj4b_drain_readbuf) mcr p15, 0, r0, c7, c5, 4 /* flush prefetch buffers */ RET Modified: user/andre/mbuf_staging/arm/arm/gic.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/gic.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/gic.c Thu Oct 31 12:59:25 2013 (r257443) @@ -271,7 +271,6 @@ arm_get_next_irq(int last_irq) printf("Spurious interrupt detected [0x%08x]\n", active_irq); return -1; } - gic_c_write_4(GICC_EOIR, active_irq); return active_irq; } @@ -279,14 +278,15 @@ arm_get_next_irq(int last_irq) void arm_mask_irq(uintptr_t nb) { + gic_d_write_4(GICD_ICENABLER(nb >> 5), (1UL << (nb & 0x1F))); + gic_c_write_4(GICC_EOIR, nb); } void arm_unmask_irq(uintptr_t nb) { - gic_c_write_4(GICC_EOIR, nb); gic_d_write_4(GICD_ISENABLER(nb >> 5), (1UL << (nb & 0x1F))); } Modified: user/andre/mbuf_staging/arm/arm/identcpu.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/identcpu.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/identcpu.c Thu Oct 31 12:59:25 2013 (r257443) @@ -323,18 +323,10 @@ const struct cpuidtab cpuids[] = { { CPU_ID_MV88FR571_VD, CPU_CLASS_MARVELL, "Feroceon 88FR571-VD", generic_steppings }, - { CPU_ID_MV88SV581X_V6, CPU_CLASS_MARVELL, "Sheeva 88SV581x", - generic_steppings }, - { CPU_ID_ARM_88SV581X_V6, CPU_CLASS_MARVELL, "Sheeva 88SV581x", - generic_steppings }, { CPU_ID_MV88SV581X_V7, CPU_CLASS_MARVELL, "Sheeva 88SV581x", generic_steppings }, { CPU_ID_ARM_88SV581X_V7, CPU_CLASS_MARVELL, "Sheeva 88SV581x", generic_steppings }, - { CPU_ID_MV88SV584X_V6, CPU_CLASS_MARVELL, "Sheeva 88SV584x", - generic_steppings }, - { CPU_ID_ARM_88SV584X_V6, CPU_CLASS_MARVELL, "Sheeva 88SV584x", - generic_steppings }, { CPU_ID_MV88SV584X_V7, CPU_CLASS_MARVELL, "Sheeva 88SV584x", generic_steppings }, Modified: user/andre/mbuf_staging/arm/arm/locore.S ============================================================================== --- user/andre/mbuf_staging/arm/arm/locore.S Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/locore.S Thu Oct 31 12:59:25 2013 (r257443) @@ -266,10 +266,6 @@ mmu_init_table: /* map VA 0xc0000000..0xc3ffffff to PA */ MMU_INIT(KERNBASE, PHYSADDR, 64, L1_TYPE_S|L1_SHARED|L1_S_C|L1_S_AP(AP_KRW)) MMU_INIT(0x48000000, 0x48000000, 1, L1_TYPE_S|L1_SHARED|L1_S_C|L1_S_AP(AP_KRW)) -#if defined(CPU_MV_PJ4B) - /* map VA 0xf1000000..0xf1100000 to PA 0xd0000000 */ - MMU_INIT(0xf1000000, 0xd0000000, 1, L1_TYPE_S|L1_SHARED|L1_S_B|L1_S_AP(AP_KRW)) -#endif /* CPU_MV_PJ4B */ #endif /* SMP */ .word 0 /* end of table */ #endif Modified: user/andre/mbuf_staging/arm/arm/mp_machdep.c ============================================================================== --- user/andre/mbuf_staging/arm/arm/mp_machdep.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/arm/mp_machdep.c Thu Oct 31 12:59:25 2013 (r257443) @@ -52,6 +52,10 @@ __FBSDID("$FreeBSD$"); #ifdef VFP #include #endif +#ifdef CPU_MV_PJ4B +#include +#include +#endif #include "opt_smp.h" @@ -131,8 +135,8 @@ cpu_mp_start(void) #if defined(CPU_MV_PJ4B) /* Add ARMADAXP registers required for snoop filter initialization */ - ((int *)(temp_pagetable_va))[0xf1000000 >> L1_S_SHIFT] = - L1_TYPE_S|L1_SHARED|L1_S_B|L1_S_AP(AP_KRW)|0xd0000000; + ((int *)(temp_pagetable_va))[MV_BASE >> L1_S_SHIFT] = + L1_TYPE_S|L1_SHARED|L1_S_B|L1_S_AP(AP_KRW)|fdt_immr_pa; #endif temp_pagetable = (void*)(vtophys(temp_pagetable_va)); Modified: user/andre/mbuf_staging/arm/at91/at91.c ============================================================================== --- user/andre/mbuf_staging/arm/at91/at91.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/at91/at91.c Thu Oct 31 12:59:25 2013 (r257443) @@ -231,8 +231,7 @@ at91_probe(device_t dev) { device_set_desc(dev, "AT91 device bus"); - arm_post_filter = at91_eoi; - return (0); + return (BUS_PROBE_NOWILDCARD); } static void @@ -261,6 +260,8 @@ at91_attach(device_t dev) const struct pmap_devmap *pdevmap; int i; + arm_post_filter = at91_eoi; + at91_softc = sc; sc->sc_st = &at91_bs_tag; sc->sc_sh = AT91_BASE; Modified: user/andre/mbuf_staging/arm/at91/if_ate.c ============================================================================== --- user/andre/mbuf_staging/arm/at91/if_ate.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/at91/if_ate.c Thu Oct 31 12:59:25 2013 (r257443) @@ -54,6 +54,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #ifdef INET #include Modified: user/andre/mbuf_staging/arm/conf/DIGI-CCWMX53 ============================================================================== --- user/andre/mbuf_staging/arm/conf/DIGI-CCWMX53 Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/conf/DIGI-CCWMX53 Thu Oct 31 12:59:25 2013 (r257443) @@ -65,7 +65,7 @@ options VFP # vfp/neon #options BOOTP_COMPAT #options BOOTP_NFSROOT #options BOOTP_NFSV3 -#options BOOTP_WIRED_TO=ue0 +#options BOOTP_WIRED_TO=ffec0 #options ROOTDEVNAME=\"ufs:ada0s2a\" @@ -105,8 +105,12 @@ device ether # Ethernet support #device faith # IPv6-to-IPv4 relaying (translation) #device firmware # firmware assist module +# Ethernet +device ffec # Freescale Fast Ethernet Controller +device miibus # Standard mii bus + # Serial (COM) ports -#device uart # Multi-uart driver +device uart # Multi-uart driver options ALT_BREAK_TO_DEBUGGER device ata @@ -130,13 +134,13 @@ device cd # CD device pass # Passthrough device (direct SCSI access) # USB support -#options USB_DEBUG # enable debug msgs -#device ehci # OHCI USB interface -#device usb # USB Bus (required) -#device umass # Disks/Mass storage - Requires scbus and da -#device uhid # "Human Interface Devices" +options USB_DEBUG # enable debug msgs +device ehci # OHCI USB interface +device usb # USB Bus (required) +device umass # Disks/Mass storage - Requires scbus and da +device uhid # "Human Interface Devices" #device ukbd # Allow keyboard like HIDs to control console -#device ums +device ums # USB Ethernet, requires miibus #device miibus Modified: user/andre/mbuf_staging/arm/econa/econa.c ============================================================================== --- user/andre/mbuf_staging/arm/econa/econa.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/econa/econa.c Thu Oct 31 12:59:25 2013 (r257443) @@ -172,7 +172,7 @@ econa_probe(device_t dev) { device_set_desc(dev, "ECONA device bus"); - return (0); + return (BUS_PROBE_NOWILDCARD); } static void Modified: user/andre/mbuf_staging/arm/econa/if_ece.c ============================================================================== --- user/andre/mbuf_staging/arm/econa/if_ece.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/econa/if_ece.c Thu Oct 31 12:59:25 2013 (r257443) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #ifdef INET Modified: user/andre/mbuf_staging/arm/freescale/imx/files.imx51 ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/files.imx51 Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/freescale/imx/files.imx51 Thu Oct 31 12:59:25 2013 (r257443) @@ -37,7 +37,8 @@ dev/ata/chipsets/ata-fsl.c optional imx # UART driver dev/uart/uart_dev_imx.c optional uart -# USB join controller (1 OTG, 3 EHCI) +# USB OH3 controller (1 OTG, 3 EHCI) +arm/freescale/imx/imx_nop_usbphy.c optional echi dev/usb/controller/ehci_imx.c optional ehci # Watchdog Modified: user/andre/mbuf_staging/arm/freescale/imx/files.imx53 ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/files.imx53 Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/freescale/imx/files.imx53 Thu Oct 31 12:59:25 2013 (r257443) @@ -37,7 +37,8 @@ arm/freescale/imx/imx51_ccm.c standard # i.MX5xx PATA controller dev/ata/chipsets/ata-fsl.c optional imxata -# USB join controller (1 OTG, 3 EHCI) +# USB OH3 controller (1 OTG, 3 EHCI) +arm/freescale/imx/imx_nop_usbphy.c optional ehci dev/usb/controller/ehci_imx.c optional ehci # Watchdog Modified: user/andre/mbuf_staging/arm/freescale/imx/imx51_ccm.c ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/imx51_ccm.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/freescale/imx/imx51_ccm.c Thu Oct 31 12:59:25 2013 (r257443) @@ -83,6 +83,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #define IMXCCMDEBUG #undef IMXCCMDEBUG @@ -473,3 +474,78 @@ imx51_get_clk_gating(int clk_src) return ((reg >> (clk_src % CCMR_CCGR_NSOURCE) * 2) & 0x03); } +/* + * Code from here down is temporary, in lieu of a SoC-independent clock API. + */ + +void +imx_ccm_usb_enable(device_t dev) +{ + uint32_t regval; + + /* + * Select PLL2 as the source for the USB clock. + * The default is PLL3, but U-boot changes it to PLL2. + */ + regval = bus_read_4(ccm_softc->res[0], CCMC_CSCMR1); + regval &= ~CSCMR1_USBOH3_CLK_SEL_MASK; + regval |= 1 << CSCMR1_USBOH3_CLK_SEL_SHIFT; + bus_write_4(ccm_softc->res[0], CCMC_CSCMR1, regval); + + /* + * Set the USB clock pre-divider to div-by-5, post-divider to div-by-2. + */ + regval = bus_read_4(ccm_softc->res[0], CCMC_CSCDR1); + regval &= ~CSCDR1_USBOH3_CLK_PODF_MASK; + regval &= ~CSCDR1_USBOH3_CLK_PRED_MASK; + regval |= 4 << CSCDR1_USBOH3_CLK_PRED_SHIFT; + regval |= 1 << CSCDR1_USBOH3_CLK_PODF_SHIFT; + bus_write_4(ccm_softc->res[0], CCMC_CSCDR1, regval); + + /* + * The same two clocks gates are used on imx51 and imx53. + */ + imx51_clk_gating(CCGR_USBOH3_IPG_AHB_CLK, CCGR_CLK_MODE_ALWAYS); + imx51_clk_gating(CCGR_USBOH3_60M_CLK, CCGR_CLK_MODE_ALWAYS); +} + +void +imx_ccm_usbphy_enable(device_t dev) +{ + uint32_t regval; + + /* + * Select PLL3 as the source for the USBPHY clock. U-boot does this + * only for imx53, but the bit exists on imx51. That seems a bit + * strange, but we'll go with it until more is known. + */ + if (imx_soc_type() == IMXSOC_53) { + regval = bus_read_4(ccm_softc->res[0], CCMC_CSCMR1); + regval |= 1 << CSCMR1_USBPHY_CLK_SEL_SHIFT; + bus_write_4(ccm_softc->res[0], CCMC_CSCMR1, regval); + } + + /* + * For the imx51 there's just one phy gate control, enable it. + */ + if (imx_soc_type() == IMXSOC_51) { + imx51_clk_gating(CCGR_USB_PHY_CLK, CCGR_CLK_MODE_ALWAYS); + return; + } + + /* + * For imx53 we don't have a full set of clock defines yet, but the + * datasheet says: + * gate reg 4, bits 13-12 usb ph2 clock (usb_phy2_clk_enable) + * gate reg 4, bits 11-10 usb ph1 clock (usb_phy1_clk_enable) + * + * We should use the fdt data for the device to figure out which of + * the two we're working on, but for now just turn them both on. + */ + if (imx_soc_type() == IMXSOC_53) { + imx51_clk_gating(__CCGR_NUM(4, 5), CCGR_CLK_MODE_ALWAYS); + imx51_clk_gating(__CCGR_NUM(4, 6), CCGR_CLK_MODE_ALWAYS); + return; + } +} + Modified: user/andre/mbuf_staging/arm/freescale/imx/imx51_ccmreg.h ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/imx51_ccmreg.h Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/freescale/imx/imx51_ccmreg.h Thu Oct 31 12:59:25 2013 (r257443) @@ -114,12 +114,20 @@ #define CCMC_CSCMR1 0x001c #define CSCMR1_UART_CLK_SEL_SHIFT 24 #define CSCMR1_UART_CLK_SEL_MASK 0x03000000 +#define CSCMR1_USBPHY_CLK_SEL_SHIFT 26 +#define CSCMR1_USBPHY_CLK_SEL_MASK 0x04000000 +#define CSCMR1_USBOH3_CLK_SEL_SHIFT 22 +#define CSCMR1_USBOH3_CLK_SEL_MASK 0x00c00000 #define CCMC_CSCMR2 0x0020 #define CCMC_CSCDR1 0x0024 #define CSCDR1_UART_CLK_PRED_SHIFT 3 #define CSCDR1_UART_CLK_PRED_MASK 0x00000038 #define CSCDR1_UART_CLK_PODF_SHIFT 0 #define CSCDR1_UART_CLK_PODF_MASK 0x00000007 +#define CSCDR1_USBOH3_CLK_PRED_SHIFT 8 +#define CSCDR1_USBOH3_CLK_PRED_MASK 0x00000700 +#define CSCDR1_USBOH3_CLK_PODF_SHIFT 6 +#define CSCDR1_USBOH3_CLK_PODF_MASK 0x000000c0 #define CCMC_CS1CDR 0x0028 #define CCMC_CS2CDR 0x002c #define CCMC_CDCDR 0x0030 Modified: user/andre/mbuf_staging/arm/freescale/imx/imx_gpt.c ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/imx_gpt.c Thu Oct 31 12:57:00 2013 (r257442) +++ user/andre/mbuf_staging/arm/freescale/imx/imx_gpt.c Thu Oct 31 12:59:25 2013 (r257443) @@ -95,7 +95,7 @@ struct imx_gpt_softc *imx_gpt_sc = NULL; static const int imx_gpt_delay_count = 78; /* Try to divide down an available fast clock to this frequency. */ -#define TARGET_FREQUENCY 1000000 +#define TARGET_FREQUENCY 10000000 /* Don't try to set an event timer period smaller than this. */ #define MIN_ET_PERIOD 10LLU @@ -107,16 +107,26 @@ static struct resource_spec imx_gpt_spec { -1, 0 } }; +static struct ofw_compat_data compat_data[] = { + {"fsl,imx6q-gpt", 1}, + {"fsl,imx53-gpt", 1}, + {"fsl,imx51-gpt", 1}, + {"fsl,imx31-gpt", 1}, + {"fsl,imx27-gpt", 1}, + {"fsl,imx25-gpt", 1}, + {NULL, 0} +}; + static int imx_gpt_probe(device_t dev) { - if (!ofw_bus_is_compatible(dev, "fsl,imx51-gpt") && - !ofw_bus_is_compatible(dev, "fsl,imx53-gpt")) - return (ENXIO); + if (ofw_bus_search_compatible(dev, compat_data)->ocd_data != 0) { + device_set_desc(dev, "Freescale i.MX GPT timer"); + return (BUS_PROBE_DEFAULT); + } - device_set_desc(dev, "Freescale i.MX GPT timer"); - return (BUS_PROBE_DEFAULT); + return (ENXIO); } static int @@ -142,10 +152,7 @@ imx_gpt_attach(device_t dev) * we're running on. Eventually we could allow selection from the fdt; * the code in this driver will cope with any clock frequency. */ - if (ofw_bus_is_compatible(dev, "fsl,imx6-gpt")) - sc->sc_clksrc = GPT_CR_CLKSRC_24M; - else - sc->sc_clksrc = GPT_CR_CLKSRC_IPG; + sc->sc_clksrc = GPT_CR_CLKSRC_IPG; ctlreg = 0; @@ -270,14 +277,9 @@ imx_gpt_timer_start(struct eventtimer *e WRITE4(sc, IMX_GPT_OCR2, READ4(sc, IMX_GPT_CNT) + sc->sc_period); /* Enable compare register 2 Interrupt */ SET4(sc, IMX_GPT_IR, GPT_IR_OF2); + return (0); } else if (first != 0) { ticks = ((uint32_t)et->et_frequency * first) >> 32; - *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 14:39:05 2013 Return-Path: Delivered-To: svn-src-user@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 B7F829CC; Thu, 31 Oct 2013 14:39:05 +0000 (UTC) (envelope-from ray@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 A5EA0234A; Thu, 31 Oct 2013 14:39:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VEd5K1025540; Thu, 31 Oct 2013 14:39:05 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VEd5fh025537; Thu, 31 Oct 2013 14:39:05 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201310311439.r9VEd5fh025537@svn.freebsd.org> From: Aleksandr Rybalko Date: Thu, 31 Oct 2013 14:39:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257451 - in user/ed/newcons/sys/dev/drm2: . i915 radeon X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 14:39:05 -0000 Author: ray Date: Thu Oct 31 14:39:04 2013 New Revision: 257451 URL: http://svnweb.freebsd.org/changeset/base/257451 Log: Change drm2 to attach fbd as device. Radeon driver not ready yet. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/drm2/drm_fb_helper.c user/ed/newcons/sys/dev/drm2/i915/i915_drv.c user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c Modified: user/ed/newcons/sys/dev/drm2/drm_fb_helper.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/drm_fb_helper.c Thu Oct 31 14:11:14 2013 (r257450) +++ user/ed/newcons/sys/dev/drm2/drm_fb_helper.c Thu Oct 31 14:39:04 2013 (r257451) @@ -932,6 +932,7 @@ int drm_fb_helper_single_fb_probe(struct int gamma_size = 0; #if defined(__FreeBSD__) struct vt_kms_softc *sc; + device_t kdev; #endif memset(&sizes, 0, sizeof(struct drm_fb_helper_surface_size)); @@ -1033,7 +1034,9 @@ int drm_fb_helper_single_fb_probe(struct #if defined(__FreeBSD__) if (new_fb) { - register_framebuffer(info); + kdev = fb_helper->dev->device; + device_add_child(kdev, "fbd", device_get_unit(kdev)); + bus_generic_attach(kdev); } #else if (new_fb) { Modified: user/ed/newcons/sys/dev/drm2/i915/i915_drv.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/i915/i915_drv.c Thu Oct 31 14:11:14 2013 (r257450) +++ user/ed/newcons/sys/dev/drm2/i915/i915_drv.c Thu Oct 31 14:39:04 2013 (r257451) @@ -40,6 +40,8 @@ __FBSDID("$FreeBSD$"); #include #include +#include "fb_if.h" + /* drv_PCI_IDs comes from drm_pciids.h, generated from drm_pciids.txt. */ static drm_pci_id_list_t i915_pciidlist[] = { i915_PCI_IDS @@ -380,6 +382,25 @@ i915_attach(device_t kdev) return (drm_attach(kdev, i915_pciidlist)); } +static struct fb_info * +i915_fb_helper_getinfo(device_t kdev) +{ + struct intel_fbdev *ifbdev; + drm_i915_private_t *dev_priv; + struct drm_device *dev; + struct fb_info *info; + + dev = device_get_softc(kdev); + dev_priv = dev->dev_private; + ifbdev = dev_priv->fbdev; + if (ifbdev == NULL) + return (NULL); + + info = ifbdev->helper.fbdev; + + return (info); +} + const struct intel_device_info * i915_get_device_id(int device) { @@ -400,6 +421,10 @@ static device_method_t i915_methods[] = DEVMETHOD(device_suspend, i915_suspend), DEVMETHOD(device_resume, i915_resume), DEVMETHOD(device_detach, drm_detach), + + /* Framebuffer service methods */ + DEVMETHOD(fb_getinfo, i915_fb_helper_getinfo), + DEVMETHOD_END }; Modified: user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c Thu Oct 31 14:11:14 2013 (r257450) +++ user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c Thu Oct 31 14:39:04 2013 (r257451) @@ -41,6 +41,7 @@ __FBSDID("$FreeBSD$"); #include +#include "fb_if.h" /* * KMS wrapper. @@ -488,6 +489,28 @@ radeon_resume(device_t kdev) return (-ret); } +static struct fb_info * +radeon_fb_helper_getinfo(device_t kdev) +{ +#if 0 /* XXX */ + struct drm_device *dev; + struct radeon_mode_info *mode_info; + struct radeon_fbdev *rfbdev; + struct radeon_device *rdev; + struct fb_info *info; + + + dev = device_get_softc(kdev); + rdev = dev->dev_private; + mode_info = &rdev->mode_info; + rfbdev = mode_info->rfbdev; + info = rfbdev->helper.fbdev; + return (info); +#else + return (NULL); +#endif +} + static device_method_t radeon_methods[] = { /* Device interface */ DEVMETHOD(device_probe, radeon_probe), @@ -495,6 +518,10 @@ static device_method_t radeon_methods[] DEVMETHOD(device_suspend, radeon_suspend), DEVMETHOD(device_resume, radeon_resume), DEVMETHOD(device_detach, drm_detach), + + /* Framebuffer service methods */ + DEVMETHOD(fb_getinfo, radeon_fb_helper_getinfo), + DEVMETHOD_END }; From owner-svn-src-user@FreeBSD.ORG Thu Oct 31 23:39:33 2013 Return-Path: Delivered-To: svn-src-user@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 B787C458; Thu, 31 Oct 2013 23:39:33 +0000 (UTC) (envelope-from andre@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 A2E812C0E; Thu, 31 Oct 2013 23:39:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9VNdXt1012228; Thu, 31 Oct 2013 23:39:33 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9VNdWZQ012218; Thu, 31 Oct 2013 23:39:32 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201310312339.r9VNdWZQ012218@svn.freebsd.org> From: Andre Oppermann Date: Thu, 31 Oct 2013 23:39:32 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257479 - in user/andre/mbuf_staging: arm/freescale/imx dev/usb dev/usb/serial ia64/ia64 ia64/include kern net powerpc/pseries X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Oct 2013 23:39:33 -0000 Author: andre Date: Thu Oct 31 23:39:31 2013 New Revision: 257479 URL: http://svnweb.freebsd.org/changeset/base/257479 Log: IFC @257478. Added: user/andre/mbuf_staging/arm/freescale/imx/imx6_anatop.c - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_anatop.c user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopreg.h - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_anatopreg.h user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopvar.h - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_anatopvar.h user/andre/mbuf_staging/arm/freescale/imx/imx6_ccm.c - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_ccm.c user/andre/mbuf_staging/arm/freescale/imx/imx6_ccmreg.h - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_ccmreg.h user/andre/mbuf_staging/arm/freescale/imx/imx6_usbphy.c - copied unchanged from r257478, head/sys/arm/freescale/imx/imx6_usbphy.c user/andre/mbuf_staging/arm/freescale/imx/imx_sdhci.c - copied unchanged from r257478, head/sys/arm/freescale/imx/imx_sdhci.c Modified: user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h user/andre/mbuf_staging/dev/usb/serial/umodem.c user/andre/mbuf_staging/dev/usb/usb.h user/andre/mbuf_staging/ia64/ia64/mp_machdep.c user/andre/mbuf_staging/ia64/ia64/pmap.c user/andre/mbuf_staging/ia64/include/pmap.h user/andre/mbuf_staging/kern/uipc_socket.c user/andre/mbuf_staging/net/if_var.h user/andre/mbuf_staging/powerpc/pseries/mmu_phyp.c Directory Properties: user/andre/mbuf_staging/ (props changed) Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_anatop.c (from r257478, head/sys/arm/freescale/imx/imx6_anatop.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_anatop.c Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_anatop.c) @@ -0,0 +1,155 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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. + */ + +#include +__FBSDID("$FreeBSD$"); + +/* + * Analog PLL and power regulator driver for Freescale i.MX6 family of SoCs. + * + * We don't really do anything with analog PLLs, but the registers for + * controlling them belong to the same block as the power regulator registers. + * Since the newbus hierarchy makes it hard for anyone other than us to get at + * them, we just export a couple public functions to allow the imx6 CCM clock + * driver to read and write those registers. + * + * We also don't do anything about power regulation yet, but when the need + * arises, this would be the place for that code to live. + * + * I have no idea where the "anatop" name comes from. It's in the standard DTS + * source describing i.MX6 SoCs, and in the linux and u-boot code which comes + * from Freescale, but it's not in the SoC manual. + */ + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include + +#include +#include + +struct imx6_anatop_softc { + device_t dev; + struct resource *mem_res; +}; + +static struct imx6_anatop_softc *imx6_anatop_sc; + +uint32_t +imx6_anatop_read_4(bus_size_t offset) +{ + + return (bus_read_4(imx6_anatop_sc->mem_res, offset)); +} + +void +imx6_anatop_write_4(bus_size_t offset, uint32_t value) +{ + + bus_write_4(imx6_anatop_sc->mem_res, offset, value); +} + +static int +imx6_anatop_detach(device_t dev) +{ + struct imx6_anatop_softc *sc; + + sc = device_get_softc(dev); + + if (sc->mem_res != NULL) + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->mem_res); + + return (0); +} + +static int +imx6_anatop_attach(device_t dev) +{ + struct imx6_anatop_softc *sc; + int err, rid; + + sc = device_get_softc(dev); + + /* Allocate bus_space resources. */ + rid = 0; + sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, + RF_ACTIVE); + if (sc->mem_res == NULL) { + device_printf(dev, "Cannot allocate memory resources\n"); + err = ENXIO; + goto out; + } + + imx6_anatop_sc = sc; + err = 0; + +out: + + if (err != 0) + imx6_anatop_detach(dev); + + return (err); +} + +static int +imx6_anatop_probe(device_t dev) +{ + + if (ofw_bus_is_compatible(dev, "fsl,imx6q-anatop") == 0) + return (ENXIO); + + device_set_desc(dev, "Freescale i.MX6 Analog PLLs and Power"); + + return (BUS_PROBE_DEFAULT); +} + +static device_method_t imx6_anatop_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, imx6_anatop_probe), + DEVMETHOD(device_attach, imx6_anatop_attach), + DEVMETHOD(device_detach, imx6_anatop_detach), + + DEVMETHOD_END +}; + +static driver_t imx6_anatop_driver = { + "imx6_anatop", + imx6_anatop_methods, + sizeof(struct imx6_anatop_softc) +}; + +static devclass_t imx6_anatop_devclass; + +DRIVER_MODULE(imx6_anatop, simplebus, imx6_anatop_driver, imx6_anatop_devclass, 0, 0); + Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopreg.h (from r257478, head/sys/arm/freescale/imx/imx6_anatopreg.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopreg.h Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_anatopreg.h) @@ -0,0 +1,130 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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$ + */ + +#ifndef IMX6_ANATOPREG_H +#define IMX6_ANATOPREG_H + +#define IMX6_ANALOG_CCM_PLL_ARM 0x000 +#define IMX6_ANALOG_CCM_PLL_ARM_SET 0x004 +#define IMX6_ANALOG_CCM_PLL_ARM_CLR 0x008 +#define IMX6_ANALOG_CCM_PLL_ARM_TOG 0x00C +#define IMX6_ANALOG_CCM_PLL_USB1 0x010 +#define IMX6_ANALOG_CCM_PLL_USB1_SET 0x014 +#define IMX6_ANALOG_CCM_PLL_USB1_CLR 0x018 +#define IMX6_ANALOG_CCM_PLL_USB1_TOG 0x01C +#define IMX6_ANALOG_CCM_PLL_USB_LOCK (1 << 31) +#define IMX6_ANALOG_CCM_PLL_USB_BYPASS (1 << 16) +#define IMX6_ANALOG_CCM_PLL_USB_ENABLE (1 << 13) +#define IMX6_ANALOG_CCM_PLL_USB_POWER (1 << 12) +#define IMX6_ANALOG_CCM_PLL_USB_EN_USB_CLKS (1 << 6) +#define IMX6_ANALOG_CCM_PLL_USB2 0x020 +#define IMX6_ANALOG_CCM_PLL_USB2_SET 0x024 +#define IMX6_ANALOG_CCM_PLL_USB2_CLR 0x028 +#define IMX6_ANALOG_CCM_PLL_USB2_TOG 0x02C +#define IMX6_ANALOG_CCM_PLL_SYS 0x030 +#define IMX6_ANALOG_CCM_PLL_SYS_SET 0x034 +#define IMX6_ANALOG_CCM_PLL_SYS_CLR 0x038 +#define IMX6_ANALOG_CCM_PLL_SYS_TOG 0x03C +#define IMX6_ANALOG_CCM_PLL_SYS_SS 0x040 +#define IMX6_ANALOG_CCM_PLL_SYS_NUM 0x050 +#define IMX6_ANALOG_CCM_PLL_SYS_DENOM 0x060 +#define IMX6_ANALOG_CCM_PLL_AUDIO 0x070 +#define IMX6_ANALOG_CCM_PLL_AUDIO_SET 0x074 +#define IMX6_ANALOG_CCM_PLL_AUDIO_CLR 0x078 +#define IMX6_ANALOG_CCM_PLL_AUDIO_TOG 0x07C +#define IMX6_ANALOG_CCM_PLL_AUDIO_NUM 0x080 +#define IMX6_ANALOG_CCM_PLL_AUDIO_DENOM 0x090 +#define IMX6_ANALOG_CCM_PLL_VIDEO 0x0A0 +#define IMX6_ANALOG_CCM_PLL_VIDEO_SET 0x0A4 +#define IMX6_ANALOG_CCM_PLL_VIDEO_CLR 0x0A8 +#define IMX6_ANALOG_CCM_PLL_VIDEO_TOG 0x0AC +#define IMX6_ANALOG_CCM_PLL_VIDEO_NUM 0x0B0 +#define IMX6_ANALOG_CCM_PLL_VIDEO_DENOM 0x0C0 +#define IMX6_ANALOG_CCM_PLL_MLB 0x0D0 +#define IMX6_ANALOG_CCM_PLL_MLB_SET 0x0D4 +#define IMX6_ANALOG_CCM_PLL_MLB_CLR 0x0D8 +#define IMX6_ANALOG_CCM_PLL_MLB_TOG 0x0DC +#define IMX6_ANALOG_CCM_PLL_ENET 0x0E0 +#define IMX6_ANALOG_CCM_PLL_ENET_SET 0x0E4 +#define IMX6_ANALOG_CCM_PLL_ENET_CLR 0x0E8 +#define IMX6_ANALOG_CCM_PLL_ENET_TOG 0x0EC +#define IMX6_ANALOG_CCM_PFD_480 0x0F0 +#define IMX6_ANALOG_CCM_PFD_480_SET 0x0F4 +#define IMX6_ANALOG_CCM_PFD_480_CLR 0x0F8 +#define IMX6_ANALOG_CCM_PFD_480_TOG 0x0FC +#define IMX6_ANALOG_CCM_PFD_528 0x100 +#define IMX6_ANALOG_CCM_PFD_528_SET 0x104 +#define IMX6_ANALOG_CCM_PFD_528_CLR 0x108 +#define IMX6_ANALOG_CCM_PFD_528_TOG 0x10C +#define IMX6_ANALOG_CCM_MISC0 0x150 +#define IMX6_ANALOG_CCM_MISC0_SET 0x154 +#define IMX6_ANALOG_CCM_MISC0_CLR 0x158 +#define IMX6_ANALOG_CCM_MISC0_TOG 0x15C +#define IMX6_ANALOG_CCM_MISC2 0x170 +#define IMX6_ANALOG_CCM_MISC2_SET 0x174 +#define IMX6_ANALOG_CCM_MISC2_CLR 0x178 +#define IMX6_ANALOG_CCM_MISC2_TOG 0x17C + +#define IMX6_ANALOG_USB1_VBUS_DETECT 0x1A0 +#define IMX6_ANALOG_USB1_VBUS_DETECT_SET 0x1A4 +#define IMX6_ANALOG_USB1_VBUS_DETECT_CLR 0x1A8 +#define IMX6_ANALOG_USB1_VBUS_DETECT_TOG 0x1AC +#define IMX6_ANALOG_USB1_CHRG_DETECT 0x1B0 +#define IMX6_ANALOG_USB1_CHRG_DETECT_SET 0x1B4 +#define IMX6_ANALOG_USB1_CHRG_DETECT_CLR 0x1B8 +#define IMX6_ANALOG_USB1_CHRG_DETECT_TOG 0x1BC +#define IMX6_ANALOG_USB_CHRG_DETECT_N_ENABLE (1 << 20) /* EN_B */ +#define IMX6_ANALOG_USB_CHRG_DETECT_N_CHK_CHRG (1 << 19) /* CHK_CHRG_B */ +#define IMX6_ANALOG_USB_CHRG_DETECT_CHK_CONTACT (1 << 18) +#define IMX6_ANALOG_USB1_VBUS_DETECT_STAT 0x1C0 +#define IMX6_ANALOG_USB1_CHRG_DETECT_STAT 0x1D0 +#define IMX6_ANALOG_USB1_MISC 0x1F0 +#define IMX6_ANALOG_USB1_MISC_SET 0x1F4 +#define IMX6_ANALOG_USB1_MISC_CLR 0x1F8 +#define IMX6_ANALOG_USB1_MISC_TOG 0x1FC +#define IMX6_ANALOG_USB2_VBUS_DETECT 0x200 +#define IMX6_ANALOG_USB2_VBUS_DETECT_SET 0x204 +#define IMX6_ANALOG_USB2_VBUS_DETECT_CLR 0x208 +#define IMX6_ANALOG_USB2_VBUS_DETECT_TOG 0x20C +#define IMX6_ANALOG_USB2_CHRG_DETECT 0x210 +#define IMX6_ANALOG_USB2_CHRG_DETECT_SET 0x214 +#define IMX6_ANALOG_USB2_CHRG_DETECT_CLR 0x218 +#define IMX6_ANALOG_USB2_CHRG_DETECT_TOG 0x21C +#define IMX6_ANALOG_USB2_VBUS_DETECT_STAT 0x220 +#define IMX6_ANALOG_USB2_CHRG_DETECT_STAT 0x230 +#define IMX6_ANALOG_USB2_MISC 0x250 +#define IMX6_ANALOG_USB2_MISC_SET 0x254 +#define IMX6_ANALOG_USB2_MISC_CLR 0x258 +#define IMX6_ANALOG_USB2_MISC_TOG 0x25C +#define IMX6_ANALOG_DIGPROG 0x260 +#define IMX6_ANALOG_DIGPROG_SL 0x280 +#define IMX6_ANALOG_DIGPROG_SOCTYPE_SHIFT 16 +#define IMX6_ANALOG_DIGPROG_SOCTYPE_MASK \ + (0xff << IMX6_ANALOG_DIGPROG_SOCTYPE_SHIFT) + +#endif Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopvar.h (from r257478, head/sys/arm/freescale/imx/imx6_anatopvar.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_anatopvar.h Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_anatopvar.h) @@ -0,0 +1,43 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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$ + */ + +#ifndef IMX6_ANATOPVAR_H +#define IMX6_ANATOPVAR_H + +/* + * All registers controlling various analog aspects of the SoC (such as PLLs or + * voltage regulators or USB VBUS detection) are gathered together under the + * anatop device (because of newbus hierarchical resource management), but other + * drivers such as CMM or USBPHY need access to these registers. These + * functions let them have at the hardware directly. No effort is made by these + * functions to mediate concurrent access. + */ +uint32_t imx6_anatop_read_4(bus_size_t _offset); +void imx6_anatop_write_4(bus_size_t _offset, uint32_t _value); + +#endif Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_ccm.c (from r257478, head/sys/arm/freescale/imx/imx6_ccm.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_ccm.c Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_ccm.c) @@ -0,0 +1,225 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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. + */ + +#include +__FBSDID("$FreeBSD$"); + +/* + * Clocks and power control driver for Freescale i.MX6 family of SoCs. + */ + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include + +#include +#include +#include +#include + + +/* XXX temp kludge for imx51_get_clock. */ +#include +#include + +struct ccm_softc { + device_t dev; + struct resource *mem_res; +}; + +static struct ccm_softc *ccm_sc; + +static inline uint32_t +RD4(struct ccm_softc *sc, bus_size_t off) +{ + + return (bus_read_4(sc->mem_res, off)); +} + +static inline void +WR4(struct ccm_softc *sc, bus_size_t off, uint32_t val) +{ + + bus_write_4(sc->mem_res, off, val); +} + +static int +ccm_detach(device_t dev) +{ + struct ccm_softc *sc; + + sc = device_get_softc(dev); + + if (sc->mem_res != NULL) + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->mem_res); + + return (0); +} + +static int +ccm_attach(device_t dev) +{ + struct ccm_softc *sc; + int err, rid; + + sc = device_get_softc(dev); + err = 0; + + /* Allocate bus_space resources. */ + rid = 0; + sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, + RF_ACTIVE); + if (sc->mem_res == NULL) { + device_printf(dev, "Cannot allocate memory resources\n"); + err = ENXIO; + goto out; + } + + ccm_sc = sc; + err = 0; + +out: + + if (err != 0) + ccm_detach(dev); + + return (err); +} + +static int +ccm_probe(device_t dev) +{ + + if (ofw_bus_is_compatible(dev, "fsl,imx6q-ccm") == 0) + return (ENXIO); + + device_set_desc(dev, "Freescale i.MX6 Clock Control Module"); + + return (BUS_PROBE_DEFAULT); +} + +void +imx_ccm_usb_enable(device_t _usbdev) +{ + + /* + * For imx6, the USBOH3 clock gate is bits 0-1 of CCGR6, so no need for + * shifting and masking here, just set the low-order two bits to ALWAYS. + */ + WR4(ccm_sc, CCM_CCGR6, RD4(ccm_sc, CCM_CCGR6) | CCGR_CLK_MODE_ALWAYS); +} + +void +imx_ccm_usbphy_enable(device_t _phydev) +{ + /* + * XXX Which unit? + * Right now it's not clear how to figure from fdt data which phy unit + * we're supposed to operate on. Until this is worked out, just enable + * both PHYs. + */ +#if 0 + int phy_num, regoff; + + phy_num = 0; /* XXX */ + + switch (phy_num) { + case 0: + regoff = 0; + break; + case 1: + regoff = 0x10; + break; + default: + device_printf(ccm_sc->dev, "Bad PHY number %u,\n", + phy_num); + return; + } + + imx6_anatop_write_4(IMX6_ANALOG_CCM_PLL_USB1 + regoff, + IMX6_ANALOG_CCM_PLL_USB_ENABLE | + IMX6_ANALOG_CCM_PLL_USB_POWER | + IMX6_ANALOG_CCM_PLL_USB_EN_USB_CLKS); +#else + imx6_anatop_write_4(IMX6_ANALOG_CCM_PLL_USB1 + 0, + IMX6_ANALOG_CCM_PLL_USB_ENABLE | + IMX6_ANALOG_CCM_PLL_USB_POWER | + IMX6_ANALOG_CCM_PLL_USB_EN_USB_CLKS); + + imx6_anatop_write_4(IMX6_ANALOG_CCM_PLL_USB1 + 0x10, + IMX6_ANALOG_CCM_PLL_USB_ENABLE | + IMX6_ANALOG_CCM_PLL_USB_POWER | + IMX6_ANALOG_CCM_PLL_USB_EN_USB_CLKS); +#endif +} + + + + + +// XXX Fix this. This has to be here for other code to link, +// but it doesn't have to return anything useful for imx6 right now. +u_int +imx51_get_clock(enum imx51_clock clk) +{ + switch (clk) + { + case IMX51CLK_IPG_CLK_ROOT: + return 66000000; + default: + printf("imx51_get_clock() on imx6 doesn't know about clock %d\n", clk); + break; + } + return 0; +} + +static device_method_t ccm_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, ccm_probe), + DEVMETHOD(device_attach, ccm_attach), + DEVMETHOD(device_detach, ccm_detach), + + DEVMETHOD_END +}; + +static driver_t ccm_driver = { + "ccm", + ccm_methods, + sizeof(struct ccm_softc) +}; + +static devclass_t ccm_devclass; + +DRIVER_MODULE(ccm, simplebus, ccm_driver, ccm_devclass, 0, 0); + Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_ccmreg.h (from r257478, head/sys/arm/freescale/imx/imx6_ccmreg.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_ccmreg.h Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_ccmreg.h) @@ -0,0 +1,41 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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$ + */ + +#ifndef IMX6_CCMREG_H +#define IMX6_CCMREG_H + +#define CCM_CCGR1 0x06C +#define CCM_CCGR2 0x070 +#define CCM_CCGR3 0x074 +#define CCM_CCGR4 0x078 +#define CCM_CCGR5 0x07C +#define CCM_CCGR6 0x080 +#define CCM_CMEOR 0x088 + + +#endif Copied: user/andre/mbuf_staging/arm/freescale/imx/imx6_usbphy.c (from r257478, head/sys/arm/freescale/imx/imx6_usbphy.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx6_usbphy.c Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx6_usbphy.c) @@ -0,0 +1,189 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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. + */ + +#include +__FBSDID("$FreeBSD$"); + +/* + * USBPHY driver for Freescale i.MX6 family of SoCs. + */ + +#include "opt_bus.h" + +#include +#include +#include +#include +#include +#include + +#include +#include + +#include + +#include +#include +#include + +/* + * Hardware register defines. + */ +#define PWD_REG 0x0000 +#define CTRL_STATUS_REG 0x0030 +#define CTRL_SET_REG 0x0034 +#define CTRL_CLR_REG 0x0038 +#define CTRL_TOGGLE_REG 0x003c +#define CTRL_SFTRST (1 << 31) +#define CTRL_CLKGATE (1 << 30) +#define CTRL_ENUTMILEVEL3 (1 << 15) +#define CTRL_ENUTMILEVEL2 (1 << 14) + +struct usbphy_softc { + device_t dev; + struct resource *mem_res; + u_int phy_num; +}; + +static int +usbphy_detach(device_t dev) +{ + struct usbphy_softc *sc; + + sc = device_get_softc(dev); + + if (sc->mem_res != NULL) + bus_release_resource(dev, SYS_RES_MEMORY, 0, sc->mem_res); + + return (0); +} + +static int +usbphy_attach(device_t dev) +{ + struct usbphy_softc *sc; + int err, regoff, rid; + + sc = device_get_softc(dev); + err = 0; + + /* Allocate bus_space resources. */ + rid = 0; + sc->mem_res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, + RF_ACTIVE); + if (sc->mem_res == NULL) { + device_printf(dev, "Cannot allocate memory resources\n"); + err = ENXIO; + goto out; + } + + /* + * XXX Totally lame way to get the unit number (but not quite as lame as + * adding an ad-hoc property to the fdt data). This works as long as + * this driver is used for imx6 only. + */ + const uint32_t PWD_PHY1_REG_PHYSADDR = 0x020c9000; + if (BUS_SPACE_PHYSADDR(sc->mem_res, 0) == PWD_PHY1_REG_PHYSADDR) { + sc->phy_num = 0; + regoff = 0; + } else { + sc->phy_num = 1; + regoff = 0x60; + } + + /* + * Based on a note in the u-boot source code, disable charger detection + * to avoid degrading the differential signaling on the DP line. Note + * that this disables (by design) both charger detection and contact + * detection, because of the screwball mix of active-high and active-low + * bits in this register. + */ + imx6_anatop_write_4(IMX6_ANALOG_USB1_CHRG_DETECT + regoff, + IMX6_ANALOG_USB_CHRG_DETECT_N_ENABLE | + IMX6_ANALOG_USB_CHRG_DETECT_N_CHK_CHRG); + + imx6_anatop_write_4(IMX6_ANALOG_USB1_CHRG_DETECT + regoff, + IMX6_ANALOG_USB_CHRG_DETECT_N_ENABLE | + IMX6_ANALOG_USB_CHRG_DETECT_N_CHK_CHRG); + + /* XXX Configure the overcurrent detection here. */ + + /* + * Turn on the phy clocks. + */ + imx_ccm_usbphy_enable(dev); + + /* + * Set the software reset bit, then clear both it and the clock gate bit + * to bring the device out of reset with the clock running. + */ + bus_write_4(sc->mem_res, CTRL_SET_REG, CTRL_SFTRST); + bus_write_4(sc->mem_res, CTRL_CLR_REG, CTRL_SFTRST | CTRL_CLKGATE); + + /* Power up: clear all bits in the powerdown register. */ + bus_write_4(sc->mem_res, PWD_REG, 0); + + err = 0; + +out: + + if (err != 0) + usbphy_detach(dev); + + return (err); +} + +static int +usbphy_probe(device_t dev) +{ + + if (ofw_bus_is_compatible(dev, "fsl,imx6q-usbphy") == 0) + return (ENXIO); + + device_set_desc(dev, "Freescale i.MX6 USB PHY"); + + return (BUS_PROBE_DEFAULT); +} + +static device_method_t usbphy_methods[] = { + /* Device interface */ + DEVMETHOD(device_probe, usbphy_probe), + DEVMETHOD(device_attach, usbphy_attach), + DEVMETHOD(device_detach, usbphy_detach), + + DEVMETHOD_END +}; + +static driver_t usbphy_driver = { + "usbphy", + usbphy_methods, + sizeof(struct usbphy_softc) +}; + +static devclass_t usbphy_devclass; + +DRIVER_MODULE(usbphy, simplebus, usbphy_driver, usbphy_devclass, 0, 0); + Modified: user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h ============================================================================== --- user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h Thu Oct 31 23:08:30 2013 (r257478) +++ user/andre/mbuf_staging/arm/freescale/imx/imx_machdep.h Thu Oct 31 23:39:31 2013 (r257479) @@ -36,24 +36,27 @@ void imx_devmap_addentry(vm_paddr_t _pa, vm_size_t _sz); void imx_wdog_cpu_reset(vm_offset_t _wdcr_phys) __attribute__((__noreturn__)); +/* From here down, routines are implemented in imxNN_machdep.c. */ + /* * SoC identity. + * According to the documentation, there is such a thing as an i.MX6 Dual + * (non-lite flavor). However, Freescale doesn't seem to have assigned it a + * number in their code for determining the SoC type in u-boot. + * + * To-do: put silicon revision numbers into the low-order bits somewhere. */ -#define IMXSOC_51 0x05000100 -#define IMXSOC_53 0x05000300 -#define IMXSOC_6S 0x06000010 -#define IMXSOC_6SL 0x06000011 -#define IMXSOC_6D 0x06000020 -#define IMXSOC_6DL 0x06000021 -#define IMXSOC_6Q 0x06000040 -#define IMXSOC_6QL 0x06000041 -#define IMXSOC_FAMSHIFT 24 +#define IMXSOC_51 0x51000000 +#define IMXSOC_53 0x53000000 +#define IMXSOC_6SL 0x60000000 +#define IMXSOC_6DL 0x61000000 +#define IMXSOC_6S 0x62000000 +#define IMXSOC_6Q 0x63000000 +#define IMXSOC_FAMSHIFT 28 u_int imx_soc_type(void); u_int imx_soc_family(void); -/* From here down, routines are implemented in imxNN_machdep.c. */ - void imx_devmap_init(void); /* Copied: user/andre/mbuf_staging/arm/freescale/imx/imx_sdhci.c (from r257478, head/sys/arm/freescale/imx/imx_sdhci.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/andre/mbuf_staging/arm/freescale/imx/imx_sdhci.c Thu Oct 31 23:39:31 2013 (r257479, copy of r257478, head/sys/arm/freescale/imx/imx_sdhci.c) @@ -0,0 +1,704 @@ +/*- + * Copyright (c) 2013 Ian Lepore + * 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. + * + */ +#include +__FBSDID("$FreeBSD$"); + +/* + * SDHCI driver glue for Freescale i.MX SoC family. + * + * This supports both eSDHC (earlier SoCs) and uSDHC (more recent SoCs). + */ + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include + +#include + +#include +#include + +#include +#include +#include + +#include +#include "sdhci_if.h" + +struct imx_sdhci_softc { + device_t dev; + struct resource * mem_res; + struct resource * irq_res; + void * intr_cookie; + struct sdhci_slot slot; + uint32_t baseclk_hz; + uint32_t sdclockreg_freq_bits; + uint32_t cmd_and_mode; + uint32_t r1bfix_intmask; + uint8_t r1bfix_type; + uint8_t hwtype; +}; + +#define R1BFIX_NONE 0 /* No fix needed at next interrupt. */ +#define R1BFIX_NODATA 1 /* Synthesize DATA_END for R1B w/o data. */ +#define R1BFIX_AC12 2 /* Wait for busy after auto command 12. */ + +#define HWTYPE_NONE 0 /* Hardware not recognized/supported. */ +#define HWTYPE_ESDHC 1 /* imx5x and earlier. */ +#define HWTYPE_USDHC 2 /* imx6. */ + +#define SDHC_WTMK_LVL 0x44 /* Watermark Level register. */ +#define USDHC_MIX_CONTROL 0x48 /* Mix(ed) Control register. */ +#define SDHC_VEND_SPEC 0xC0 /* Vendor-specific register. */ +#define SDHC_VEND_FRC_SDCLK_ON (1 << 8) +#define SDHC_VEND_IPGEN (1 << 11) +#define SDHC_VEND_HCKEN (1 << 12) +#define SDHC_VEND_PEREN (1 << 13) + +#define SDHC_PROT_CTRL 0x28 +#define SDHC_PROT_LED (1 << 0) +#define SDHC_PROT_WIDTH_1BIT (0 << 1) +#define SDHC_PROT_WIDTH_4BIT (1 << 1) +#define SDHC_PROT_WIDTH_8BIT (2 << 1) +#define SDHC_PROT_WIDTH_MASK (3 << 1) +#define SDHC_PROT_D3CD (1 << 3) +#define SDHC_PROT_EMODE_BIG (0 << 4) +#define SDHC_PROT_EMODE_HALF (1 << 4) +#define SDHC_PROT_EMODE_LITTLE (2 << 4) +#define SDHC_PROT_EMODE_MASK (3 << 4) +#define SDHC_PROT_SDMA (0 << 8) +#define SDHC_PROT_ADMA1 (1 << 8) +#define SDHC_PROT_ADMA2 (2 << 8) +#define SDHC_PROT_ADMA264 (3 << 8) +#define SDHC_PROT_DMA_MASK (3 << 8) +#define SDHC_PROT_CDTL (1 << 6) +#define SDHC_PROT_CDSS (1 << 7) + +#define SDHC_CLK_IPGEN (1 << 0) +#define SDHC_CLK_HCKEN (1 << 1) +#define SDHC_CLK_PEREN (1 << 2) +#define SDHC_CLK_DIVISOR_MASK 0x000000f0 +#define SDHC_CLK_DIVISOR_SHIFT 4 +#define SDHC_CLK_PRESCALE_MASK 0x0000ff00 +#define SDHC_CLK_PRESCALE_SHIFT 8 + +static struct ofw_compat_data compat_data[] = { + {"fsl,imx6q-usdhc", HWTYPE_USDHC}, + {"fsl,imx6sl-usdhc", HWTYPE_USDHC}, + {"fsl,imx53-esdhc", HWTYPE_ESDHC}, + {"fsl,imx51-esdhc", HWTYPE_ESDHC}, + {NULL, HWTYPE_NONE}, +};; + +static void imx_sdhc_set_clock(struct imx_sdhci_softc *sc, int enable); + +static inline uint32_t +RD4(struct imx_sdhci_softc *sc, bus_size_t off) +{ + + return (bus_read_4(sc->mem_res, off)); +} + +static inline void +WR4(struct imx_sdhci_softc *sc, bus_size_t off, uint32_t val) +{ + + bus_write_4(sc->mem_res, off, val); +} + +static uint8_t +imx_sdhci_read_1(device_t dev, struct sdhci_slot *slot, bus_size_t off) +{ + struct imx_sdhci_softc *sc = device_get_softc(dev); + uint32_t val32, wrk32; + + /* + * Most of the things in the standard host control register are in the + * hardware's wider protocol control register, but some of the bits are + * moved around. + */ + if (off == SDHCI_HOST_CONTROL) { + wrk32 = RD4(sc, SDHC_PROT_CTRL); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Fri Nov 1 19:19:47 2013 Return-Path: Delivered-To: svn-src-user@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 AB823115; Fri, 1 Nov 2013 19:19:47 +0000 (UTC) (envelope-from ray@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 993E42255; Fri, 1 Nov 2013 19:19:47 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA1JJle5015522; Fri, 1 Nov 2013 19:19:47 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA1JJlOV015521; Fri, 1 Nov 2013 19:19:47 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201311011919.rA1JJlOV015521@svn.freebsd.org> From: Aleksandr Rybalko Date: Fri, 1 Nov 2013 19:19:47 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257517 - user/ed/newcons/sys/dev/fb X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 19:19:47 -0000 Author: ray Date: Fri Nov 1 19:19:47 2013 New Revision: 257517 URL: http://svnweb.freebsd.org/changeset/base/257517 Log: Add link to drmn device. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/fb/fbd.c Modified: user/ed/newcons/sys/dev/fb/fbd.c ============================================================================== --- user/ed/newcons/sys/dev/fb/fbd.c Fri Nov 1 18:55:56 2013 (r257516) +++ user/ed/newcons/sys/dev/fb/fbd.c Fri Nov 1 19:19:47 2013 (r257517) @@ -413,5 +413,6 @@ driver_t fbd_driver = { devclass_t fbd_devclass; DRIVER_MODULE(fbd, fb, fbd_driver, fbd_devclass, 0, 0); +DRIVER_MODULE(fbd, drmn, fbd_driver, fbd_devclass, 0, 0); MODULE_VERSION(fbd, 1); From owner-svn-src-user@FreeBSD.ORG Fri Nov 1 19:45:17 2013 Return-Path: Delivered-To: svn-src-user@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 1B11FCC4; Fri, 1 Nov 2013 19:45:17 +0000 (UTC) (envelope-from andre@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 F1E12240D; Fri, 1 Nov 2013 19:45:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA1JjGM0024798; Fri, 1 Nov 2013 19:45:16 GMT (envelope-from andre@svn.freebsd.org) Received: (from andre@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA1JjFOs024792; Fri, 1 Nov 2013 19:45:15 GMT (envelope-from andre@svn.freebsd.org) Message-Id: <201311011945.rA1JjFOs024792@svn.freebsd.org> From: Andre Oppermann Date: Fri, 1 Nov 2013 19:45:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257520 - in user/andre/tcp-ao: . bin bin/cat bin/chflags bin/chio bin/cp bin/dd bin/df bin/domainname bin/ed bin/expr bin/freebsd-version bin/hostname bin/kenv bin/kill bin/ln bin/ls b... X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Nov 2013 19:45:17 -0000 Author: andre Date: Fri Nov 1 19:44:57 2013 New Revision: 257520 URL: http://svnweb.freebsd.org/changeset/base/257520 Log: IFC @257519. Added: user/andre/tcp-ao/bin/freebsd-version/ - copied from r257515, head/bin/freebsd-version/ user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/aggs/tst.sizedkeys.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.basics.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.basics.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compcast.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.compnarrowassign.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.execcast.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cg/ - copied from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/cg/ user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.tolower.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.tolower.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.toupper.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_ARG.toupper.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.tolower.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.tolower.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.tolowertoomany.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.tolowertoomany.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.toupper.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.toupper.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.touppertoomany.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/err.D_PROTO_LEN.touppertoomany.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.lltostrbase.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.lltostrbase.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.lltostrbase.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.lltostrbase.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.tolower.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.tolower.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.toupper.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.toupper.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal2.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal2.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal3.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.temporal3.d - copied from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.signs.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_AGG.bad.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_AGG.bad.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/tst.dyn.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/tst.dyn.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/err.D_TRACEMEM_ARGS.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/err.D_TRACEMEM_ARGS.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/err.D_TRACEMEM_DYNSIZE.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/err.D_TRACEMEM_DYNSIZE.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/tst.dynsize.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/tst.dynsize.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/tst.dynsize.d.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/tst.dynsize.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability1.ksh.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh.out - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/tst.TestTransStability2.ksh.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/tst.const.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/types/tst.const.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreap.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.noreapring.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh - copied unchanged from r257515, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/usdt/tst.reap.ksh user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.c - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.h - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pq.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_print.c - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_print.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.h - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs_core/ - copied from r257515, head/cddl/contrib/opensolaris/lib/libzfs_core/ user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzpool/common/zfs.d - copied unchanged from r257515, head/cddl/contrib/opensolaris/lib/libzpool/common/zfs.d user/andre/tcp-ao/cddl/lib/libdtrace/ip.d - copied unchanged from r257515, head/cddl/lib/libdtrace/ip.d user/andre/tcp-ao/cddl/lib/libdtrace/nfssrv.d - copied unchanged from r257515, head/cddl/lib/libdtrace/nfssrv.d user/andre/tcp-ao/cddl/lib/libdtrace/tcp.d - copied unchanged from r257515, head/cddl/lib/libdtrace/tcp.d user/andre/tcp-ao/cddl/lib/libdtrace/udp.d - copied unchanged from r257515, head/cddl/lib/libdtrace/udp.d user/andre/tcp-ao/cddl/lib/libzfs_core/ - copied from r257515, head/cddl/lib/libzfs_core/ - copied from r257515, head/contrib/apr/ - copied from r257515, head/contrib/apr-util/ user/andre/tcp-ao/contrib/bmake/mk/stage-install.sh - copied unchanged from r257515, head/contrib/bmake/mk/stage-install.sh user/andre/tcp-ao/contrib/bmake/unit-tests/export-env - copied unchanged from r257515, head/contrib/bmake/unit-tests/export-env user/andre/tcp-ao/contrib/bmake/unit-tests/sunshcmd - copied unchanged from r257515, head/contrib/bmake/unit-tests/sunshcmd user/andre/tcp-ao/contrib/byacc/package/mingw-byacc.spec - copied unchanged from r257515, head/contrib/byacc/package/mingw-byacc.spec user/andre/tcp-ao/contrib/dialog/buildlist.c - copied unchanged from r257515, head/contrib/dialog/buildlist.c user/andre/tcp-ao/contrib/dialog/package/freebsd/ - copied from r257515, head/contrib/dialog/package/freebsd/ user/andre/tcp-ao/contrib/dialog/po/an.po - copied unchanged from r257515, head/contrib/dialog/po/an.po user/andre/tcp-ao/contrib/dialog/po/fa.po - copied unchanged from r257515, head/contrib/dialog/po/fa.po user/andre/tcp-ao/contrib/dialog/po/ia.po - copied unchanged from r257515, head/contrib/dialog/po/ia.po user/andre/tcp-ao/contrib/dialog/rangebox.c - copied unchanged from r257515, head/contrib/dialog/rangebox.c user/andre/tcp-ao/contrib/dialog/samples/buildlist - copied unchanged from r257515, head/contrib/dialog/samples/buildlist user/andre/tcp-ao/contrib/dialog/samples/buildlist2 - copied unchanged from r257515, head/contrib/dialog/samples/buildlist2 user/andre/tcp-ao/contrib/dialog/samples/checklist12 - copied unchanged from r257515, head/contrib/dialog/samples/checklist12 user/andre/tcp-ao/contrib/dialog/samples/dft-cancel - copied unchanged from r257515, head/contrib/dialog/samples/dft-cancel user/andre/tcp-ao/contrib/dialog/samples/dft-extra - copied unchanged from r257515, head/contrib/dialog/samples/dft-extra user/andre/tcp-ao/contrib/dialog/samples/dft-help - copied unchanged from r257515, head/contrib/dialog/samples/dft-help user/andre/tcp-ao/contrib/dialog/samples/dft-no - copied unchanged from r257515, head/contrib/dialog/samples/dft-no user/andre/tcp-ao/contrib/dialog/samples/fselect0 - copied unchanged from r257515, head/contrib/dialog/samples/fselect0 user/andre/tcp-ao/contrib/dialog/samples/menubox12 - copied unchanged from r257515, head/contrib/dialog/samples/menubox12 user/andre/tcp-ao/contrib/dialog/samples/rangebox - copied unchanged from r257515, head/contrib/dialog/samples/rangebox user/andre/tcp-ao/contrib/dialog/samples/rangebox2 - copied unchanged from r257515, head/contrib/dialog/samples/rangebox2 user/andre/tcp-ao/contrib/dialog/samples/rangebox3 - copied unchanged from r257515, head/contrib/dialog/samples/rangebox3 user/andre/tcp-ao/contrib/dialog/samples/rangebox4 - copied unchanged from r257515, head/contrib/dialog/samples/rangebox4 user/andre/tcp-ao/contrib/dialog/samples/treeview - copied unchanged from r257515, head/contrib/dialog/samples/treeview user/andre/tcp-ao/contrib/dialog/samples/treeview2 - copied unchanged from r257515, head/contrib/dialog/samples/treeview2 user/andre/tcp-ao/contrib/dialog/samples/with-dquotes - copied unchanged from r257515, head/contrib/dialog/samples/with-dquotes user/andre/tcp-ao/contrib/dialog/samples/with-squotes - copied unchanged from r257515, head/contrib/dialog/samples/with-squotes user/andre/tcp-ao/contrib/dialog/treeview.c - copied unchanged from r257515, head/contrib/dialog/treeview.c user/andre/tcp-ao/contrib/flex/ - copied from r257515, head/contrib/flex/ user/andre/tcp-ao/contrib/gcc/config/i386/ammintrin.h - copied unchanged from r257515, head/contrib/gcc/config/i386/ammintrin.h user/andre/tcp-ao/contrib/ipfilter/WhatsNew50.txt - copied unchanged from r257515, head/contrib/ipfilter/WhatsNew50.txt user/andre/tcp-ao/contrib/ipfilter/arc4random.c - copied unchanged from r257515, head/contrib/ipfilter/arc4random.c user/andre/tcp-ao/contrib/ipfilter/genmask.c - copied unchanged from r257515, head/contrib/ipfilter/genmask.c user/andre/tcp-ao/contrib/ipfilter/ip_dstlist.c - copied unchanged from r257515, head/contrib/ipfilter/ip_dstlist.c user/andre/tcp-ao/contrib/ipfilter/ip_dstlist.h - copied unchanged from r257515, head/contrib/ipfilter/ip_dstlist.h user/andre/tcp-ao/contrib/ipfilter/ip_fil_compat.c - copied unchanged from r257515, head/contrib/ipfilter/ip_fil_compat.c user/andre/tcp-ao/contrib/ipfilter/ipf_rb.h - copied unchanged from r257515, head/contrib/ipfilter/ipf_rb.h user/andre/tcp-ao/contrib/ipfilter/lib/allocmbt.c - copied unchanged from r257515, head/contrib/ipfilter/lib/allocmbt.c user/andre/tcp-ao/contrib/ipfilter/lib/assigndefined.c - copied unchanged from r257515, head/contrib/ipfilter/lib/assigndefined.c user/andre/tcp-ao/contrib/ipfilter/lib/connecttcp.c - copied unchanged from r257515, head/contrib/ipfilter/lib/connecttcp.c user/andre/tcp-ao/contrib/ipfilter/lib/dupmbt.c - copied unchanged from r257515, head/contrib/ipfilter/lib/dupmbt.c user/andre/tcp-ao/contrib/ipfilter/lib/familyname.c - copied unchanged from r257515, head/contrib/ipfilter/lib/familyname.c user/andre/tcp-ao/contrib/ipfilter/lib/findword.c - copied unchanged from r257515, head/contrib/ipfilter/lib/findword.c user/andre/tcp-ao/contrib/ipfilter/lib/freembt.c - copied unchanged from r257515, head/contrib/ipfilter/lib/freembt.c user/andre/tcp-ao/contrib/ipfilter/lib/ftov.c - copied unchanged from r257515, head/contrib/ipfilter/lib/ftov.c user/andre/tcp-ao/contrib/ipfilter/lib/geticmptype.c - copied unchanged from r257515, head/contrib/ipfilter/lib/geticmptype.c user/andre/tcp-ao/contrib/ipfilter/lib/icmptypename.c - copied unchanged from r257515, head/contrib/ipfilter/lib/icmptypename.c user/andre/tcp-ao/contrib/ipfilter/lib/icmptypes.c - copied unchanged from r257515, head/contrib/ipfilter/lib/icmptypes.c user/andre/tcp-ao/contrib/ipfilter/lib/interror.c - copied unchanged from r257515, head/contrib/ipfilter/lib/interror.c user/andre/tcp-ao/contrib/ipfilter/lib/ipf_perror.c - copied unchanged from r257515, head/contrib/ipfilter/lib/ipf_perror.c user/andre/tcp-ao/contrib/ipfilter/lib/load_dstlist.c - copied unchanged from r257515, head/contrib/ipfilter/lib/load_dstlist.c user/andre/tcp-ao/contrib/ipfilter/lib/load_dstlistnode.c - copied unchanged from r257515, head/contrib/ipfilter/lib/load_dstlistnode.c user/andre/tcp-ao/contrib/ipfilter/lib/mb_hexdump.c - copied unchanged from r257515, head/contrib/ipfilter/lib/mb_hexdump.c user/andre/tcp-ao/contrib/ipfilter/lib/msgdsize.c - copied unchanged from r257515, head/contrib/ipfilter/lib/msgdsize.c user/andre/tcp-ao/contrib/ipfilter/lib/parsefields.c - copied unchanged from r257515, head/contrib/ipfilter/lib/parsefields.c user/andre/tcp-ao/contrib/ipfilter/lib/parseipfexpr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/parseipfexpr.c user/andre/tcp-ao/contrib/ipfilter/lib/parsewhoisline.c - copied unchanged from r257515, head/contrib/ipfilter/lib/parsewhoisline.c user/andre/tcp-ao/contrib/ipfilter/lib/poolio.c - copied unchanged from r257515, head/contrib/ipfilter/lib/poolio.c user/andre/tcp-ao/contrib/ipfilter/lib/prependmbt.c - copied unchanged from r257515, head/contrib/ipfilter/lib/prependmbt.c user/andre/tcp-ao/contrib/ipfilter/lib/printactiveaddr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printactiveaddr.c user/andre/tcp-ao/contrib/ipfilter/lib/printaddr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printaddr.c user/andre/tcp-ao/contrib/ipfilter/lib/printdstl_live.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printdstl_live.c user/andre/tcp-ao/contrib/ipfilter/lib/printdstlist.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printdstlist.c user/andre/tcp-ao/contrib/ipfilter/lib/printdstlistdata.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printdstlistdata.c user/andre/tcp-ao/contrib/ipfilter/lib/printdstlistnode.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printdstlistnode.c user/andre/tcp-ao/contrib/ipfilter/lib/printdstlistpolicy.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printdstlistpolicy.c user/andre/tcp-ao/contrib/ipfilter/lib/printfieldhdr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printfieldhdr.c user/andre/tcp-ao/contrib/ipfilter/lib/printhost.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printhost.c user/andre/tcp-ao/contrib/ipfilter/lib/printipfexpr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printipfexpr.c user/andre/tcp-ao/contrib/ipfilter/lib/printiphdr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printiphdr.c user/andre/tcp-ao/contrib/ipfilter/lib/printlookup.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printlookup.c user/andre/tcp-ao/contrib/ipfilter/lib/printnataddr.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printnataddr.c user/andre/tcp-ao/contrib/ipfilter/lib/printnatfield.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printnatfield.c user/andre/tcp-ao/contrib/ipfilter/lib/printnatside.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printnatside.c user/andre/tcp-ao/contrib/ipfilter/lib/printpoolfield.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printpoolfield.c user/andre/tcp-ao/contrib/ipfilter/lib/printstatefields.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printstatefields.c user/andre/tcp-ao/contrib/ipfilter/lib/printtcpflags.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printtcpflags.c user/andre/tcp-ao/contrib/ipfilter/lib/printunit.c - copied unchanged from r257515, head/contrib/ipfilter/lib/printunit.c user/andre/tcp-ao/contrib/ipfilter/lib/save_execute.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_execute.c user/andre/tcp-ao/contrib/ipfilter/lib/save_file.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_file.c user/andre/tcp-ao/contrib/ipfilter/lib/save_nothing.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_nothing.c user/andre/tcp-ao/contrib/ipfilter/lib/save_syslog.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_syslog.c user/andre/tcp-ao/contrib/ipfilter/lib/save_v1trap.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_v1trap.c user/andre/tcp-ao/contrib/ipfilter/lib/save_v2trap.c - copied unchanged from r257515, head/contrib/ipfilter/lib/save_v2trap.c user/andre/tcp-ao/contrib/ipfilter/lib/vtof.c - copied unchanged from r257515, head/contrib/ipfilter/lib/vtof.c - copied unchanged from r257515, head/contrib/ipfilter/ml_ipl.c - copied unchanged from r257515, head/contrib/ipfilter/mlfk_ipl.c - copied unchanged from r257515, head/contrib/ipfilter/mli_ipl.c - copied unchanged from r257515, head/contrib/ipfilter/mln_ipl.c user/andre/tcp-ao/contrib/ipfilter/mln_rule.c - copied unchanged from r257515, head/contrib/ipfilter/mln_rule.c user/andre/tcp-ao/contrib/ipfilter/mlo_ipl.c - copied unchanged from r257515, head/contrib/ipfilter/mlo_ipl.c user/andre/tcp-ao/contrib/ipfilter/mlo_rule.c - copied unchanged from r257515, head/contrib/ipfilter/mlo_rule.c - copied unchanged from r257515, head/contrib/ipfilter/mls_ipl.c user/andre/tcp-ao/contrib/ipfilter/mls_rule.c - copied unchanged from r257515, head/contrib/ipfilter/mls_rule.c user/andre/tcp-ao/contrib/ipfilter/mlso_rule.c - copied unchanged from r257515, head/contrib/ipfilter/mlso_rule.c user/andre/tcp-ao/contrib/ipfilter/radix_ipf.c - copied unchanged from r257515, head/contrib/ipfilter/radix_ipf.c user/andre/tcp-ao/contrib/ipfilter/sys/ - copied from r257515, head/contrib/ipfilter/sys/ user/andre/tcp-ao/contrib/ipfilter/tools/ipfsyncd.c - copied unchanged from r257515, head/contrib/ipfilter/tools/ipfsyncd.c user/andre/tcp-ao/contrib/ldns-host/ - copied from r257515, head/contrib/ldns-host/ user/andre/tcp-ao/contrib/ldns/drill/config.h - copied unchanged from r257515, head/contrib/ldns/drill/config.h user/andre/tcp-ao/contrib/ldns/drill/drill.1 - copied unchanged from r257515, head/contrib/ldns/drill/drill.1 user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.Z.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.Z.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.bz2.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.bz2.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.grz.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.grz.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.gz.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.gz.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.lrz.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.lrz.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.lz.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.lz.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.lzma.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.lzma.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.lzo.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract.cpio.xz.uu - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract.cpio.xz.uu user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_Z.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_Z.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_bz2.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_bz2.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_grz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_grz.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_gz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_gz.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_lrz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_lrz.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_lz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_lz.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_lzma.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_lzma.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_lzo.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_lzo.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_extract_cpio_xz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_extract_cpio_xz.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_b64encode.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_b64encode.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_grzip.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_grzip.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_lrzip.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_lzop.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_lzop.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_uuencode.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_uuencode.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_xz.c - copied unchanged from r257515, head/contrib/libarchive/cpio/test/test_option_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_cmdline.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_cmdline.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_cmdline_private.h - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_cmdline_private.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_append_filter.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_read_append_filter.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_set_format.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_read_set_format.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_grzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_read_support_filter_grzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_read_support_filter_lrzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_lzop.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_read_support_filter_lzop.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_b64encode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_b64encode.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_by_name.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_by_name.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_grzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_grzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_lrzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_lzop.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_lzop.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_uuencode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_add_filter_uuencode.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_v7tar.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/archive_write_set_format_v7tar.c user/andre/tcp-ao/contrib/libarchive/libarchive/filter_fork_posix.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/filter_fork_posix.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_cmdline.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_archive_cmdline.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_multiple_data_objects.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_archive_read_multiple_data_objects.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_add_filter_by_name.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_archive_write_add_filter_by_name.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_set_format_by_name.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_archive_write_set_format_by_name.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzop.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_compat_lzop.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzop_1.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_compat_lzop_1.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzop_2.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_compat_lzop_2.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzop_3.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_compat_lzop_3.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_uudecode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_compat_uudecode.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part1.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part1.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part2.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part2.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part3.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part3.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part4.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part4.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part5.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part5.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part6.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_multiple_files.part6.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part1.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part1.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part2.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part2.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part3.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_single_file.part3.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part01.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part01.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part02.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part02.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part03.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part03.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part04.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part04.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part05.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part05.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part06.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part06.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part07.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part07.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part08.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part08.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part09.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part09.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part10.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_rar_multivolume_uncompressed_files.part10.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_grzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_grzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_grzip.tar.grz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_grzip.tar.grz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lrzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lrzip.tar.lrz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lrzip.tar.lrz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lzop.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lzop.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lzop.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lzop.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lzop_multiple_parts.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lzop_multiple_parts.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_lzop_multiple_parts.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_lzop_multiple_parts.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_program.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_program_signature.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_program_signature.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_filter_uudecode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_filter_uudecode.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic2.mtree.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic2.mtree.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic3.mtree.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic3.mtree.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0001.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0001.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0002.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0002.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0003.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0003.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0004.rar.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_rar_multivolume.part0004.rar.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored_1.zip.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored_1.zip.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored_2.zip.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_comment_stored_2.zip.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_mac_metadata.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_mac_metadata.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_mac_metadata.zip.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_mac_metadata.zip.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_sfx.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_sfx.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_sfx.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_format_zip_sfx.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_aa.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_aa.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ab.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ab.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ac.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ac.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ad.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ad.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ae.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_large_splitted_rar_ae.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_set_format.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_set_format.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_splitted_rar_aa.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_splitted_rar_aa.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_splitted_rar_ab.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_splitted_rar_ab.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_splitted_rar_ac.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_splitted_rar_ac.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_splitted_rar_ad.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_read_splitted_rar_ad.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_aa.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_aa.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_ab.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_ab.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_ac.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_splitted_rar_seek_support_ac.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_appledouble.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_appledouble.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_appledouble.cpio.gz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_appledouble.cpio.gz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_hfs_compression.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_hfs_compression.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_hfs_compression.tgz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_hfs_compression.tgz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_mac_metadata.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_mac_metadata.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_mac_metadata.tar.gz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_mac_metadata.tar.gz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_no_hfs_compression.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_no_hfs_compression.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_no_hfs_compression.tgz.uu - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_disk_no_hfs_compression.tgz.uu user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_b64encode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_b64encode.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_bzip2.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_bzip2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_compress.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_compress.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_gzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_gzip_timestamp.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_gzip_timestamp.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_lrzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_lzip.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_lzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_lzma.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_lzma.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_lzop.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_lzop.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_program.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_uuencode.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_uuencode.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_filter_xz.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_filter_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_7zip_empty.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_7zip_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_7zip_large.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_7zip_large.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_absolute_path.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_mtree_absolute_path.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_classic.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_mtree_classic.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_classic_indent.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_mtree_classic_indent.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_no_separator.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_mtree_no_separator.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_quoted_filename.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_mtree_quoted_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_tar_v7tar.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_format_tar_v7tar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_zip_set_compression_store.c - copied unchanged from r257515, head/contrib/libarchive/libarchive/test/test_write_zip_set_compression_store.c user/andre/tcp-ao/contrib/libarchive/tar/creation_set.c - copied unchanged from r257515, head/contrib/libarchive/tar/creation_set.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.Z.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.Z.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.bz2.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.bz2.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.grz.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.grz.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.gz.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.gz.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.lrz.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.lrz.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.lz.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.lz.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.lzma.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.lzma.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.lzo.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.lzo.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract.tar.xz.uu - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract.tar.xz.uu user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_Z.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_Z.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_bz2.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_bz2.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_grz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_grz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_gz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_gz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_lrz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_lrz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_lz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_lz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_lzma.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_lzma.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_lzo.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_lzo.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_extract_tar_xz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_extract_tar_xz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_a.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_a.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_b64encode.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_b64encode.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_grzip.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_grzip.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_j.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_j.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_lrzip.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_lrzip.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_lzma.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_lzma.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_lzop.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_lzop.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_older_than.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_older_than.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_uuencode.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_uuencode.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_xz.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_xz.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_z.c - copied unchanged from r257515, head/contrib/libarchive/tar/test/test_option_z.c user/andre/tcp-ao/contrib/libarchive/test_utils/ - copied from r257515, head/contrib/libarchive/test_utils/ - copied from r257515, head/contrib/libexecinfo/ user/andre/tcp-ao/contrib/libgnuregex/ - copied from r257515, head/contrib/libgnuregex/ user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/None.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/ADT/None.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SparseMultiSet.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/ADT/SparseMultiSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Analysis/CallGraphSCCPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CallPrinter.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Analysis/CallPrinter.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Analysis/PtrUseVisitor.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Analysis/TargetTransformInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/DAGCombine.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/DAGCombine.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/LiveIntervalUnion.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/LiveRegMatrix.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/MachineTraceMetrics.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/ScheduleDFS.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/CodeGen/VirtRegMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/DebugInfo/DWARFFormValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/ExecutionEngine/ObjectCache.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h user/andre/tcp-ao/contrib/llvm/include/llvm/IR/ - copied from r257515, head/contrib/llvm/include/llvm/IR/ user/andre/tcp-ao/contrib/llvm/include/llvm/IRReader/ - copied from r257515, head/contrib/llvm/include/llvm/IRReader/ user/andre/tcp-ao/contrib/llvm/include/llvm/InstVisitor.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/InstVisitor.h user/andre/tcp-ao/contrib/llvm/include/llvm/LinkAllIR.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/LinkAllIR.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCELF.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/MC/MCELF.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCELFStreamer.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/MC/MCELFStreamer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCInstBuilder.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/MC/MCInstBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Option/ - copied from r257515, head/contrib/llvm/include/llvm/Option/ user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ArrayRecycler.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/ArrayRecycler.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/CBindingWrapping.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/CBindingWrapping.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Compression.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/Compression.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ConvertUTF.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/ConvertUTF.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ErrorOr.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/ErrorOr.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Watchdog.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/Watchdog.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/YAMLTraits.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Support/YAMLTraits.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/CostTable.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Target/CostTable.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/ObjCARC.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Transforms/ObjCARC.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h - copied unchanged from r257515, head/contrib/llvm/include/llvm/Transforms/Utils/BlackList.h user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/CallPrinter.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Analysis/IPA/CallPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Analysis/IPA/InlineCost.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PtrUseVisitor.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Analysis/PtrUseVisitor.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Analysis/TargetTransformInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Bitcode/Reader/BitstreamReader.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ErlangGC.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/ErlangGC.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/TargetInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/TargetLoweringBase.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/CodeGen/TargetRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp - copied unchanged from r257515, head/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.h - copied unchanged from r257515, head/contrib/llvm/lib/DebugInfo/DWARFDebugFrame.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFRelocMap.h - copied unchanged from r257515, head/contrib/llvm/lib/DebugInfo/DWARFRelocMap.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp - copied unchanged from r257515, head/contrib/llvm/lib/ExecutionEngine/MCJIT/SectionMemoryManager.cpp user/andre/tcp-ao/contrib/llvm/lib/IR/ - copied from r257515, head/contrib/llvm/lib/IR/ user/andre/tcp-ao/contrib/llvm/lib/IRReader/ - copied from r257515, head/contrib/llvm/lib/IRReader/ user/andre/tcp-ao/contrib/llvm/lib/Option/ - copied from r257515, head/contrib/llvm/lib/Option/ user/andre/tcp-ao/contrib/llvm/lib/Support/Compression.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Support/Compression.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/ConvertUTF.c - copied unchanged from r257515, head/contrib/llvm/lib/Support/ConvertUTF.c user/andre/tcp-ao/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Support/ConvertUTFWrapper.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Watchdog.inc - copied unchanged from r257515, head/contrib/llvm/lib/Support/Unix/Watchdog.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Watchdog.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Support/Watchdog.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Watchdog.inc - copied unchanged from r257515, head/contrib/llvm/lib/Support/Windows/Watchdog.inc user/andre/tcp-ao/contrib/llvm/lib/Support/YAMLTraits.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Support/YAMLTraits.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/AArch64/ - copied from r257515, head/contrib/llvm/lib/Target/AArch64/ user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/A15SDOptimizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/LICENSE.TXT - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/LICENSE.TXT user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOp.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOp.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/Hexagon/HexagonOperands.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInst.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsReginfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MicroMipsInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MicroMipsInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/Mips16ISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsOs16.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsOs16.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsOs16.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsOs16.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Mips/MipsSEISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/NVPTX/NVVMReflect.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/AsmParser/ - copied from r257515, head/contrib/llvm/lib/Target/PowerPC/AsmParser/ user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/R600/ - copied from r257515, head/contrib/llvm/lib/Target/R600/ user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcBaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/Sparc/SparcInstr64Bit.td user/andre/tcp-ao/contrib/llvm/lib/Target/SystemZ/ - copied from r257515, head/contrib/llvm/lib/Target/SystemZ/ user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/X86/X86FixupLEAs.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/X86/X86PadShortFunction.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86SchedHaswell.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/X86/X86SchedHaswell.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td - copied unchanged from r257515, head/contrib/llvm/lib/Target/X86/X86SchedSandyBridge.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/X86/X86TargetTransformInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/Disassembler/ - copied from r257515, head/contrib/llvm/lib/Target/XCore/Disassembler/ user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/InstPrinter/ - copied from r257515, head/contrib/llvm/lib/Target/XCore/InstPrinter/ user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h - copied unchanged from r257515, head/contrib/llvm/lib/Target/XCore/XCoreMCInstLower.h user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/ObjCARC/ - copied from r257515, head/contrib/llvm/lib/Transforms/ObjCARC/ user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp - copied unchanged from r257515, head/contrib/llvm/lib/Transforms/Vectorize/VecUtils.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/VecUtils.h - copied unchanged from r257515, head/contrib/llvm/lib/Transforms/Vectorize/VecUtils.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/AST/AttrIterator.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/AST/DeclOpenMP.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/CapturedStmt.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/CharInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/CommentOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Format/ - copied from r257515, head/contrib/llvm/tools/clang/include/clang/Format/ user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Lex/MacroArgs.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/AST/ASTDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/AST/DeclOpenMP.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/CharInfo.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Basic/CharInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Format/ - copied from r257515, head/contrib/llvm/tools/clang/lib/Format/ user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Headers/prfchwintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Headers/rdseedintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/stdnoreturn.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Headers/stdnoreturn.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Lex/UnicodeCharSets.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationDiagnostics.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp - copied unchanged from r257515, head/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/lldb/ - copied from r257515, head/contrib/llvm/tools/lldb/ user/andre/tcp-ao/contrib/llvm/tools/llvm-objdump/COFFDump.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-objdump/COFFDump.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-objdump/ELFDump.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-objdump/ELFDump.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/COFFDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/ELFDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/Error.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/Error.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/Error.h - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/Error.h user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/MachODumper.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/MachODumper.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/ObjDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/ObjDumper.h - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/ObjDumper.h user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/StreamWriter.cpp - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/StreamWriter.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/StreamWriter.h - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/StreamWriter.h user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/llvm-readobj.h - copied unchanged from r257515, head/contrib/llvm/tools/llvm-readobj/llvm-readobj.h user/andre/tcp-ao/contrib/llvm/tools/llvm-symbolizer/ - copied from r257515, head/contrib/llvm/tools/llvm-symbolizer/ user/andre/tcp-ao/contrib/llvm/utils/TableGen/CTagsEmitter.cpp - copied unchanged from r257515, head/contrib/llvm/utils/TableGen/CTagsEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/OptParserEmitter.cpp - copied unchanged from r257515, head/contrib/llvm/utils/TableGen/OptParserEmitter.cpp user/andre/tcp-ao/contrib/mtree/only.c - copied unchanged from r257515, head/contrib/mtree/only.c user/andre/tcp-ao/contrib/nvi/catalog/zh_CN.GB2312.base - copied unchanged from r257515, head/contrib/nvi/catalog/zh_CN.GB2312.base user/andre/tcp-ao/contrib/nvi/catalog/zh_CN.GB2312.owner - copied unchanged from r257515, head/contrib/nvi/catalog/zh_CN.GB2312.owner user/andre/tcp-ao/contrib/nvi/cl/extern.h - copied unchanged from r257515, head/contrib/nvi/cl/extern.h user/andre/tcp-ao/contrib/nvi/common/conv.c - copied unchanged from r257515, head/contrib/nvi/common/conv.c user/andre/tcp-ao/contrib/nvi/common/conv.h - copied unchanged from r257515, head/contrib/nvi/common/conv.h user/andre/tcp-ao/contrib/nvi/common/encoding.c - copied unchanged from r257515, head/contrib/nvi/common/encoding.c user/andre/tcp-ao/contrib/nvi/common/extern.h - copied unchanged from r257515, head/contrib/nvi/common/extern.h user/andre/tcp-ao/contrib/nvi/common/multibyte.h - copied unchanged from r257515, head/contrib/nvi/common/multibyte.h user/andre/tcp-ao/contrib/nvi/common/options_def.h - copied unchanged from r257515, head/contrib/nvi/common/options_def.h user/andre/tcp-ao/contrib/nvi/ex/ex_def.h - copied unchanged from r257515, head/contrib/nvi/ex/ex_def.h user/andre/tcp-ao/contrib/nvi/ex/extern.h - copied unchanged from r257515, head/contrib/nvi/ex/extern.h user/andre/tcp-ao/contrib/nvi/regex/ - copied from r257515, head/contrib/nvi/regex/ user/andre/tcp-ao/contrib/nvi/vi/extern.h - copied unchanged from r257515, head/contrib/nvi/vi/extern.h user/andre/tcp-ao/contrib/openpam/lib/libpam/ - copied from r257515, head/contrib/openpam/lib/libpam/ user/andre/tcp-ao/contrib/openpam/m4/ - copied from r257515, head/contrib/openpam/m4/ user/andre/tcp-ao/contrib/openpam/mkpkgng.in - copied unchanged from r257515, head/contrib/openpam/mkpkgng.in user/andre/tcp-ao/contrib/openpam/t/t_file.c - copied unchanged from r257515, head/contrib/openpam/t/t_file.c user/andre/tcp-ao/contrib/openpam/test-driver - copied unchanged from r257515, head/contrib/openpam/test-driver user/andre/tcp-ao/contrib/sendmail/libsm/t-fget.c - copied unchanged from r257515, head/contrib/sendmail/libsm/t-fget.c - copied from r257515, head/contrib/serf/ user/andre/tcp-ao/contrib/sqlite3/ - copied from r257515, head/contrib/sqlite3/ - copied from r257515, head/contrib/subversion/ user/andre/tcp-ao/contrib/tcpdump/print-msnlb.c - copied unchanged from r257515, head/contrib/tcpdump/print-msnlb.c user/andre/tcp-ao/contrib/tcpdump/print-otv.c - copied unchanged from r257515, head/contrib/tcpdump/print-otv.c user/andre/tcp-ao/contrib/tcpdump/print-vxlan.c - copied unchanged from r257515, head/contrib/tcpdump/print-vxlan.c user/andre/tcp-ao/contrib/tcpdump/print-zeromq.c - copied unchanged from r257515, head/contrib/tcpdump/print-zeromq.c - copied from r257515, head/contrib/unbound/ user/andre/tcp-ao/contrib/unvis/ - copied from r257515, head/contrib/unvis/ user/andre/tcp-ao/contrib/vis/ - copied from r257515, head/contrib/vis/ user/andre/tcp-ao/contrib/wpa/hostapd/hlr_auc_gw.txt - copied unchanged from r257515, head/contrib/wpa/hostapd/hlr_auc_gw.txt user/andre/tcp-ao/contrib/wpa/hostapd/hostapd.eap_user_sqlite - copied unchanged from r257515, head/contrib/wpa/hostapd/hostapd.eap_user_sqlite user/andre/tcp-ao/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch - copied unchanged from r257515, head/contrib/wpa/patches/openssl-0.9.8x-tls-extensions.patch user/andre/tcp-ao/contrib/wpa/src/ap/eap_user_db.c - copied unchanged from r257515, head/contrib/wpa/src/ap/eap_user_db.c user/andre/tcp-ao/contrib/wpa/src/ap/gas_serv.c - copied unchanged from r257515, head/contrib/wpa/src/ap/gas_serv.c user/andre/tcp-ao/contrib/wpa/src/ap/gas_serv.h - copied unchanged from r257515, head/contrib/wpa/src/ap/gas_serv.h user/andre/tcp-ao/contrib/wpa/src/ap/hs20.c - copied unchanged from r257515, head/contrib/wpa/src/ap/hs20.c user/andre/tcp-ao/contrib/wpa/src/ap/hs20.h - copied unchanged from r257515, head/contrib/wpa/src/ap/hs20.h user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11_shared.c - copied unchanged from r257515, head/contrib/wpa/src/ap/ieee802_11_shared.c user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11_vht.c - copied unchanged from r257515, head/contrib/wpa/src/ap/ieee802_11_vht.c user/andre/tcp-ao/contrib/wpa/src/ap/p2p_hostapd.c - copied unchanged from r257515, head/contrib/wpa/src/ap/p2p_hostapd.c user/andre/tcp-ao/contrib/wpa/src/ap/p2p_hostapd.h - copied unchanged from r257515, head/contrib/wpa/src/ap/p2p_hostapd.h user/andre/tcp-ao/contrib/wpa/src/ap/vlan_util.c - copied unchanged from r257515, head/contrib/wpa/src/ap/vlan_util.c user/andre/tcp-ao/contrib/wpa/src/ap/vlan_util.h - copied unchanged from r257515, head/contrib/wpa/src/ap/vlan_util.h user/andre/tcp-ao/contrib/wpa/src/ap/wnm_ap.c - copied unchanged from r257515, head/contrib/wpa/src/ap/wnm_ap.c user/andre/tcp-ao/contrib/wpa/src/ap/wnm_ap.h - copied unchanged from r257515, head/contrib/wpa/src/ap/wnm_ap.h user/andre/tcp-ao/contrib/wpa/src/common/gas.c - copied unchanged from r257515, head/contrib/wpa/src/common/gas.c user/andre/tcp-ao/contrib/wpa/src/common/gas.h - copied unchanged from r257515, head/contrib/wpa/src/common/gas.h user/andre/tcp-ao/contrib/wpa/src/crypto/aes-ccm.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/aes-ccm.c user/andre/tcp-ao/contrib/wpa/src/crypto/aes-gcm.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/aes-gcm.c user/andre/tcp-ao/contrib/wpa/src/crypto/random.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/random.c user/andre/tcp-ao/contrib/wpa/src/crypto/random.h - copied unchanged from r257515, head/contrib/wpa/src/crypto/random.h user/andre/tcp-ao/contrib/wpa/src/crypto/sha1-prf.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/sha1-prf.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha256-prf.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/sha256-prf.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha256-tlsprf.c - copied unchanged from r257515, head/contrib/wpa/src/crypto/sha256-tlsprf.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha256_i.h - copied unchanged from r257515, head/contrib/wpa/src/crypto/sha256_i.h user/andre/tcp-ao/contrib/wpa/src/drivers/driver_bsd.c - copied unchanged from r257515, head/contrib/wpa/src/drivers/driver_bsd.c user/andre/tcp-ao/contrib/wpa/src/drivers/driver_common.c - copied unchanged from r257515, head/contrib/wpa/src/drivers/driver_common.c user/andre/tcp-ao/contrib/wpa/src/drivers/driver_privsep.c - copied unchanged from r257515, head/contrib/wpa/src/drivers/driver_privsep.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_pwd_common.c - copied unchanged from r257515, head/contrib/wpa/src/eap_common/eap_pwd_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_pwd_common.h - copied unchanged from r257515, head/contrib/wpa/src/eap_common/eap_pwd_common.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_pwd.c - copied unchanged from r257515, head/contrib/wpa/src/eap_peer/eap_pwd.c user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_pwd.c - copied unchanged from r257515, head/contrib/wpa/src/eap_server/eap_server_pwd.c user/andre/tcp-ao/contrib/wpa/src/l2_packet/l2_packet_privsep.c - copied unchanged from r257515, head/contrib/wpa/src/l2_packet/l2_packet_privsep.c user/andre/tcp-ao/contrib/wpa/src/p2p/ - copied from r257515, head/contrib/wpa/src/p2p/ user/andre/tcp-ao/contrib/wpa/src/radius/radius_das.c - copied unchanged from r257515, head/contrib/wpa/src/radius/radius_das.c user/andre/tcp-ao/contrib/wpa/src/radius/radius_das.h - copied unchanged from r257515, head/contrib/wpa/src/radius/radius_das.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/tdls.c - copied unchanged from r257515, head/contrib/wpa/src/rsn_supp/tdls.c user/andre/tcp-ao/contrib/wpa/src/utils/edit.c - copied unchanged from r257515, head/contrib/wpa/src/utils/edit.c user/andre/tcp-ao/contrib/wpa/src/utils/edit.h - copied unchanged from r257515, head/contrib/wpa/src/utils/edit.h user/andre/tcp-ao/contrib/wpa/src/utils/edit_readline.c - copied unchanged from r257515, head/contrib/wpa/src/utils/edit_readline.c user/andre/tcp-ao/contrib/wpa/src/utils/edit_simple.c - copied unchanged from r257515, head/contrib/wpa/src/utils/edit_simple.c user/andre/tcp-ao/contrib/wpa/src/utils/ext_password.c - copied unchanged from r257515, head/contrib/wpa/src/utils/ext_password.c user/andre/tcp-ao/contrib/wpa/src/utils/ext_password.h - copied unchanged from r257515, head/contrib/wpa/src/utils/ext_password.h user/andre/tcp-ao/contrib/wpa/src/utils/ext_password_i.h - copied unchanged from r257515, head/contrib/wpa/src/utils/ext_password_i.h user/andre/tcp-ao/contrib/wpa/src/utils/ext_password_test.c - copied unchanged from r257515, head/contrib/wpa/src/utils/ext_password_test.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_attr_parse.h - copied unchanged from r257515, head/contrib/wpa/src/wps/wps_attr_parse.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_validate.c - copied unchanged from r257515, head/contrib/wpa/src/wps/wps_validate.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/README-HS20 - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/README-HS20 user/andre/tcp-ao/contrib/wpa/wpa_supplicant/README-P2P - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/README-P2P user/andre/tcp-ao/contrib/wpa/wpa_supplicant/autoscan.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/autoscan.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/autoscan.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/autoscan.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/autoscan_exponential.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/autoscan_exponential.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/autoscan_periodic.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/autoscan_periodic.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bgscan_learn.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/bgscan_learn.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_p2p.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service.in user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service.in user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/dbus-listen-preq.py - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/dbus-listen-preq.py user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/p2p/ - copied from r257515, head/contrib/wpa/wpa_supplicant/examples/p2p/ user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/p2p-action-udhcp.sh - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/p2p-action-udhcp.sh user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/p2p-action.sh - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/p2p-action.sh user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/udhcpd-p2p.conf - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/udhcpd-p2p.conf user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wps-ap-cli - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/wps-ap-cli user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wps-nfc.py - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/examples/wps-nfc.py user/andre/tcp-ao/contrib/wpa/wpa_supplicant/gas_query.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/gas_query.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/gas_query.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/gas_query.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/hs20_supplicant.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/hs20_supplicant.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/hs20_supplicant.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/hs20_supplicant.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/interworking.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/interworking.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/interworking.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/interworking.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/nfc_pw_token.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/nfc_pw_token.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/offchannel.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/offchannel.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/offchannel.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/offchannel.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/p2p_supplicant.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/p2p_supplicant.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/p2p_supplicant.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/p2p_supplicant.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/utils/ - copied from r257515, head/contrib/wpa/wpa_supplicant/utils/ user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wifi_display.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wifi_display.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wifi_display.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wifi_display.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wnm_sta.c - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wnm_sta.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wnm_sta.h - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wnm_sta.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.mk - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.mk user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.sh - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wpa_supplicant_conf.sh user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf - copied unchanged from r257515, head/contrib/wpa/wpa_supplicant/wpa_supplicant_template.conf user/andre/tcp-ao/crypto/openssh/Makefile.in - copied unchanged from r257515, head/crypto/openssh/Makefile.in user/andre/tcp-ao/crypto/openssh/PROTOCOL.krl - copied unchanged from r257515, head/crypto/openssh/PROTOCOL.krl user/andre/tcp-ao/crypto/openssh/buildpkg.sh.in - copied unchanged from r257515, head/crypto/openssh/buildpkg.sh.in user/andre/tcp-ao/crypto/openssh/config.sub - copied unchanged from r257515, head/crypto/openssh/config.sub user/andre/tcp-ao/crypto/openssh/configure - copied unchanged from r257515, head/crypto/openssh/configure user/andre/tcp-ao/crypto/openssh/configure.ac - copied unchanged from r257515, head/crypto/openssh/configure.ac user/andre/tcp-ao/crypto/openssh/contrib/ - copied from r257515, head/crypto/openssh/contrib/ user/andre/tcp-ao/crypto/openssh/fixalgorithms - copied unchanged from r257515, head/crypto/openssh/fixalgorithms user/andre/tcp-ao/crypto/openssh/freebsd-configure.sh - copied unchanged from r257515, head/crypto/openssh/freebsd-configure.sh user/andre/tcp-ao/crypto/openssh/install-sh - copied unchanged from r257515, head/crypto/openssh/install-sh user/andre/tcp-ao/crypto/openssh/krb5_config.h - copied unchanged from r257515, head/crypto/openssh/krb5_config.h user/andre/tcp-ao/crypto/openssh/krl.c - copied unchanged from r257515, head/crypto/openssh/krl.c user/andre/tcp-ao/crypto/openssh/krl.h - copied unchanged from r257515, head/crypto/openssh/krl.h user/andre/tcp-ao/crypto/openssh/mdoc2man.awk - copied unchanged from r257515, head/crypto/openssh/mdoc2man.awk user/andre/tcp-ao/crypto/openssh/moduli.0 - copied unchanged from r257515, head/crypto/openssh/moduli.0 user/andre/tcp-ao/crypto/openssh/nchan.ms - copied unchanged from r257515, head/crypto/openssh/nchan.ms user/andre/tcp-ao/crypto/openssh/nchan2.ms - copied unchanged from r257515, head/crypto/openssh/nchan2.ms user/andre/tcp-ao/crypto/openssh/openbsd-compat/Makefile.in - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/Makefile.in user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-setres_id.c - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/bsd-setres_id.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-setres_id.h - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/bsd-setres_id.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/getopt.h - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/getopt.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/getopt_long.c - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/getopt_long.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/getrrsetbyname-ldns.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/regress/ - copied from r257515, head/crypto/openssh/openbsd-compat/regress/ user/andre/tcp-ao/crypto/openssh/openbsd-compat/strnlen.c - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/strnlen.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/strtoull.c - copied unchanged from r257515, head/crypto/openssh/openbsd-compat/strtoull.c user/andre/tcp-ao/crypto/openssh/openssh.xml.in - copied unchanged from r257515, head/crypto/openssh/openssh.xml.in user/andre/tcp-ao/crypto/openssh/opensshd.init.in - copied unchanged from r257515, head/crypto/openssh/opensshd.init.in user/andre/tcp-ao/crypto/openssh/regress/ - copied from r257515, head/crypto/openssh/regress/ user/andre/tcp-ao/crypto/openssh/sandbox-seccomp-filter.c - copied unchanged from r257515, head/crypto/openssh/sandbox-seccomp-filter.c user/andre/tcp-ao/crypto/openssh/scard/ - copied from r257515, head/crypto/openssh/scard/ user/andre/tcp-ao/crypto/openssh/scp.0 - copied unchanged from r257515, head/crypto/openssh/scp.0 user/andre/tcp-ao/crypto/openssh/sftp-server.0 - copied unchanged from r257515, head/crypto/openssh/sftp-server.0 user/andre/tcp-ao/crypto/openssh/sftp.0 - copied unchanged from r257515, head/crypto/openssh/sftp.0 user/andre/tcp-ao/crypto/openssh/ssh-add.0 - copied unchanged from r257515, head/crypto/openssh/ssh-add.0 user/andre/tcp-ao/crypto/openssh/ssh-agent.0 - copied unchanged from r257515, head/crypto/openssh/ssh-agent.0 user/andre/tcp-ao/crypto/openssh/ssh-keygen.0 - copied unchanged from r257515, head/crypto/openssh/ssh-keygen.0 user/andre/tcp-ao/crypto/openssh/ssh-keyscan.0 - copied unchanged from r257515, head/crypto/openssh/ssh-keyscan.0 user/andre/tcp-ao/crypto/openssh/ssh-keysign.0 - copied unchanged from r257515, head/crypto/openssh/ssh-keysign.0 user/andre/tcp-ao/crypto/openssh/ssh-pkcs11-helper.0 - copied unchanged from r257515, head/crypto/openssh/ssh-pkcs11-helper.0 user/andre/tcp-ao/crypto/openssh/ssh.0 - copied unchanged from r257515, head/crypto/openssh/ssh.0 user/andre/tcp-ao/crypto/openssh/ssh_config.0 - copied unchanged from r257515, head/crypto/openssh/ssh_config.0 user/andre/tcp-ao/crypto/openssh/sshd.0 - copied unchanged from r257515, head/crypto/openssh/sshd.0 user/andre/tcp-ao/crypto/openssh/sshd_config.0 - copied unchanged from r257515, head/crypto/openssh/sshd_config.0 user/andre/tcp-ao/crypto/openssh/survey.sh.in - copied unchanged from r257515, head/crypto/openssh/survey.sh.in user/andre/tcp-ao/crypto/openssh/umac128.c - copied unchanged from r257515, head/crypto/openssh/umac128.c user/andre/tcp-ao/etc/libmap.conf - copied unchanged from r257515, head/etc/libmap.conf user/andre/tcp-ao/etc/libmap32.conf - copied unchanged from r257515, head/etc/libmap32.conf user/andre/tcp-ao/etc/mtree/BSD.debug.dist - copied unchanged from r257515, head/etc/mtree/BSD.debug.dist user/andre/tcp-ao/etc/mtree/BSD.tests.dist - copied unchanged from r257515, head/etc/mtree/BSD.tests.dist user/andre/tcp-ao/etc/periodic/daily/401.status-graid - copied unchanged from r257515, head/etc/periodic/daily/401.status-graid user/andre/tcp-ao/etc/periodic/monthly/450.status-security - copied unchanged from r257515, head/etc/periodic/monthly/450.status-security user/andre/tcp-ao/etc/periodic/weekly/450.status-security - copied unchanged from r257515, head/etc/periodic/weekly/450.status-security user/andre/tcp-ao/etc/pkg/ - copied from r257515, head/etc/pkg/ user/andre/tcp-ao/etc/rc.d/ctld - copied unchanged from r257515, head/etc/rc.d/ctld user/andre/tcp-ao/etc/rc.d/iscsictl - copied unchanged from r257515, head/etc/rc.d/iscsictl user/andre/tcp-ao/etc/rc.d/iscsid - copied unchanged from r257515, head/etc/rc.d/iscsid user/andre/tcp-ao/etc/rc.d/local_unbound - copied unchanged from r257515, head/etc/rc.d/local_unbound user/andre/tcp-ao/etc/rc.d/swap - copied unchanged from r257515, head/etc/rc.d/swap user/andre/tcp-ao/etc/rc.d/swaplate - copied unchanged from r257515, head/etc/rc.d/swaplate user/andre/tcp-ao/gnu/usr.bin/cc/include/__wmmintrin_aes.h - copied unchanged from r257515, head/gnu/usr.bin/cc/include/__wmmintrin_aes.h user/andre/tcp-ao/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h - copied unchanged from r257515, head/gnu/usr.bin/cc/include/__wmmintrin_pclmul.h user/andre/tcp-ao/include/mk-osreldate.sh - copied unchanged from r257515, head/include/mk-osreldate.sh user/andre/tcp-ao/include/uchar.h - copied unchanged from r257515, head/include/uchar.h user/andre/tcp-ao/include/xlocale/_uchar.h - copied unchanged from r257515, head/include/xlocale/_uchar.h user/andre/tcp-ao/lib/clang/include/clang/AST/AttrDump.inc - copied unchanged from r257515, head/lib/clang/include/clang/AST/AttrDump.inc user/andre/tcp-ao/lib/clang/include/clang/AST/CommentCommandList.inc - copied unchanged from r257515, head/lib/clang/include/clang/AST/CommentCommandList.inc user/andre/tcp-ao/lib/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.inc - copied unchanged from r257515, head/lib/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.inc user/andre/tcp-ao/lib/clang/include/clang/Parse/AttrExprArgs.inc - copied unchanged from r257515, head/lib/clang/include/clang/Parse/AttrExprArgs.inc user/andre/tcp-ao/lib/clang/include/clang/Sema/AttrSpellingListIndex.inc - copied unchanged from r257515, head/lib/clang/include/clang/Sema/AttrSpellingListIndex.inc user/andre/tcp-ao/lib/clang/include/llvm/IR/ - copied from r257515, head/lib/clang/include/llvm/IR/ user/andre/tcp-ao/lib/clang/liblldb/ - copied from r257515, head/lib/clang/liblldb/ user/andre/tcp-ao/lib/clang/liblldbAPI/ - copied from r257515, head/lib/clang/liblldbAPI/ user/andre/tcp-ao/lib/clang/liblldbBreakpoint/ - copied from r257515, head/lib/clang/liblldbBreakpoint/ user/andre/tcp-ao/lib/clang/liblldbCommands/ - copied from r257515, head/lib/clang/liblldbCommands/ user/andre/tcp-ao/lib/clang/liblldbCore/ - copied from r257515, head/lib/clang/liblldbCore/ user/andre/tcp-ao/lib/clang/liblldbDataFormatters/ - copied from r257515, head/lib/clang/liblldbDataFormatters/ user/andre/tcp-ao/lib/clang/liblldbExpression/ - copied from r257515, head/lib/clang/liblldbExpression/ user/andre/tcp-ao/lib/clang/liblldbHostCommon/ - copied from r257515, head/lib/clang/liblldbHostCommon/ user/andre/tcp-ao/lib/clang/liblldbHostFreeBSD/ - copied from r257515, head/lib/clang/liblldbHostFreeBSD/ user/andre/tcp-ao/lib/clang/liblldbInterpreter/ - copied from r257515, head/lib/clang/liblldbInterpreter/ user/andre/tcp-ao/lib/clang/liblldbPluginABISysV_x86_64/ - copied from r257515, head/lib/clang/liblldbPluginABISysV_x86_64/ user/andre/tcp-ao/lib/clang/liblldbPluginCXXItaniumABI/ - copied from r257515, head/lib/clang/liblldbPluginCXXItaniumABI/ user/andre/tcp-ao/lib/clang/liblldbPluginDisassemblerLLVM/ - copied from r257515, head/lib/clang/liblldbPluginDisassemblerLLVM/ user/andre/tcp-ao/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/ - copied from r257515, head/lib/clang/liblldbPluginDynamicLoaderPosixDYLD/ user/andre/tcp-ao/lib/clang/liblldbPluginDynamicLoaderStatic/ - copied from r257515, head/lib/clang/liblldbPluginDynamicLoaderStatic/ user/andre/tcp-ao/lib/clang/liblldbPluginInstructionARM/ - copied from r257515, head/lib/clang/liblldbPluginInstructionARM/ user/andre/tcp-ao/lib/clang/liblldbPluginObjectContainerBSDArchive/ - copied from r257515, head/lib/clang/liblldbPluginObjectContainerBSDArchive/ user/andre/tcp-ao/lib/clang/liblldbPluginObjectFileELF/ - copied from r257515, head/lib/clang/liblldbPluginObjectFileELF/ user/andre/tcp-ao/lib/clang/liblldbPluginPlatformFreeBSD/ - copied from r257515, head/lib/clang/liblldbPluginPlatformFreeBSD/ user/andre/tcp-ao/lib/clang/liblldbPluginPlatformGDB/ - copied from r257515, head/lib/clang/liblldbPluginPlatformGDB/ user/andre/tcp-ao/lib/clang/liblldbPluginProcessElfCore/ - copied from r257515, head/lib/clang/liblldbPluginProcessElfCore/ user/andre/tcp-ao/lib/clang/liblldbPluginProcessFreeBSD/ - copied from r257515, head/lib/clang/liblldbPluginProcessFreeBSD/ user/andre/tcp-ao/lib/clang/liblldbPluginProcessGDBRemote/ - copied from r257515, head/lib/clang/liblldbPluginProcessGDBRemote/ user/andre/tcp-ao/lib/clang/liblldbPluginProcessPOSIX/ - copied from r257515, head/lib/clang/liblldbPluginProcessPOSIX/ user/andre/tcp-ao/lib/clang/liblldbPluginProcessUtility/ - copied from r257515, head/lib/clang/liblldbPluginProcessUtility/ user/andre/tcp-ao/lib/clang/liblldbPluginSymbolFileDWARF/ - copied from r257515, head/lib/clang/liblldbPluginSymbolFileDWARF/ user/andre/tcp-ao/lib/clang/liblldbPluginSymbolFileSymtab/ - copied from r257515, head/lib/clang/liblldbPluginSymbolFileSymtab/ user/andre/tcp-ao/lib/clang/liblldbPluginSymbolVendorELF/ - copied from r257515, head/lib/clang/liblldbPluginSymbolVendorELF/ user/andre/tcp-ao/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/ - copied from r257515, head/lib/clang/liblldbPluginUnwindAssemblyInstEmulation/ user/andre/tcp-ao/lib/clang/liblldbPluginUnwindAssemblyX86/ - copied from r257515, head/lib/clang/liblldbPluginUnwindAssemblyX86/ user/andre/tcp-ao/lib/clang/liblldbSymbol/ - copied from r257515, head/lib/clang/liblldbSymbol/ user/andre/tcp-ao/lib/clang/liblldbTarget/ - copied from r257515, head/lib/clang/liblldbTarget/ user/andre/tcp-ao/lib/clang/liblldbUtility/ - copied from r257515, head/lib/clang/liblldbUtility/ user/andre/tcp-ao/lib/clang/libllvmirreader/ - copied from r257515, head/lib/clang/libllvmirreader/ user/andre/tcp-ao/lib/clang/libllvmobjcarcopts/ - copied from r257515, head/lib/clang/libllvmobjcarcopts/ user/andre/tcp-ao/lib/clang/lldb.lib.mk - copied unchanged from r257515, head/lib/clang/lldb.lib.mk user/andre/tcp-ao/lib/csu/Makefile - copied unchanged from r257515, head/lib/csu/Makefile user/andre/tcp-ao/lib/libc++/libc++.ldscript - copied unchanged from r257515, head/lib/libc++/libc++.ldscript user/andre/tcp-ao/lib/libc/arm/gen/arm_initfini.c - copied unchanged from r257515, head/lib/libc/arm/gen/arm_initfini.c user/andre/tcp-ao/lib/libc/capability/ - copied from r257515, head/lib/libc/capability/ user/andre/tcp-ao/lib/libc/gen/dup3.3 - copied unchanged from r257515, head/lib/libc/gen/dup3.3 user/andre/tcp-ao/lib/libc/gen/dup3.c - copied unchanged from r257515, head/lib/libc/gen/dup3.c user/andre/tcp-ao/lib/libc/include/errlst.h - copied unchanged from r257515, head/lib/libc/include/errlst.h user/andre/tcp-ao/lib/libc/libc.ldscript - copied unchanged from r257515, head/lib/libc/libc.ldscript user/andre/tcp-ao/lib/libc/locale/c16rtomb.c - copied unchanged from r257515, head/lib/libc/locale/c16rtomb.c user/andre/tcp-ao/lib/libc/locale/c16rtomb_iconv.c - copied unchanged from r257515, head/lib/libc/locale/c16rtomb_iconv.c user/andre/tcp-ao/lib/libc/locale/c32rtomb.c - copied unchanged from r257515, head/lib/libc/locale/c32rtomb.c user/andre/tcp-ao/lib/libc/locale/c32rtomb_iconv.c - copied unchanged from r257515, head/lib/libc/locale/c32rtomb_iconv.c user/andre/tcp-ao/lib/libc/locale/cXXrtomb_iconv.h - copied unchanged from r257515, head/lib/libc/locale/cXXrtomb_iconv.h user/andre/tcp-ao/lib/libc/locale/mbrtoc16.c - copied unchanged from r257515, head/lib/libc/locale/mbrtoc16.c user/andre/tcp-ao/lib/libc/locale/mbrtoc16_iconv.c - copied unchanged from r257515, head/lib/libc/locale/mbrtoc16_iconv.c user/andre/tcp-ao/lib/libc/locale/mbrtoc32.c - copied unchanged from r257515, head/lib/libc/locale/mbrtoc32.c user/andre/tcp-ao/lib/libc/locale/mbrtoc32_iconv.c - copied unchanged from r257515, head/lib/libc/locale/mbrtoc32_iconv.c user/andre/tcp-ao/lib/libc/locale/mbrtocXX_iconv.h - copied unchanged from r257515, head/lib/libc/locale/mbrtocXX_iconv.h user/andre/tcp-ao/lib/libc/sys/aio_mlock.2 - copied unchanged from r257515, head/lib/libc/sys/aio_mlock.2 user/andre/tcp-ao/lib/libc/sys/procctl.2 - copied unchanged from r257515, head/lib/libc/sys/procctl.2 user/andre/tcp-ao/lib/libexecinfo/ - copied from r257515, head/lib/libexecinfo/ user/andre/tcp-ao/lib/libiconv_compat/ - copied from r257515, head/lib/libiconv_compat/ user/andre/tcp-ao/lib/libpmc/pmc.haswell.3 - copied unchanged from r257515, head/lib/libpmc/pmc.haswell.3 user/andre/tcp-ao/lib/libpmc/pmc.haswelluc.3 - copied unchanged from r257515, head/lib/libpmc/pmc.haswelluc.3 user/andre/tcp-ao/lib/libprocstat/core.c - copied unchanged from r257515, head/lib/libprocstat/core.c user/andre/tcp-ao/lib/libprocstat/core.h - copied unchanged from r257515, head/lib/libprocstat/core.h user/andre/tcp-ao/lib/libunbound/ - copied from r257515, head/lib/libunbound/ user/andre/tcp-ao/lib/libusb/libusb-0.1.pc - copied unchanged from r257515, head/lib/libusb/libusb-0.1.pc user/andre/tcp-ao/lib/libusb/libusb-1.0.pc - copied unchanged from r257515, head/lib/libusb/libusb-1.0.pc user/andre/tcp-ao/lib/libusb/libusb-2.0.pc - copied unchanged from r257515, head/lib/libusb/libusb-2.0.pc user/andre/tcp-ao/lib/msun/ld128/s_logl.c - copied unchanged from r257515, head/lib/msun/ld128/s_logl.c user/andre/tcp-ao/lib/msun/ld80/s_logl.c - copied unchanged from r257515, head/lib/msun/ld80/s_logl.c user/andre/tcp-ao/lib/msun/man/cacos.3 - copied unchanged from r257515, head/lib/msun/man/cacos.3 user/andre/tcp-ao/lib/msun/src/catrig.c - copied unchanged from r257515, head/lib/msun/src/catrig.c user/andre/tcp-ao/lib/msun/src/catrigf.c - copied unchanged from r257515, head/lib/msun/src/catrigf.c user/andre/tcp-ao/lib/msun/src/e_acoshl.c - copied unchanged from r257515, head/lib/msun/src/e_acoshl.c user/andre/tcp-ao/lib/msun/src/e_atanhl.c - copied unchanged from r257515, head/lib/msun/src/e_atanhl.c user/andre/tcp-ao/lib/msun/src/imprecise.c - copied unchanged from r257515, head/lib/msun/src/imprecise.c user/andre/tcp-ao/lib/msun/src/s_asinhl.c - copied unchanged from r257515, head/lib/msun/src/s_asinhl.c user/andre/tcp-ao/lib/msun/x86/ - copied from r257515, head/lib/msun/x86/ user/andre/tcp-ao/release/doc/ja_JP.eucJP/share/xml/catalog.xml - copied unchanged from r257515, head/release/doc/ja_JP.eucJP/share/xml/catalog.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.ent - copied unchanged from r257515, head/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.ent user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/share/xml/catalog.xml - copied unchanged from r257515, head/release/doc/ru_RU.KOI8-R/share/xml/catalog.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.ent - copied unchanged from r257515, head/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.ent user/andre/tcp-ao/release/doc/share/xml/catalog.xml - copied unchanged from r257515, head/release/doc/share/xml/catalog.xml user/andre/tcp-ao/release/picobsd/floppy.tree/etc/ssh/ - copied from r257515, head/release/picobsd/floppy.tree/etc/ssh/ user/andre/tcp-ao/release/release.conf.sample - copied unchanged from r257515, head/release/release.conf.sample user/andre/tcp-ao/release/release.sh - copied unchanged from r257515, head/release/release.sh user/andre/tcp-ao/sbin/mount/mount.conf.8 - copied unchanged from r257515, head/sbin/mount/mount.conf.8 user/andre/tcp-ao/sbin/nvmecontrol/devlist.c - copied unchanged from r257515, head/sbin/nvmecontrol/devlist.c user/andre/tcp-ao/sbin/nvmecontrol/firmware.c - copied unchanged from r257515, head/sbin/nvmecontrol/firmware.c user/andre/tcp-ao/sbin/nvmecontrol/identify.c - copied unchanged from r257515, head/sbin/nvmecontrol/identify.c user/andre/tcp-ao/sbin/nvmecontrol/logpage.c - copied unchanged from r257515, head/sbin/nvmecontrol/logpage.c user/andre/tcp-ao/sbin/nvmecontrol/nvmecontrol.h - copied unchanged from r257515, head/sbin/nvmecontrol/nvmecontrol.h user/andre/tcp-ao/sbin/nvmecontrol/perftest.c - copied unchanged from r257515, head/sbin/nvmecontrol/perftest.c user/andre/tcp-ao/sbin/nvmecontrol/reset.c - copied unchanged from r257515, head/sbin/nvmecontrol/reset.c user/andre/tcp-ao/share/doc/legal/realtek/ - copied from r257515, head/share/doc/legal/realtek/ user/andre/tcp-ao/share/examples/BSD_daemon/beastie2.eps - copied unchanged from r257515, head/share/examples/BSD_daemon/beastie2.eps user/andre/tcp-ao/share/examples/bhyve/ - copied from r257515, head/share/examples/bhyve/ user/andre/tcp-ao/share/examples/kld/random_adaptor/ - copied from r257515, head/share/examples/kld/random_adaptor/ user/andre/tcp-ao/share/keys/ - copied from r257515, head/share/keys/ user/andre/tcp-ao/share/man/man4/aacraid.4 - copied unchanged from r257515, head/share/man/man4/aacraid.4 user/andre/tcp-ao/share/man/man4/acpi_rapidstart.4 - copied unchanged from r257515, head/share/man/man4/acpi_rapidstart.4 user/andre/tcp-ao/share/man/man4/altera_atse.4 - copied unchanged from r257515, head/share/man/man4/altera_atse.4 user/andre/tcp-ao/share/man/man4/cc_cdg.4 - copied unchanged from r257515, head/share/man/man4/cc_cdg.4 user/andre/tcp-ao/share/man/man4/ctl.4 - copied unchanged from r257515, head/share/man/man4/ctl.4 user/andre/tcp-ao/share/man/man4/gpio.4 - copied unchanged from r257515, head/share/man/man4/gpio.4 user/andre/tcp-ao/share/man/man4/hptnr.4 - copied unchanged from r257515, head/share/man/man4/hptnr.4 user/andre/tcp-ao/share/man/man4/man4.arm/devcfg.4 - copied unchanged from r257515, head/share/man/man4/man4.arm/devcfg.4 user/andre/tcp-ao/share/man/man4/ntb.4 - copied unchanged from r257515, head/share/man/man4/ntb.4 user/andre/tcp-ao/share/man/man4/procdesc.4 - copied unchanged from r257515, head/share/man/man4/procdesc.4 user/andre/tcp-ao/share/man/man4/qlxgbe.4 - copied unchanged from r257515, head/share/man/man4/qlxgbe.4 user/andre/tcp-ao/share/man/man4/qlxge.4 - copied unchanged from r257515, head/share/man/man4/qlxge.4 user/andre/tcp-ao/share/man/man4/rsu.4 - copied unchanged from r257515, head/share/man/man4/rsu.4 user/andre/tcp-ao/share/man/man4/rsufw.4 - copied unchanged from r257515, head/share/man/man4/rsufw.4 user/andre/tcp-ao/share/man/man4/urtwn.4 - copied unchanged from r257515, head/share/man/man4/urtwn.4 user/andre/tcp-ao/share/man/man4/urtwnfw.4 - copied unchanged from r257515, head/share/man/man4/urtwnfw.4 user/andre/tcp-ao/share/man/man4/vmx.4 - copied unchanged from r257515, head/share/man/man4/vmx.4 user/andre/tcp-ao/share/man/man7/tests.7 - copied unchanged from r257515, head/share/man/man7/tests.7 user/andre/tcp-ao/share/man/man9/SDT.9 - copied unchanged from r257515, head/share/man/man9/SDT.9 user/andre/tcp-ao/share/man/man9/VOP_ADVISE.9 - copied unchanged from r257515, head/share/man/man9/VOP_ADVISE.9 user/andre/tcp-ao/share/man/man9/VOP_ALLOCATE.9 - copied unchanged from r257515, head/share/man/man9/VOP_ALLOCATE.9 user/andre/tcp-ao/share/man/man9/counter.9 - copied unchanged from r257515, head/share/man/man9/counter.9 user/andre/tcp-ao/share/man/man9/getenv.9 - copied unchanged from r257515, head/share/man/man9/getenv.9 user/andre/tcp-ao/share/man/man9/vm_page_busy.9 - copied unchanged from r257515, head/share/man/man9/vm_page_busy.9 user/andre/tcp-ao/share/man/man9/vmem.9 - copied unchanged from r257515, head/share/man/man9/vmem.9 user/andre/tcp-ao/share/mk/plain.test.mk - copied unchanged from r257515, head/share/mk/plain.test.mk user/andre/tcp-ao/share/monetdef/ca_ES.UTF-8.src - copied unchanged from r257515, head/share/monetdef/ca_ES.UTF-8.src user/andre/tcp-ao/share/monetdef/de_AT.UTF-8.src - copied unchanged from r257515, head/share/monetdef/de_AT.UTF-8.src user/andre/tcp-ao/share/monetdef/de_DE.UTF-8.src - copied unchanged from r257515, head/share/monetdef/de_DE.UTF-8.src user/andre/tcp-ao/share/monetdef/el_GR.UTF-8.src - copied unchanged from r257515, head/share/monetdef/el_GR.UTF-8.src user/andre/tcp-ao/share/monetdef/es_ES.UTF-8.src - copied unchanged from r257515, head/share/monetdef/es_ES.UTF-8.src user/andre/tcp-ao/share/monetdef/fi_FI.UTF-8.src - copied unchanged from r257515, head/share/monetdef/fi_FI.UTF-8.src user/andre/tcp-ao/share/monetdef/fr_BE.UTF-8.src - copied unchanged from r257515, head/share/monetdef/fr_BE.UTF-8.src user/andre/tcp-ao/share/monetdef/fr_FR.UTF-8.src - copied unchanged from r257515, head/share/monetdef/fr_FR.UTF-8.src user/andre/tcp-ao/share/monetdef/it_IT.UTF-8.src - copied unchanged from r257515, head/share/monetdef/it_IT.UTF-8.src user/andre/tcp-ao/share/monetdef/nl_BE.UTF-8.src - copied unchanged from r257515, head/share/monetdef/nl_BE.UTF-8.src user/andre/tcp-ao/share/monetdef/nl_NL.UTF-8.src - copied unchanged from r257515, head/share/monetdef/nl_NL.UTF-8.src user/andre/tcp-ao/sys/amd64/include/counter.h - copied unchanged from r257515, head/sys/amd64/include/counter.h user/andre/tcp-ao/sys/amd64/include/fdt.h - copied unchanged from r257515, head/sys/amd64/include/fdt.h user/andre/tcp-ao/sys/amd64/include/ofw_machdep.h - copied unchanged from r257515, head/sys/amd64/include/ofw_machdep.h user/andre/tcp-ao/sys/arm/allwinner/a20/ - copied from r257515, head/sys/arm/allwinner/a20/ user/andre/tcp-ao/sys/arm/arm/generic_timer.c - copied unchanged from r257515, head/sys/arm/arm/generic_timer.c user/andre/tcp-ao/sys/arm/arm/stdatomic.c - copied unchanged from r257515, head/sys/arm/arm/stdatomic.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_bsc.c - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_bsc.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_bscreg.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_bscvar.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_gpio.h - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_spi.c - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_spi.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_spireg.h - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_spireg.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_spivar.h - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/bcm2835_spivar.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/std.bcm2835 - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/std.bcm2835 user/andre/tcp-ao/sys/arm/broadcom/bcm2835/std.rpi - copied unchanged from r257515, head/sys/arm/broadcom/bcm2835/std.rpi user/andre/tcp-ao/sys/arm/conf/ARNDALE - copied unchanged from r257515, head/sys/arm/conf/ARNDALE user/andre/tcp-ao/sys/arm/conf/CUBIEBOARD2 - copied unchanged from r257515, head/sys/arm/conf/CUBIEBOARD2 user/andre/tcp-ao/sys/arm/conf/DIGI-CCWMX53 - copied unchanged from r257515, head/sys/arm/conf/DIGI-CCWMX53 user/andre/tcp-ao/sys/arm/conf/IMX53-QSB - copied unchanged from r257515, head/sys/arm/conf/IMX53-QSB user/andre/tcp-ao/sys/arm/conf/RADXA - copied unchanged from r257515, head/sys/arm/conf/RADXA user/andre/tcp-ao/sys/arm/conf/WANDBOARD-COMMON - copied unchanged from r257515, head/sys/arm/conf/WANDBOARD-COMMON user/andre/tcp-ao/sys/arm/conf/WANDBOARD-DUAL - copied unchanged from r257515, head/sys/arm/conf/WANDBOARD-DUAL user/andre/tcp-ao/sys/arm/conf/WANDBOARD-QUAD - copied unchanged from r257515, head/sys/arm/conf/WANDBOARD-QUAD user/andre/tcp-ao/sys/arm/conf/WANDBOARD-SOLO - copied unchanged from r257515, head/sys/arm/conf/WANDBOARD-SOLO user/andre/tcp-ao/sys/arm/conf/ZEDBOARD - copied unchanged from r257515, head/sys/arm/conf/ZEDBOARD user/andre/tcp-ao/sys/arm/freescale/imx/files.imx51 - copied unchanged from r257515, head/sys/arm/freescale/imx/files.imx51 user/andre/tcp-ao/sys/arm/freescale/imx/files.imx53 - copied unchanged from r257515, head/sys/arm/freescale/imx/files.imx53 user/andre/tcp-ao/sys/arm/freescale/imx/files.imx6 - copied unchanged from r257515, head/sys/arm/freescale/imx/files.imx6 user/andre/tcp-ao/sys/arm/freescale/imx/imx51_machdep.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx51_machdep.c user/andre/tcp-ao/sys/arm/freescale/imx/imx53_machdep.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx53_machdep.c user/andre/tcp-ao/sys/arm/freescale/imx/imx6_anatop.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_anatop.c user/andre/tcp-ao/sys/arm/freescale/imx/imx6_anatopreg.h - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_anatopreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx6_anatopvar.h - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_anatopvar.h user/andre/tcp-ao/sys/arm/freescale/imx/imx6_ccm.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_ccm.c user/andre/tcp-ao/sys/arm/freescale/imx/imx6_ccmreg.h - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_ccmreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx6_machdep.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_machdep.c user/andre/tcp-ao/sys/arm/freescale/imx/imx6_pl310.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_pl310.c user/andre/tcp-ao/sys/arm/freescale/imx/imx6_usbphy.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx6_usbphy.c user/andre/tcp-ao/sys/arm/freescale/imx/imx_machdep.h - copied unchanged from r257515, head/sys/arm/freescale/imx/imx_machdep.h user/andre/tcp-ao/sys/arm/freescale/imx/imx_nop_usbphy.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx_nop_usbphy.c user/andre/tcp-ao/sys/arm/freescale/imx/imx_sdhci.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx_sdhci.c user/andre/tcp-ao/sys/arm/freescale/imx/std.imx51 - copied unchanged from r257515, head/sys/arm/freescale/imx/std.imx51 user/andre/tcp-ao/sys/arm/freescale/imx/std.imx53 - copied unchanged from r257515, head/sys/arm/freescale/imx/std.imx53 user/andre/tcp-ao/sys/arm/freescale/imx/std.imx6 - copied unchanged from r257515, head/sys/arm/freescale/imx/std.imx6 user/andre/tcp-ao/sys/arm/include/counter.h - copied unchanged from r257515, head/sys/arm/include/counter.h user/andre/tcp-ao/sys/arm/rockchip/ - copied from r257515, head/sys/arm/rockchip/ user/andre/tcp-ao/sys/arm/samsung/ - copied from r257515, head/sys/arm/samsung/ user/andre/tcp-ao/sys/arm/ti/am335x/am335x_lcd.c - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_lcd.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_lcd.h - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_lcd.h user/andre/tcp-ao/sys/arm/ti/am335x/am335x_lcd_syscons.c - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_lcd_syscons.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_pwm.c - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_pwm.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_pwm.h - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_pwm.h user/andre/tcp-ao/sys/arm/ti/am335x/am335x_scm.h - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_scm.h user/andre/tcp-ao/sys/arm/ti/am335x/am335x_usbss.c - copied unchanged from r257515, head/sys/arm/ti/am335x/am335x_usbss.c user/andre/tcp-ao/sys/arm/ti/ti_sdhci.c - copied unchanged from r257515, head/sys/arm/ti/ti_sdhci.c user/andre/tcp-ao/sys/arm/xilinx/ - copied from r257515, head/sys/arm/xilinx/ user/andre/tcp-ao/sys/boot/fdt/dts/am335x-evm.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/am335x-evm.dts user/andre/tcp-ao/sys/boot/fdt/dts/am335x.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/am335x.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/bcm2835.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/bcm2835.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/beaglebone-black.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/beaglebone-black.dts user/andre/tcp-ao/sys/boot/fdt/dts/beri-sim.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/beri-sim.dts user/andre/tcp-ao/sys/boot/fdt/dts/beripad-de4.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/beripad-de4.dts user/andre/tcp-ao/sys/boot/fdt/dts/cubieboard2.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/cubieboard2.dts user/andre/tcp-ao/sys/boot/fdt/dts/digi-ccwmx53.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/digi-ccwmx53.dts user/andre/tcp-ao/sys/boot/fdt/dts/exynos5250-arndale.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/exynos5250-arndale.dts user/andre/tcp-ao/sys/boot/fdt/dts/exynos5250.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/exynos5250.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/imx53-qsb.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/imx53-qsb.dts user/andre/tcp-ao/sys/boot/fdt/dts/imx53x.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/imx53x.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/imx6.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/imx6.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/rk3188-radxa.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/rk3188-radxa.dts user/andre/tcp-ao/sys/boot/fdt/dts/rk3188.dtsi - copied unchanged from r257515, head/sys/boot/fdt/dts/rk3188.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/rpi.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/rpi.dts user/andre/tcp-ao/sys/boot/fdt/dts/wandboard-dual.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/wandboard-dual.dts user/andre/tcp-ao/sys/boot/fdt/dts/wandboard-quad.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/wandboard-quad.dts user/andre/tcp-ao/sys/boot/fdt/dts/wandboard-solo.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/wandboard-solo.dts user/andre/tcp-ao/sys/boot/fdt/dts/zedboard.dts - copied unchanged from r257515, head/sys/boot/fdt/dts/zedboard.dts user/andre/tcp-ao/sys/boot/i386/gptboot/gptboot.8 - copied unchanged from r257515, head/sys/boot/i386/gptboot/gptboot.8 user/andre/tcp-ao/sys/cam/cam_compat.c - copied unchanged from r257515, head/sys/cam/cam_compat.c user/andre/tcp-ao/sys/cam/cam_compat.h - copied unchanged from r257515, head/sys/cam/cam_compat.h user/andre/tcp-ao/sys/cam/ctl/ctl_frontend_iscsi.c - copied unchanged from r257515, head/sys/cam/ctl/ctl_frontend_iscsi.c user/andre/tcp-ao/sys/cam/ctl/ctl_frontend_iscsi.h - copied unchanged from r257515, head/sys/cam/ctl/ctl_frontend_iscsi.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/debug_compat.h - copied unchanged from r257515, head/sys/cddl/compat/opensolaris/sys/debug_compat.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_raidz.h - copied unchanged from r257515, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_raidz.h user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_capability.c - copied unchanged from r257515, head/sys/compat/freebsd32/freebsd32_capability.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_misc.h - copied unchanged from r257515, head/sys/compat/freebsd32/freebsd32_misc.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asllistsup.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/compiler/asllistsup.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asloffset.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/compiler/asloffset.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asloptions.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/compiler/asloptions.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsarguments.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/components/namespace/nsarguments.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbprint.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/components/tables/tbprint.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utbuffer.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/components/utilities/utbuffer.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/uterror.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/components/utilities/uterror.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utpredef.c - copied unchanged from r257515, head/sys/contrib/dev/acpica/components/utilities/utpredef.c user/andre/tcp-ao/sys/contrib/dev/ath/ - copied from r257515, head/sys/contrib/dev/ath/ user/andre/tcp-ao/sys/contrib/dev/drm2/ - copied from r257515, head/sys/contrib/dev/drm2/ user/andre/tcp-ao/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu - copied unchanged from r257515, head/sys/contrib/dev/iwn/iwlwifi-2000-18.168.6.1.fw.uu user/andre/tcp-ao/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu - copied unchanged from r257515, head/sys/contrib/dev/iwn/iwlwifi-6000g2a-18.168.6.1.fw.uu user/andre/tcp-ao/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu - copied unchanged from r257515, head/sys/contrib/dev/iwn/iwnwifi-2030-18.168.6.1.fw.uu user/andre/tcp-ao/sys/contrib/dev/rsu/ - copied from r257515, head/sys/contrib/dev/rsu/ user/andre/tcp-ao/sys/contrib/dev/urtwn/ - copied from r257515, head/sys/contrib/dev/urtwn/ user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_dns_pxy.c - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ip_dns_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_dstlist.c - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ip_dstlist.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_dstlist.h - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ip_dstlist.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_nat6.c - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ip_nat6.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ip_tftp_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ipf_rb.h - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/ipf_rb.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/radix_ipf.c - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/radix_ipf.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/radix_ipf.h - copied unchanged from r257515, head/sys/contrib/ipfilter/netinet/radix_ipf.h user/andre/tcp-ao/sys/contrib/v4l/ - copied from r257515, head/sys/contrib/v4l/ user/andre/tcp-ao/sys/crypto/aesni/aesencdec.h - copied unchanged from r257515, head/sys/crypto/aesni/aesencdec.h user/andre/tcp-ao/sys/crypto/siphash/ - copied from r257515, head/sys/crypto/siphash/ user/andre/tcp-ao/sys/dev/aacraid/ - copied from r257515, head/sys/dev/aacraid/ user/andre/tcp-ao/sys/dev/acpi_support/acpi_rapidstart.c - copied unchanged from r257515, head/sys/dev/acpi_support/acpi_rapidstart.c user/andre/tcp-ao/sys/dev/altera/atse/ - copied from r257515, head/sys/dev/altera/atse/ user/andre/tcp-ao/sys/dev/ath/if_ath_btcoex.c - copied unchanged from r257515, head/sys/dev/ath/if_ath_btcoex.c user/andre/tcp-ao/sys/dev/ath/if_ath_btcoex.h - copied unchanged from r257515, head/sys/dev/ath/if_ath_btcoex.h user/andre/tcp-ao/sys/dev/ath/if_ath_lna_div.c - copied unchanged from r257515, head/sys/dev/ath/if_ath_lna_div.c user/andre/tcp-ao/sys/dev/ath/if_ath_lna_div.h - copied unchanged from r257515, head/sys/dev/ath/if_ath_lna_div.h user/andre/tcp-ao/sys/dev/bxe/57710_init_values.c - copied unchanged from r257515, head/sys/dev/bxe/57710_init_values.c user/andre/tcp-ao/sys/dev/bxe/57710_int_offsets.h - copied unchanged from r257515, head/sys/dev/bxe/57710_int_offsets.h user/andre/tcp-ao/sys/dev/bxe/57711_init_values.c - copied unchanged from r257515, head/sys/dev/bxe/57711_init_values.c user/andre/tcp-ao/sys/dev/bxe/57711_int_offsets.h - copied unchanged from r257515, head/sys/dev/bxe/57711_int_offsets.h user/andre/tcp-ao/sys/dev/bxe/57712_init_values.c - copied unchanged from r257515, head/sys/dev/bxe/57712_init_values.c user/andre/tcp-ao/sys/dev/bxe/57712_int_offsets.h - copied unchanged from r257515, head/sys/dev/bxe/57712_int_offsets.h user/andre/tcp-ao/sys/dev/bxe/bxe.c - copied unchanged from r257515, head/sys/dev/bxe/bxe.c user/andre/tcp-ao/sys/dev/bxe/bxe.h - copied unchanged from r257515, head/sys/dev/bxe/bxe.h user/andre/tcp-ao/sys/dev/bxe/bxe_dcb.h - copied unchanged from r257515, head/sys/dev/bxe/bxe_dcb.h user/andre/tcp-ao/sys/dev/bxe/bxe_debug.c - copied unchanged from r257515, head/sys/dev/bxe/bxe_debug.c user/andre/tcp-ao/sys/dev/bxe/bxe_elink.c - copied unchanged from r257515, head/sys/dev/bxe/bxe_elink.c user/andre/tcp-ao/sys/dev/bxe/bxe_elink.h - copied unchanged from r257515, head/sys/dev/bxe/bxe_elink.h user/andre/tcp-ao/sys/dev/bxe/bxe_stats.c - copied unchanged from r257515, head/sys/dev/bxe/bxe_stats.c user/andre/tcp-ao/sys/dev/bxe/bxe_stats.h - copied unchanged from r257515, head/sys/dev/bxe/bxe_stats.h user/andre/tcp-ao/sys/dev/bxe/ecore_fw_defs.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_fw_defs.h user/andre/tcp-ao/sys/dev/bxe/ecore_hsi.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_hsi.h user/andre/tcp-ao/sys/dev/bxe/ecore_init.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_init.h user/andre/tcp-ao/sys/dev/bxe/ecore_init_ops.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_init_ops.h user/andre/tcp-ao/sys/dev/bxe/ecore_mfw_req.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_mfw_req.h user/andre/tcp-ao/sys/dev/bxe/ecore_reg.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_reg.h user/andre/tcp-ao/sys/dev/bxe/ecore_sp.c - copied unchanged from r257515, head/sys/dev/bxe/ecore_sp.c user/andre/tcp-ao/sys/dev/bxe/ecore_sp.h - copied unchanged from r257515, head/sys/dev/bxe/ecore_sp.h user/andre/tcp-ao/sys/dev/cadence/ - copied from r257515, head/sys/dev/cadence/ user/andre/tcp-ao/sys/dev/cfi/cfi_bus_nexus.c - copied unchanged from r257515, head/sys/dev/cfi/cfi_bus_nexus.c user/andre/tcp-ao/sys/dev/cxgbe/firmware/t4fw-1.9.12.0.bin.uu - copied unchanged from r257515, head/sys/dev/cxgbe/firmware/t4fw-1.9.12.0.bin.uu user/andre/tcp-ao/sys/dev/cxgbe/firmware/t5fw-1.9.12.0.bin.uu - copied unchanged from r257515, head/sys/dev/cxgbe/firmware/t5fw-1.9.12.0.bin.uu user/andre/tcp-ao/sys/dev/cxgbe/firmware/t5fw_cfg.txt - copied unchanged from r257515, head/sys/dev/cxgbe/firmware/t5fw_cfg.txt user/andre/tcp-ao/sys/dev/cxgbe/firmware/t5fw_cfg_fpga.txt - copied unchanged from r257515, head/sys/dev/cxgbe/firmware/t5fw_cfg_fpga.txt user/andre/tcp-ao/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt - copied unchanged from r257515, head/sys/dev/cxgbe/firmware/t5fw_cfg_uwire.txt user/andre/tcp-ao/sys/dev/cxgbe/iw_cxgbe/ - copied from r257515, head/sys/dev/cxgbe/iw_cxgbe/ user/andre/tcp-ao/sys/dev/cxgbe/t4_tracer.c - copied unchanged from r257515, head/sys/dev/cxgbe/t4_tracer.c user/andre/tcp-ao/sys/dev/drm2/ati_pcigart.c - copied unchanged from r257515, head/sys/dev/drm2/ati_pcigart.c user/andre/tcp-ao/sys/dev/drm2/drm_buffer.c - copied unchanged from r257515, head/sys/dev/drm2/drm_buffer.c user/andre/tcp-ao/sys/dev/drm2/drm_buffer.h - copied unchanged from r257515, head/sys/dev/drm2/drm_buffer.h user/andre/tcp-ao/sys/dev/drm2/drm_core.h - copied unchanged from r257515, head/sys/dev/drm2/drm_core.h user/andre/tcp-ao/sys/dev/drm2/drm_dp_helper.c - copied unchanged from r257515, head/sys/dev/drm2/drm_dp_helper.c user/andre/tcp-ao/sys/dev/drm2/drm_fixed.h - copied unchanged from r257515, head/sys/dev/drm2/drm_fixed.h user/andre/tcp-ao/sys/dev/drm2/drm_os_freebsd.h - copied unchanged from r257515, head/sys/dev/drm2/drm_os_freebsd.h user/andre/tcp-ao/sys/dev/drm2/radeon/ - copied from r257515, head/sys/dev/drm2/radeon/ user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_9340.c - copied unchanged from r257515, head/sys/dev/etherswitch/arswitch/arswitch_9340.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_9340.h - copied unchanged from r257515, head/sys/dev/etherswitch/arswitch/arswitch_9340.h user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_vlans.c - copied unchanged from r257515, head/sys/dev/etherswitch/arswitch/arswitch_vlans.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_vlans.h - copied unchanged from r257515, head/sys/dev/etherswitch/arswitch/arswitch_vlans.h user/andre/tcp-ao/sys/dev/etherswitch/ip17x/ - copied from r257515, head/sys/dev/etherswitch/ip17x/ user/andre/tcp-ao/sys/dev/etherswitch/ukswitch/ - copied from r257515, head/sys/dev/etherswitch/ukswitch/ - copied unchanged from r257515, head/sys/dev/fdt/fdt_ic_if.m user/andre/tcp-ao/sys/dev/fdt/fdt_x86.c - copied unchanged from r257515, head/sys/dev/fdt/fdt_x86.c user/andre/tcp-ao/sys/dev/ffec/ - copied from r257515, head/sys/dev/ffec/ user/andre/tcp-ao/sys/dev/hpt27xx/hpt27xx_os_bsd.c - copied unchanged from r257515, head/sys/dev/hpt27xx/hpt27xx_os_bsd.c user/andre/tcp-ao/sys/dev/hpt27xx/hpt27xx_osm_bsd.c - copied unchanged from r257515, head/sys/dev/hpt27xx/hpt27xx_osm_bsd.c user/andre/tcp-ao/sys/dev/hptnr/ - copied from r257515, head/sys/dev/hptnr/ user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_mpc7xxx.c - copied unchanged from r257515, head/sys/dev/hwpmc/hwpmc_mpc7xxx.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_powerpc.h - copied unchanged from r257515, head/sys/dev/hwpmc/hwpmc_powerpc.h - copied from r257515, head/sys/dev/hyperv/ user/andre/tcp-ao/sys/dev/iscsi/icl.c - copied unchanged from r257515, head/sys/dev/iscsi/icl.c user/andre/tcp-ao/sys/dev/iscsi/icl.h - copied unchanged from r257515, head/sys/dev/iscsi/icl.h user/andre/tcp-ao/sys/dev/iscsi/icl_proxy.c - copied unchanged from r257515, head/sys/dev/iscsi/icl_proxy.c user/andre/tcp-ao/sys/dev/iscsi/iscsi.c - copied unchanged from r257515, head/sys/dev/iscsi/iscsi.c user/andre/tcp-ao/sys/dev/iscsi/iscsi.h - copied unchanged from r257515, head/sys/dev/iscsi/iscsi.h user/andre/tcp-ao/sys/dev/iscsi/iscsi_ioctl.h - copied unchanged from r257515, head/sys/dev/iscsi/iscsi_ioctl.h user/andre/tcp-ao/sys/dev/iscsi/iscsi_proto.h - copied unchanged from r257515, head/sys/dev/iscsi/iscsi_proto.h user/andre/tcp-ao/sys/dev/iscsi_initiator/ - copied from r257515, head/sys/dev/iscsi_initiator/ user/andre/tcp-ao/sys/dev/iwn/if_iwn_debug.h - copied unchanged from r257515, head/sys/dev/iwn/if_iwn_debug.h user/andre/tcp-ao/sys/dev/iwn/if_iwn_devid.h - copied unchanged from r257515, head/sys/dev/iwn/if_iwn_devid.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb.c - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb.h - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb_82598.c - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb_82598.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb_82598.h - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb_82598.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb_82599.c - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb_82599.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_dcb_82599.h - copied unchanged from r257515, head/sys/dev/ixgbe/ixgbe_dcb_82599.h user/andre/tcp-ao/sys/dev/mbox/ - copied from r257515, head/sys/dev/mbox/ user/andre/tcp-ao/sys/dev/ntb/ - copied from r257515, head/sys/dev/ntb/ user/andre/tcp-ao/sys/dev/nvme/nvme_util.c - copied unchanged from r257515, head/sys/dev/nvme/nvme_util.c user/andre/tcp-ao/sys/dev/ofw/ofw_nexus.c - copied unchanged from r257515, head/sys/dev/ofw/ofw_nexus.c user/andre/tcp-ao/sys/dev/ofw/ofw_nexus.h - copied unchanged from r257515, head/sys/dev/ofw/ofw_nexus.h user/andre/tcp-ao/sys/dev/qlxgbe/ - copied from r257515, head/sys/dev/qlxgbe/ user/andre/tcp-ao/sys/dev/qlxge/ - copied from r257515, head/sys/dev/qlxge/ user/andre/tcp-ao/sys/dev/random/dummy_rng.c - copied unchanged from r257515, head/sys/dev/random/dummy_rng.c user/andre/tcp-ao/sys/dev/random/live_entropy_sources.c - copied unchanged from r257515, head/sys/dev/random/live_entropy_sources.c user/andre/tcp-ao/sys/dev/random/live_entropy_sources.h - copied unchanged from r257515, head/sys/dev/random/live_entropy_sources.h user/andre/tcp-ao/sys/dev/random/random_adaptors.c - copied unchanged from r257515, head/sys/dev/random/random_adaptors.c user/andre/tcp-ao/sys/dev/random/random_adaptors.h - copied unchanged from r257515, head/sys/dev/random/random_adaptors.h user/andre/tcp-ao/sys/dev/random/random_harvestq.c - copied unchanged from r257515, head/sys/dev/random/random_harvestq.c user/andre/tcp-ao/sys/dev/random/random_harvestq.h - copied unchanged from r257515, head/sys/dev/random/random_harvestq.h user/andre/tcp-ao/sys/dev/random/rwfile.c - copied unchanged from r257515, head/sys/dev/random/rwfile.c user/andre/tcp-ao/sys/dev/random/rwfile.h - copied unchanged from r257515, head/sys/dev/random/rwfile.h user/andre/tcp-ao/sys/dev/sdhci/sdhci_fdt.c - copied unchanged from r257515, head/sys/dev/sdhci/sdhci_fdt.c user/andre/tcp-ao/sys/dev/spibus/ofw_spibus.c - copied unchanged from r257515, head/sys/dev/spibus/ofw_spibus.c user/andre/tcp-ao/sys/dev/uart/uart_cpu_fdt.c - copied unchanged from r257515, head/sys/dev/uart/uart_cpu_fdt.c user/andre/tcp-ao/sys/dev/uart/uart_dev_ns8250.h - copied unchanged from r257515, head/sys/dev/uart/uart_dev_ns8250.h user/andre/tcp-ao/sys/dev/uart/uart_dev_ti8250.c - copied unchanged from r257515, head/sys/dev/uart/uart_dev_ti8250.c user/andre/tcp-ao/sys/dev/usb/controller/dwc_otg_fdt.c - copied unchanged from r257515, head/sys/dev/usb/controller/dwc_otg_fdt.c user/andre/tcp-ao/sys/dev/usb/gadget/ - copied from r257515, head/sys/dev/usb/gadget/ user/andre/tcp-ao/sys/dev/usb/wlan/if_rsu.c - copied unchanged from r257515, head/sys/dev/usb/wlan/if_rsu.c user/andre/tcp-ao/sys/dev/usb/wlan/if_rsureg.h - copied unchanged from r257515, head/sys/dev/usb/wlan/if_rsureg.h user/andre/tcp-ao/sys/dev/usb/wlan/if_urtwn.c - copied unchanged from r257515, head/sys/dev/usb/wlan/if_urtwn.c user/andre/tcp-ao/sys/dev/usb/wlan/if_urtwnreg.h - copied unchanged from r257515, head/sys/dev/usb/wlan/if_urtwnreg.h user/andre/tcp-ao/sys/dev/vmware/ - copied from r257515, head/sys/dev/vmware/ user/andre/tcp-ao/sys/dev/wi/if_wi_macio.c - copied unchanged from r257515, head/sys/dev/wi/if_wi_macio.c user/andre/tcp-ao/sys/dev/xen/timer/ - copied from r257515, head/sys/dev/xen/timer/ user/andre/tcp-ao/sys/fs/ext2fs/ext2_extents.c - copied unchanged from r257515, head/sys/fs/ext2fs/ext2_extents.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_extents.h - copied unchanged from r257515, head/sys/fs/ext2fs/ext2_extents.h user/andre/tcp-ao/sys/fs/ext2fs/ext2_hash.c - copied unchanged from r257515, head/sys/fs/ext2fs/ext2_hash.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_htree.c - copied unchanged from r257515, head/sys/fs/ext2fs/ext2_htree.c user/andre/tcp-ao/sys/fs/ext2fs/htree.h - copied unchanged from r257515, head/sys/fs/ext2fs/htree.h user/andre/tcp-ao/sys/fs/nfsserver/nfs_fha_new.c - copied unchanged from r257515, head/sys/fs/nfsserver/nfs_fha_new.c user/andre/tcp-ao/sys/fs/nfsserver/nfs_fha_new.h - copied unchanged from r257515, head/sys/fs/nfsserver/nfs_fha_new.h user/andre/tcp-ao/sys/geom/label/g_label_disk_ident.c - copied unchanged from r257515, head/sys/geom/label/g_label_disk_ident.c user/andre/tcp-ao/sys/i386/include/counter.h - copied unchanged from r257515, head/sys/i386/include/counter.h user/andre/tcp-ao/sys/i386/include/fdt.h - copied unchanged from r257515, head/sys/i386/include/fdt.h user/andre/tcp-ao/sys/i386/include/ofw_machdep.h - copied unchanged from r257515, head/sys/i386/include/ofw_machdep.h user/andre/tcp-ao/sys/ia64/include/counter.h - copied unchanged from r257515, head/sys/ia64/include/counter.h user/andre/tcp-ao/sys/kern/subr_capability.c - copied unchanged from r257515, head/sys/kern/subr_capability.c user/andre/tcp-ao/sys/kern/subr_counter.c - copied unchanged from r257515, head/sys/kern/subr_counter.c user/andre/tcp-ao/sys/kern/subr_pctrie.c - copied unchanged from r257515, head/sys/kern/subr_pctrie.c user/andre/tcp-ao/sys/kern/subr_vmem.c - copied unchanged from r257515, head/sys/kern/subr_vmem.c user/andre/tcp-ao/sys/libkern/flsll.c - copied unchanged from r257515, head/sys/libkern/flsll.c user/andre/tcp-ao/sys/mips/atheros/ar934x_chip.c - copied unchanged from r257515, head/sys/mips/atheros/ar934x_chip.c user/andre/tcp-ao/sys/mips/atheros/ar934x_chip.h - copied unchanged from r257515, head/sys/mips/atheros/ar934x_chip.h user/andre/tcp-ao/sys/mips/atheros/ar934xreg.h - copied unchanged from r257515, head/sys/mips/atheros/ar934xreg.h user/andre/tcp-ao/sys/mips/beri/beri_pic.c - copied unchanged from r257515, head/sys/mips/beri/beri_pic.c user/andre/tcp-ao/sys/mips/conf/ALFA_HORNET_UB - copied unchanged from r257515, head/sys/mips/conf/ALFA_HORNET_UB user/andre/tcp-ao/sys/mips/conf/ALFA_HORNET_UB.hints - copied unchanged from r257515, head/sys/mips/conf/ALFA_HORNET_UB.hints user/andre/tcp-ao/sys/mips/conf/AR934X_BASE - copied unchanged from r257515, head/sys/mips/conf/AR934X_BASE user/andre/tcp-ao/sys/mips/conf/AR934X_BASE.hints - copied unchanged from r257515, head/sys/mips/conf/AR934X_BASE.hints user/andre/tcp-ao/sys/mips/conf/BERI_DE4_BASE - copied unchanged from r257515, head/sys/mips/conf/BERI_DE4_BASE user/andre/tcp-ao/sys/mips/conf/BERI_SIM_BASE - copied unchanged from r257515, head/sys/mips/conf/BERI_SIM_BASE user/andre/tcp-ao/sys/mips/conf/BERI_SIM_SDROOT - copied unchanged from r257515, head/sys/mips/conf/BERI_SIM_SDROOT user/andre/tcp-ao/sys/mips/conf/CARAMBOLA2 - copied unchanged from r257515, head/sys/mips/conf/CARAMBOLA2 user/andre/tcp-ao/sys/mips/conf/CARAMBOLA2.hints - copied unchanged from r257515, head/sys/mips/conf/CARAMBOLA2.hints user/andre/tcp-ao/sys/mips/conf/DB120 - copied unchanged from r257515, head/sys/mips/conf/DB120 user/andre/tcp-ao/sys/mips/conf/DB120.hints - copied unchanged from r257515, head/sys/mips/conf/DB120.hints user/andre/tcp-ao/sys/mips/conf/ENH200 - copied unchanged from r257515, head/sys/mips/conf/ENH200 user/andre/tcp-ao/sys/mips/conf/ENH200.hints - copied unchanged from r257515, head/sys/mips/conf/ENH200.hints user/andre/tcp-ao/sys/mips/conf/GXEMUL32 - copied unchanged from r257515, head/sys/mips/conf/GXEMUL32 user/andre/tcp-ao/sys/mips/conf/PICOSTATION_M2HP - copied unchanged from r257515, head/sys/mips/conf/PICOSTATION_M2HP user/andre/tcp-ao/sys/mips/conf/PICOSTATION_M2HP.hints - copied unchanged from r257515, head/sys/mips/conf/PICOSTATION_M2HP.hints user/andre/tcp-ao/sys/mips/conf/WZR-300HP - copied unchanged from r257515, head/sys/mips/conf/WZR-300HP user/andre/tcp-ao/sys/mips/conf/WZR-300HP.hints - copied unchanged from r257515, head/sys/mips/conf/WZR-300HP.hints user/andre/tcp-ao/sys/mips/include/counter.h - copied unchanged from r257515, head/sys/mips/include/counter.h user/andre/tcp-ao/sys/mips/malta/gt_pci_bus_space.c - copied unchanged from r257515, head/sys/mips/malta/gt_pci_bus_space.c user/andre/tcp-ao/sys/mips/malta/gt_pci_bus_space.h - copied unchanged from r257515, head/sys/mips/malta/gt_pci_bus_space.h user/andre/tcp-ao/sys/mips/mips/bcopy.S - copied unchanged from r257515, head/sys/mips/mips/bcopy.S user/andre/tcp-ao/sys/mips/mips/stdatomic.c - copied unchanged from r257515, head/sys/mips/mips/stdatomic.c user/andre/tcp-ao/sys/modules/aacraid/ - copied from r257515, head/sys/modules/aacraid/ user/andre/tcp-ao/sys/modules/acpi/acpi_rapidstart/ - copied from r257515, head/sys/modules/acpi/acpi_rapidstart/ user/andre/tcp-ao/sys/modules/cc/cc_cdg/ - copied from r257515, head/sys/modules/cc/cc_cdg/ user/andre/tcp-ao/sys/modules/cxgbe/iw_cxgbe/ - copied from r257515, head/sys/modules/cxgbe/iw_cxgbe/ user/andre/tcp-ao/sys/modules/cxgbe/t5_firmware/ - copied from r257515, head/sys/modules/cxgbe/t5_firmware/ user/andre/tcp-ao/sys/modules/drm2/radeonkms/ - copied from r257515, head/sys/modules/drm2/radeonkms/ user/andre/tcp-ao/sys/modules/drm2/radeonkmsfw/ - copied from r257515, head/sys/modules/drm2/radeonkmsfw/ user/andre/tcp-ao/sys/modules/hptnr/ - copied from r257515, head/sys/modules/hptnr/ - copied from r257515, head/sys/modules/hyperv/ user/andre/tcp-ao/sys/modules/ibcore/ - copied from r257515, head/sys/modules/ibcore/ user/andre/tcp-ao/sys/modules/ipoib/ - copied from r257515, head/sys/modules/ipoib/ user/andre/tcp-ao/sys/modules/iscsi_initiator/ - copied from r257515, head/sys/modules/iscsi_initiator/ user/andre/tcp-ao/sys/modules/iwnfw/iwn2000/ - copied from r257515, head/sys/modules/iwnfw/iwn2000/ user/andre/tcp-ao/sys/modules/iwnfw/iwn2030/ - copied from r257515, head/sys/modules/iwnfw/iwn2030/ user/andre/tcp-ao/sys/modules/ntb/ - copied from r257515, head/sys/modules/ntb/ user/andre/tcp-ao/sys/modules/qlxgbe/ - copied from r257515, head/sys/modules/qlxgbe/ user/andre/tcp-ao/sys/modules/qlxge/ - copied from r257515, head/sys/modules/qlxge/ user/andre/tcp-ao/sys/modules/usb/g_audio/ - copied from r257515, head/sys/modules/usb/g_audio/ user/andre/tcp-ao/sys/modules/usb/g_keyboard/ - copied from r257515, head/sys/modules/usb/g_keyboard/ user/andre/tcp-ao/sys/modules/usb/g_modem/ - copied from r257515, head/sys/modules/usb/g_modem/ user/andre/tcp-ao/sys/modules/usb/g_mouse/ - copied from r257515, head/sys/modules/usb/g_mouse/ user/andre/tcp-ao/sys/modules/usb/rsu/ - copied from r257515, head/sys/modules/usb/rsu/ user/andre/tcp-ao/sys/modules/usb/rsufw/ - copied from r257515, head/sys/modules/usb/rsufw/ user/andre/tcp-ao/sys/modules/usb/runfw/ - copied from r257515, head/sys/modules/usb/runfw/ user/andre/tcp-ao/sys/modules/usb/urtwn/ - copied from r257515, head/sys/modules/usb/urtwn/ user/andre/tcp-ao/sys/modules/usb/urtwnfw/ - copied from r257515, head/sys/modules/usb/urtwnfw/ user/andre/tcp-ao/sys/modules/vmware/ - copied from r257515, head/sys/modules/vmware/ user/andre/tcp-ao/sys/net/ifq.h - copied unchanged from r257515, head/sys/net/ifq.h user/andre/tcp-ao/sys/netinet/cc/cc_cdg.c - copied unchanged from r257515, head/sys/netinet/cc/cc_cdg.c user/andre/tcp-ao/sys/netinet/in_kdtrace.c - copied unchanged from r257515, head/sys/netinet/in_kdtrace.c user/andre/tcp-ao/sys/netinet/in_kdtrace.h - copied unchanged from r257515, head/sys/netinet/in_kdtrace.h user/andre/tcp-ao/sys/netpfil/pf/pf.h - copied unchanged from r257515, head/sys/netpfil/pf/pf.h user/andre/tcp-ao/sys/netpfil/pf/pf_altq.h - copied unchanged from r257515, head/sys/netpfil/pf/pf_altq.h user/andre/tcp-ao/sys/netpfil/pf/pf_mtag.h - copied unchanged from r257515, head/sys/netpfil/pf/pf_mtag.h user/andre/tcp-ao/sys/nfs/nfs_fha.c - copied unchanged from r257515, head/sys/nfs/nfs_fha.c user/andre/tcp-ao/sys/nfs/nfs_fha.h - copied unchanged from r257515, head/sys/nfs/nfs_fha.h user/andre/tcp-ao/sys/nfsserver/nfs_fha_old.c - copied unchanged from r257515, head/sys/nfsserver/nfs_fha_old.c user/andre/tcp-ao/sys/nfsserver/nfs_fha_old.h - copied unchanged from r257515, head/sys/nfsserver/nfs_fha_old.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/alias_GUID.c - copied unchanged from r257515, head/sys/ofed/drivers/infiniband/hw/mlx4/alias_GUID.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/cm.c - copied unchanged from r257515, head/sys/ofed/drivers/infiniband/hw/mlx4/cm.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/mcg.c - copied unchanged from r257515, head/sys/ofed/drivers/infiniband/hw/mlx4/mcg.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/sysfs.c - copied unchanged from r257515, head/sys/ofed/drivers/infiniband/hw/mlx4/sysfs.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/resource_tracker.c - copied unchanged from r257515, head/sys/ofed/drivers/net/mlx4/resource_tracker.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/sys_tune.c - copied unchanged from r257515, head/sys/ofed/drivers/net/mlx4/sys_tune.c user/andre/tcp-ao/sys/ofed/include/linux/atomic.h - copied unchanged from r257515, head/sys/ofed/include/linux/atomic.h user/andre/tcp-ao/sys/ofed/include/linux/clocksource.h - copied unchanged from r257515, head/sys/ofed/include/linux/clocksource.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_pma.h - copied unchanged from r257515, head/sys/ofed/include/rdma/ib_pma.h user/andre/tcp-ao/sys/pc98/include/counter.h - copied unchanged from r257515, head/sys/pc98/include/counter.h user/andre/tcp-ao/sys/powerpc/include/counter.h - copied unchanged from r257515, head/sys/powerpc/include/counter.h user/andre/tcp-ao/sys/powerpc/mpc85xx/pci_mpc85xx.c - copied unchanged from r257515, head/sys/powerpc/mpc85xx/pci_mpc85xx.c user/andre/tcp-ao/sys/powerpc/ofw/openpic_ofw.c - copied unchanged from r257515, head/sys/powerpc/ofw/openpic_ofw.c user/andre/tcp-ao/sys/powerpc/powerpc/clock.c - copied unchanged from r257515, head/sys/powerpc/powerpc/clock.c user/andre/tcp-ao/sys/powerpc/powerpc/nexus.c - copied unchanged from r257515, head/sys/powerpc/powerpc/nexus.c user/andre/tcp-ao/sys/powerpc/powerpc/vm_machdep.c - copied unchanged from r257515, head/sys/powerpc/powerpc/vm_machdep.c user/andre/tcp-ao/sys/powerpc/pseries/ - copied from r257515, head/sys/powerpc/pseries/ user/andre/tcp-ao/sys/sparc64/include/counter.h - copied unchanged from r257515, head/sys/sparc64/include/counter.h user/andre/tcp-ao/sys/sys/_bitset.h - copied unchanged from r257515, head/sys/sys/_bitset.h user/andre/tcp-ao/sys/sys/_pctrie.h - copied unchanged from r257515, head/sys/sys/_pctrie.h user/andre/tcp-ao/sys/sys/_unrhdr.h - copied unchanged from r257515, head/sys/sys/_unrhdr.h user/andre/tcp-ao/sys/sys/bitset.h - copied unchanged from r257515, head/sys/sys/bitset.h user/andre/tcp-ao/sys/sys/caprights.h - copied unchanged from r257515, head/sys/sys/caprights.h user/andre/tcp-ao/sys/sys/counter.h - copied unchanged from r257515, head/sys/sys/counter.h user/andre/tcp-ao/sys/sys/pctrie.h - copied unchanged from r257515, head/sys/sys/pctrie.h user/andre/tcp-ao/sys/sys/procctl.h - copied unchanged from r257515, head/sys/sys/procctl.h user/andre/tcp-ao/sys/sys/stdatomic.h - copied unchanged from r257515, head/sys/sys/stdatomic.h user/andre/tcp-ao/sys/sys/vmem.h - copied unchanged from r257515, head/sys/sys/vmem.h - copied unchanged from r257515, head/sys/x86/include/acpica_machdep.h user/andre/tcp-ao/sys/x86/include/busdma_impl.h - copied unchanged from r257515, head/sys/x86/include/busdma_impl.h user/andre/tcp-ao/sys/x86/include/fdt.h - copied unchanged from r257515, head/sys/x86/include/fdt.h user/andre/tcp-ao/sys/x86/include/ofw_machdep.h - copied unchanged from r257515, head/sys/x86/include/ofw_machdep.h user/andre/tcp-ao/sys/x86/iommu/ - copied from r257515, head/sys/x86/iommu/ user/andre/tcp-ao/sys/x86/x86/busdma_bounce.c - copied unchanged from r257515, head/sys/x86/x86/busdma_bounce.c user/andre/tcp-ao/sys/x86/x86/fdt_machdep.c - copied unchanged from r257515, head/sys/x86/x86/fdt_machdep.c user/andre/tcp-ao/sys/x86/xen/ - copied from r257515, head/sys/x86/xen/ user/andre/tcp-ao/sys/xen/evtchn/evtchnvar.h - copied unchanged from r257515, head/sys/xen/evtchn/evtchnvar.h user/andre/tcp-ao/sys/xen/hvm.h - copied unchanged from r257515, head/sys/xen/hvm.h user/andre/tcp-ao/sys/xen/interface/arch-arm/ - copied from r257515, head/sys/xen/interface/arch-arm/ user/andre/tcp-ao/sys/xen/interface/arch-arm.h - copied unchanged from r257515, head/sys/xen/interface/arch-arm.h user/andre/tcp-ao/sys/xen/interface/arch-ia64/ - copied from r257515, head/sys/xen/interface/arch-ia64/ user/andre/tcp-ao/sys/xen/interface/io/fsif.h - copied unchanged from r257515, head/sys/xen/interface/io/fsif.h user/andre/tcp-ao/sys/xen/interface/io/libxenvchan.h - copied unchanged from r257515, head/sys/xen/interface/io/libxenvchan.h user/andre/tcp-ao/sys/xen/interface/io/usbif.h - copied unchanged from r257515, head/sys/xen/interface/io/usbif.h user/andre/tcp-ao/sys/xen/interface/io/vscsiif.h - copied unchanged from r257515, head/sys/xen/interface/io/vscsiif.h user/andre/tcp-ao/sys/xen/interface/mem_event.h - copied unchanged from r257515, head/sys/xen/interface/mem_event.h user/andre/tcp-ao/sys/xen/interface/tmem.h - copied unchanged from r257515, head/sys/xen/interface/tmem.h user/andre/tcp-ao/sys/xen/interface/xsm/ - copied from r257515, head/sys/xen/interface/xsm/ user/andre/tcp-ao/sys/xen/xen-os.h - copied unchanged from r257515, head/sys/xen/xen-os.h user/andre/tcp-ao/tests/ - copied from r257515, head/tests/ user/andre/tcp-ao/tools/build/options/WITHOUT_ARM_EABI - copied unchanged from r257515, head/tools/build/options/WITHOUT_ARM_EABI user/andre/tcp-ao/tools/build/options/WITHOUT_BMAKE - copied unchanged from r257515, head/tools/build/options/WITHOUT_BMAKE user/andre/tcp-ao/tools/build/options/WITHOUT_CROSS_COMPILER - copied unchanged from r257515, head/tools/build/options/WITHOUT_CROSS_COMPILER user/andre/tcp-ao/tools/build/options/WITHOUT_FORMAT_EXTENSIONS - copied unchanged from r257515, head/tools/build/options/WITHOUT_FORMAT_EXTENSIONS user/andre/tcp-ao/tools/build/options/WITHOUT_GNUCXX - copied unchanged from r257515, head/tools/build/options/WITHOUT_GNUCXX user/andre/tcp-ao/tools/build/options/WITHOUT_ICONV - copied unchanged from r257515, head/tools/build/options/WITHOUT_ICONV user/andre/tcp-ao/tools/build/options/WITHOUT_LDNS_UTILS - copied unchanged from r257515, head/tools/build/options/WITHOUT_LDNS_UTILS user/andre/tcp-ao/tools/build/options/WITHOUT_NMTREE - copied unchanged from r257515, head/tools/build/options/WITHOUT_NMTREE user/andre/tcp-ao/tools/build/options/WITHOUT_SVNLITE - copied unchanged from r257515, head/tools/build/options/WITHOUT_SVNLITE user/andre/tcp-ao/tools/build/options/WITHOUT_TESTS - copied unchanged from r257515, head/tools/build/options/WITHOUT_TESTS user/andre/tcp-ao/tools/build/options/WITHOUT_UNBOUND - copied unchanged from r257515, head/tools/build/options/WITHOUT_UNBOUND user/andre/tcp-ao/tools/build/options/WITH_DEBUG_FILES - copied unchanged from r257515, head/tools/build/options/WITH_DEBUG_FILES user/andre/tcp-ao/tools/build/options/WITH_GCC - copied unchanged from r257515, head/tools/build/options/WITH_GCC user/andre/tcp-ao/tools/build/options/WITH_GNUCXX - copied unchanged from r257515, head/tools/build/options/WITH_GNUCXX user/andre/tcp-ao/tools/build/options/WITH_LIBICONV_COMPAT - copied unchanged from r257515, head/tools/build/options/WITH_LIBICONV_COMPAT user/andre/tcp-ao/tools/build/options/WITH_LLDB - copied unchanged from r257515, head/tools/build/options/WITH_LLDB user/andre/tcp-ao/tools/build/options/WITH_SVN - copied unchanged from r257515, head/tools/build/options/WITH_SVN user/andre/tcp-ao/tools/build/options/WITH_USB_GADGET_EXAMPLES - copied unchanged from r257515, head/tools/build/options/WITH_USB_GADGET_EXAMPLES user/andre/tcp-ao/tools/regression/bin/sh/builtins/alias4.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/alias4.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/break4.4 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/break4.4 user/andre/tcp-ao/tools/regression/bin/sh/builtins/break5.4 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/break5.4 user/andre/tcp-ao/tools/regression/bin/sh/builtins/eval6.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/eval6.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/jobid1.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/jobid1.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/jobid2.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/jobid2.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/local2.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/local2.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/local3.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/local3.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/local4.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/local4.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/read7.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/read7.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/return8.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/return8.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/trap13.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/trap13.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/trap14.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/trap14.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/type3.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/type3.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/wait10.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/wait10.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/wait6.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/wait6.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/wait7.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/wait7.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/wait8.0 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/wait8.0 user/andre/tcp-ao/tools/regression/bin/sh/builtins/wait9.127 - copied unchanged from r257515, head/tools/regression/bin/sh/builtins/wait9.127 user/andre/tcp-ao/tools/regression/bin/sh/execution/int-cmd1.0 - copied unchanged from r257515, head/tools/regression/bin/sh/execution/int-cmd1.0 user/andre/tcp-ao/tools/regression/bin/sh/execution/not1.0 - copied unchanged from r257515, head/tools/regression/bin/sh/execution/not1.0 user/andre/tcp-ao/tools/regression/bin/sh/execution/not2.0 - copied unchanged from r257515, head/tools/regression/bin/sh/execution/not2.0 user/andre/tcp-ao/tools/regression/bin/sh/expansion/arith13.0 - copied unchanged from r257515, head/tools/regression/bin/sh/expansion/arith13.0 user/andre/tcp-ao/tools/regression/bin/sh/parser/empty-cmd1.0 - copied unchanged from r257515, head/tools/regression/bin/sh/parser/empty-cmd1.0 user/andre/tcp-ao/tools/regression/bin/sh/parser/only-redir2.0 - copied unchanged from r257515, head/tools/regression/bin/sh/parser/only-redir2.0 user/andre/tcp-ao/tools/regression/bin/sh/parser/only-redir3.0 - copied unchanged from r257515, head/tools/regression/bin/sh/parser/only-redir3.0 user/andre/tcp-ao/tools/regression/bin/sh/parser/only-redir4.0 - copied unchanged from r257515, head/tools/regression/bin/sh/parser/only-redir4.0 user/andre/tcp-ao/tools/regression/file/fcntlflags/ - copied from r257515, head/tools/regression/file/fcntlflags/ user/andre/tcp-ao/tools/regression/include/stdatomic/ - copied from r257515, head/tools/regression/include/stdatomic/ user/andre/tcp-ao/tools/regression/iscsi/ - copied from r257515, head/tools/regression/iscsi/ user/andre/tcp-ao/tools/regression/lib/libc/gen/test-popen.c - copied unchanged from r257515, head/tools/regression/lib/libc/gen/test-popen.c user/andre/tcp-ao/tools/regression/lib/libc/locale/test-c16rtomb.c - copied unchanged from r257515, head/tools/regression/lib/libc/locale/test-c16rtomb.c user/andre/tcp-ao/tools/regression/lib/libc/locale/test-mbrtoc16.c - copied unchanged from r257515, head/tools/regression/lib/libc/locale/test-mbrtoc16.c user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-fopen.c - copied unchanged from r257515, head/tools/regression/lib/libc/stdio/test-fopen.c user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-fopen.t - copied unchanged from r257515, head/tools/regression/lib/libc/stdio/test-fopen.t user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-mkostemp.c - copied unchanged from r257515, head/tools/regression/lib/libc/stdio/test-mkostemp.c user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-mkostemp.t - copied unchanged from r257515, head/tools/regression/lib/libc/stdio/test-mkostemp.t user/andre/tcp-ao/tools/regression/lib/libutil/test-humanize_number.c - copied unchanged from r257515, head/tools/regression/lib/libutil/test-humanize_number.c user/andre/tcp-ao/tools/regression/lib/libutil/test-humanize_number.t - copied unchanged from r257515, head/tools/regression/lib/libutil/test-humanize_number.t user/andre/tcp-ao/tools/regression/lib/msun/test-invctrig.c - copied unchanged from r257515, head/tools/regression/lib/msun/test-invctrig.c user/andre/tcp-ao/tools/regression/lib/msun/test-utils.h - copied unchanged from r257515, head/tools/regression/lib/msun/test-utils.h user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.0.in - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.0.in user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.0.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.0.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.0I.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.0I.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.0J.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.0J.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.0L.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.0L.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.n1.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.n1.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.n2.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.n2.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.n3.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.n3.out user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.quotes.in - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.quotes.in user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.quotes.out - copied unchanged from r257515, head/tools/regression/usr.bin/xargs/regress.quotes.out user/andre/tcp-ao/tools/tools/ath/ath_ee_9300_print/ - copied from r257515, head/tools/tools/ath/ath_ee_9300_print/ user/andre/tcp-ao/tools/tools/ath/athalq/ar9300_ds.c - copied unchanged from r257515, head/tools/tools/ath/athalq/ar9300_ds.c user/andre/tcp-ao/tools/tools/ath/athalq/ar9300_ds.h - copied unchanged from r257515, head/tools/tools/ath/athalq/ar9300_ds.h user/andre/tcp-ao/tools/tools/ath/athalq/txdiff.pl - copied unchanged from r257515, head/tools/tools/ath/athalq/txdiff.pl user/andre/tcp-ao/tools/tools/atsectl/ - copied from r257515, head/tools/tools/atsectl/ user/andre/tcp-ao/tools/tools/cxgbetool/reg_defs_t5.c - copied unchanged from r257515, head/tools/tools/cxgbetool/reg_defs_t5.c user/andre/tcp-ao/tools/tools/drm/ - copied from r257515, head/tools/tools/drm/ user/andre/tcp-ao/tools/tools/makeroot/ - copied from r257515, head/tools/tools/makeroot/ user/andre/tcp-ao/tools/tools/netmap/vale-ctl.c - copied unchanged from r257515, head/tools/tools/netmap/vale-ctl.c user/andre/tcp-ao/tools/tools/shlib-compat/ - copied from r257515, head/tools/tools/shlib-compat/ user/andre/tcp-ao/tools/tools/usbtest/ - copied from r257515, head/tools/tools/usbtest/ user/andre/tcp-ao/usr.bin/calendar/calcpp.c - copied unchanged from r257515, head/usr.bin/calendar/calcpp.c user/andre/tcp-ao/usr.bin/calendar/calendars/ru_RU.UTF-8/ - copied from r257515, head/usr.bin/calendar/calendars/ru_RU.UTF-8/ user/andre/tcp-ao/usr.bin/clang/lldb/ - copied from r257515, head/usr.bin/clang/lldb/ user/andre/tcp-ao/usr.bin/drill/ - copied from r257515, head/usr.bin/drill/ user/andre/tcp-ao/usr.bin/iscsictl/ - copied from r257515, head/usr.bin/iscsictl/ user/andre/tcp-ao/usr.bin/lex/initparse.c - copied unchanged from r257515, head/usr.bin/lex/initparse.c user/andre/tcp-ao/usr.bin/lex/initparse.h - copied unchanged from r257515, head/usr.bin/lex/initparse.h user/andre/tcp-ao/usr.bin/lex/initskel.c - copied unchanged from r257515, head/usr.bin/lex/initskel.c user/andre/tcp-ao/usr.bin/lex/version.awk - copied unchanged from r257515, head/usr.bin/lex/version.awk user/andre/tcp-ao/usr.bin/protect/ - copied from r257515, head/usr.bin/protect/ user/andre/tcp-ao/usr.bin/svn/ - copied from r257515, head/usr.bin/svn/ user/andre/tcp-ao/usr.bin/unifdef/unifdef.h - copied unchanged from r257515, head/usr.bin/unifdef/unifdef.h user/andre/tcp-ao/usr.bin/vi/catalog/ - copied from r257515, head/usr.bin/vi/catalog/ user/andre/tcp-ao/usr.sbin/bhyve/ahci.h - copied unchanged from r257515, head/usr.sbin/bhyve/ahci.h user/andre/tcp-ao/usr.sbin/bhyve/block_if.c - copied unchanged from r257515, head/usr.sbin/bhyve/block_if.c user/andre/tcp-ao/usr.sbin/bhyve/block_if.h - copied unchanged from r257515, head/usr.sbin/bhyve/block_if.h user/andre/tcp-ao/usr.sbin/bhyve/legacy_irq.c - copied unchanged from r257515, head/usr.sbin/bhyve/legacy_irq.c user/andre/tcp-ao/usr.sbin/bhyve/legacy_irq.h - copied unchanged from r257515, head/usr.sbin/bhyve/legacy_irq.h user/andre/tcp-ao/usr.sbin/bhyve/pci_ahci.c - copied unchanged from r257515, head/usr.sbin/bhyve/pci_ahci.c user/andre/tcp-ao/usr.sbin/bhyve/pci_lpc.c - copied unchanged from r257515, head/usr.sbin/bhyve/pci_lpc.c user/andre/tcp-ao/usr.sbin/bhyve/pci_lpc.h - copied unchanged from r257515, head/usr.sbin/bhyve/pci_lpc.h user/andre/tcp-ao/usr.sbin/bhyve/rtc.h - copied unchanged from r257515, head/usr.sbin/bhyve/rtc.h user/andre/tcp-ao/usr.sbin/bhyve/uart_emul.c - copied unchanged from r257515, head/usr.sbin/bhyve/uart_emul.c user/andre/tcp-ao/usr.sbin/bhyve/uart_emul.h - copied unchanged from r257515, head/usr.sbin/bhyve/uart_emul.h user/andre/tcp-ao/usr.sbin/bhyve/virtio.c - copied unchanged from r257515, head/usr.sbin/bhyve/virtio.c user/andre/tcp-ao/usr.sbin/bsdconfig/examples/browse_packages_ftp.sh - copied unchanged from r257515, head/usr.sbin/bsdconfig/examples/browse_packages_ftp.sh user/andre/tcp-ao/usr.sbin/bsdconfig/examples/browse_packages_http.sh - copied unchanged from r257515, head/usr.sbin/bsdconfig/examples/browse_packages_http.sh user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/services.subr - copied unchanged from r257515, head/usr.sbin/bsdconfig/networking/share/services.subr user/andre/tcp-ao/usr.sbin/bsdconfig/packages/ - copied from r257515, head/usr.sbin/bsdconfig/packages/ user/andre/tcp-ao/usr.sbin/bsdconfig/share/keymap.subr - copied unchanged from r257515, head/usr.sbin/bsdconfig/share/keymap.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/http.subr - copied unchanged from r257515, head/usr.sbin/bsdconfig/share/media/http.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/packages/ - copied from r257515, head/usr.sbin/bsdconfig/share/packages/ user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/entropy - copied unchanged from r257515, head/usr.sbin/bsdinstall/scripts/entropy user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/zfsboot - copied unchanged from r257515, head/usr.sbin/bsdinstall/scripts/zfsboot user/andre/tcp-ao/usr.sbin/bsnmpd/modules/snmp_hast/ - copied from r257515, head/usr.sbin/bsnmpd/modules/snmp_hast/ user/andre/tcp-ao/usr.sbin/ctld/ - copied from r257515, head/usr.sbin/ctld/ user/andre/tcp-ao/usr.sbin/iscsid/ - copied from r257515, head/usr.sbin/iscsid/ user/andre/tcp-ao/usr.sbin/mfiutil/mfi_bbu.c - copied unchanged from r257515, head/usr.sbin/mfiutil/mfi_bbu.c user/andre/tcp-ao/usr.sbin/mfiutil/mfi_foreign.c - copied unchanged from r257515, head/usr.sbin/mfiutil/mfi_foreign.c user/andre/tcp-ao/usr.sbin/pkg/pkg.7 - copied unchanged from r257515, head/usr.sbin/pkg/pkg.7 user/andre/tcp-ao/usr.sbin/ppp/ppp.8 - copied unchanged from r257515, head/usr.sbin/ppp/ppp.8 user/andre/tcp-ao/usr.sbin/unbound/ - copied from r257515, head/usr.sbin/unbound/ user/andre/tcp-ao/usr.sbin/wpa/wpa_priv/ - copied from r257515, head/usr.sbin/wpa/wpa_priv/ Directory Properties: user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/ (props changed) user/andre/tcp-ao/contrib/apr/ (props changed) user/andre/tcp-ao/contrib/apr-util/ (props changed) user/andre/tcp-ao/contrib/ipfilter/ml_ipl.c (props changed) user/andre/tcp-ao/contrib/ipfilter/mlfk_ipl.c (props changed) user/andre/tcp-ao/contrib/ipfilter/mli_ipl.c (props changed) user/andre/tcp-ao/contrib/ipfilter/mln_ipl.c (props changed) user/andre/tcp-ao/contrib/ipfilter/mls_ipl.c (props changed) user/andre/tcp-ao/contrib/libexecinfo/ (props changed) user/andre/tcp-ao/contrib/serf/ (props changed) user/andre/tcp-ao/contrib/subversion/ (props changed) user/andre/tcp-ao/contrib/unbound/ (props changed) user/andre/tcp-ao/sys/dev/fdt/fdt_ic_if.m (props changed) user/andre/tcp-ao/sys/dev/hyperv/ (props changed) user/andre/tcp-ao/sys/modules/hyperv/ (props changed) user/andre/tcp-ao/sys/x86/include/acpica_machdep.h (props changed) Replaced: user/andre/tcp-ao/contrib/openpam/lib/Makefile.am - copied unchanged from r257515, head/contrib/openpam/lib/Makefile.am user/andre/tcp-ao/contrib/openpam/lib/Makefile.in - copied unchanged from r257515, head/contrib/openpam/lib/Makefile.in user/andre/tcp-ao/sys/arm/freescale/imx/imx_machdep.c - copied unchanged from r257515, head/sys/arm/freescale/imx/imx_machdep.c Deleted: user/andre/tcp-ao/bin/sh/init.h user/andre/tcp-ao/bin/sh/mkinit.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/arithmetic/tst.complex.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/tracemem/err.D_PROTO_LEN.toomany.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/man.TestTransStability.d user/andre/tcp-ao/contrib/bind9/ user/andre/tcp-ao/contrib/cvs/ user/andre/tcp-ao/contrib/dialog/samples/copifuncs/ user/andre/tcp-ao/contrib/dialog/samples/copismall user/andre/tcp-ao/contrib/dialog/samples/dselect user/andre/tcp-ao/contrib/dialog/samples/install/ user/andre/tcp-ao/contrib/dialog/samples/valgrind.log user/andre/tcp-ao/contrib/ipfilter/.cvsignore user/andre/tcp-ao/contrib/ipfilter/BSD/ user/andre/tcp-ao/contrib/ipfilter/FAQ.FreeBSD user/andre/tcp-ao/contrib/ipfilter/FWTK/ user/andre/tcp-ao/contrib/ipfilter/FreeBSD/ user/andre/tcp-ao/contrib/ipfilter/FreeBSD-2.2/ user/andre/tcp-ao/contrib/ipfilter/FreeBSD-3/ user/andre/tcp-ao/contrib/ipfilter/FreeBSD-4.0/ user/andre/tcp-ao/contrib/ipfilter/IMPORTANT user/andre/tcp-ao/contrib/ipfilter/INST.FreeBSD-2.2 user/andre/tcp-ao/contrib/ipfilter/INSTALL.FreeBSD user/andre/tcp-ao/contrib/ipfilter/INSTALL.xBSD user/andre/tcp-ao/contrib/ipfilter/IPF.KANJI user/andre/tcp-ao/contrib/ipfilter/WhatsNew40.txt user/andre/tcp-ao/contrib/ipfilter/bsdinstall user/andre/tcp-ao/contrib/ipfilter/etc/ user/andre/tcp-ao/contrib/ipfilter/iplang/.cvsignore user/andre/tcp-ao/contrib/ipfilter/ipsend/.cvsignore user/andre/tcp-ao/contrib/ipfilter/ipsend/README user/andre/tcp-ao/contrib/ipfilter/ipsend/hpux.c user/andre/tcp-ao/contrib/ipfilter/ipsend/in_var.h user/andre/tcp-ao/contrib/ipfilter/ipsend/ip_var.h user/andre/tcp-ao/contrib/ipfilter/ipsend/tcpip.h user/andre/tcp-ao/contrib/ipfilter/lib/ipft_ef.c user/andre/tcp-ao/contrib/ipfilter/lib/ipft_sn.c user/andre/tcp-ao/contrib/ipfilter/lib/ipft_td.c user/andre/tcp-ao/contrib/ipfilter/net/.cvsignore user/andre/tcp-ao/contrib/ipfilter/perl/ user/andre/tcp-ao/contrib/ipfilter/radix.c user/andre/tcp-ao/contrib/ipfilter/rules/.cvsignore user/andre/tcp-ao/contrib/ipfilter/samples/.cvsignore user/andre/tcp-ao/contrib/ipfilter/test/ user/andre/tcp-ao/contrib/ipfilter/todo user/andre/tcp-ao/contrib/less/Makefile.aut user/andre/tcp-ao/contrib/less/Makefile.dsb user/andre/tcp-ao/contrib/less/Makefile.dsg user/andre/tcp-ao/contrib/less/Makefile.dsu user/andre/tcp-ao/contrib/less/Makefile.in user/andre/tcp-ao/contrib/less/Makefile.o2e user/andre/tcp-ao/contrib/less/Makefile.o9c user/andre/tcp-ao/contrib/less/Makefile.o9u user/andre/tcp-ao/contrib/less/Makefile.wnb user/andre/tcp-ao/contrib/less/Makefile.wnm user/andre/tcp-ao/contrib/less/configure user/andre/tcp-ao/contrib/less/configure.ac user/andre/tcp-ao/contrib/less/defines.ds user/andre/tcp-ao/contrib/less/defines.h.in user/andre/tcp-ao/contrib/less/defines.o2 user/andre/tcp-ao/contrib/less/defines.o9 user/andre/tcp-ao/contrib/less/defines.wn user/andre/tcp-ao/contrib/less/install.sh user/andre/tcp-ao/contrib/less/less.man user/andre/tcp-ao/contrib/less/lessecho.man user/andre/tcp-ao/contrib/less/lesskey.man user/andre/tcp-ao/contrib/less/mkfuncs.awk user/andre/tcp-ao/contrib/less/mkinstalldirs user/andre/tcp-ao/contrib/libarchive/libarchive/filter_fork.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_freebsd.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_compress_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_uu.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_bzip2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_lzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_lzma.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_compress_xz.c user/andre/tcp-ao/contrib/llvm/include/llvm-c/EnhancedDisassembly.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/InMemoryStruct.h user/andre/tcp-ao/contrib/llvm/include/llvm/AddressingMode.h user/andre/tcp-ao/contrib/llvm/include/llvm/Argument.h user/andre/tcp-ao/contrib/llvm/include/llvm/Attributes.h user/andre/tcp-ao/contrib/llvm/include/llvm/BasicBlock.h user/andre/tcp-ao/contrib/llvm/include/llvm/CallGraphSCCPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/CallingConv.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineLoopRanges.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ScheduleDAGILP.h user/andre/tcp-ao/contrib/llvm/include/llvm/Constant.h user/andre/tcp-ao/contrib/llvm/include/llvm/Constants.h user/andre/tcp-ao/contrib/llvm/include/llvm/DataLayout.h user/andre/tcp-ao/contrib/llvm/include/llvm/DefaultPasses.h user/andre/tcp-ao/contrib/llvm/include/llvm/DerivedTypes.h user/andre/tcp-ao/contrib/llvm/include/llvm/Function.h user/andre/tcp-ao/contrib/llvm/include/llvm/GlobalAlias.h user/andre/tcp-ao/contrib/llvm/include/llvm/GlobalValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/GlobalVariable.h user/andre/tcp-ao/contrib/llvm/include/llvm/IRBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/InlineAsm.h user/andre/tcp-ao/contrib/llvm/include/llvm/InstrTypes.h user/andre/tcp-ao/contrib/llvm/include/llvm/Instruction.def user/andre/tcp-ao/contrib/llvm/include/llvm/Instruction.h user/andre/tcp-ao/contrib/llvm/include/llvm/Instructions.h user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicInst.h user/andre/tcp-ao/contrib/llvm/include/llvm/Intrinsics.h user/andre/tcp-ao/contrib/llvm/include/llvm/Intrinsics.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsARM.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsCellSPU.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsHexagon.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsMips.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsNVVM.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsPowerPC.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsX86.td user/andre/tcp-ao/contrib/llvm/include/llvm/IntrinsicsXCore.td user/andre/tcp-ao/contrib/llvm/include/llvm/LLVMContext.h user/andre/tcp-ao/contrib/llvm/include/llvm/LinkAllVMCore.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/EDInstInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MDBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Metadata.h user/andre/tcp-ao/contrib/llvm/include/llvm/Module.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/MachOObject.h user/andre/tcp-ao/contrib/llvm/include/llvm/OperandTraits.h user/andre/tcp-ao/contrib/llvm/include/llvm/Operator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/IRReader.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/InstVisitor.h user/andre/tcp-ao/contrib/llvm/include/llvm/SymbolTableListTraits.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetTransformImpl.h user/andre/tcp-ao/contrib/llvm/include/llvm/TargetTransformInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h user/andre/tcp-ao/contrib/llvm/include/llvm/Type.h user/andre/tcp-ao/contrib/llvm/include/llvm/TypeBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/TypeFinder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Use.h user/andre/tcp-ao/contrib/llvm/include/llvm/User.h user/andre/tcp-ao/contrib/llvm/include/llvm/Value.h user/andre/tcp-ao/contrib/llvm/include/llvm/ValueSymbolTable.h user/andre/tcp-ao/contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/InlineCost.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveRegMatrix.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineLoopRanges.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/VirtRegMap.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFFormValue.h user/andre/tcp-ao/contrib/llvm/lib/Linker/LinkArchives.cpp user/andre/tcp-ao/contrib/llvm/lib/Linker/LinkItems.cpp user/andre/tcp-ao/contrib/llvm/lib/Linker/Linker.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDInfo.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDInst.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDInst.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDOperand.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDToken.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/EDToken.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCELF.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCTargetAsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/MachOObject.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/CellSPU/ user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonImmediates.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/InstPrinter/Makefile user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/Makefile user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/Makefile user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/TargetInfo/Makefile user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/VectorElementize.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/gen-register-defs.py user/andre/tcp-ao/contrib/llvm/lib/Target/PTX/ user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/TargetInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetTransformImpl.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/BlackList.h user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp user/andre/tcp-ao/contrib/llvm/lib/VMCore/ user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTTypeTraits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PPMutationListener.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ASTMatchers/Makefile user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/MacroArgs.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/CMakeLists.txt user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/Makefile user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/CMakeLists.txt user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/Makefile user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/EDEmitter.cpp user/andre/tcp-ao/contrib/nvi/FAQ user/andre/tcp-ao/contrib/nvi/LAYOUT user/andre/tcp-ao/contrib/nvi/build/ user/andre/tcp-ao/contrib/nvi/catalog/dutch user/andre/tcp-ao/contrib/nvi/catalog/dutch.check user/andre/tcp-ao/contrib/nvi/catalog/english user/andre/tcp-ao/contrib/nvi/catalog/english.base user/andre/tcp-ao/contrib/nvi/catalog/english.check user/andre/tcp-ao/contrib/nvi/catalog/french user/andre/tcp-ao/contrib/nvi/catalog/french.check user/andre/tcp-ao/contrib/nvi/catalog/german user/andre/tcp-ao/contrib/nvi/catalog/german.check user/andre/tcp-ao/contrib/nvi/catalog/polish user/andre/tcp-ao/contrib/nvi/catalog/polish.check user/andre/tcp-ao/contrib/nvi/catalog/ru_RU.KOI8-R user/andre/tcp-ao/contrib/nvi/catalog/ru_RU.KOI8-R.check user/andre/tcp-ao/contrib/nvi/catalog/spanish user/andre/tcp-ao/contrib/nvi/catalog/spanish.check user/andre/tcp-ao/contrib/nvi/catalog/swedish user/andre/tcp-ao/contrib/nvi/catalog/swedish.check user/andre/tcp-ao/contrib/nvi/catalog/uk_UA.KOI8-U user/andre/tcp-ao/contrib/nvi/cl/cl_bsd.c user/andre/tcp-ao/contrib/nvi/clib/ user/andre/tcp-ao/contrib/nvi/common/api.c user/andre/tcp-ao/contrib/nvi/ex/ex_perl.c user/andre/tcp-ao/contrib/nvi/ex/ex_tcl.c user/andre/tcp-ao/contrib/nvi/include/ user/andre/tcp-ao/contrib/nvi/ip/ user/andre/tcp-ao/contrib/nvi/ip_cl/ user/andre/tcp-ao/contrib/nvi/perl_api/ user/andre/tcp-ao/contrib/nvi/perl_scripts/ user/andre/tcp-ao/contrib/nvi/tcl_api/ user/andre/tcp-ao/contrib/nvi/tcl_scripts/ user/andre/tcp-ao/contrib/nvi/tk/ user/andre/tcp-ao/contrib/openbsm/m4/lt~obsolete.m4 user/andre/tcp-ao/contrib/openpam/FREEBSD-vendor user/andre/tcp-ao/contrib/openpam/lib/openpam_borrow_cred.c user/andre/tcp-ao/contrib/openpam/lib/openpam_check_owner_perms.c user/andre/tcp-ao/contrib/openpam/lib/openpam_configure.c user/andre/tcp-ao/contrib/openpam/lib/openpam_constants.c user/andre/tcp-ao/contrib/openpam/lib/openpam_constants.h user/andre/tcp-ao/contrib/openpam/lib/openpam_ctype.h user/andre/tcp-ao/contrib/openpam/lib/openpam_debug.h user/andre/tcp-ao/contrib/openpam/lib/openpam_dispatch.c user/andre/tcp-ao/contrib/openpam/lib/openpam_dynamic.c user/andre/tcp-ao/contrib/openpam/lib/openpam_features.c user/andre/tcp-ao/contrib/openpam/lib/openpam_features.h user/andre/tcp-ao/contrib/openpam/lib/openpam_findenv.c user/andre/tcp-ao/contrib/openpam/lib/openpam_free_data.c user/andre/tcp-ao/contrib/openpam/lib/openpam_free_envlist.c user/andre/tcp-ao/contrib/openpam/lib/openpam_get_feature.c user/andre/tcp-ao/contrib/openpam/lib/openpam_get_option.c user/andre/tcp-ao/contrib/openpam/lib/openpam_impl.h user/andre/tcp-ao/contrib/openpam/lib/openpam_load.c user/andre/tcp-ao/contrib/openpam/lib/openpam_log.c user/andre/tcp-ao/contrib/openpam/lib/openpam_nullconv.c user/andre/tcp-ao/contrib/openpam/lib/openpam_readline.c user/andre/tcp-ao/contrib/openpam/lib/openpam_readlinev.c user/andre/tcp-ao/contrib/openpam/lib/openpam_readword.c user/andre/tcp-ao/contrib/openpam/lib/openpam_restore_cred.c user/andre/tcp-ao/contrib/openpam/lib/openpam_set_feature.c user/andre/tcp-ao/contrib/openpam/lib/openpam_set_option.c user/andre/tcp-ao/contrib/openpam/lib/openpam_static.c user/andre/tcp-ao/contrib/openpam/lib/openpam_straddch.c user/andre/tcp-ao/contrib/openpam/lib/openpam_strlcat.h user/andre/tcp-ao/contrib/openpam/lib/openpam_strlcmp.h user/andre/tcp-ao/contrib/openpam/lib/openpam_strlcpy.h user/andre/tcp-ao/contrib/openpam/lib/openpam_subst.c user/andre/tcp-ao/contrib/openpam/lib/openpam_ttyconv.c user/andre/tcp-ao/contrib/openpam/lib/pam_acct_mgmt.c user/andre/tcp-ao/contrib/openpam/lib/pam_authenticate.c user/andre/tcp-ao/contrib/openpam/lib/pam_authenticate_secondary.c user/andre/tcp-ao/contrib/openpam/lib/pam_chauthtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_close_session.c user/andre/tcp-ao/contrib/openpam/lib/pam_end.c user/andre/tcp-ao/contrib/openpam/lib/pam_error.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_authtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_data.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_item.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_mapped_authtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_mapped_username.c user/andre/tcp-ao/contrib/openpam/lib/pam_get_user.c user/andre/tcp-ao/contrib/openpam/lib/pam_getenv.c user/andre/tcp-ao/contrib/openpam/lib/pam_getenvlist.c user/andre/tcp-ao/contrib/openpam/lib/pam_info.c user/andre/tcp-ao/contrib/openpam/lib/pam_open_session.c user/andre/tcp-ao/contrib/openpam/lib/pam_prompt.c user/andre/tcp-ao/contrib/openpam/lib/pam_putenv.c user/andre/tcp-ao/contrib/openpam/lib/pam_set_data.c user/andre/tcp-ao/contrib/openpam/lib/pam_set_item.c user/andre/tcp-ao/contrib/openpam/lib/pam_set_mapped_authtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_set_mapped_username.c user/andre/tcp-ao/contrib/openpam/lib/pam_setcred.c user/andre/tcp-ao/contrib/openpam/lib/pam_setenv.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_acct_mgmt.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_authenticate.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_authenticate_secondary.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_chauthtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_close_session.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_get_mapped_authtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_get_mapped_username.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_open_session.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_set_mapped_authtok.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_set_mapped_username.c user/andre/tcp-ao/contrib/openpam/lib/pam_sm_setcred.c user/andre/tcp-ao/contrib/openpam/lib/pam_start.c user/andre/tcp-ao/contrib/openpam/lib/pam_strerror.c user/andre/tcp-ao/contrib/openpam/lib/pam_verror.c user/andre/tcp-ao/contrib/openpam/lib/pam_vinfo.c user/andre/tcp-ao/contrib/openpam/lib/pam_vprompt.c user/andre/tcp-ao/contrib/smbfs/mount_smbfs/Makefile user/andre/tcp-ao/contrib/wpa/hostapd/.gitignore user/andre/tcp-ao/contrib/wpa/hostapd/Makefile user/andre/tcp-ao/contrib/wpa/src/Makefile user/andre/tcp-ao/contrib/wpa/src/ap/Makefile user/andre/tcp-ao/contrib/wpa/src/common/Makefile user/andre/tcp-ao/contrib/wpa/src/crypto/.gitignore user/andre/tcp-ao/contrib/wpa/src/crypto/Makefile user/andre/tcp-ao/contrib/wpa/src/crypto/md5-non-fips.c user/andre/tcp-ao/contrib/wpa/src/drivers/.gitignore user/andre/tcp-ao/contrib/wpa/src/drivers/Makefile user/andre/tcp-ao/contrib/wpa/src/drivers/driver_ndiswrapper.c user/andre/tcp-ao/contrib/wpa/src/drivers/drivers.mak user/andre/tcp-ao/contrib/wpa/src/eap_common/Makefile user/andre/tcp-ao/contrib/wpa/src/eap_peer/Makefile user/andre/tcp-ao/contrib/wpa/src/eap_server/Makefile user/andre/tcp-ao/contrib/wpa/src/eapol_auth/Makefile user/andre/tcp-ao/contrib/wpa/src/eapol_supp/Makefile user/andre/tcp-ao/contrib/wpa/src/l2_packet/Makefile user/andre/tcp-ao/contrib/wpa/src/lib.rules user/andre/tcp-ao/contrib/wpa/src/radius/.gitignore user/andre/tcp-ao/contrib/wpa/src/radius/Makefile user/andre/tcp-ao/contrib/wpa/src/rsn_supp/Makefile user/andre/tcp-ao/contrib/wpa/src/tls/.gitignore user/andre/tcp-ao/contrib/wpa/src/tls/Makefile user/andre/tcp-ao/contrib/wpa/src/utils/.gitignore user/andre/tcp-ao/contrib/wpa/src/utils/Makefile user/andre/tcp-ao/contrib/wpa/src/wps/Makefile user/andre/tcp-ao/contrib/wpa/src/wps/wps_nfc.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_nfc_pn531.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_ufd.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/.gitignore user/andre/tcp-ao/contrib/wpa/wpa_supplicant/Makefile user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/.gitignore user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/fi.epitest.hostap.WPASupplicant.service user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/fi.w1.wpa_supplicant1.service user/andre/tcp-ao/contrib/wpa/wpa_supplicant/doc/ user/andre/tcp-ao/contrib/wpa/wpa_supplicant/mlme.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/mlme.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant.nsi user/andre/tcp-ao/crypto/openssh/acss.c user/andre/tcp-ao/crypto/openssh/acss.h user/andre/tcp-ao/crypto/openssh/cipher-acss.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/getopt.c user/andre/tcp-ao/etc/atf/ user/andre/tcp-ao/etc/mtree/BIND.chroot.dist user/andre/tcp-ao/etc/mtree/BIND.include.dist user/andre/tcp-ao/etc/periodic/daily/220.backup-pkgdb user/andre/tcp-ao/etc/periodic/daily/405.status-ata-raid user/andre/tcp-ao/etc/periodic/daily/490.status-pkg-changes user/andre/tcp-ao/etc/periodic/security/460.chkportsum user/andre/tcp-ao/etc/periodic/weekly/400.status-pkg user/andre/tcp-ao/etc/rc.d/encswap user/andre/tcp-ao/etc/rc.d/swap1 user/andre/tcp-ao/gnu/lib/libregex/FREEBSD-upgrade user/andre/tcp-ao/gnu/lib/libregex/posix/ user/andre/tcp-ao/gnu/lib/libregex/regcomp.c user/andre/tcp-ao/gnu/lib/libregex/regex.c user/andre/tcp-ao/gnu/lib/libregex/regex_internal.c user/andre/tcp-ao/gnu/lib/libregex/regex_internal.h user/andre/tcp-ao/gnu/lib/libregex/regexec.c user/andre/tcp-ao/gnu/usr.bin/binutils/ar/Makefile user/andre/tcp-ao/gnu/usr.bin/binutils/ar/ar.1 user/andre/tcp-ao/gnu/usr.bin/binutils/ranlib/Makefile user/andre/tcp-ao/gnu/usr.bin/binutils/ranlib/ranlib.1 user/andre/tcp-ao/gnu/usr.bin/cc/f77/ user/andre/tcp-ao/gnu/usr.bin/cc/f771/ user/andre/tcp-ao/gnu/usr.bin/cc/f77doc/ user/andre/tcp-ao/gnu/usr.bin/cvs/ user/andre/tcp-ao/gnu/usr.bin/gdb/libgdb/frame-unwind.diff user/andre/tcp-ao/gnu/usr.bin/patch/ user/andre/tcp-ao/include/stdatomic.h user/andre/tcp-ao/lib/bind/ user/andre/tcp-ao/lib/clang/include/ARMGenEDInfo.inc user/andre/tcp-ao/lib/clang/include/MipsGenEDInfo.inc user/andre/tcp-ao/lib/clang/include/X86GenEDInfo.inc user/andre/tcp-ao/lib/clang/include/llvm/Intrinsics.gen user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_add_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_add_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_and_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_and_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_op_n.h user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_or_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_or_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_sub_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_sub_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_xor_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_fetch_and_xor_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_lock_test_and_set_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_lock_test_and_set_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c user/andre/tcp-ao/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h user/andre/tcp-ao/lib/libpam/libpam/pam_std_option.c user/andre/tcp-ao/lib/libstand/arm/ user/andre/tcp-ao/lib/libyaml/libbsdyml.3 user/andre/tcp-ao/lib/msun/amd64/fenv.h user/andre/tcp-ao/lib/msun/i387/fenv.h user/andre/tcp-ao/release/doc/ja_JP.eucJP/share/xml/dev-auto-ja.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/share/xml/dev-auto-ru.xml user/andre/tcp-ao/release/picobsd/floppy.tree/etc/sshd_config user/andre/tcp-ao/sbin/atacontrol/ user/andre/tcp-ao/share/atf/ user/andre/tcp-ao/share/doc/bind9/ user/andre/tcp-ao/share/doc/psd/28.cvs/ user/andre/tcp-ao/share/examples/atf/ user/andre/tcp-ao/share/man/man4/atapicam.4 user/andre/tcp-ao/share/man/man4/ataraid.4 user/andre/tcp-ao/share/man/man4/isf.4 user/andre/tcp-ao/share/man/man4/ng_fec.4 user/andre/tcp-ao/share/man/man4/vinum.4 user/andre/tcp-ao/share/man/man9/vfs_mount.9 user/andre/tcp-ao/share/man/man9/vm_page_io.9 user/andre/tcp-ao/share/man/man9/vm_page_sleep_if_busy.9 user/andre/tcp-ao/share/man/man9/vm_page_wakeup.9 user/andre/tcp-ao/share/xml/ user/andre/tcp-ao/share/xsl/ user/andre/tcp-ao/sys/amd64/compile/.cvsignore user/andre/tcp-ao/sys/amd64/conf/.cvsignore user/andre/tcp-ao/sys/amd64/conf/XENHVM user/andre/tcp-ao/sys/arm/broadcom/bcm2835/dwc_otg_brcm.c user/andre/tcp-ao/sys/arm/compile/.cvsignore user/andre/tcp-ao/sys/arm/conf/.cvsignore user/andre/tcp-ao/sys/boot/fdt/dts/bcm2835-rpi-b.dts user/andre/tcp-ao/sys/compat/linux/linux_videodev.h user/andre/tcp-ao/sys/compat/linux/linux_videodev2.h user/andre/tcp-ao/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu user/andre/tcp-ao/sys/contrib/ipfilter/netinet/QNX_OCL.txt user/andre/tcp-ao/sys/contrib/rdma/core_priv.h user/andre/tcp-ao/sys/contrib/rdma/ib_addr.h user/andre/tcp-ao/sys/contrib/rdma/ib_cache.h user/andre/tcp-ao/sys/contrib/rdma/ib_cm.h user/andre/tcp-ao/sys/contrib/rdma/ib_fmr_pool.h user/andre/tcp-ao/sys/contrib/rdma/ib_mad.h user/andre/tcp-ao/sys/contrib/rdma/ib_marshall.h user/andre/tcp-ao/sys/contrib/rdma/ib_pack.h user/andre/tcp-ao/sys/contrib/rdma/ib_sa.h user/andre/tcp-ao/sys/contrib/rdma/ib_smi.h user/andre/tcp-ao/sys/contrib/rdma/ib_umem.h user/andre/tcp-ao/sys/contrib/rdma/ib_user_cm.h user/andre/tcp-ao/sys/contrib/rdma/ib_user_mad.h user/andre/tcp-ao/sys/contrib/rdma/ib_user_sa.h user/andre/tcp-ao/sys/contrib/rdma/ib_user_verbs.h user/andre/tcp-ao/sys/contrib/rdma/ib_verbs.h user/andre/tcp-ao/sys/contrib/rdma/iw_cm.h user/andre/tcp-ao/sys/contrib/rdma/rdma_addr.c user/andre/tcp-ao/sys/contrib/rdma/rdma_cache.c user/andre/tcp-ao/sys/contrib/rdma/rdma_cm.h user/andre/tcp-ao/sys/contrib/rdma/rdma_cm_ib.h user/andre/tcp-ao/sys/contrib/rdma/rdma_cma.c user/andre/tcp-ao/sys/contrib/rdma/rdma_device.c user/andre/tcp-ao/sys/contrib/rdma/rdma_iwcm.c user/andre/tcp-ao/sys/contrib/rdma/rdma_user_cm.h user/andre/tcp-ao/sys/contrib/rdma/rdma_verbs.c user/andre/tcp-ao/sys/contrib/rdma/types.h user/andre/tcp-ao/sys/crypto/aesni/aesencdec_amd64.S user/andre/tcp-ao/sys/crypto/aesni/aesencdec_i386.S user/andre/tcp-ao/sys/dev/ata/ata-disk.c user/andre/tcp-ao/sys/dev/ata/ata-disk.h user/andre/tcp-ao/sys/dev/ata/ata-queue.c user/andre/tcp-ao/sys/dev/ata/ata-raid-ddf.h user/andre/tcp-ao/sys/dev/ata/ata-raid.c user/andre/tcp-ao/sys/dev/ata/ata-raid.h user/andre/tcp-ao/sys/dev/ata/atapi-cam.c user/andre/tcp-ao/sys/dev/ata/atapi-cd.c user/andre/tcp-ao/sys/dev/ata/atapi-cd.h user/andre/tcp-ao/sys/dev/ata/atapi-fd.c user/andre/tcp-ao/sys/dev/ata/atapi-fd.h user/andre/tcp-ao/sys/dev/ata/atapi-tape.c user/andre/tcp-ao/sys/dev/ata/atapi-tape.h user/andre/tcp-ao/sys/dev/bxe/bxe_debug.h user/andre/tcp-ao/sys/dev/bxe/bxe_fw_defs.h user/andre/tcp-ao/sys/dev/bxe/bxe_hsi.h user/andre/tcp-ao/sys/dev/bxe/bxe_include.h user/andre/tcp-ao/sys/dev/bxe/bxe_init.h user/andre/tcp-ao/sys/dev/bxe/bxe_init_values_e1.h user/andre/tcp-ao/sys/dev/bxe/bxe_init_values_e1h.h user/andre/tcp-ao/sys/dev/bxe/bxe_link.c user/andre/tcp-ao/sys/dev/bxe/bxe_link.h user/andre/tcp-ao/sys/dev/bxe/bxe_reg.h user/andre/tcp-ao/sys/dev/bxe/bxe_self_test.h user/andre/tcp-ao/sys/dev/bxe/dump_e1.h user/andre/tcp-ao/sys/dev/bxe/dump_e1h.h user/andre/tcp-ao/sys/dev/bxe/hw_dump_reg_st.h user/andre/tcp-ao/sys/dev/bxe/if_bxe.c user/andre/tcp-ao/sys/dev/bxe/if_bxe.h user/andre/tcp-ao/sys/dev/cxgbe/firmware/t4fw-1.8.4.0.bin.uu user/andre/tcp-ao/sys/dev/hpt27xx/os_bsd.c user/andre/tcp-ao/sys/dev/hpt27xx/osm_bsd.c user/andre/tcp-ao/sys/dev/iscsi/initiator/ user/andre/tcp-ao/sys/dev/isf/ user/andre/tcp-ao/sys/dev/nvme/nvme_uio.c user/andre/tcp-ao/sys/dev/random/probe.c user/andre/tcp-ao/sys/dev/xen/xenpci/evtchn.c user/andre/tcp-ao/sys/i386/compile/.cvsignore user/andre/tcp-ao/sys/i386/conf/.cvsignore user/andre/tcp-ao/sys/i386/conf/XENHVM user/andre/tcp-ao/sys/i386/include/xen/xen_clock_util.h user/andre/tcp-ao/sys/i386/xen/xen_clock_util.c user/andre/tcp-ao/sys/i386/xen/xen_rtc.c user/andre/tcp-ao/sys/ia64/compile/.cvsignore user/andre/tcp-ao/sys/ia64/conf/.cvsignore user/andre/tcp-ao/sys/kern/dtio_kdtrace.c user/andre/tcp-ao/sys/kern/uipc_cow.c user/andre/tcp-ao/sys/mips/compile/.cvsignore user/andre/tcp-ao/sys/mips/conf/.cvsignore user/andre/tcp-ao/sys/mips/conf/BERI_SIM.hints user/andre/tcp-ao/sys/modules/ata/atacam/ user/andre/tcp-ao/sys/modules/ata/atadevel/ user/andre/tcp-ao/sys/modules/ata/atadisk/ user/andre/tcp-ao/sys/modules/ata/atapicam/ user/andre/tcp-ao/sys/modules/ata/atapicd/ user/andre/tcp-ao/sys/modules/ata/atapifd/ user/andre/tcp-ao/sys/modules/ata/atapist/ user/andre/tcp-ao/sys/modules/ata/ataraid/ user/andre/tcp-ao/sys/modules/dtrace/dtio/ user/andre/tcp-ao/sys/modules/iscsi/initiator/ user/andre/tcp-ao/sys/modules/netgraph/fec/ user/andre/tcp-ao/sys/modules/rdma/addr/ user/andre/tcp-ao/sys/modules/rdma/cma/ user/andre/tcp-ao/sys/modules/rdma/core/ user/andre/tcp-ao/sys/modules/rdma/iwcm/ user/andre/tcp-ao/sys/modules/runfw/ user/andre/tcp-ao/sys/net/pf_mtag.h user/andre/tcp-ao/sys/netgraph/ng_fec.c user/andre/tcp-ao/sys/netgraph/ng_fec.h user/andre/tcp-ao/sys/nfsserver/nfs_fha.c user/andre/tcp-ao/sys/nfsserver/nfs_fha.h user/andre/tcp-ao/sys/pc98/compile/.cvsignore user/andre/tcp-ao/sys/pc98/conf/.cvsignore user/andre/tcp-ao/sys/powerpc/aim/clock.c user/andre/tcp-ao/sys/powerpc/aim/nexus.c user/andre/tcp-ao/sys/powerpc/aim/vm_machdep.c user/andre/tcp-ao/sys/powerpc/booke/clock.c user/andre/tcp-ao/sys/powerpc/booke/vm_machdep.c user/andre/tcp-ao/sys/powerpc/compile/.cvsignore user/andre/tcp-ao/sys/powerpc/conf/.cvsignore user/andre/tcp-ao/sys/powerpc/include/trap_aim.h user/andre/tcp-ao/sys/powerpc/include/trap_booke.h user/andre/tcp-ao/sys/powerpc/mambo/mambo_openpic.c user/andre/tcp-ao/sys/powerpc/mpc85xx/nexus.c user/andre/tcp-ao/sys/powerpc/mpc85xx/pci_fdt.c user/andre/tcp-ao/sys/powerpc/powermac/openpic_macio.c user/andre/tcp-ao/sys/powerpc/powerpc/openpic_fdt.c user/andre/tcp-ao/sys/sparc64/compile/.cvsignore user/andre/tcp-ao/sys/sparc64/conf/.cvsignore user/andre/tcp-ao/sys/xen/evtchn/evtchn.c user/andre/tcp-ao/sys/xen/interface/hvm/vmx_assist.h user/andre/tcp-ao/tools/build/options/WITHOUT_BIND user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_DNSSEC user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_ETC user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_LIBS_LWRES user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_MTREE user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_NAMED user/andre/tcp-ao/tools/build/options/WITHOUT_BIND_UTILS user/andre/tcp-ao/tools/build/options/WITHOUT_PKGTOOLS user/andre/tcp-ao/tools/build/options/WITH_ARM_EABI user/andre/tcp-ao/tools/build/options/WITH_BIND_IDN user/andre/tcp-ao/tools/build/options/WITH_BIND_LARGE_FILE user/andre/tcp-ao/tools/build/options/WITH_BIND_LIBS user/andre/tcp-ao/tools/build/options/WITH_BIND_SIGCHASE user/andre/tcp-ao/tools/build/options/WITH_BIND_XML user/andre/tcp-ao/tools/build/options/WITH_BMAKE user/andre/tcp-ao/tools/build/options/WITH_BSDCONFIG user/andre/tcp-ao/tools/build/options/WITH_BSD_PATCH user/andre/tcp-ao/tools/build/options/WITH_ICONV user/andre/tcp-ao/tools/build/options/WITH_IDEA user/andre/tcp-ao/tools/build/options/WITH_LDNS_UTILS user/andre/tcp-ao/tools/build/options/WITH_NMTREE user/andre/tcp-ao/tools/regression/geom_uzip/.cvsignore user/andre/tcp-ao/usr.bin/atf/atf-config/ user/andre/tcp-ao/usr.bin/atf/atf-report/ user/andre/tcp-ao/usr.bin/atf/atf-run/ user/andre/tcp-ao/usr.bin/atf/atf-version/ user/andre/tcp-ao/usr.bin/dig/ user/andre/tcp-ao/usr.bin/lex/COPYING user/andre/tcp-ao/usr.bin/lex/FlexLexer.h user/andre/tcp-ao/usr.bin/lex/NEWS user/andre/tcp-ao/usr.bin/lex/README user/andre/tcp-ao/usr.bin/lex/ccl.c user/andre/tcp-ao/usr.bin/lex/dfa.c user/andre/tcp-ao/usr.bin/lex/ecs.c user/andre/tcp-ao/usr.bin/lex/flex.skl user/andre/tcp-ao/usr.bin/lex/flexdef.h user/andre/tcp-ao/usr.bin/lex/gen.c user/andre/tcp-ao/usr.bin/lex/lib/libmain.c user/andre/tcp-ao/usr.bin/lex/lib/libyywrap.c user/andre/tcp-ao/usr.bin/lex/main.c user/andre/tcp-ao/usr.bin/lex/misc.c user/andre/tcp-ao/usr.bin/lex/mkskel.sh user/andre/tcp-ao/usr.bin/lex/nfa.c user/andre/tcp-ao/usr.bin/lex/parse.y user/andre/tcp-ao/usr.bin/lex/scan.l user/andre/tcp-ao/usr.bin/lex/sym.c user/andre/tcp-ao/usr.bin/lex/tblcmp.c user/andre/tcp-ao/usr.bin/lex/version.h user/andre/tcp-ao/usr.bin/lex/yylex.c user/andre/tcp-ao/usr.bin/nslookup/ user/andre/tcp-ao/usr.bin/nsupdate/ user/andre/tcp-ao/usr.bin/systat/mbufs.c user/andre/tcp-ao/usr.bin/unvis/unvis.1 user/andre/tcp-ao/usr.bin/unvis/unvis.c user/andre/tcp-ao/usr.bin/vi/port.h user/andre/tcp-ao/usr.bin/vis/extern.h user/andre/tcp-ao/usr.bin/vis/foldit.c user/andre/tcp-ao/usr.bin/vis/vis.1 user/andre/tcp-ao/usr.bin/vis/vis.c user/andre/tcp-ao/usr.sbin/arpaname/ user/andre/tcp-ao/usr.sbin/bhyve/uart.c user/andre/tcp-ao/usr.sbin/burncd/ user/andre/tcp-ao/usr.sbin/ddns-confgen/ user/andre/tcp-ao/usr.sbin/dnssec-dsfromkey/ user/andre/tcp-ao/usr.sbin/dnssec-keyfromlabel/ user/andre/tcp-ao/usr.sbin/dnssec-keygen/ user/andre/tcp-ao/usr.sbin/dnssec-revoke/ user/andre/tcp-ao/usr.sbin/dnssec-settime/ user/andre/tcp-ao/usr.sbin/dnssec-signzone/ user/andre/tcp-ao/usr.sbin/genrandom/ user/andre/tcp-ao/usr.sbin/isc-hmac-fixup/ user/andre/tcp-ao/usr.sbin/isfctl/ user/andre/tcp-ao/usr.sbin/makefs/compat/ user/andre/tcp-ao/usr.sbin/makefs/getid.c user/andre/tcp-ao/usr.sbin/named/ user/andre/tcp-ao/usr.sbin/named-checkconf/ user/andre/tcp-ao/usr.sbin/named-checkzone/ user/andre/tcp-ao/usr.sbin/named-journalprint/ user/andre/tcp-ao/usr.sbin/nsec3hash/ user/andre/tcp-ao/usr.sbin/pkg_install/ user/andre/tcp-ao/usr.sbin/ppp/ppp.8.m4 user/andre/tcp-ao/usr.sbin/rndc/ user/andre/tcp-ao/usr.sbin/rndc-confgen/ user/andre/tcp-ao/usr.sbin/wpa/hostapd/driver_freebsd.c user/andre/tcp-ao/usr.sbin/wpa/wpa_supplicant/driver_freebsd.c Modified: user/andre/tcp-ao/LOCKS user/andre/tcp-ao/MAINTAINERS (contents, props changed) user/andre/tcp-ao/Makefile user/andre/tcp-ao/Makefile.inc1 user/andre/tcp-ao/ObsoleteFiles.inc user/andre/tcp-ao/UPDATING user/andre/tcp-ao/bin/Makefile user/andre/tcp-ao/bin/cat/cat.c user/andre/tcp-ao/bin/chflags/chflags.1 user/andre/tcp-ao/bin/chflags/chflags.c user/andre/tcp-ao/bin/chio/chio.c user/andre/tcp-ao/bin/cp/cp.1 user/andre/tcp-ao/bin/dd/args.c user/andre/tcp-ao/bin/dd/conv_tab.c user/andre/tcp-ao/bin/dd/dd.1 user/andre/tcp-ao/bin/dd/dd.c user/andre/tcp-ao/bin/dd/extern.h user/andre/tcp-ao/bin/dd/misc.c user/andre/tcp-ao/bin/dd/position.c user/andre/tcp-ao/bin/df/df.1 user/andre/tcp-ao/bin/df/df.c user/andre/tcp-ao/bin/domainname/domainname.1 user/andre/tcp-ao/bin/ed/cbc.c user/andre/tcp-ao/bin/ed/ed.1 user/andre/tcp-ao/bin/ed/re.c user/andre/tcp-ao/bin/expr/Makefile user/andre/tcp-ao/bin/hostname/hostname.c user/andre/tcp-ao/bin/kenv/kenv.c user/andre/tcp-ao/bin/kill/kill.c user/andre/tcp-ao/bin/ln/ln.c user/andre/tcp-ao/bin/ls/ls.1 user/andre/tcp-ao/bin/mkdir/mkdir.1 user/andre/tcp-ao/bin/mkdir/mkdir.c user/andre/tcp-ao/bin/mv/mv.1 user/andre/tcp-ao/bin/mv/mv.c user/andre/tcp-ao/bin/pkill/pkill.1 user/andre/tcp-ao/bin/pkill/pkill.c user/andre/tcp-ao/bin/ps/keyword.c user/andre/tcp-ao/bin/ps/print.c user/andre/tcp-ao/bin/ps/ps.1 user/andre/tcp-ao/bin/rm/rm.1 user/andre/tcp-ao/bin/rm/rm.c user/andre/tcp-ao/bin/rmdir/rmdir.1 user/andre/tcp-ao/bin/setfacl/setfacl.1 user/andre/tcp-ao/bin/sh/Makefile user/andre/tcp-ao/bin/sh/TOUR user/andre/tcp-ao/bin/sh/alias.c user/andre/tcp-ao/bin/sh/arith_yylex.c user/andre/tcp-ao/bin/sh/eval.c user/andre/tcp-ao/bin/sh/eval.h user/andre/tcp-ao/bin/sh/exec.c user/andre/tcp-ao/bin/sh/expand.c user/andre/tcp-ao/bin/sh/input.c user/andre/tcp-ao/bin/sh/input.h user/andre/tcp-ao/bin/sh/jobs.c user/andre/tcp-ao/bin/sh/jobs.h user/andre/tcp-ao/bin/sh/main.c user/andre/tcp-ao/bin/sh/memalloc.c user/andre/tcp-ao/bin/sh/memalloc.h user/andre/tcp-ao/bin/sh/miscbltin.c user/andre/tcp-ao/bin/sh/nodes.c.pat user/andre/tcp-ao/bin/sh/nodetypes user/andre/tcp-ao/bin/sh/output.c user/andre/tcp-ao/bin/sh/parser.c user/andre/tcp-ao/bin/sh/parser.h user/andre/tcp-ao/bin/sh/redir.c user/andre/tcp-ao/bin/sh/sh.1 user/andre/tcp-ao/bin/sh/shell.h user/andre/tcp-ao/bin/sh/trap.c user/andre/tcp-ao/bin/sh/trap.h user/andre/tcp-ao/bin/sh/var.c user/andre/tcp-ao/bin/sleep/sleep.c user/andre/tcp-ao/bin/test/test.1 user/andre/tcp-ao/bin/test/test.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/dtrace.1 user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/jdtrace/exception.lst user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/cmd/scripts/dtest.pl user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/buffering/tst.fill1.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionentry.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.functionreturnvalue.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.ioctlargs.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offset.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.offsetzero.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.return0.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/fbtprovider/tst.tailcall.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/funcs/tst.strjoin.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv4remote.pl user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/ip/get.ipv6remote.pl user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.BadAlign.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress2.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress3.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress4.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pointers/err.InvalidAddress5.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/printf/tst.ints.d.out user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/safety/tst.copyin.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sdt/tst.sdtargs.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/err.BufSizeVariations1.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/speculation/err.BufSizeVariations2.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_PROTO_LEN.bad.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/trace/err.D_TRACE_VOID.bad.d user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/lockstat/lockstat.1 user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/lockstat/sym.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zdb/zdb.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zfs/zfs.8 user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zhack/zhack.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zpool/zpool.8 user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/ztest/ztest.c user/andre/tcp-ao/cddl/contrib/opensolaris/common/ctf/ctf_create.c user/andre/tcp-ao/cddl/contrib/opensolaris/common/ctf/ctf_error.c user/andre/tcp-ao/cddl/contrib/opensolaris/common/ctf/ctf_impl.h user/andre/tcp-ao/cddl/contrib/opensolaris/common/ctf/ctf_open.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libctf/common/ctf_lib.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cg.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_decl.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dis.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_dof.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_error.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_errtags.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_map.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_options.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_program.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_regset.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_regset.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/common/dtrace.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/i386/dt_isadep.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libdtrace/powerpc/dt_isadep.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_impl.h user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_status.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/ctftools.h user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/dwarf.c user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/input.c user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/st_parse.c user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/traverse.c user/andre/tcp-ao/cddl/contrib/opensolaris/tools/ctf/cvt/util.c user/andre/tcp-ao/cddl/lib/Makefile user/andre/tcp-ao/cddl/lib/drti/Makefile user/andre/tcp-ao/cddl/lib/libdtrace/Makefile user/andre/tcp-ao/cddl/lib/libdtrace/nfs.d user/andre/tcp-ao/cddl/lib/libdtrace/psinfo.d user/andre/tcp-ao/cddl/lib/libzfs/Makefile user/andre/tcp-ao/cddl/lib/libzpool/Makefile user/andre/tcp-ao/cddl/sbin/zfs/Makefile user/andre/tcp-ao/cddl/sbin/zpool/Makefile user/andre/tcp-ao/cddl/usr.bin/zinject/Makefile user/andre/tcp-ao/cddl/usr.bin/ztest/Makefile user/andre/tcp-ao/cddl/usr.sbin/lockstat/Makefile user/andre/tcp-ao/cddl/usr.sbin/zdb/Makefile user/andre/tcp-ao/cddl/usr.sbin/zhack/Makefile user/andre/tcp-ao/contrib/atf/atf-c++/check_test.cpp user/andre/tcp-ao/contrib/atf/atf-c++/detail/process_test.cpp user/andre/tcp-ao/contrib/atf/atf-c++/detail/test_helpers.cpp user/andre/tcp-ao/contrib/atf/atf-c++/detail/test_helpers.hpp user/andre/tcp-ao/contrib/binutils/bfd/dwarf2.c user/andre/tcp-ao/contrib/binutils/bfd/elf32-score.c user/andre/tcp-ao/contrib/binutils/bfd/elflink.c user/andre/tcp-ao/contrib/binutils/bfd/elfxx-mips.c user/andre/tcp-ao/contrib/binutils/bfd/po/bfd.pot user/andre/tcp-ao/contrib/binutils/binutils/arlex.l user/andre/tcp-ao/contrib/binutils/binutils/dwarf.c user/andre/tcp-ao/contrib/binutils/binutils/readelf.c user/andre/tcp-ao/contrib/binutils/gas/config/atof-ieee.c user/andre/tcp-ao/contrib/binutils/gas/config/tc-arm.c user/andre/tcp-ao/contrib/binutils/gas/config/tc-i386.c user/andre/tcp-ao/contrib/binutils/gas/config/tc-mips.c user/andre/tcp-ao/contrib/binutils/gas/config/tc-mips.h user/andre/tcp-ao/contrib/binutils/gas/dwarf2dbg.c user/andre/tcp-ao/contrib/binutils/gas/symbols.c user/andre/tcp-ao/contrib/binutils/include/elf/common.h user/andre/tcp-ao/contrib/binutils/include/elf/dwarf2.h user/andre/tcp-ao/contrib/binutils/ld/ldlex.l user/andre/tcp-ao/contrib/binutils/ld/ldmain.c user/andre/tcp-ao/contrib/binutils/opcodes/i386-dis.c user/andre/tcp-ao/contrib/binutils/opcodes/i386-opc.h user/andre/tcp-ao/contrib/binutils/opcodes/i386-opc.tbl user/andre/tcp-ao/contrib/binutils/opcodes/i386-tbl.h user/andre/tcp-ao/contrib/bmake/ChangeLog user/andre/tcp-ao/contrib/bmake/FILES user/andre/tcp-ao/contrib/bmake/Makefile user/andre/tcp-ao/contrib/bmake/bmake.1 user/andre/tcp-ao/contrib/bmake/bmake.cat1 user/andre/tcp-ao/contrib/bmake/boot-strap user/andre/tcp-ao/contrib/bmake/compat.c user/andre/tcp-ao/contrib/bmake/configure user/andre/tcp-ao/contrib/bmake/configure.in user/andre/tcp-ao/contrib/bmake/dir.c user/andre/tcp-ao/contrib/bmake/job.c user/andre/tcp-ao/contrib/bmake/job.h user/andre/tcp-ao/contrib/bmake/main.c user/andre/tcp-ao/contrib/bmake/make.1 user/andre/tcp-ao/contrib/bmake/make.h user/andre/tcp-ao/contrib/bmake/meta.c user/andre/tcp-ao/contrib/bmake/meta.h user/andre/tcp-ao/contrib/bmake/mk/ChangeLog user/andre/tcp-ao/contrib/bmake/mk/FILES user/andre/tcp-ao/contrib/bmake/mk/dirdeps.mk user/andre/tcp-ao/contrib/bmake/mk/gendirdeps.mk user/andre/tcp-ao/contrib/bmake/mk/init.mk user/andre/tcp-ao/contrib/bmake/mk/install-mk user/andre/tcp-ao/contrib/bmake/mk/lib.mk user/andre/tcp-ao/contrib/bmake/mk/libs.mk user/andre/tcp-ao/contrib/bmake/mk/meta.stage.mk user/andre/tcp-ao/contrib/bmake/mk/meta2deps.py user/andre/tcp-ao/contrib/bmake/mk/meta2deps.sh user/andre/tcp-ao/contrib/bmake/mk/options.mk user/andre/tcp-ao/contrib/bmake/mk/own.mk user/andre/tcp-ao/contrib/bmake/mk/prog.mk user/andre/tcp-ao/contrib/bmake/mk/progs.mk user/andre/tcp-ao/contrib/bmake/mk/sys.dependfile.mk user/andre/tcp-ao/contrib/bmake/parse.c user/andre/tcp-ao/contrib/bmake/suff.c user/andre/tcp-ao/contrib/bmake/unit-tests/Makefile.in user/andre/tcp-ao/contrib/bmake/unit-tests/test.exp user/andre/tcp-ao/contrib/bmake/var.c user/andre/tcp-ao/contrib/bsnmp/lib/snmp.c user/andre/tcp-ao/contrib/bsnmp/lib/snmp.h user/andre/tcp-ao/contrib/bsnmp/lib/snmpagent.c user/andre/tcp-ao/contrib/bsnmp/oid-list user/andre/tcp-ao/contrib/bsnmp/snmp_mibII/mibII.c user/andre/tcp-ao/contrib/byacc/CHANGES user/andre/tcp-ao/contrib/byacc/VERSION user/andre/tcp-ao/contrib/byacc/aclocal.m4 user/andre/tcp-ao/contrib/byacc/config.guess user/andre/tcp-ao/contrib/byacc/config.sub user/andre/tcp-ao/contrib/byacc/config_h.in user/andre/tcp-ao/contrib/byacc/configure user/andre/tcp-ao/contrib/byacc/configure.in user/andre/tcp-ao/contrib/byacc/main.c user/andre/tcp-ao/contrib/byacc/makefile.in user/andre/tcp-ao/contrib/byacc/output.c user/andre/tcp-ao/contrib/byacc/package/byacc.spec user/andre/tcp-ao/contrib/byacc/package/debian/changelog user/andre/tcp-ao/contrib/byacc/reader.c user/andre/tcp-ao/contrib/byacc/skeleton.c user/andre/tcp-ao/contrib/byacc/test/calc.tab.c user/andre/tcp-ao/contrib/byacc/test/calc1.tab.c user/andre/tcp-ao/contrib/byacc/test/calc1.y user/andre/tcp-ao/contrib/byacc/test/calc2.tab.c user/andre/tcp-ao/contrib/byacc/test/calc3.tab.c user/andre/tcp-ao/contrib/byacc/test/code_calc.code.c user/andre/tcp-ao/contrib/byacc/test/code_error.code.c user/andre/tcp-ao/contrib/byacc/test/error.tab.c user/andre/tcp-ao/contrib/byacc/test/ftp.output user/andre/tcp-ao/contrib/byacc/test/ftp.tab.c user/andre/tcp-ao/contrib/byacc/test/ftp.tab.h user/andre/tcp-ao/contrib/byacc/test/ftp.y user/andre/tcp-ao/contrib/byacc/test/grammar.tab.c user/andre/tcp-ao/contrib/byacc/test/pure_calc.tab.c user/andre/tcp-ao/contrib/byacc/test/pure_error.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc-s.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc2-s.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc2.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc3-s.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc3.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc4-s.tab.c user/andre/tcp-ao/contrib/byacc/test/quote_calc4.tab.c user/andre/tcp-ao/contrib/dialog/CHANGES user/andre/tcp-ao/contrib/dialog/VERSION user/andre/tcp-ao/contrib/dialog/aclocal.m4 user/andre/tcp-ao/contrib/dialog/argv.c user/andre/tcp-ao/contrib/dialog/arrows.c user/andre/tcp-ao/contrib/dialog/buttons.c user/andre/tcp-ao/contrib/dialog/calendar.c user/andre/tcp-ao/contrib/dialog/checklist.c user/andre/tcp-ao/contrib/dialog/columns.c user/andre/tcp-ao/contrib/dialog/config.guess user/andre/tcp-ao/contrib/dialog/config.sub user/andre/tcp-ao/contrib/dialog/configure user/andre/tcp-ao/contrib/dialog/configure.in user/andre/tcp-ao/contrib/dialog/dialog-config.in user/andre/tcp-ao/contrib/dialog/dialog.1 user/andre/tcp-ao/contrib/dialog/dialog.3 user/andre/tcp-ao/contrib/dialog/dialog.c user/andre/tcp-ao/contrib/dialog/dialog.h user/andre/tcp-ao/contrib/dialog/dlg_colors.h user/andre/tcp-ao/contrib/dialog/dlg_keys.c user/andre/tcp-ao/contrib/dialog/dlg_keys.h user/andre/tcp-ao/contrib/dialog/editbox.c user/andre/tcp-ao/contrib/dialog/formbox.c user/andre/tcp-ao/contrib/dialog/fselect.c user/andre/tcp-ao/contrib/dialog/guage.c user/andre/tcp-ao/contrib/dialog/headers-sh.in user/andre/tcp-ao/contrib/dialog/help.c user/andre/tcp-ao/contrib/dialog/inputbox.c user/andre/tcp-ao/contrib/dialog/inputstr.c user/andre/tcp-ao/contrib/dialog/makefile.in user/andre/tcp-ao/contrib/dialog/menubox.c user/andre/tcp-ao/contrib/dialog/mixedform.c user/andre/tcp-ao/contrib/dialog/mixedgauge.c user/andre/tcp-ao/contrib/dialog/mouse.c user/andre/tcp-ao/contrib/dialog/mousewget.c user/andre/tcp-ao/contrib/dialog/msgbox.c user/andre/tcp-ao/contrib/dialog/package/debian/changelog user/andre/tcp-ao/contrib/dialog/package/debian/copyright user/andre/tcp-ao/contrib/dialog/package/dialog.spec user/andre/tcp-ao/contrib/dialog/pause.c user/andre/tcp-ao/contrib/dialog/po/cs.po user/andre/tcp-ao/contrib/dialog/po/el.po user/andre/tcp-ao/contrib/dialog/po/gl.po user/andre/tcp-ao/contrib/dialog/po/hr.po user/andre/tcp-ao/contrib/dialog/po/lt.po user/andre/tcp-ao/contrib/dialog/po/sr.po user/andre/tcp-ao/contrib/dialog/po/zh_TW.po user/andre/tcp-ao/contrib/dialog/prgbox.c user/andre/tcp-ao/contrib/dialog/progressbox.c user/andre/tcp-ao/contrib/dialog/rc.c user/andre/tcp-ao/contrib/dialog/rename.sh user/andre/tcp-ao/contrib/dialog/samples/README user/andre/tcp-ao/contrib/dialog/samples/debian.rc user/andre/tcp-ao/contrib/dialog/samples/dialog.py user/andre/tcp-ao/contrib/dialog/samples/form1 user/andre/tcp-ao/contrib/dialog/samples/inputbox6-utf8 user/andre/tcp-ao/contrib/dialog/samples/inputmenu user/andre/tcp-ao/contrib/dialog/samples/inputmenu-stdout user/andre/tcp-ao/contrib/dialog/samples/inputmenu1 user/andre/tcp-ao/contrib/dialog/samples/inputmenu2 user/andre/tcp-ao/contrib/dialog/samples/inputmenu3 user/andre/tcp-ao/contrib/dialog/samples/inputmenu4 user/andre/tcp-ao/contrib/dialog/samples/killall user/andre/tcp-ao/contrib/dialog/samples/prgbox user/andre/tcp-ao/contrib/dialog/samples/prgbox2 user/andre/tcp-ao/contrib/dialog/samples/report-button user/andre/tcp-ao/contrib/dialog/samples/report-edit user/andre/tcp-ao/contrib/dialog/samples/report-string user/andre/tcp-ao/contrib/dialog/samples/report-tempfile user/andre/tcp-ao/contrib/dialog/samples/report-yesno user/andre/tcp-ao/contrib/dialog/samples/setup-edit user/andre/tcp-ao/contrib/dialog/samples/setup-tempfile user/andre/tcp-ao/contrib/dialog/samples/setup-utf8 user/andre/tcp-ao/contrib/dialog/samples/setup-vars user/andre/tcp-ao/contrib/dialog/samples/slackware.rc user/andre/tcp-ao/contrib/dialog/samples/sourcemage.rc user/andre/tcp-ao/contrib/dialog/samples/suse.rc user/andre/tcp-ao/contrib/dialog/samples/tailboxbg user/andre/tcp-ao/contrib/dialog/samples/tailboxbg1 user/andre/tcp-ao/contrib/dialog/samples/tailboxbg2 user/andre/tcp-ao/contrib/dialog/samples/testdata-8bit user/andre/tcp-ao/contrib/dialog/samples/wheel user/andre/tcp-ao/contrib/dialog/samples/whiptail.rc user/andre/tcp-ao/contrib/dialog/tailbox.c user/andre/tcp-ao/contrib/dialog/textbox.c user/andre/tcp-ao/contrib/dialog/timebox.c user/andre/tcp-ao/contrib/dialog/trace.c user/andre/tcp-ao/contrib/dialog/ui_getc.c user/andre/tcp-ao/contrib/dialog/util.c user/andre/tcp-ao/contrib/dialog/yesno.c user/andre/tcp-ao/contrib/gcc/ChangeLog.gcc43 user/andre/tcp-ao/contrib/gcc/c-lex.c user/andre/tcp-ao/contrib/gcc/config.gcc user/andre/tcp-ao/contrib/gcc/config/arm/ieee754-df.S user/andre/tcp-ao/contrib/gcc/config/arm/libunwind.S user/andre/tcp-ao/contrib/gcc/config/arm/unwind-arm.c user/andre/tcp-ao/contrib/gcc/config/arm/unwind-arm.h user/andre/tcp-ao/contrib/gcc/config/i386/athlon.md user/andre/tcp-ao/contrib/gcc/config/i386/driver-i386.c user/andre/tcp-ao/contrib/gcc/config/i386/emmintrin.h user/andre/tcp-ao/contrib/gcc/config/i386/i386.c user/andre/tcp-ao/contrib/gcc/config/i386/i386.h user/andre/tcp-ao/contrib/gcc/config/i386/i386.md user/andre/tcp-ao/contrib/gcc/config/i386/i386.opt user/andre/tcp-ao/contrib/gcc/config/i386/pmmintrin.h user/andre/tcp-ao/contrib/gcc/config/i386/sse.md user/andre/tcp-ao/contrib/gcc/config/i386/tmmintrin.h user/andre/tcp-ao/contrib/gcc/doc/extend.texi user/andre/tcp-ao/contrib/gcc/doc/invoke.texi user/andre/tcp-ao/contrib/gcc/gthr-posix95.h user/andre/tcp-ao/contrib/gcc/opth-gen.awk user/andre/tcp-ao/contrib/gcc/opts.c user/andre/tcp-ao/contrib/gcc/unwind-dw2.c user/andre/tcp-ao/contrib/gcclibs/libcpp/expr.c user/andre/tcp-ao/contrib/gcclibs/libcpp/include/cpplib.h user/andre/tcp-ao/contrib/gcclibs/libssp/ssp.c user/andre/tcp-ao/contrib/gdb/gdb/dwarf2read.c user/andre/tcp-ao/contrib/gdb/gdb/frame-unwind.c user/andre/tcp-ao/contrib/gdb/gdb/osabi.c user/andre/tcp-ao/contrib/gperf/src/options.cc user/andre/tcp-ao/contrib/gperf/src/search.cc user/andre/tcp-ao/contrib/groff/src/roff/troff/input.cpp user/andre/tcp-ao/contrib/groff/src/roff/troff/mtsm.cpp user/andre/tcp-ao/contrib/groff/src/roff/troff/node.cpp user/andre/tcp-ao/contrib/ipfilter/BNF user/andre/tcp-ao/contrib/ipfilter/HISTORY user/andre/tcp-ao/contrib/ipfilter/Makefile user/andre/tcp-ao/contrib/ipfilter/NAT.FreeBSD user/andre/tcp-ao/contrib/ipfilter/ip_fil.c user/andre/tcp-ao/contrib/ipfilter/ipf.h user/andre/tcp-ao/contrib/ipfilter/iplang/Makefile user/andre/tcp-ao/contrib/ipfilter/iplang/iplang.h user/andre/tcp-ao/contrib/ipfilter/iplang/iplang.tst user/andre/tcp-ao/contrib/ipfilter/iplang/iplang_l.l user/andre/tcp-ao/contrib/ipfilter/iplang/iplang_y.y user/andre/tcp-ao/contrib/ipfilter/ipmon.h user/andre/tcp-ao/contrib/ipfilter/ipsd/Makefile user/andre/tcp-ao/contrib/ipfilter/ipsd/ipsd.c user/andre/tcp-ao/contrib/ipfilter/ipsd/ipsdr.c user/andre/tcp-ao/contrib/ipfilter/ipsd/linux.h user/andre/tcp-ao/contrib/ipfilter/ipsd/sbpf.c user/andre/tcp-ao/contrib/ipfilter/ipsd/sdlpi.c user/andre/tcp-ao/contrib/ipfilter/ipsd/slinux.c user/andre/tcp-ao/contrib/ipfilter/ipsd/snit.c user/andre/tcp-ao/contrib/ipfilter/ipsend/44arp.c user/andre/tcp-ao/contrib/ipfilter/ipsend/Makefile user/andre/tcp-ao/contrib/ipfilter/ipsend/arp.c user/andre/tcp-ao/contrib/ipfilter/ipsend/dlcommon.c user/andre/tcp-ao/contrib/ipfilter/ipsend/ip.c user/andre/tcp-ao/contrib/ipfilter/ipsend/ipresend.c user/andre/tcp-ao/contrib/ipfilter/ipsend/ipsend.5 user/andre/tcp-ao/contrib/ipfilter/ipsend/ipsend.c user/andre/tcp-ao/contrib/ipfilter/ipsend/ipsend.h user/andre/tcp-ao/contrib/ipfilter/ipsend/ipsopt.c user/andre/tcp-ao/contrib/ipfilter/ipsend/iptest.c user/andre/tcp-ao/contrib/ipfilter/ipsend/iptests.c user/andre/tcp-ao/contrib/ipfilter/ipsend/larp.c user/andre/tcp-ao/contrib/ipfilter/ipsend/linux.h user/andre/tcp-ao/contrib/ipfilter/ipsend/lsock.c user/andre/tcp-ao/contrib/ipfilter/ipsend/resend.c user/andre/tcp-ao/contrib/ipfilter/ipsend/sbpf.c user/andre/tcp-ao/contrib/ipfilter/ipsend/sdlpi.c user/andre/tcp-ao/contrib/ipfilter/ipsend/sirix.c user/andre/tcp-ao/contrib/ipfilter/ipsend/slinux.c user/andre/tcp-ao/contrib/ipfilter/ipsend/snit.c user/andre/tcp-ao/contrib/ipfilter/ipsend/sock.c user/andre/tcp-ao/contrib/ipfilter/ipt.h user/andre/tcp-ao/contrib/ipfilter/kmem.h user/andre/tcp-ao/contrib/ipfilter/l4check/Makefile user/andre/tcp-ao/contrib/ipfilter/l4check/l4check.c user/andre/tcp-ao/contrib/ipfilter/lib/Makefile user/andre/tcp-ao/contrib/ipfilter/lib/addicmp.c user/andre/tcp-ao/contrib/ipfilter/lib/addipopt.c user/andre/tcp-ao/contrib/ipfilter/lib/alist_free.c user/andre/tcp-ao/contrib/ipfilter/lib/alist_new.c user/andre/tcp-ao/contrib/ipfilter/lib/bcopywrap.c user/andre/tcp-ao/contrib/ipfilter/lib/binprint.c user/andre/tcp-ao/contrib/ipfilter/lib/buildopts.c user/andre/tcp-ao/contrib/ipfilter/lib/checkrev.c user/andre/tcp-ao/contrib/ipfilter/lib/count4bits.c user/andre/tcp-ao/contrib/ipfilter/lib/count6bits.c user/andre/tcp-ao/contrib/ipfilter/lib/debug.c user/andre/tcp-ao/contrib/ipfilter/lib/facpri.c user/andre/tcp-ao/contrib/ipfilter/lib/facpri.h user/andre/tcp-ao/contrib/ipfilter/lib/fill6bits.c user/andre/tcp-ao/contrib/ipfilter/lib/flags.c user/andre/tcp-ao/contrib/ipfilter/lib/gethost.c user/andre/tcp-ao/contrib/ipfilter/lib/getifname.c user/andre/tcp-ao/contrib/ipfilter/lib/getnattype.c user/andre/tcp-ao/contrib/ipfilter/lib/getport.c user/andre/tcp-ao/contrib/ipfilter/lib/getportproto.c user/andre/tcp-ao/contrib/ipfilter/lib/getproto.c user/andre/tcp-ao/contrib/ipfilter/lib/getsumd.c user/andre/tcp-ao/contrib/ipfilter/lib/hostname.c user/andre/tcp-ao/contrib/ipfilter/lib/icmpcode.c user/andre/tcp-ao/contrib/ipfilter/lib/initparse.c user/andre/tcp-ao/contrib/ipfilter/lib/ionames.c user/andre/tcp-ao/contrib/ipfilter/lib/ipf_dotuning.c user/andre/tcp-ao/contrib/ipfilter/lib/ipft_hx.c user/andre/tcp-ao/contrib/ipfilter/lib/ipft_pc.c user/andre/tcp-ao/contrib/ipfilter/lib/ipft_tx.c user/andre/tcp-ao/contrib/ipfilter/lib/ipoptsec.c user/andre/tcp-ao/contrib/ipfilter/lib/kmem.c user/andre/tcp-ao/contrib/ipfilter/lib/kmem.h user/andre/tcp-ao/contrib/ipfilter/lib/kmemcpywrap.c user/andre/tcp-ao/contrib/ipfilter/lib/kvatoname.c user/andre/tcp-ao/contrib/ipfilter/lib/load_file.c user/andre/tcp-ao/contrib/ipfilter/lib/load_hash.c user/andre/tcp-ao/contrib/ipfilter/lib/load_hashnode.c user/andre/tcp-ao/contrib/ipfilter/lib/load_http.c user/andre/tcp-ao/contrib/ipfilter/lib/load_pool.c user/andre/tcp-ao/contrib/ipfilter/lib/load_poolnode.c user/andre/tcp-ao/contrib/ipfilter/lib/load_url.c user/andre/tcp-ao/contrib/ipfilter/lib/mutex_emul.c user/andre/tcp-ao/contrib/ipfilter/lib/nametokva.c user/andre/tcp-ao/contrib/ipfilter/lib/nat_setgroupmap.c user/andre/tcp-ao/contrib/ipfilter/lib/ntomask.c user/andre/tcp-ao/contrib/ipfilter/lib/optname.c user/andre/tcp-ao/contrib/ipfilter/lib/optprint.c user/andre/tcp-ao/contrib/ipfilter/lib/optprintv6.c user/andre/tcp-ao/contrib/ipfilter/lib/optvalue.c user/andre/tcp-ao/contrib/ipfilter/lib/portname.c user/andre/tcp-ao/contrib/ipfilter/lib/print_toif.c user/andre/tcp-ao/contrib/ipfilter/lib/printactivenat.c user/andre/tcp-ao/contrib/ipfilter/lib/printaps.c user/andre/tcp-ao/contrib/ipfilter/lib/printbuf.c user/andre/tcp-ao/contrib/ipfilter/lib/printfr.c user/andre/tcp-ao/contrib/ipfilter/lib/printfraginfo.c user/andre/tcp-ao/contrib/ipfilter/lib/printhash.c user/andre/tcp-ao/contrib/ipfilter/lib/printhash_live.c user/andre/tcp-ao/contrib/ipfilter/lib/printhashdata.c user/andre/tcp-ao/contrib/ipfilter/lib/printhashnode.c user/andre/tcp-ao/contrib/ipfilter/lib/printhostmap.c user/andre/tcp-ao/contrib/ipfilter/lib/printhostmask.c user/andre/tcp-ao/contrib/ipfilter/lib/printifname.c user/andre/tcp-ao/contrib/ipfilter/lib/printip.c user/andre/tcp-ao/contrib/ipfilter/lib/printlog.c user/andre/tcp-ao/contrib/ipfilter/lib/printmask.c user/andre/tcp-ao/contrib/ipfilter/lib/printnat.c user/andre/tcp-ao/contrib/ipfilter/lib/printpacket.c user/andre/tcp-ao/contrib/ipfilter/lib/printpacket6.c user/andre/tcp-ao/contrib/ipfilter/lib/printpool.c user/andre/tcp-ao/contrib/ipfilter/lib/printpool_live.c user/andre/tcp-ao/contrib/ipfilter/lib/printpooldata.c user/andre/tcp-ao/contrib/ipfilter/lib/printpoolnode.c user/andre/tcp-ao/contrib/ipfilter/lib/printportcmp.c user/andre/tcp-ao/contrib/ipfilter/lib/printproto.c user/andre/tcp-ao/contrib/ipfilter/lib/printsbuf.c user/andre/tcp-ao/contrib/ipfilter/lib/printstate.c user/andre/tcp-ao/contrib/ipfilter/lib/printtqtable.c user/andre/tcp-ao/contrib/ipfilter/lib/printtunable.c user/andre/tcp-ao/contrib/ipfilter/lib/remove_hash.c user/andre/tcp-ao/contrib/ipfilter/lib/remove_hashnode.c user/andre/tcp-ao/contrib/ipfilter/lib/remove_pool.c user/andre/tcp-ao/contrib/ipfilter/lib/remove_poolnode.c user/andre/tcp-ao/contrib/ipfilter/lib/resetlexer.c user/andre/tcp-ao/contrib/ipfilter/lib/rwlock_emul.c user/andre/tcp-ao/contrib/ipfilter/lib/tcpflags.c user/andre/tcp-ao/contrib/ipfilter/lib/tcpoptnames.c user/andre/tcp-ao/contrib/ipfilter/lib/v6ionames.c user/andre/tcp-ao/contrib/ipfilter/lib/v6optvalue.c user/andre/tcp-ao/contrib/ipfilter/lib/var.c user/andre/tcp-ao/contrib/ipfilter/lib/verbose.c user/andre/tcp-ao/contrib/ipfilter/man/Makefile user/andre/tcp-ao/contrib/ipfilter/man/ipf.4 user/andre/tcp-ao/contrib/ipfilter/man/ipf.5 user/andre/tcp-ao/contrib/ipfilter/man/ipfilter.4 user/andre/tcp-ao/contrib/ipfilter/man/ipfilter.4.mandoc user/andre/tcp-ao/contrib/ipfilter/man/ipfstat.8 user/andre/tcp-ao/contrib/ipfilter/man/ipftest.1 user/andre/tcp-ao/contrib/ipfilter/man/ipmon.5 user/andre/tcp-ao/contrib/ipfilter/man/ipnat.4 user/andre/tcp-ao/contrib/ipfilter/man/ipnat.5 user/andre/tcp-ao/contrib/ipfilter/man/ipnat.8 user/andre/tcp-ao/contrib/ipfilter/man/ippool.5 user/andre/tcp-ao/contrib/ipfilter/man/ippool.8 user/andre/tcp-ao/contrib/ipfilter/md5.c user/andre/tcp-ao/contrib/ipfilter/mkfilters user/andre/tcp-ao/contrib/ipfilter/mlf_ipl.c user/andre/tcp-ao/contrib/ipfilter/mlf_rule.c user/andre/tcp-ao/contrib/ipfilter/mlfk_rule.c user/andre/tcp-ao/contrib/ipfilter/mlh_rule.c (contents, props changed) user/andre/tcp-ao/contrib/ipfilter/opts.h user/andre/tcp-ao/contrib/ipfilter/pcap-ipf.h user/andre/tcp-ao/contrib/ipfilter/radix_ipf.h user/andre/tcp-ao/contrib/ipfilter/rules/BASIC_1.FW user/andre/tcp-ao/contrib/ipfilter/rules/BASIC_2.FW user/andre/tcp-ao/contrib/ipfilter/rules/firewall user/andre/tcp-ao/contrib/ipfilter/rules/ipmon.conf user/andre/tcp-ao/contrib/ipfilter/rules/server user/andre/tcp-ao/contrib/ipfilter/samples/proxy.c user/andre/tcp-ao/contrib/ipfilter/samples/relay.c user/andre/tcp-ao/contrib/ipfilter/snoop.h user/andre/tcp-ao/contrib/ipfilter/tools/BNF.ipf user/andre/tcp-ao/contrib/ipfilter/tools/Makefile user/andre/tcp-ao/contrib/ipfilter/tools/ipf.c user/andre/tcp-ao/contrib/ipfilter/tools/ipf_y.y user/andre/tcp-ao/contrib/ipfilter/tools/ipfcomp.c user/andre/tcp-ao/contrib/ipfilter/tools/ipfs.c user/andre/tcp-ao/contrib/ipfilter/tools/ipfstat.c user/andre/tcp-ao/contrib/ipfilter/tools/ipftest.c user/andre/tcp-ao/contrib/ipfilter/tools/ipmon.c user/andre/tcp-ao/contrib/ipfilter/tools/ipmon_y.y user/andre/tcp-ao/contrib/ipfilter/tools/ipnat.c user/andre/tcp-ao/contrib/ipfilter/tools/ipnat_y.y user/andre/tcp-ao/contrib/ipfilter/tools/ippool.c user/andre/tcp-ao/contrib/ipfilter/tools/ippool_y.y user/andre/tcp-ao/contrib/ipfilter/tools/ipscan_y.y user/andre/tcp-ao/contrib/ipfilter/tools/ipsyncm.c user/andre/tcp-ao/contrib/ipfilter/tools/ipsyncs.c user/andre/tcp-ao/contrib/ipfilter/tools/lex_var.h user/andre/tcp-ao/contrib/ipfilter/tools/lexer.c user/andre/tcp-ao/contrib/ipfilter/tools/lexer.h user/andre/tcp-ao/contrib/jemalloc/ChangeLog user/andre/tcp-ao/contrib/jemalloc/FREEBSD-diffs user/andre/tcp-ao/contrib/jemalloc/FREEBSD-upgrade user/andre/tcp-ao/contrib/jemalloc/VERSION user/andre/tcp-ao/contrib/jemalloc/doc/jemalloc.3 user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/arena.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/private_namespace.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/prof.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/quarantine.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/internal/tcache.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/jemalloc.h user/andre/tcp-ao/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h user/andre/tcp-ao/contrib/jemalloc/src/arena.c user/andre/tcp-ao/contrib/jemalloc/src/base.c user/andre/tcp-ao/contrib/jemalloc/src/chunk.c user/andre/tcp-ao/contrib/jemalloc/src/chunk_dss.c user/andre/tcp-ao/contrib/jemalloc/src/ctl.c user/andre/tcp-ao/contrib/jemalloc/src/jemalloc.c user/andre/tcp-ao/contrib/jemalloc/src/prof.c user/andre/tcp-ao/contrib/jemalloc/src/quarantine.c user/andre/tcp-ao/contrib/jemalloc/src/tcache.c user/andre/tcp-ao/contrib/ldns/README user/andre/tcp-ao/contrib/ldns/README.svn user/andre/tcp-ao/contrib/ldns/compat/b32_ntop.c user/andre/tcp-ao/contrib/ldns/compat/b32_pton.c user/andre/tcp-ao/contrib/ldns/compat/b64_ntop.c user/andre/tcp-ao/contrib/ldns/compat/b64_pton.c user/andre/tcp-ao/contrib/ldns/dnssec_sign.c user/andre/tcp-ao/contrib/ldns/dnssec_verify.c user/andre/tcp-ao/contrib/ldns/dnssec_zone.c user/andre/tcp-ao/contrib/ldns/ldns/config.h user/andre/tcp-ao/contrib/ldns/ldns/dname.h user/andre/tcp-ao/contrib/ldns/ldns/dnssec_verify.h user/andre/tcp-ao/contrib/ldns/ldns/util.h user/andre/tcp-ao/contrib/ldns/parse.c user/andre/tcp-ao/contrib/ldns/rr.c user/andre/tcp-ao/contrib/ldns/util.c user/andre/tcp-ao/contrib/ldns/zone.c user/andre/tcp-ao/contrib/less/NEWS user/andre/tcp-ao/contrib/less/README user/andre/tcp-ao/contrib/less/cmdbuf.c user/andre/tcp-ao/contrib/less/help.c user/andre/tcp-ao/contrib/less/less.h user/andre/tcp-ao/contrib/less/less.hlp user/andre/tcp-ao/contrib/less/less.nro user/andre/tcp-ao/contrib/less/lessecho.nro user/andre/tcp-ao/contrib/less/lesskey.nro user/andre/tcp-ao/contrib/less/line.c user/andre/tcp-ao/contrib/less/option.c user/andre/tcp-ao/contrib/less/opttbl.c user/andre/tcp-ao/contrib/less/prompt.c user/andre/tcp-ao/contrib/less/screen.c user/andre/tcp-ao/contrib/less/search.c user/andre/tcp-ao/contrib/less/version.c user/andre/tcp-ao/contrib/libarchive/NEWS user/andre/tcp-ao/contrib/libarchive/README user/andre/tcp-ao/contrib/libarchive/cpio/bsdcpio.1 user/andre/tcp-ao/contrib/libarchive/cpio/cmdline.c user/andre/tcp-ao/contrib/libarchive/cpio/cpio.c user/andre/tcp-ao/contrib/libarchive/cpio/cpio.h user/andre/tcp-ao/contrib/libarchive/cpio/test/main.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test.h user/andre/tcp-ao/contrib/libarchive/cpio/test/test_basic.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_format_newc.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_y.c user/andre/tcp-ao/contrib/libarchive/cpio/test/test_option_z.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_crypto.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_entry.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_entry.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_entry_link_resolver.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_match.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_options.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_ppmd7.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_private.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_rb.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_disk_entry_from_file.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_disk_posix.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_extract.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_open_fd.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_open_file.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_open_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_private.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_all.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_bzip2.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_compress.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_rpm.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_uu.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_filter_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_7zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_ar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_cab.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_cpio.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_iso9660.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_lha.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_mtree.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_rar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_raw.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_tar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_xar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_read_support_format_zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_string.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_util.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_virtual.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_bzip2.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_compress.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_program.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_add_filter_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_disk_acl.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_disk_posix.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_free.3 user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_open_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_private.h user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_7zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_ar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_by_name.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_iso9660.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_mtree.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_pax.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_xar.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_format_zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/archive_write_set_options.c user/andre/tcp-ao/contrib/libarchive/libarchive/filter_fork.h user/andre/tcp-ao/contrib/libarchive/libarchive/libarchive-formats.5 user/andre/tcp-ao/contrib/libarchive/libarchive/test/main.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test.h user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_freebsd_nfs4.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_freebsd_posix1e.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_nfs4.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_pax.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_acl_posix1e.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_clear_error.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_close_twice.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_fd.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_set_filter_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_set_format_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_set_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_read_set_options.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_set_error.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_set_filter_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_set_format_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_set_option.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_archive_write_set_options.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_bzip2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_cpio.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_gtar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_lzma.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_mac.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_tar_hardlink.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_compat_zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_empty_write.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_entry.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_extattr_freebsd.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_filter_count.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_fuzz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_open_failure.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_open_fd.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_open_file.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_open_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_pax_filename_encoding.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_data_large.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_disk.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_extract.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_7zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_ar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cab.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cab_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_afio.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_Z.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_be.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_gz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_lzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_lzma.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_xz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_odc.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4c_Z.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_gtar_gz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_gtar_lzma.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_iso_Z.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_iso_multi_extent.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isojoliet_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isojoliet_long.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isojoliet_rr.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isojoliet_versioned.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isorr_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isorr_ce.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isorr_new_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isorr_rr_moved.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_isozisofs_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_lha.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_lha_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_mtree.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_pax_bz2.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_rar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tar_empty_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tbz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tgz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tlz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_txz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_tz.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_xar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_format_zip_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_pax_truncated.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_truncated.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_read_truncated_filter.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_sparse_basic.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_tar_filenames.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_ustar_filenames.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_disk_sparse.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_7zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_ar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_cpio.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_cpio_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_cpio_newc.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_cpio_odc.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_gnutar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_iso9660.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_iso9660_boot.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_iso9660_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_iso9660_filename.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_iso9660_zisofs.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_mtree_fflags.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_pax.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_shar_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_tar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_tar_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_tar_sparse.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_tar_ustar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_xar.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_xar_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_zip.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_zip_empty.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_format_zip_no_compression.c user/andre/tcp-ao/contrib/libarchive/libarchive/test/test_write_open_memory.c user/andre/tcp-ao/contrib/libarchive/tar/bsdtar.1 user/andre/tcp-ao/contrib/libarchive/tar/bsdtar.c user/andre/tcp-ao/contrib/libarchive/tar/bsdtar.h user/andre/tcp-ao/contrib/libarchive/tar/cmdline.c user/andre/tcp-ao/contrib/libarchive/tar/read.c user/andre/tcp-ao/contrib/libarchive/tar/subst.c user/andre/tcp-ao/contrib/libarchive/tar/test/main.c user/andre/tcp-ao/contrib/libarchive/tar/test/test.h user/andre/tcp-ao/contrib/libarchive/tar/test/test_copy.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_newer_than.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_option_r.c user/andre/tcp-ao/contrib/libarchive/tar/test/test_stdio.c user/andre/tcp-ao/contrib/libarchive/tar/util.c user/andre/tcp-ao/contrib/libarchive/tar/write.c user/andre/tcp-ao/contrib/libc++/CREDITS.TXT user/andre/tcp-ao/contrib/libc++/LICENSE.TXT user/andre/tcp-ao/contrib/libc++/include/__bit_reference user/andre/tcp-ao/contrib/libc++/include/__config user/andre/tcp-ao/contrib/libc++/include/__debug user/andre/tcp-ao/contrib/libc++/include/__functional_03 user/andre/tcp-ao/contrib/libc++/include/__functional_base user/andre/tcp-ao/contrib/libc++/include/__functional_base_03 user/andre/tcp-ao/contrib/libc++/include/__hash_table user/andre/tcp-ao/contrib/libc++/include/__locale user/andre/tcp-ao/contrib/libc++/include/__mutex_base user/andre/tcp-ao/contrib/libc++/include/__split_buffer user/andre/tcp-ao/contrib/libc++/include/__std_stream user/andre/tcp-ao/contrib/libc++/include/__tree user/andre/tcp-ao/contrib/libc++/include/__tuple user/andre/tcp-ao/contrib/libc++/include/__tuple_03 user/andre/tcp-ao/contrib/libc++/include/algorithm user/andre/tcp-ao/contrib/libc++/include/array user/andre/tcp-ao/contrib/libc++/include/atomic user/andre/tcp-ao/contrib/libc++/include/bitset user/andre/tcp-ao/contrib/libc++/include/chrono user/andre/tcp-ao/contrib/libc++/include/codecvt user/andre/tcp-ao/contrib/libc++/include/complex user/andre/tcp-ao/contrib/libc++/include/condition_variable user/andre/tcp-ao/contrib/libc++/include/cstddef user/andre/tcp-ao/contrib/libc++/include/cstring user/andre/tcp-ao/contrib/libc++/include/cwchar user/andre/tcp-ao/contrib/libc++/include/deque user/andre/tcp-ao/contrib/libc++/include/exception user/andre/tcp-ao/contrib/libc++/include/ext/__hash user/andre/tcp-ao/contrib/libc++/include/ext/hash_map user/andre/tcp-ao/contrib/libc++/include/ext/hash_set user/andre/tcp-ao/contrib/libc++/include/forward_list user/andre/tcp-ao/contrib/libc++/include/fstream user/andre/tcp-ao/contrib/libc++/include/functional user/andre/tcp-ao/contrib/libc++/include/future user/andre/tcp-ao/contrib/libc++/include/initializer_list user/andre/tcp-ao/contrib/libc++/include/ios user/andre/tcp-ao/contrib/libc++/include/iosfwd user/andre/tcp-ao/contrib/libc++/include/iostream user/andre/tcp-ao/contrib/libc++/include/istream user/andre/tcp-ao/contrib/libc++/include/iterator user/andre/tcp-ao/contrib/libc++/include/limits user/andre/tcp-ao/contrib/libc++/include/list user/andre/tcp-ao/contrib/libc++/include/locale user/andre/tcp-ao/contrib/libc++/include/map user/andre/tcp-ao/contrib/libc++/include/memory user/andre/tcp-ao/contrib/libc++/include/mutex user/andre/tcp-ao/contrib/libc++/include/new user/andre/tcp-ao/contrib/libc++/include/ostream user/andre/tcp-ao/contrib/libc++/include/queue user/andre/tcp-ao/contrib/libc++/include/random user/andre/tcp-ao/contrib/libc++/include/ratio user/andre/tcp-ao/contrib/libc++/include/regex user/andre/tcp-ao/contrib/libc++/include/scoped_allocator user/andre/tcp-ao/contrib/libc++/include/set user/andre/tcp-ao/contrib/libc++/include/sstream user/andre/tcp-ao/contrib/libc++/include/stack user/andre/tcp-ao/contrib/libc++/include/streambuf user/andre/tcp-ao/contrib/libc++/include/string user/andre/tcp-ao/contrib/libc++/include/strstream user/andre/tcp-ao/contrib/libc++/include/system_error user/andre/tcp-ao/contrib/libc++/include/thread user/andre/tcp-ao/contrib/libc++/include/tuple user/andre/tcp-ao/contrib/libc++/include/type_traits user/andre/tcp-ao/contrib/libc++/include/typeindex user/andre/tcp-ao/contrib/libc++/include/unordered_map user/andre/tcp-ao/contrib/libc++/include/unordered_set user/andre/tcp-ao/contrib/libc++/include/utility user/andre/tcp-ao/contrib/libc++/include/valarray user/andre/tcp-ao/contrib/libc++/include/vector user/andre/tcp-ao/contrib/libc++/src/chrono.cpp user/andre/tcp-ao/contrib/libc++/src/debug.cpp user/andre/tcp-ao/contrib/libc++/src/exception.cpp user/andre/tcp-ao/contrib/libc++/src/hash.cpp user/andre/tcp-ao/contrib/libc++/src/iostream.cpp user/andre/tcp-ao/contrib/libc++/src/locale.cpp user/andre/tcp-ao/contrib/libc++/src/memory.cpp user/andre/tcp-ao/contrib/libc++/src/new.cpp user/andre/tcp-ao/contrib/libc++/src/stdexcept.cpp user/andre/tcp-ao/contrib/libc++/src/string.cpp user/andre/tcp-ao/contrib/libc++/src/strstream.cpp user/andre/tcp-ao/contrib/libc++/src/system_error.cpp user/andre/tcp-ao/contrib/libc++/src/thread.cpp user/andre/tcp-ao/contrib/libc++/src/typeinfo.cpp user/andre/tcp-ao/contrib/libc-vis/unvis.3 user/andre/tcp-ao/contrib/libc-vis/unvis.c user/andre/tcp-ao/contrib/libc-vis/vis.3 user/andre/tcp-ao/contrib/libc-vis/vis.c user/andre/tcp-ao/contrib/libc-vis/vis.h user/andre/tcp-ao/contrib/libcxxrt/atomic.h user/andre/tcp-ao/contrib/libcxxrt/auxhelper.cc user/andre/tcp-ao/contrib/libcxxrt/cxxabi.h user/andre/tcp-ao/contrib/libcxxrt/dwarf_eh.h user/andre/tcp-ao/contrib/libcxxrt/exception.cc user/andre/tcp-ao/contrib/libcxxrt/guard.cc user/andre/tcp-ao/contrib/libcxxrt/libelftc_dem_gnu3.c user/andre/tcp-ao/contrib/libcxxrt/memory.cc user/andre/tcp-ao/contrib/libcxxrt/typeinfo.cc user/andre/tcp-ao/contrib/libcxxrt/unwind-itanium.h user/andre/tcp-ao/contrib/libpcap/CHANGES user/andre/tcp-ao/contrib/libpcap/CREDITS user/andre/tcp-ao/contrib/libpcap/README user/andre/tcp-ao/contrib/libpcap/VERSION user/andre/tcp-ao/contrib/libpcap/bpf/net/bpf_filter.c user/andre/tcp-ao/contrib/libpcap/bpf_dump.c user/andre/tcp-ao/contrib/libpcap/bpf_image.c user/andre/tcp-ao/contrib/libpcap/config.h.in user/andre/tcp-ao/contrib/libpcap/configure user/andre/tcp-ao/contrib/libpcap/configure.in user/andre/tcp-ao/contrib/libpcap/fad-getad.c user/andre/tcp-ao/contrib/libpcap/fad-gifc.c user/andre/tcp-ao/contrib/libpcap/fad-glifc.c user/andre/tcp-ao/contrib/libpcap/fad-sita.c user/andre/tcp-ao/contrib/libpcap/gencode.c user/andre/tcp-ao/contrib/libpcap/grammar.y user/andre/tcp-ao/contrib/libpcap/nametoaddr.c user/andre/tcp-ao/contrib/libpcap/optimize.c user/andre/tcp-ao/contrib/libpcap/pcap-bpf.c user/andre/tcp-ao/contrib/libpcap/pcap-bt-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-bt-linux.h user/andre/tcp-ao/contrib/libpcap/pcap-can-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-can-linux.h user/andre/tcp-ao/contrib/libpcap/pcap-canusb-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-canusb-linux.h user/andre/tcp-ao/contrib/libpcap/pcap-common.c user/andre/tcp-ao/contrib/libpcap/pcap-dag.c user/andre/tcp-ao/contrib/libpcap/pcap-dag.h user/andre/tcp-ao/contrib/libpcap/pcap-dlpi.c user/andre/tcp-ao/contrib/libpcap/pcap-filter.manmisc user/andre/tcp-ao/contrib/libpcap/pcap-filter.manmisc.in user/andre/tcp-ao/contrib/libpcap/pcap-int.h user/andre/tcp-ao/contrib/libpcap/pcap-libdlpi.c user/andre/tcp-ao/contrib/libpcap/pcap-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-netfilter-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-netfilter-linux.h user/andre/tcp-ao/contrib/libpcap/pcap-nit.c user/andre/tcp-ao/contrib/libpcap/pcap-null.c user/andre/tcp-ao/contrib/libpcap/pcap-pf.c user/andre/tcp-ao/contrib/libpcap/pcap-septel.c user/andre/tcp-ao/contrib/libpcap/pcap-septel.h user/andre/tcp-ao/contrib/libpcap/pcap-sita.c user/andre/tcp-ao/contrib/libpcap/pcap-snf.c user/andre/tcp-ao/contrib/libpcap/pcap-snf.h user/andre/tcp-ao/contrib/libpcap/pcap-snit.c user/andre/tcp-ao/contrib/libpcap/pcap-snoop.c user/andre/tcp-ao/contrib/libpcap/pcap-usb-linux.c user/andre/tcp-ao/contrib/libpcap/pcap-usb-linux.h user/andre/tcp-ao/contrib/libpcap/pcap-win32.c user/andre/tcp-ao/contrib/libpcap/pcap.c user/andre/tcp-ao/contrib/libpcap/pcap/bpf.h user/andre/tcp-ao/contrib/libpcap/pcap/pcap.h user/andre/tcp-ao/contrib/libpcap/pcap_breakloop.3pcap user/andre/tcp-ao/contrib/libpcap/pcap_loop.3pcap user/andre/tcp-ao/contrib/libpcap/pcap_offline_filter.3pcap user/andre/tcp-ao/contrib/libpcap/scanner.l user/andre/tcp-ao/contrib/libreadline/bind.c user/andre/tcp-ao/contrib/libreadline/complete.c user/andre/tcp-ao/contrib/libreadline/histexpand.c user/andre/tcp-ao/contrib/libreadline/history.c user/andre/tcp-ao/contrib/libreadline/input.c user/andre/tcp-ao/contrib/libreadline/tilde.c user/andre/tcp-ao/contrib/libstdc++/include/c_std/std_cmath.h user/andre/tcp-ao/contrib/libstdc++/libsupc++/unwind-cxx.h user/andre/tcp-ao/contrib/llvm/LICENSE.TXT user/andre/tcp-ao/contrib/llvm/include/llvm-c/Core.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Disassembler.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/ExecutionEngine.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Initialization.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Object.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Target.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/TargetMachine.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/Transforms/Vectorize.h user/andre/tcp-ao/contrib/llvm/include/llvm-c/lto.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/APFloat.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/APInt.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/APSInt.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ArrayRef.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/BitVector.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/DeltaAlgorithm.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/DenseMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/DenseSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/FoldingSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/Hashing.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ImmutableIntervalMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ImmutableList.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ImmutableMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ImmutableSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/IntervalMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/MapVector.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/NullablePtr.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/Optional.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/OwningPtr.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/PointerIntPair.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/PointerUnion.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/PostOrderIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/PriorityQueue.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SCCIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/STLExtras.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SmallBitVector.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SmallPtrSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SmallSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SmallString.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SmallVector.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/SparseSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/Statistic.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/StringExtras.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/StringMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/StringRef.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/StringSet.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/TinyPtrVector.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/Triple.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/Twine.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ValueMap.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/VariadicFunction.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ilist.h user/andre/tcp-ao/contrib/llvm/include/llvm/ADT/ilist_node.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CFGPrinter.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CallGraph.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CaptureTracking.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/CodeMetrics.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/DependenceAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/DominatorInternals.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/Dominators.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/IVUsers.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/InlineCost.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/Interval.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/IntervalIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/IntervalPartition.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/LibCallAliasAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/Loads.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/LoopInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/LoopIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/LoopPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/PHITransAddr.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/Passes.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/PathNumbering.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/PathProfileInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/PostDominators.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ProfileDataLoader.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ProfileInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ProfileInfoLoader.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/RegionInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/RegionIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/RegionPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/SparsePropagation.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/Trace.h user/andre/tcp-ao/contrib/llvm/include/llvm/Analysis/ValueTracking.h user/andre/tcp-ao/contrib/llvm/include/llvm/Assembly/PrintModulePass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/Archive.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/BitCodes.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h user/andre/tcp-ao/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/Analysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/CommandFlags.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/FastISel.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/GCMetadata.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/GCs.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/IntrinsicLowering.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveInterval.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/LiveVariables.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachORelocation.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineCodeInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineDominators.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineFunction.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineFunctionPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineInstr.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineOperand.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachinePostDominators.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicSolver.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PBQP/Math.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PBQP/Solution.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/Passes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RegAllocRegistry.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/TargetSchedule.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ValueTypes.h user/andre/tcp-ao/contrib/llvm/include/llvm/CodeGen/ValueTypes.td user/andre/tcp-ao/contrib/llvm/include/llvm/DIBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/DebugInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/DebugInfo/DIContext.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/GenericValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/JIT.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/ObjectBuffer.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/ObjectImage.h user/andre/tcp-ao/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h user/andre/tcp-ao/contrib/llvm/include/llvm/GVMaterializer.h user/andre/tcp-ao/contrib/llvm/include/llvm/InitializePasses.h user/andre/tcp-ao/contrib/llvm/include/llvm/LinkAllPasses.h user/andre/tcp-ao/contrib/llvm/include/llvm/Linker.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAsmBackend.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAsmInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAsmLayout.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAssembler.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCAtom.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCCodeEmitter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCContext.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCDisassembler.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCDwarf.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCExpr.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCInst.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCInstPrinter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCInstrDesc.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCObjectStreamer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCObjectWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/AsmCond.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCRegisterInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSchedule.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSection.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSectionCOFF.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSectionELF.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSectionMachO.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCStreamer.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/MachineLocation.h user/andre/tcp-ao/contrib/llvm/include/llvm/MC/SubtargetFeature.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/Archive.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/Binary.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/ELF.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/MachO.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/MachOFormat.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/ObjectFile.h user/andre/tcp-ao/contrib/llvm/include/llvm/Object/RelocVisitor.h user/andre/tcp-ao/contrib/llvm/include/llvm/Pass.h user/andre/tcp-ao/contrib/llvm/include/llvm/PassAnalysisSupport.h user/andre/tcp-ao/contrib/llvm/include/llvm/PassManager.h user/andre/tcp-ao/contrib/llvm/include/llvm/PassManagers.h user/andre/tcp-ao/contrib/llvm/include/llvm/PassRegistry.h user/andre/tcp-ao/contrib/llvm/include/llvm/PassSupport.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/AlignOf.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Allocator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Atomic.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/CFG.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/COFF.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/CallSite.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Casting.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/CodeGen.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/CommandLine.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Compiler.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ConstantFolder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ConstantRange.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DOTGraphTraits.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DataExtractor.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DataFlow.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DataStream.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DebugLoc.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Dwarf.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/DynamicLibrary.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ELF.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Endian.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Errno.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ErrorHandling.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/FEnv.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/FileOutputBuffer.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/FileSystem.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/FormattedStream.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/GCOV.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/GetElementPtrTypeIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/GraphWriter.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Host.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/IncludeFile.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/InstIterator.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/IntegersSubset.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/LEB128.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Locale.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/LockFileManager.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/MathExtras.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Memory.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/MemoryBuffer.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/MemoryObject.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Mutex.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/NoFolder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/PassNameParser.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/PathV1.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/PatternMatch.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/PredIteratorCache.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Process.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Program.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Recycler.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Regex.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/RegistryParser.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/SMLoc.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/SaveAndRestore.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Signals.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Solaris.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/SourceMgr.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/StringPool.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/SwapByteOrder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/TargetFolder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/TargetRegistry.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ThreadLocal.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Threading.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/TimeValue.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Timer.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ToolOutputFile.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Valgrind.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/ValueHandle.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/Win64EH.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/YAMLParser.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/circular_raw_ostream.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/raw_ostream.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/system_error.h user/andre/tcp-ao/contrib/llvm/include/llvm/Support/type_traits.h user/andre/tcp-ao/contrib/llvm/include/llvm/TableGen/Error.h user/andre/tcp-ao/contrib/llvm/include/llvm/TableGen/Record.h user/andre/tcp-ao/contrib/llvm/include/llvm/TableGen/StringMatcher.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/Mangler.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/Target.td user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetCallingConv.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetFrameLowering.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetInstrInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetJITInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetLowering.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetMachine.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetOptions.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetSchedule.td user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td user/andre/tcp-ao/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/IPO.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Instrumentation.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Scalar.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/IntegerDivision.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/Local.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h user/andre/tcp-ao/contrib/llvm/include/llvm/Transforms/Vectorize.h user/andre/tcp-ao/contrib/llvm/lib/Analysis/AliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/AliasDebugger.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/AliasSetTracker.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/Analysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/CFGPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/CaptureTracking.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/CodeMetrics.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ConstantFolding.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/CostModel.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/DependenceAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/DominanceFrontier.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IPA/IPA.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/IVUsers.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/InstCount.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/InstructionSimplify.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/Interval.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/LazyValueInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/LibCallAliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/LibCallSemantics.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/Lint.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/Loads.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/LoopInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/MemDepPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/NoAliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PHITransAddr.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PathNumbering.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PathProfileInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/PostDominators.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileDataLoader.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileDataLoaderPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/RegionInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/RegionPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ScalarEvolution.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/SparsePropagation.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/Trace.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Analysis/ValueTracking.cpp user/andre/tcp-ao/contrib/llvm/lib/Archive/Archive.cpp user/andre/tcp-ao/contrib/llvm/lib/Archive/ArchiveInternals.h user/andre/tcp-ao/contrib/llvm/lib/Archive/ArchiveReader.cpp user/andre/tcp-ao/contrib/llvm/lib/Archive/ArchiveWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/AsmParser/LLLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/AsmParser/LLLexer.h user/andre/tcp-ao/contrib/llvm/lib/AsmParser/LLParser.cpp user/andre/tcp-ao/contrib/llvm/lib/AsmParser/LLParser.h user/andre/tcp-ao/contrib/llvm/lib/AsmParser/LLToken.h user/andre/tcp-ao/contrib/llvm/lib/AsmParser/Parser.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Reader/BitReader.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Writer/BitWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp user/andre/tcp-ao/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AllocationOrder.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AllocationOrder.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/Analysis.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/BranchFolding.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CallingConvLower.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CodeGen.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/GCMetadata.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/GCStrategy.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/IfConversion.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/InlineSpiller.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/InterferenceCache.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/InterferenceCache.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LexicalScopes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveInterval.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveRangeCalc.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LiveVariables.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineCSE.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineFunction.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineFunctionPass.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineInstr.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineLICM.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineScheduler.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineSink.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/MachineVerifier.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PHIElimination.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PHIEliminationUtils.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/Passes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocBase.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocBase.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocFast.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegisterPressure.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SDNodeOrdering.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SlotIndexes.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SpillPlacement.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/Spiller.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/SplitKit.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/StackColoring.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/StackProtector.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TailDuplication.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TargetSchedule.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp user/andre/tcp-ao/contrib/llvm/lib/CodeGen/VirtRegMap.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DIContext.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFAbbreviationDeclaration.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFContext.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFContext.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h user/andre/tcp-ao/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImageCommon.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h user/andre/tcp-ao/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp user/andre/tcp-ao/contrib/llvm/lib/Linker/LinkModules.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/ELFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCAsmStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCAssembler.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCContext.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h user/andre/tcp-ao/contrib/llvm/lib/MC/MCDwarf.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCELF.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCELFStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCExpr.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCMachOStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCNullStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCObjectFileInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCObjectStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/AsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCPureStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCSection.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCSectionCOFF.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCSectionELF.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCSectionMachO.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCSubtargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MCWin64EH.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/MachObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/MC/WinCOFFStreamer.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/Archive.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/COFFObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/ELFObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/MachOObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/Object.cpp user/andre/tcp-ao/contrib/llvm/lib/Object/ObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/APFloat.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/APInt.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Allocator.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/CommandLine.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/ConstantRange.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/CrashRecoveryContext.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/DataExtractor.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/DataStream.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Debug.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Disassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Dwarf.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/DynamicLibrary.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/ErrorHandling.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/FileOutputBuffer.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/FileUtilities.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/FoldingSet.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/GraphWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Host.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/LocaleWindows.inc user/andre/tcp-ao/contrib/llvm/lib/Support/LocaleXlocale.inc user/andre/tcp-ao/contrib/llvm/lib/Support/LockFileManager.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Memory.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/MemoryBuffer.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Path.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/PathV2.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/PluginLoader.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/PrettyStackTrace.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Process.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Program.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Regex.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/SmallPtrSet.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/SourceMgr.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Statistic.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/StringRef.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Threading.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/TimeValue.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Timer.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Triple.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Memory.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/PathV2.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Process.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Program.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Signals.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/TimeValue.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Unix/Unix.h user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Memory.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Path.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/PathV2.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Process.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Program.inc user/andre/tcp-ao/contrib/llvm/lib/Support/Windows/Signals.inc user/andre/tcp-ao/contrib/llvm/lib/Support/YAMLParser.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/raw_ostream.cpp user/andre/tcp-ao/contrib/llvm/lib/Support/regcomp.c user/andre/tcp-ao/contrib/llvm/lib/Support/system_error.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/Error.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/Main.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/Record.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/TGLexer.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/TGLexer.h user/andre/tcp-ao/contrib/llvm/lib/TableGen/TGParser.cpp user/andre/tcp-ao/contrib/llvm/lib/TableGen/TGParser.h user/andre/tcp-ao/contrib/llvm/lib/TableGen/TableGenBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARM.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARM.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMCallingConv.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMCallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMJITInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMSchedule.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMScheduleSwift.td user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/Hexagon.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/Hexagon.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonPeephole.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MBlaze/TargetInfo/MBlazeTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430CallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mangler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsCallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsCondMov.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsDSPInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsDSPInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h user/andre/tcp-ao/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/ManagedStringPool.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTX.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTX.td user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXNumRegisters.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXSection.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXSplitBBatBar.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXSplitBBatBar.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXUtilities.h user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/NVPTXutil.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/NVPTX/cl_common_defines.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPC.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPC.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/FPMover.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/Target.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetIntrinsicInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetLibraryInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetMachineC.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c user/andre/tcp-ao/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86AsmPrinter.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86CallingConv.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86FastISel.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86FrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86ISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86Instr3DNow.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrCompiler.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrControl.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrExtension.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrFMA.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrFPStack.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrMMX.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrSSE.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrSystem.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86InstrTSX.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86JITInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86JITInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86RegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86Schedule.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86Subtarget.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86Subtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86TargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h user/andre/tcp-ao/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCore.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCore.td user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h user/andre/tcp-ao/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/Inliner.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/Internalize.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h user/andre/tcp-ao/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/BlackList.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/BasicBlockPlacement.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/DCE.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/GVN.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LICM.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/SROA.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/Sink.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/InstructionNamer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/IntegerDivision.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/Local.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/Mem2Reg.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/MetaRenamer.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/Utils.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp user/andre/tcp-ao/contrib/llvm/lib/Transforms/Vectorize/Vectorize.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/BugDriver.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/BugDriver.h user/andre/tcp-ao/contrib/llvm/tools/bugpoint/CrashDebugger.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/ExtractFunction.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/ListReducer.h user/andre/tcp-ao/contrib/llvm/tools/bugpoint/Miscompilation.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/ToolRunner.cpp user/andre/tcp-ao/contrib/llvm/tools/bugpoint/ToolRunner.h user/andre/tcp-ao/contrib/llvm/tools/bugpoint/bugpoint.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/LICENSE.TXT user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang-c/CXString.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang-c/Index.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/APValue.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/AST.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Attr.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Comment.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentCommands.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Decl.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclAccessPair.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Expr.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Mangle.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Stmt.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/Type.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/TypeOrdering.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Support/BlkExprDeclBitVector.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Attr.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Module.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Sanitizers.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Version.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Arg.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Driver.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Job.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/OptSpecifier.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Option.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Options.td user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Phases.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Tool.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Types.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Types.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Driver/Util.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Edit/Commit.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Edit/EditedSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Edit/Rewriters.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Lex/Token.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Parse/Parser.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Overload.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Scope.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Sema.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/SemaInternal.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/Template.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/Module.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h user/andre/tcp-ao/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/APValue.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CXXABI.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Comment.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Decl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclGroup.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Expr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Mangle.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Stmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/Type.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/BodyFarm.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/Module.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/Targets.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/TokenKinds.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/Version.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Action.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Driver.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/InputInfo.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Job.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Option.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Phases.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/SanitizerArgs.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/ToolChains.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Tools.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Tools.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/Types.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Edit/Commit.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/altivec.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/avxintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/cpuid.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/emmintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/f16cintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/immintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/module.map user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/smmintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/stdalign.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/stddef.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/stdint.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/unwind.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/x86intrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Headers/xopintrin.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/Parser.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/DeltaTree.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/HTMLRewrite.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/Rewriter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Core/TokenRewriter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/FixItRewriter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/FrontendActions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteMacros.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteModernObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Rewrite/Frontend/RewriteObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/ScopeInfo.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/Sema.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/Module.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/tools/driver/driver.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp user/andre/tcp-ao/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h user/andre/tcp-ao/contrib/llvm/tools/llc/llc.cpp user/andre/tcp-ao/contrib/llvm/tools/lli/RecordingMemoryManager.cpp user/andre/tcp-ao/contrib/llvm/tools/lli/RecordingMemoryManager.h user/andre/tcp-ao/contrib/llvm/tools/lli/RemoteTarget.h user/andre/tcp-ao/contrib/llvm/tools/lli/lli.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-ar/llvm-ar.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-as/llvm-as.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/DiffConsumer.h user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/DiffLog.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/DifferenceEngine.h user/andre/tcp-ao/contrib/llvm/tools/llvm-diff/llvm-diff.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-dis/llvm-dis.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-extract/llvm-extract.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-link/llvm-link.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-mc/Disassembler.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-mc/Disassembler.h user/andre/tcp-ao/contrib/llvm/tools/llvm-mc/llvm-mc.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-nm/llvm-nm.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-objdump/MachODump.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-objdump/llvm-objdump.h user/andre/tcp-ao/contrib/llvm/tools/llvm-prof/llvm-prof.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-readobj/llvm-readobj.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp user/andre/tcp-ao/contrib/llvm/tools/llvm-stress/llvm-stress.cpp user/andre/tcp-ao/contrib/llvm/tools/macho-dump/macho-dump.cpp user/andre/tcp-ao/contrib/llvm/tools/opt/AnalysisWrappers.cpp user/andre/tcp-ao/contrib/llvm/tools/opt/GraphPrinters.cpp user/andre/tcp-ao/contrib/llvm/tools/opt/PrintSCC.cpp user/andre/tcp-ao/contrib/llvm/tools/opt/opt.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenInstruction.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenMapTable.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenRegisters.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenSchedule.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenTarget.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/CodeGenTarget.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/DAGISelMatcher.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/SetTheory.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/SetTheory.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/StringToOffsetTable.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/TableGen.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/TableGenBackends.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/X86DisassemblerShared.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/X86DisassemblerTables.h user/andre/tcp-ao/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp user/andre/tcp-ao/contrib/llvm/utils/TableGen/X86RecognizableInstr.h user/andre/tcp-ao/contrib/mtree/Makefile user/andre/tcp-ao/contrib/mtree/compare.c user/andre/tcp-ao/contrib/mtree/create.c user/andre/tcp-ao/contrib/mtree/extern.h user/andre/tcp-ao/contrib/mtree/getid.c user/andre/tcp-ao/contrib/mtree/mtree.8 user/andre/tcp-ao/contrib/mtree/mtree.c user/andre/tcp-ao/contrib/mtree/spec.c user/andre/tcp-ao/contrib/mtree/verify.c user/andre/tcp-ao/contrib/netcat/FREEBSD-vendor user/andre/tcp-ao/contrib/netcat/atomicio.c user/andre/tcp-ao/contrib/netcat/nc.1 user/andre/tcp-ao/contrib/netcat/netcat.c user/andre/tcp-ao/contrib/nvi/LICENSE user/andre/tcp-ao/contrib/nvi/README user/andre/tcp-ao/contrib/nvi/catalog/Makefile user/andre/tcp-ao/contrib/nvi/catalog/README user/andre/tcp-ao/contrib/nvi/catalog/dump.c user/andre/tcp-ao/contrib/nvi/catalog/dutch.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/french.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/german.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/german.owner user/andre/tcp-ao/contrib/nvi/catalog/polish.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/ru_RU.KOI8-R.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/ru_RU.KOI8-R.owner user/andre/tcp-ao/contrib/nvi/catalog/spanish.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/swedish.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/catalog/uk_UA.KOI8-U.base (contents, props changed) user/andre/tcp-ao/contrib/nvi/cl/README.signal user/andre/tcp-ao/contrib/nvi/cl/cl.h user/andre/tcp-ao/contrib/nvi/cl/cl_funcs.c user/andre/tcp-ao/contrib/nvi/cl/cl_main.c user/andre/tcp-ao/contrib/nvi/cl/cl_read.c user/andre/tcp-ao/contrib/nvi/cl/cl_screen.c user/andre/tcp-ao/contrib/nvi/cl/cl_term.c user/andre/tcp-ao/contrib/nvi/common/args.h user/andre/tcp-ao/contrib/nvi/common/common.h user/andre/tcp-ao/contrib/nvi/common/cut.c user/andre/tcp-ao/contrib/nvi/common/cut.h user/andre/tcp-ao/contrib/nvi/common/delete.c user/andre/tcp-ao/contrib/nvi/common/exf.c user/andre/tcp-ao/contrib/nvi/common/exf.h user/andre/tcp-ao/contrib/nvi/common/gs.h user/andre/tcp-ao/contrib/nvi/common/key.c user/andre/tcp-ao/contrib/nvi/common/key.h user/andre/tcp-ao/contrib/nvi/common/line.c user/andre/tcp-ao/contrib/nvi/common/log.c user/andre/tcp-ao/contrib/nvi/common/main.c user/andre/tcp-ao/contrib/nvi/common/mark.c user/andre/tcp-ao/contrib/nvi/common/mark.h user/andre/tcp-ao/contrib/nvi/common/mem.h user/andre/tcp-ao/contrib/nvi/common/msg.c user/andre/tcp-ao/contrib/nvi/common/msg.h user/andre/tcp-ao/contrib/nvi/common/options.c user/andre/tcp-ao/contrib/nvi/common/options.h user/andre/tcp-ao/contrib/nvi/common/options_f.c user/andre/tcp-ao/contrib/nvi/common/put.c user/andre/tcp-ao/contrib/nvi/common/recover.c user/andre/tcp-ao/contrib/nvi/common/screen.c user/andre/tcp-ao/contrib/nvi/common/screen.h user/andre/tcp-ao/contrib/nvi/common/search.c user/andre/tcp-ao/contrib/nvi/common/seq.c user/andre/tcp-ao/contrib/nvi/common/seq.h user/andre/tcp-ao/contrib/nvi/common/util.c user/andre/tcp-ao/contrib/nvi/common/util.h user/andre/tcp-ao/contrib/nvi/docs/USD.doc/vi.man/vi.1 user/andre/tcp-ao/contrib/nvi/ex/ex.c user/andre/tcp-ao/contrib/nvi/ex/ex.h user/andre/tcp-ao/contrib/nvi/ex/ex_abbrev.c user/andre/tcp-ao/contrib/nvi/ex/ex_append.c user/andre/tcp-ao/contrib/nvi/ex/ex_args.c user/andre/tcp-ao/contrib/nvi/ex/ex_argv.c user/andre/tcp-ao/contrib/nvi/ex/ex_at.c user/andre/tcp-ao/contrib/nvi/ex/ex_bang.c user/andre/tcp-ao/contrib/nvi/ex/ex_cd.c user/andre/tcp-ao/contrib/nvi/ex/ex_cmd.c user/andre/tcp-ao/contrib/nvi/ex/ex_cscope.c user/andre/tcp-ao/contrib/nvi/ex/ex_delete.c user/andre/tcp-ao/contrib/nvi/ex/ex_display.c user/andre/tcp-ao/contrib/nvi/ex/ex_edit.c user/andre/tcp-ao/contrib/nvi/ex/ex_equal.c user/andre/tcp-ao/contrib/nvi/ex/ex_file.c user/andre/tcp-ao/contrib/nvi/ex/ex_filter.c user/andre/tcp-ao/contrib/nvi/ex/ex_global.c user/andre/tcp-ao/contrib/nvi/ex/ex_init.c user/andre/tcp-ao/contrib/nvi/ex/ex_join.c user/andre/tcp-ao/contrib/nvi/ex/ex_map.c user/andre/tcp-ao/contrib/nvi/ex/ex_mark.c user/andre/tcp-ao/contrib/nvi/ex/ex_mkexrc.c user/andre/tcp-ao/contrib/nvi/ex/ex_move.c user/andre/tcp-ao/contrib/nvi/ex/ex_open.c user/andre/tcp-ao/contrib/nvi/ex/ex_preserve.c user/andre/tcp-ao/contrib/nvi/ex/ex_print.c user/andre/tcp-ao/contrib/nvi/ex/ex_put.c user/andre/tcp-ao/contrib/nvi/ex/ex_quit.c user/andre/tcp-ao/contrib/nvi/ex/ex_read.c user/andre/tcp-ao/contrib/nvi/ex/ex_screen.c user/andre/tcp-ao/contrib/nvi/ex/ex_script.c user/andre/tcp-ao/contrib/nvi/ex/ex_set.c user/andre/tcp-ao/contrib/nvi/ex/ex_shell.c user/andre/tcp-ao/contrib/nvi/ex/ex_shift.c user/andre/tcp-ao/contrib/nvi/ex/ex_source.c user/andre/tcp-ao/contrib/nvi/ex/ex_stop.c user/andre/tcp-ao/contrib/nvi/ex/ex_subst.c user/andre/tcp-ao/contrib/nvi/ex/ex_tag.c user/andre/tcp-ao/contrib/nvi/ex/ex_txt.c user/andre/tcp-ao/contrib/nvi/ex/ex_undo.c user/andre/tcp-ao/contrib/nvi/ex/ex_usage.c user/andre/tcp-ao/contrib/nvi/ex/ex_util.c user/andre/tcp-ao/contrib/nvi/ex/ex_version.c user/andre/tcp-ao/contrib/nvi/ex/ex_visual.c user/andre/tcp-ao/contrib/nvi/ex/ex_write.c user/andre/tcp-ao/contrib/nvi/ex/ex_yank.c user/andre/tcp-ao/contrib/nvi/ex/ex_z.c user/andre/tcp-ao/contrib/nvi/ex/script.h user/andre/tcp-ao/contrib/nvi/ex/tag.h user/andre/tcp-ao/contrib/nvi/ex/version.h user/andre/tcp-ao/contrib/nvi/vi/getc.c user/andre/tcp-ao/contrib/nvi/vi/v_at.c user/andre/tcp-ao/contrib/nvi/vi/v_ch.c user/andre/tcp-ao/contrib/nvi/vi/v_cmd.c user/andre/tcp-ao/contrib/nvi/vi/v_delete.c user/andre/tcp-ao/contrib/nvi/vi/v_ex.c user/andre/tcp-ao/contrib/nvi/vi/v_increment.c user/andre/tcp-ao/contrib/nvi/vi/v_init.c user/andre/tcp-ao/contrib/nvi/vi/v_itxt.c user/andre/tcp-ao/contrib/nvi/vi/v_left.c user/andre/tcp-ao/contrib/nvi/vi/v_mark.c user/andre/tcp-ao/contrib/nvi/vi/v_match.c user/andre/tcp-ao/contrib/nvi/vi/v_paragraph.c user/andre/tcp-ao/contrib/nvi/vi/v_put.c user/andre/tcp-ao/contrib/nvi/vi/v_redraw.c user/andre/tcp-ao/contrib/nvi/vi/v_replace.c user/andre/tcp-ao/contrib/nvi/vi/v_right.c user/andre/tcp-ao/contrib/nvi/vi/v_screen.c user/andre/tcp-ao/contrib/nvi/vi/v_scroll.c user/andre/tcp-ao/contrib/nvi/vi/v_search.c user/andre/tcp-ao/contrib/nvi/vi/v_section.c user/andre/tcp-ao/contrib/nvi/vi/v_sentence.c user/andre/tcp-ao/contrib/nvi/vi/v_status.c user/andre/tcp-ao/contrib/nvi/vi/v_txt.c user/andre/tcp-ao/contrib/nvi/vi/v_ulcase.c user/andre/tcp-ao/contrib/nvi/vi/v_undo.c user/andre/tcp-ao/contrib/nvi/vi/v_util.c user/andre/tcp-ao/contrib/nvi/vi/v_word.c user/andre/tcp-ao/contrib/nvi/vi/v_xchar.c user/andre/tcp-ao/contrib/nvi/vi/v_yank.c user/andre/tcp-ao/contrib/nvi/vi/v_z.c user/andre/tcp-ao/contrib/nvi/vi/v_zexit.c user/andre/tcp-ao/contrib/nvi/vi/vi.c user/andre/tcp-ao/contrib/nvi/vi/vi.h user/andre/tcp-ao/contrib/nvi/vi/vs_line.c user/andre/tcp-ao/contrib/nvi/vi/vs_msg.c user/andre/tcp-ao/contrib/nvi/vi/vs_refresh.c user/andre/tcp-ao/contrib/nvi/vi/vs_relative.c user/andre/tcp-ao/contrib/nvi/vi/vs_smap.c user/andre/tcp-ao/contrib/nvi/vi/vs_split.c user/andre/tcp-ao/contrib/ofed/libsdp/src/linux/sdp_inet.h user/andre/tcp-ao/contrib/ofed/management/infiniband-diags/src/sminfo.c user/andre/tcp-ao/contrib/ofed/management/opensm/opensm/osm_console.c user/andre/tcp-ao/contrib/ofed/management/opensm/opensm/osm_subnet.c user/andre/tcp-ao/contrib/openbsm/bin/auditdistd/token.l user/andre/tcp-ao/contrib/openbsm/etc/audit_event user/andre/tcp-ao/contrib/openpam/CREDITS user/andre/tcp-ao/contrib/openpam/HISTORY user/andre/tcp-ao/contrib/openpam/INSTALL user/andre/tcp-ao/contrib/openpam/LICENSE user/andre/tcp-ao/contrib/openpam/Makefile.am user/andre/tcp-ao/contrib/openpam/Makefile.in user/andre/tcp-ao/contrib/openpam/README user/andre/tcp-ao/contrib/openpam/RELNOTES user/andre/tcp-ao/contrib/openpam/TODO user/andre/tcp-ao/contrib/openpam/aclocal.m4 user/andre/tcp-ao/contrib/openpam/autogen.sh user/andre/tcp-ao/contrib/openpam/bin/Makefile.am user/andre/tcp-ao/contrib/openpam/bin/Makefile.in user/andre/tcp-ao/contrib/openpam/bin/openpam_dump_policy/Makefile.am user/andre/tcp-ao/contrib/openpam/bin/openpam_dump_policy/Makefile.in user/andre/tcp-ao/contrib/openpam/bin/openpam_dump_policy/openpam_dump_policy.c user/andre/tcp-ao/contrib/openpam/bin/pamtest/Makefile.am user/andre/tcp-ao/contrib/openpam/bin/pamtest/Makefile.in user/andre/tcp-ao/contrib/openpam/bin/pamtest/pamtest.1 user/andre/tcp-ao/contrib/openpam/bin/pamtest/pamtest.c user/andre/tcp-ao/contrib/openpam/bin/su/Makefile.am user/andre/tcp-ao/contrib/openpam/bin/su/Makefile.in user/andre/tcp-ao/contrib/openpam/bin/su/su.1 user/andre/tcp-ao/contrib/openpam/bin/su/su.c user/andre/tcp-ao/contrib/openpam/compile user/andre/tcp-ao/contrib/openpam/config.guess user/andre/tcp-ao/contrib/openpam/config.h.in user/andre/tcp-ao/contrib/openpam/config.sub user/andre/tcp-ao/contrib/openpam/configure user/andre/tcp-ao/contrib/openpam/configure.ac user/andre/tcp-ao/contrib/openpam/depcomp user/andre/tcp-ao/contrib/openpam/doc/Makefile.am user/andre/tcp-ao/contrib/openpam/doc/Makefile.in user/andre/tcp-ao/contrib/openpam/doc/man/Makefile.am user/andre/tcp-ao/contrib/openpam/doc/man/Makefile.in user/andre/tcp-ao/contrib/openpam/doc/man/openpam.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam.man user/andre/tcp-ao/contrib/openpam/doc/man/openpam_borrow_cred.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_free_data.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_free_envlist.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_get_feature.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_get_option.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_log.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_nullconv.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_readline.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_readlinev.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_readword.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_restore_cred.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_set_feature.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_set_option.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_straddch.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_subst.3 user/andre/tcp-ao/contrib/openpam/doc/man/openpam_ttyconv.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam.conf.5 user/andre/tcp-ao/contrib/openpam/doc/man/pam.man user/andre/tcp-ao/contrib/openpam/doc/man/pam_acct_mgmt.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_authenticate.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_chauthtok.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_close_session.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_conv.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_end.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_error.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_get_authtok.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_get_data.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_get_item.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_get_user.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_getenv.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_getenvlist.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_info.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_open_session.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_prompt.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_putenv.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_set_data.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_set_item.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_setcred.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_setenv.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_authenticate.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_chauthtok.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_close_session.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_open_session.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_sm_setcred.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_start.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_strerror.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_verror.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_vinfo.3 user/andre/tcp-ao/contrib/openpam/doc/man/pam_vprompt.3 user/andre/tcp-ao/contrib/openpam/include/Makefile.am user/andre/tcp-ao/contrib/openpam/include/Makefile.in user/andre/tcp-ao/contrib/openpam/include/security/Makefile.am user/andre/tcp-ao/contrib/openpam/include/security/Makefile.in user/andre/tcp-ao/contrib/openpam/include/security/openpam.h user/andre/tcp-ao/contrib/openpam/include/security/openpam_attr.h user/andre/tcp-ao/contrib/openpam/include/security/openpam_version.h user/andre/tcp-ao/contrib/openpam/include/security/pam_appl.h user/andre/tcp-ao/contrib/openpam/include/security/pam_constants.h user/andre/tcp-ao/contrib/openpam/include/security/pam_modules.h user/andre/tcp-ao/contrib/openpam/include/security/pam_types.h user/andre/tcp-ao/contrib/openpam/install-sh user/andre/tcp-ao/contrib/openpam/misc/gendoc.pl user/andre/tcp-ao/contrib/openpam/missing user/andre/tcp-ao/contrib/openpam/modules/Makefile.am user/andre/tcp-ao/contrib/openpam/modules/Makefile.in user/andre/tcp-ao/contrib/openpam/modules/pam_deny/Makefile.am user/andre/tcp-ao/contrib/openpam/modules/pam_deny/Makefile.in user/andre/tcp-ao/contrib/openpam/modules/pam_deny/pam_deny.c user/andre/tcp-ao/contrib/openpam/modules/pam_permit/Makefile.am user/andre/tcp-ao/contrib/openpam/modules/pam_permit/Makefile.in user/andre/tcp-ao/contrib/openpam/modules/pam_permit/pam_permit.c user/andre/tcp-ao/contrib/openpam/modules/pam_unix/Makefile.am user/andre/tcp-ao/contrib/openpam/modules/pam_unix/Makefile.in user/andre/tcp-ao/contrib/openpam/modules/pam_unix/pam_unix.c user/andre/tcp-ao/contrib/openpam/pamgdb.in user/andre/tcp-ao/contrib/openpam/t/Makefile.am user/andre/tcp-ao/contrib/openpam/t/Makefile.in user/andre/tcp-ao/contrib/openpam/t/t.h user/andre/tcp-ao/contrib/openpam/t/t_main.c user/andre/tcp-ao/contrib/openpam/t/t_openpam_readlinev.c user/andre/tcp-ao/contrib/openpam/t/t_openpam_readword.c user/andre/tcp-ao/contrib/opie/libopie/accessfile.c user/andre/tcp-ao/contrib/opie/libopie/generator.c user/andre/tcp-ao/contrib/opie/libopie/lookup.c user/andre/tcp-ao/contrib/opie/libopie/newseed.c user/andre/tcp-ao/contrib/opie/libopie/parsechallenge.c user/andre/tcp-ao/contrib/opie/libopie/passwd.c user/andre/tcp-ao/contrib/opie/libopie/randomchallenge.c user/andre/tcp-ao/contrib/opie/libopie/verify.c user/andre/tcp-ao/contrib/opie/libopie/version.c user/andre/tcp-ao/contrib/opie/opie.h user/andre/tcp-ao/contrib/opie/opieinfo.c user/andre/tcp-ao/contrib/opie/opiekey.c user/andre/tcp-ao/contrib/pam_modules/pam_passwdqc/pam_passwdqc.c user/andre/tcp-ao/contrib/sendmail/CACerts user/andre/tcp-ao/contrib/sendmail/FREEBSD-upgrade user/andre/tcp-ao/contrib/sendmail/PGPKEYS user/andre/tcp-ao/contrib/sendmail/RELEASE_NOTES user/andre/tcp-ao/contrib/sendmail/cf/cf/submit.cf user/andre/tcp-ao/contrib/sendmail/cf/m4/version.m4 user/andre/tcp-ao/contrib/sendmail/contrib/etrn.pl user/andre/tcp-ao/contrib/sendmail/doc/op/op.me user/andre/tcp-ao/contrib/sendmail/include/sm/config.h user/andre/tcp-ao/contrib/sendmail/include/sm/io.h user/andre/tcp-ao/contrib/sendmail/include/sm/os/sm_os_freebsd.h user/andre/tcp-ao/contrib/sendmail/libmilter/Makefile.m4 user/andre/tcp-ao/contrib/sendmail/libmilter/sm_gethost.c user/andre/tcp-ao/contrib/sendmail/libsm/Makefile.m4 user/andre/tcp-ao/contrib/sendmail/libsm/cf.c user/andre/tcp-ao/contrib/sendmail/libsm/fget.c user/andre/tcp-ao/contrib/sendmail/mailstats/mailstats.c user/andre/tcp-ao/contrib/sendmail/makemap/makemap.c user/andre/tcp-ao/contrib/sendmail/praliases/praliases.c user/andre/tcp-ao/contrib/sendmail/rmail/rmail.c user/andre/tcp-ao/contrib/sendmail/src/Makefile.m4 user/andre/tcp-ao/contrib/sendmail/src/alias.c user/andre/tcp-ao/contrib/sendmail/src/collect.c user/andre/tcp-ao/contrib/sendmail/src/conf.c user/andre/tcp-ao/contrib/sendmail/src/control.c user/andre/tcp-ao/contrib/sendmail/src/deliver.c user/andre/tcp-ao/contrib/sendmail/src/main.c user/andre/tcp-ao/contrib/sendmail/src/map.c user/andre/tcp-ao/contrib/sendmail/src/mci.c user/andre/tcp-ao/contrib/sendmail/src/milter.c user/andre/tcp-ao/contrib/sendmail/src/mime.c user/andre/tcp-ao/contrib/sendmail/src/parseaddr.c user/andre/tcp-ao/contrib/sendmail/src/queue.c user/andre/tcp-ao/contrib/sendmail/src/readcf.c user/andre/tcp-ao/contrib/sendmail/src/recipient.c user/andre/tcp-ao/contrib/sendmail/src/savemail.c user/andre/tcp-ao/contrib/sendmail/src/sendmail.h user/andre/tcp-ao/contrib/sendmail/src/sfsasl.c user/andre/tcp-ao/contrib/sendmail/src/srvrsmtp.c user/andre/tcp-ao/contrib/sendmail/src/tls.c user/andre/tcp-ao/contrib/sendmail/src/usersmtp.c user/andre/tcp-ao/contrib/sendmail/src/util.c user/andre/tcp-ao/contrib/sendmail/src/version.c user/andre/tcp-ao/contrib/sendmail/test/Makefile.m4 user/andre/tcp-ao/contrib/sendmail/vacation/vacation.c user/andre/tcp-ao/contrib/smbfs/lib/smb/ctx.c user/andre/tcp-ao/contrib/smbfs/mount_smbfs/mount_smbfs.c user/andre/tcp-ao/contrib/tcp_wrappers/clean_exit.c user/andre/tcp-ao/contrib/tcp_wrappers/hosts_access.c user/andre/tcp-ao/contrib/tcp_wrappers/options.c user/andre/tcp-ao/contrib/tcp_wrappers/percent_x.c user/andre/tcp-ao/contrib/tcp_wrappers/rfc931.c user/andre/tcp-ao/contrib/tcp_wrappers/shell_cmd.c user/andre/tcp-ao/contrib/tcp_wrappers/update.c user/andre/tcp-ao/contrib/tcpdump/CHANGES user/andre/tcp-ao/contrib/tcpdump/CREDITS user/andre/tcp-ao/contrib/tcpdump/Makefile.in user/andre/tcp-ao/contrib/tcpdump/README user/andre/tcp-ao/contrib/tcpdump/VERSION user/andre/tcp-ao/contrib/tcpdump/addrtoname.c user/andre/tcp-ao/contrib/tcpdump/checksum.c user/andre/tcp-ao/contrib/tcpdump/configure user/andre/tcp-ao/contrib/tcpdump/configure.in user/andre/tcp-ao/contrib/tcpdump/ethertype.h user/andre/tcp-ao/contrib/tcpdump/icmp6.h user/andre/tcp-ao/contrib/tcpdump/interface.h user/andre/tcp-ao/contrib/tcpdump/netdissect.h user/andre/tcp-ao/contrib/tcpdump/nlpid.c user/andre/tcp-ao/contrib/tcpdump/nlpid.h user/andre/tcp-ao/contrib/tcpdump/print-802_11.c user/andre/tcp-ao/contrib/tcpdump/print-babel.c user/andre/tcp-ao/contrib/tcpdump/print-bgp.c user/andre/tcp-ao/contrib/tcpdump/print-dhcp6.c user/andre/tcp-ao/contrib/tcpdump/print-domain.c user/andre/tcp-ao/contrib/tcpdump/print-ether.c user/andre/tcp-ao/contrib/tcpdump/print-icmp6.c user/andre/tcp-ao/contrib/tcpdump/print-ip.c user/andre/tcp-ao/contrib/tcpdump/print-isoclns.c user/andre/tcp-ao/contrib/tcpdump/print-lldp.c user/andre/tcp-ao/contrib/tcpdump/print-ntp.c user/andre/tcp-ao/contrib/tcpdump/print-pppoe.c user/andre/tcp-ao/contrib/tcpdump/print-rip.c user/andre/tcp-ao/contrib/tcpdump/print-rpki-rtr.c user/andre/tcp-ao/contrib/tcpdump/print-stp.c user/andre/tcp-ao/contrib/tcpdump/print-tcp.c user/andre/tcp-ao/contrib/tcpdump/print-udp.c user/andre/tcp-ao/contrib/tcpdump/tcp.h user/andre/tcp-ao/contrib/tcpdump/tcpdump.1.in user/andre/tcp-ao/contrib/tcpdump/tcpdump.c user/andre/tcp-ao/contrib/tcpdump/udp.h user/andre/tcp-ao/contrib/telnet/telnetd/sys_term.c user/andre/tcp-ao/contrib/tzdata/africa user/andre/tcp-ao/contrib/tzdata/antarctica user/andre/tcp-ao/contrib/tzdata/asia user/andre/tcp-ao/contrib/tzdata/australasia user/andre/tcp-ao/contrib/tzdata/europe user/andre/tcp-ao/contrib/tzdata/northamerica user/andre/tcp-ao/contrib/tzdata/southamerica user/andre/tcp-ao/contrib/tzdata/zone.tab user/andre/tcp-ao/contrib/wpa/COPYING user/andre/tcp-ao/contrib/wpa/README user/andre/tcp-ao/contrib/wpa/hostapd/ChangeLog user/andre/tcp-ao/contrib/wpa/hostapd/README user/andre/tcp-ao/contrib/wpa/hostapd/README-WPS user/andre/tcp-ao/contrib/wpa/hostapd/config_file.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/config_file.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/ctrl_iface.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/ctrl_iface.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/defconfig user/andre/tcp-ao/contrib/wpa/hostapd/dump_state.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/dump_state.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/eap_register.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/eap_register.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/hlr_auc_gw.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/hostapd.conf (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/hostapd.eap_user user/andre/tcp-ao/contrib/wpa/hostapd/hostapd_cli.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/main.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/hostapd/nt_password_hash.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/accounting.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/accounting.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_config.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_config.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_drv_ops.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_drv_ops.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_list.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_list.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_mlme.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ap_mlme.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/authsrv.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/authsrv.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/beacon.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/beacon.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ctrl_iface_ap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ctrl_iface_ap.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/drv_callbacks.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/hostapd.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/hostapd.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/hw_features.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/hw_features.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/iapp.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/iapp.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11_auth.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11_auth.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_11_ht.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_1x.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/ieee802_1x.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/peerkey_auth.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/pmksa_cache_auth.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/pmksa_cache_auth.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/preauth_auth.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/preauth_auth.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/sta_info.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/sta_info.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/tkip_countermeasures.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/tkip_countermeasures.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/utils.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/vlan_init.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wmm.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_ft.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_glue.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_glue.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_ie.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wpa_auth_ie.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wps_hostapd.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wps_hostapd.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/common/defs.h user/andre/tcp-ao/contrib/wpa/src/common/eapol_common.h user/andre/tcp-ao/contrib/wpa/src/common/ieee802_11_common.c user/andre/tcp-ao/contrib/wpa/src/common/ieee802_11_common.h user/andre/tcp-ao/contrib/wpa/src/common/ieee802_11_defs.h user/andre/tcp-ao/contrib/wpa/src/common/privsep_commands.h user/andre/tcp-ao/contrib/wpa/src/common/version.h user/andre/tcp-ao/contrib/wpa/src/common/wpa_common.c user/andre/tcp-ao/contrib/wpa/src/common/wpa_common.h user/andre/tcp-ao/contrib/wpa/src/common/wpa_ctrl.c user/andre/tcp-ao/contrib/wpa/src/common/wpa_ctrl.h user/andre/tcp-ao/contrib/wpa/src/crypto/aes-cbc.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-ctr.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-eax.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-encblock.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-internal-dec.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-internal-enc.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-omac1.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-unwrap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes-wrap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes.h user/andre/tcp-ao/contrib/wpa/src/crypto/aes_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/aes_wrap.h user/andre/tcp-ao/contrib/wpa/src/crypto/crypto.h user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_cryptoapi.c user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_gnutls.c user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_internal-cipher.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_internal-modexp.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_internal-rsa.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_internal.c user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_libtomcrypt.c user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_none.c user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_nss.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/crypto_openssl.c user/andre/tcp-ao/contrib/wpa/src/crypto/des-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/des_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/dh_group5.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/dh_group5.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/dh_groups.c user/andre/tcp-ao/contrib/wpa/src/crypto/dh_groups.h user/andre/tcp-ao/contrib/wpa/src/crypto/fips_prf_cryptoapi.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/fips_prf_gnutls.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/fips_prf_internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/fips_prf_nss.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/fips_prf_openssl.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/md4-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/md5-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/md5.c user/andre/tcp-ao/contrib/wpa/src/crypto/md5.h user/andre/tcp-ao/contrib/wpa/src/crypto/md5_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/milenage.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/milenage.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/ms_funcs.c user/andre/tcp-ao/contrib/wpa/src/crypto/ms_funcs.h user/andre/tcp-ao/contrib/wpa/src/crypto/rc4.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha1-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha1-pbkdf2.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha1-tlsprf.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha1-tprf.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha1.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha1.h user/andre/tcp-ao/contrib/wpa/src/crypto/sha1_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha256-internal.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/sha256.c user/andre/tcp-ao/contrib/wpa/src/crypto/sha256.h user/andre/tcp-ao/contrib/wpa/src/crypto/tls.h user/andre/tcp-ao/contrib/wpa/src/crypto/tls_gnutls.c user/andre/tcp-ao/contrib/wpa/src/crypto/tls_internal.c user/andre/tcp-ao/contrib/wpa/src/crypto/tls_none.c user/andre/tcp-ao/contrib/wpa/src/crypto/tls_nss.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/crypto/tls_openssl.c user/andre/tcp-ao/contrib/wpa/src/crypto/tls_schannel.c user/andre/tcp-ao/contrib/wpa/src/drivers/driver.h user/andre/tcp-ao/contrib/wpa/src/drivers/driver_ndis.c user/andre/tcp-ao/contrib/wpa/src/drivers/driver_ndis.h user/andre/tcp-ao/contrib/wpa/src/drivers/driver_ndis_.c user/andre/tcp-ao/contrib/wpa/src/drivers/driver_wired.c user/andre/tcp-ao/contrib/wpa/src/drivers/drivers.c user/andre/tcp-ao/contrib/wpa/src/drivers/ndis_events.c user/andre/tcp-ao/contrib/wpa/src/eap_common/chap.c user/andre/tcp-ao/contrib/wpa/src/eap_common/chap.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_defs.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_fast_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_fast_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_gpsk_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_gpsk_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_ikev2_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_ikev2_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_pax_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_pax_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_peap_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_peap_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_psk_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_psk_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_sake_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_sake_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_sim_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_sim_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_tlv_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_ttls.h user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_wsc_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/eap_wsc_common.h user/andre/tcp-ao/contrib/wpa/src/eap_common/ikev2_common.c user/andre/tcp-ao/contrib/wpa/src/eap_common/ikev2_common.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_aka.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_config.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_fast.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_fast_pac.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_fast_pac.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_gpsk.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_gtc.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_i.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_ikev2.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_leap.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_md5.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_methods.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_methods.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_mschapv2.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_otp.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_pax.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_peap.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_psk.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_sake.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_sim.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_tls.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_tls_common.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_tls_common.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_tnc.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_ttls.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_vendor_test.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/eap_wsc.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/ikev2.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/ikev2.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/mschapv2.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/mschapv2.h user/andre/tcp-ao/contrib/wpa/src/eap_peer/tncc.c user/andre/tcp-ao/contrib/wpa/src/eap_peer/tncc.h user/andre/tcp-ao/contrib/wpa/src/eap_server/eap.h user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_i.h user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_methods.h user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_aka.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_fast.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_gpsk.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_gtc.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_identity.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_ikev2.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_md5.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_methods.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_mschapv2.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_pax.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_peap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_psk.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_sake.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_sim.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_tls.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_tls_common.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_tnc.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_ttls.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_vendor_test.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_server_wsc.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_sim_db.c user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_sim_db.h user/andre/tcp-ao/contrib/wpa/src/eap_server/eap_tls_common.h user/andre/tcp-ao/contrib/wpa/src/eap_server/ikev2.c user/andre/tcp-ao/contrib/wpa/src/eap_server/ikev2.h user/andre/tcp-ao/contrib/wpa/src/eap_server/tncs.c user/andre/tcp-ao/contrib/wpa/src/eap_server/tncs.h user/andre/tcp-ao/contrib/wpa/src/eapol_auth/eapol_auth_dump.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eapol_auth/eapol_auth_sm.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eapol_auth/eapol_auth_sm.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eapol_auth/eapol_auth_sm_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/eapol_supp/eapol_supp_sm.c user/andre/tcp-ao/contrib/wpa/src/eapol_supp/eapol_supp_sm.h user/andre/tcp-ao/contrib/wpa/src/l2_packet/l2_packet.h user/andre/tcp-ao/contrib/wpa/src/l2_packet/l2_packet_freebsd.c user/andre/tcp-ao/contrib/wpa/src/l2_packet/l2_packet_ndis.c user/andre/tcp-ao/contrib/wpa/src/l2_packet/l2_packet_none.c user/andre/tcp-ao/contrib/wpa/src/radius/radius.c user/andre/tcp-ao/contrib/wpa/src/radius/radius.h user/andre/tcp-ao/contrib/wpa/src/radius/radius_client.c user/andre/tcp-ao/contrib/wpa/src/radius/radius_client.h user/andre/tcp-ao/contrib/wpa/src/radius/radius_server.c user/andre/tcp-ao/contrib/wpa/src/radius/radius_server.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/peerkey.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/peerkey.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/pmksa_cache.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/pmksa_cache.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/preauth.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/preauth.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa_ft.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa_i.h user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa_ie.c user/andre/tcp-ao/contrib/wpa/src/rsn_supp/wpa_ie.h user/andre/tcp-ao/contrib/wpa/src/tls/asn1.c user/andre/tcp-ao/contrib/wpa/src/tls/asn1.h user/andre/tcp-ao/contrib/wpa/src/tls/bignum.c user/andre/tcp-ao/contrib/wpa/src/tls/bignum.h user/andre/tcp-ao/contrib/wpa/src/tls/libtommath.c user/andre/tcp-ao/contrib/wpa/src/tls/pkcs1.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/pkcs1.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/pkcs5.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/pkcs5.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/pkcs8.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/pkcs8.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/tls/rsa.c user/andre/tcp-ao/contrib/wpa/src/tls/rsa.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_client.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_client.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_client_i.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_client_read.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_client_write.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_common.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_common.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_cred.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_cred.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_record.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_record.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_server.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_server.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_server_i.h user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_server_read.c user/andre/tcp-ao/contrib/wpa/src/tls/tlsv1_server_write.c user/andre/tcp-ao/contrib/wpa/src/tls/x509v3.c user/andre/tcp-ao/contrib/wpa/src/tls/x509v3.h user/andre/tcp-ao/contrib/wpa/src/utils/base64.c user/andre/tcp-ao/contrib/wpa/src/utils/base64.h user/andre/tcp-ao/contrib/wpa/src/utils/build_config.h user/andre/tcp-ao/contrib/wpa/src/utils/common.c user/andre/tcp-ao/contrib/wpa/src/utils/common.h user/andre/tcp-ao/contrib/wpa/src/utils/eloop.c user/andre/tcp-ao/contrib/wpa/src/utils/eloop.h user/andre/tcp-ao/contrib/wpa/src/utils/eloop_none.c user/andre/tcp-ao/contrib/wpa/src/utils/eloop_win.c user/andre/tcp-ao/contrib/wpa/src/utils/includes.h user/andre/tcp-ao/contrib/wpa/src/utils/ip_addr.c user/andre/tcp-ao/contrib/wpa/src/utils/ip_addr.h user/andre/tcp-ao/contrib/wpa/src/utils/list.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/utils/os.h user/andre/tcp-ao/contrib/wpa/src/utils/os_internal.c user/andre/tcp-ao/contrib/wpa/src/utils/os_none.c user/andre/tcp-ao/contrib/wpa/src/utils/os_unix.c user/andre/tcp-ao/contrib/wpa/src/utils/os_win32.c user/andre/tcp-ao/contrib/wpa/src/utils/pcsc_funcs.c user/andre/tcp-ao/contrib/wpa/src/utils/pcsc_funcs.h user/andre/tcp-ao/contrib/wpa/src/utils/radiotap.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/utils/radiotap_iter.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/utils/state_machine.h user/andre/tcp-ao/contrib/wpa/src/utils/trace.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/utils/trace.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/utils/uuid.c user/andre/tcp-ao/contrib/wpa/src/utils/uuid.h user/andre/tcp-ao/contrib/wpa/src/utils/wpa_debug.c user/andre/tcp-ao/contrib/wpa/src/utils/wpa_debug.h user/andre/tcp-ao/contrib/wpa/src/utils/wpabuf.c user/andre/tcp-ao/contrib/wpa/src/utils/wpabuf.h user/andre/tcp-ao/contrib/wpa/src/wps/http_client.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/http_client.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/http_server.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/http_server.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/httpread.c user/andre/tcp-ao/contrib/wpa/src/wps/httpread.h user/andre/tcp-ao/contrib/wpa/src/wps/ndef.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/upnp_xml.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/upnp_xml.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/wps.c user/andre/tcp-ao/contrib/wpa/src/wps/wps.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_attr_build.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_attr_parse.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_attr_process.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_common.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_defs.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_dev_attr.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_dev_attr.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_enrollee.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_er.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/wps_er.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/wps_er_ssdp.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/wps_i.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_registrar.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp_ap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp_event.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp_i.h user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp_ssdp.c user/andre/tcp-ao/contrib/wpa/src/wps/wps_upnp_web.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ChangeLog user/andre/tcp-ao/contrib/wpa/wpa_supplicant/README user/andre/tcp-ao/contrib/wpa/wpa_supplicant/README-WPS user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ap.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ap.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bgscan.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bgscan.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bgscan_simple.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/blacklist.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/blacklist.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bss.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/bss.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/config.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/config.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/config_file.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/config_none.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/config_ssid.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ctrl_iface.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ctrl_iface.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ctrl_iface_named_pipe.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ctrl_iface_udp.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ctrl_iface_unix.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/Makefile (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_common.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_common.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_common_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_dict_helpers.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_handlers_wps.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_helpers.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_new_introspect.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_old.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_old.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus_old_handlers_wps.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/defconfig user/andre/tcp-ao/contrib/wpa/wpa_supplicant/driver_i.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/eap_register.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/eapol_test.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/events.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-signals.py (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ibss_rsn.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/ibss_rsn.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/main.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/main_none.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/notify.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/notify.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/preauth_test.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/scan.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/scan.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/sme.c (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/sme.h (contents, props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/tests/test_eap_sim_common.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/tests/test_wpa.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_cli.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_passphrase.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_priv.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant.conf user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpa_supplicant_i.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpas_glue.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wpas_glue.h user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wps_supplicant.c user/andre/tcp-ao/contrib/wpa/wpa_supplicant/wps_supplicant.h user/andre/tcp-ao/crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h user/andre/tcp-ao/crypto/heimdal/lib/kadm5/ipropd_master.c user/andre/tcp-ao/crypto/openssh/ChangeLog user/andre/tcp-ao/crypto/openssh/FREEBSD-upgrade user/andre/tcp-ao/crypto/openssh/INSTALL user/andre/tcp-ao/crypto/openssh/PROTOCOL user/andre/tcp-ao/crypto/openssh/PROTOCOL.agent user/andre/tcp-ao/crypto/openssh/README user/andre/tcp-ao/crypto/openssh/aclocal.m4 user/andre/tcp-ao/crypto/openssh/addrmatch.c user/andre/tcp-ao/crypto/openssh/auth-chall.c user/andre/tcp-ao/crypto/openssh/auth-krb5.c user/andre/tcp-ao/crypto/openssh/auth-options.c user/andre/tcp-ao/crypto/openssh/auth-pam.c user/andre/tcp-ao/crypto/openssh/auth-rsa.c user/andre/tcp-ao/crypto/openssh/auth.c user/andre/tcp-ao/crypto/openssh/auth.h user/andre/tcp-ao/crypto/openssh/auth1.c user/andre/tcp-ao/crypto/openssh/auth2-chall.c user/andre/tcp-ao/crypto/openssh/auth2-gss.c user/andre/tcp-ao/crypto/openssh/auth2-hostbased.c user/andre/tcp-ao/crypto/openssh/auth2-jpake.c user/andre/tcp-ao/crypto/openssh/auth2-kbdint.c user/andre/tcp-ao/crypto/openssh/auth2-passwd.c user/andre/tcp-ao/crypto/openssh/auth2-pubkey.c user/andre/tcp-ao/crypto/openssh/auth2.c user/andre/tcp-ao/crypto/openssh/authfd.c user/andre/tcp-ao/crypto/openssh/authfile.c user/andre/tcp-ao/crypto/openssh/bufaux.c user/andre/tcp-ao/crypto/openssh/bufbn.c user/andre/tcp-ao/crypto/openssh/bufec.c user/andre/tcp-ao/crypto/openssh/buffer.c user/andre/tcp-ao/crypto/openssh/buffer.h user/andre/tcp-ao/crypto/openssh/canohost.c user/andre/tcp-ao/crypto/openssh/channels.c user/andre/tcp-ao/crypto/openssh/channels.h user/andre/tcp-ao/crypto/openssh/cipher-3des1.c user/andre/tcp-ao/crypto/openssh/cipher-aes.c user/andre/tcp-ao/crypto/openssh/cipher-ctr.c user/andre/tcp-ao/crypto/openssh/cipher.c user/andre/tcp-ao/crypto/openssh/cipher.h user/andre/tcp-ao/crypto/openssh/clientloop.c user/andre/tcp-ao/crypto/openssh/clientloop.h user/andre/tcp-ao/crypto/openssh/compat.c user/andre/tcp-ao/crypto/openssh/compat.h user/andre/tcp-ao/crypto/openssh/config.guess user/andre/tcp-ao/crypto/openssh/config.h user/andre/tcp-ao/crypto/openssh/config.h.in user/andre/tcp-ao/crypto/openssh/defines.h user/andre/tcp-ao/crypto/openssh/dh.c user/andre/tcp-ao/crypto/openssh/dns.c user/andre/tcp-ao/crypto/openssh/groupaccess.c user/andre/tcp-ao/crypto/openssh/gss-genr.c user/andre/tcp-ao/crypto/openssh/gss-serv-krb5.c user/andre/tcp-ao/crypto/openssh/gss-serv.c user/andre/tcp-ao/crypto/openssh/hostfile.c user/andre/tcp-ao/crypto/openssh/hostfile.h user/andre/tcp-ao/crypto/openssh/includes.h user/andre/tcp-ao/crypto/openssh/jpake.c user/andre/tcp-ao/crypto/openssh/kex.c user/andre/tcp-ao/crypto/openssh/kex.h user/andre/tcp-ao/crypto/openssh/kexdhc.c user/andre/tcp-ao/crypto/openssh/kexdhs.c user/andre/tcp-ao/crypto/openssh/kexecdh.c user/andre/tcp-ao/crypto/openssh/kexecdhc.c user/andre/tcp-ao/crypto/openssh/kexecdhs.c user/andre/tcp-ao/crypto/openssh/kexgexc.c user/andre/tcp-ao/crypto/openssh/kexgexs.c user/andre/tcp-ao/crypto/openssh/key.c user/andre/tcp-ao/crypto/openssh/key.h user/andre/tcp-ao/crypto/openssh/log.c user/andre/tcp-ao/crypto/openssh/log.h user/andre/tcp-ao/crypto/openssh/loginrec.c user/andre/tcp-ao/crypto/openssh/mac.c user/andre/tcp-ao/crypto/openssh/mac.h user/andre/tcp-ao/crypto/openssh/match.c user/andre/tcp-ao/crypto/openssh/misc.c user/andre/tcp-ao/crypto/openssh/misc.h user/andre/tcp-ao/crypto/openssh/moduli user/andre/tcp-ao/crypto/openssh/moduli.5 user/andre/tcp-ao/crypto/openssh/moduli.c user/andre/tcp-ao/crypto/openssh/monitor.c user/andre/tcp-ao/crypto/openssh/monitor.h user/andre/tcp-ao/crypto/openssh/monitor_mm.c user/andre/tcp-ao/crypto/openssh/monitor_wrap.c user/andre/tcp-ao/crypto/openssh/mux.c user/andre/tcp-ao/crypto/openssh/myproposal.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-cygwin_util.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-cygwin_util.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-misc.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/bsd-misc.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/openbsd-compat.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/openssl-compat.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/port-aix.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/port-linux.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/sys-queue.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/sys-tree.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/vis.c user/andre/tcp-ao/crypto/openssh/openbsd-compat/vis.h user/andre/tcp-ao/crypto/openssh/openbsd-compat/xcrypt.c user/andre/tcp-ao/crypto/openssh/packet.c user/andre/tcp-ao/crypto/openssh/packet.h user/andre/tcp-ao/crypto/openssh/pathnames.h user/andre/tcp-ao/crypto/openssh/platform.c user/andre/tcp-ao/crypto/openssh/platform.h user/andre/tcp-ao/crypto/openssh/progressmeter.c user/andre/tcp-ao/crypto/openssh/readconf.c user/andre/tcp-ao/crypto/openssh/readconf.h user/andre/tcp-ao/crypto/openssh/readpass.c user/andre/tcp-ao/crypto/openssh/roaming_client.c user/andre/tcp-ao/crypto/openssh/roaming_common.c user/andre/tcp-ao/crypto/openssh/rsa.c user/andre/tcp-ao/crypto/openssh/sandbox-systrace.c user/andre/tcp-ao/crypto/openssh/schnorr.c user/andre/tcp-ao/crypto/openssh/scp.1 user/andre/tcp-ao/crypto/openssh/scp.c user/andre/tcp-ao/crypto/openssh/servconf.c user/andre/tcp-ao/crypto/openssh/servconf.h user/andre/tcp-ao/crypto/openssh/serverloop.c user/andre/tcp-ao/crypto/openssh/session.c user/andre/tcp-ao/crypto/openssh/sftp-client.c user/andre/tcp-ao/crypto/openssh/sftp-client.h user/andre/tcp-ao/crypto/openssh/sftp-common.c user/andre/tcp-ao/crypto/openssh/sftp-glob.c user/andre/tcp-ao/crypto/openssh/sftp-server.8 user/andre/tcp-ao/crypto/openssh/sftp-server.c user/andre/tcp-ao/crypto/openssh/sftp.1 user/andre/tcp-ao/crypto/openssh/sftp.c user/andre/tcp-ao/crypto/openssh/ssh-add.1 user/andre/tcp-ao/crypto/openssh/ssh-add.c user/andre/tcp-ao/crypto/openssh/ssh-agent.c user/andre/tcp-ao/crypto/openssh/ssh-dss.c user/andre/tcp-ao/crypto/openssh/ssh-ecdsa.c user/andre/tcp-ao/crypto/openssh/ssh-gss.h user/andre/tcp-ao/crypto/openssh/ssh-keygen.1 user/andre/tcp-ao/crypto/openssh/ssh-keygen.c user/andre/tcp-ao/crypto/openssh/ssh-keyscan.1 user/andre/tcp-ao/crypto/openssh/ssh-keyscan.c user/andre/tcp-ao/crypto/openssh/ssh-keysign.8 user/andre/tcp-ao/crypto/openssh/ssh-keysign.c user/andre/tcp-ao/crypto/openssh/ssh-pkcs11-client.c user/andre/tcp-ao/crypto/openssh/ssh-pkcs11-helper.8 user/andre/tcp-ao/crypto/openssh/ssh-pkcs11-helper.c user/andre/tcp-ao/crypto/openssh/ssh-pkcs11.c user/andre/tcp-ao/crypto/openssh/ssh-rsa.c user/andre/tcp-ao/crypto/openssh/ssh.1 user/andre/tcp-ao/crypto/openssh/ssh.c user/andre/tcp-ao/crypto/openssh/ssh_config user/andre/tcp-ao/crypto/openssh/ssh_config.5 user/andre/tcp-ao/crypto/openssh/ssh_namespace.h user/andre/tcp-ao/crypto/openssh/sshconnect.c user/andre/tcp-ao/crypto/openssh/sshconnect1.c user/andre/tcp-ao/crypto/openssh/sshconnect2.c user/andre/tcp-ao/crypto/openssh/sshd.8 user/andre/tcp-ao/crypto/openssh/sshd.c user/andre/tcp-ao/crypto/openssh/sshd_config user/andre/tcp-ao/crypto/openssh/sshd_config.5 user/andre/tcp-ao/crypto/openssh/sshlogin.c user/andre/tcp-ao/crypto/openssh/sshlogin.h user/andre/tcp-ao/crypto/openssh/uidswap.c user/andre/tcp-ao/crypto/openssh/umac.c user/andre/tcp-ao/crypto/openssh/umac.h user/andre/tcp-ao/crypto/openssh/uuencode.c user/andre/tcp-ao/crypto/openssh/version.h user/andre/tcp-ao/crypto/openssh/xmalloc.c user/andre/tcp-ao/crypto/openssh/xmalloc.h user/andre/tcp-ao/crypto/openssl/ssl/s3_cbc.c user/andre/tcp-ao/etc/Makefile user/andre/tcp-ao/etc/defaults/periodic.conf user/andre/tcp-ao/etc/defaults/rc.conf user/andre/tcp-ao/etc/devd/usb.conf user/andre/tcp-ao/etc/ftpusers user/andre/tcp-ao/etc/group user/andre/tcp-ao/etc/inetd.conf user/andre/tcp-ao/etc/login.conf user/andre/tcp-ao/etc/master.passwd user/andre/tcp-ao/etc/mtree/BSD.include.dist user/andre/tcp-ao/etc/mtree/BSD.root.dist user/andre/tcp-ao/etc/mtree/BSD.usr.dist user/andre/tcp-ao/etc/mtree/BSD.var.dist user/andre/tcp-ao/etc/mtree/Makefile user/andre/tcp-ao/etc/namedb/named.conf user/andre/tcp-ao/etc/netstart user/andre/tcp-ao/etc/network.subr user/andre/tcp-ao/etc/newsyslog.conf user/andre/tcp-ao/etc/periodic/daily/450.status-security user/andre/tcp-ao/etc/periodic/daily/Makefile user/andre/tcp-ao/etc/periodic/monthly/Makefile user/andre/tcp-ao/etc/periodic/security/100.chksetuid user/andre/tcp-ao/etc/periodic/security/110.neggrpperm user/andre/tcp-ao/etc/periodic/security/200.chkmounts user/andre/tcp-ao/etc/periodic/security/300.chkuid0 user/andre/tcp-ao/etc/periodic/security/400.passwdless user/andre/tcp-ao/etc/periodic/security/410.logincheck user/andre/tcp-ao/etc/periodic/security/500.ipfwdenied user/andre/tcp-ao/etc/periodic/security/510.ipfdenied user/andre/tcp-ao/etc/periodic/security/520.pfdenied user/andre/tcp-ao/etc/periodic/security/550.ipfwlimit user/andre/tcp-ao/etc/periodic/security/610.ipf6denied user/andre/tcp-ao/etc/periodic/security/700.kernelmsg user/andre/tcp-ao/etc/periodic/security/800.loginfail user/andre/tcp-ao/etc/periodic/security/900.tcpwrap user/andre/tcp-ao/etc/periodic/security/Makefile user/andre/tcp-ao/etc/periodic/security/security.functions user/andre/tcp-ao/etc/periodic/weekly/Makefile user/andre/tcp-ao/etc/portsnap.conf user/andre/tcp-ao/etc/protocols user/andre/tcp-ao/etc/rc user/andre/tcp-ao/etc/rc.d/Makefile user/andre/tcp-ao/etc/rc.d/NETWORKING user/andre/tcp-ao/etc/rc.d/addswap user/andre/tcp-ao/etc/rc.d/bsnmpd user/andre/tcp-ao/etc/rc.d/fsck user/andre/tcp-ao/etc/rc.d/hostapd user/andre/tcp-ao/etc/rc.d/initrandom user/andre/tcp-ao/etc/rc.d/ip6addrctl user/andre/tcp-ao/etc/rc.d/ipfilter user/andre/tcp-ao/etc/rc.d/ipfs user/andre/tcp-ao/etc/rc.d/ipfw user/andre/tcp-ao/etc/rc.d/ipmon user/andre/tcp-ao/etc/rc.d/jail user/andre/tcp-ao/etc/rc.d/mdconfig user/andre/tcp-ao/etc/rc.d/mountlate user/andre/tcp-ao/etc/rc.d/netif user/andre/tcp-ao/etc/rc.d/ntpdate user/andre/tcp-ao/etc/rc.d/pfsync user/andre/tcp-ao/etc/rc.d/routing user/andre/tcp-ao/etc/rc.d/rtadvd user/andre/tcp-ao/etc/rc.d/savecore user/andre/tcp-ao/etc/rc.d/sendmail user/andre/tcp-ao/etc/rc.d/sshd user/andre/tcp-ao/etc/rc.d/sysctl user/andre/tcp-ao/etc/rc.d/syslogd user/andre/tcp-ao/etc/rc.d/zfs user/andre/tcp-ao/etc/rc.resume user/andre/tcp-ao/etc/rc.shutdown user/andre/tcp-ao/etc/rc.subr user/andre/tcp-ao/etc/sendmail/freebsd.mc user/andre/tcp-ao/etc/sendmail/freebsd.submit.mc user/andre/tcp-ao/etc/syslog.conf user/andre/tcp-ao/games/fortune/datfiles/freebsd-tips user/andre/tcp-ao/gnu/lib/Makefile user/andre/tcp-ao/gnu/lib/libdialog/Makefile user/andre/tcp-ao/gnu/lib/libdialog/dlg_config.h user/andre/tcp-ao/gnu/lib/libgcc/Makefile user/andre/tcp-ao/gnu/lib/libregex/Makefile user/andre/tcp-ao/gnu/lib/libregex/config.h user/andre/tcp-ao/gnu/lib/libregex/regex.h user/andre/tcp-ao/gnu/lib/libstdc++/Makefile user/andre/tcp-ao/gnu/lib/libstdc++/config.h user/andre/tcp-ao/gnu/lib/libsupc++/Makefile user/andre/tcp-ao/gnu/lib/libsupc++/Version.map user/andre/tcp-ao/gnu/usr.bin/Makefile user/andre/tcp-ao/gnu/usr.bin/binutils/Makefile user/andre/tcp-ao/gnu/usr.bin/binutils/ld/Makefile user/andre/tcp-ao/gnu/usr.bin/binutils/ld/ld.1 user/andre/tcp-ao/gnu/usr.bin/cc/Makefile user/andre/tcp-ao/gnu/usr.bin/cc/cc_tools/freebsd-native.h user/andre/tcp-ao/gnu/usr.bin/cc/include/Makefile user/andre/tcp-ao/gnu/usr.bin/dialog/Makefile user/andre/tcp-ao/gnu/usr.bin/diff/Makefile user/andre/tcp-ao/gnu/usr.bin/gdb/Makefile.inc user/andre/tcp-ao/gnu/usr.bin/gdb/arch/amd64/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/arm/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/i386/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/ia64/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/mips/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/powerpc/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/powerpc64/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/arch/sparc64/config.h user/andre/tcp-ao/gnu/usr.bin/gdb/gdb/Makefile user/andre/tcp-ao/gnu/usr.bin/gdb/kgdb/kld.c user/andre/tcp-ao/gnu/usr.bin/gdb/kgdb/trgt_mips.c user/andre/tcp-ao/gnu/usr.bin/gdb/libgdb/Makefile user/andre/tcp-ao/gnu/usr.bin/grep/dfa.c user/andre/tcp-ao/gnu/usr.bin/grep/grep.c user/andre/tcp-ao/gnu/usr.bin/grep/search.c user/andre/tcp-ao/gnu/usr.bin/groff/tmac/mdoc.local user/andre/tcp-ao/include/Makefile user/andre/tcp-ao/include/arpa/tftp.h user/andre/tcp-ao/include/complex.h user/andre/tcp-ao/include/dirent.h user/andre/tcp-ao/include/fts.h user/andre/tcp-ao/include/gssapi/gssapi.h user/andre/tcp-ao/include/iconv.h user/andre/tcp-ao/include/ifaddrs.h user/andre/tcp-ao/include/malloc_np.h user/andre/tcp-ao/include/paths.h user/andre/tcp-ao/include/protocols/rwhod.h user/andre/tcp-ao/include/protocols/timed.h user/andre/tcp-ao/include/pthread.h user/andre/tcp-ao/include/rpcsvc/ypxfrd.x user/andre/tcp-ao/include/stdlib.h user/andre/tcp-ao/include/stringlist.h user/andre/tcp-ao/include/tgmath.h user/andre/tcp-ao/include/unistd.h user/andre/tcp-ao/include/xlocale/Makefile user/andre/tcp-ao/kerberos5/Makefile.inc user/andre/tcp-ao/kerberos5/lib/libgssapi_krb5/pname_to_uid.c user/andre/tcp-ao/kerberos5/lib/libheimipcc/Makefile user/andre/tcp-ao/kerberos5/lib/libheimipcs/Makefile user/andre/tcp-ao/kerberos5/lib/libkrb5/Makefile user/andre/tcp-ao/kerberos5/libexec/digest-service/Makefile user/andre/tcp-ao/kerberos5/libexec/kcm/Makefile user/andre/tcp-ao/lib/Makefile user/andre/tcp-ao/lib/clang/Makefile user/andre/tcp-ao/lib/clang/clang.build.mk user/andre/tcp-ao/lib/clang/include/Makefile user/andre/tcp-ao/lib/clang/include/clang/Basic/Version.inc user/andre/tcp-ao/lib/clang/include/llvm/Config/config.h user/andre/tcp-ao/lib/clang/include/llvm/Config/llvm-config.h user/andre/tcp-ao/lib/clang/libclanganalysis/Makefile user/andre/tcp-ao/lib/clang/libclangarcmigrate/Makefile user/andre/tcp-ao/lib/clang/libclangast/Makefile user/andre/tcp-ao/lib/clang/libclangbasic/Makefile user/andre/tcp-ao/lib/clang/libclangcodegen/Makefile user/andre/tcp-ao/lib/clang/libclangedit/Makefile user/andre/tcp-ao/lib/clang/libclangfrontend/Makefile user/andre/tcp-ao/lib/clang/libclanglex/Makefile user/andre/tcp-ao/lib/clang/libclangparse/Makefile user/andre/tcp-ao/lib/clang/libclangrewritefrontend/Makefile user/andre/tcp-ao/lib/clang/libclangsema/Makefile user/andre/tcp-ao/lib/clang/libclangserialization/Makefile user/andre/tcp-ao/lib/clang/libclangstaticanalyzercheckers/Makefile user/andre/tcp-ao/lib/clang/libclangstaticanalyzercore/Makefile user/andre/tcp-ao/lib/clang/libclangstaticanalyzerfrontend/Makefile user/andre/tcp-ao/lib/clang/libllvmanalysis/Makefile user/andre/tcp-ao/lib/clang/libllvmarmasmparser/Makefile user/andre/tcp-ao/lib/clang/libllvmarmcodegen/Makefile user/andre/tcp-ao/lib/clang/libllvmarmdesc/Makefile user/andre/tcp-ao/lib/clang/libllvmarmdisassembler/Makefile user/andre/tcp-ao/lib/clang/libllvmasmprinter/Makefile user/andre/tcp-ao/lib/clang/libllvmbitreader/Makefile user/andre/tcp-ao/lib/clang/libllvmbitwriter/Makefile user/andre/tcp-ao/lib/clang/libllvmcodegen/Makefile user/andre/tcp-ao/lib/clang/libllvmcore/Makefile user/andre/tcp-ao/lib/clang/libllvmdebuginfo/Makefile user/andre/tcp-ao/lib/clang/libllvminstrumentation/Makefile user/andre/tcp-ao/lib/clang/libllvmipa/Makefile user/andre/tcp-ao/lib/clang/libllvmlinker/Makefile user/andre/tcp-ao/lib/clang/libllvmmc/Makefile user/andre/tcp-ao/lib/clang/libllvmmcdisassembler/Makefile user/andre/tcp-ao/lib/clang/libllvmmcjit/Makefile user/andre/tcp-ao/lib/clang/libllvmmipscodegen/Makefile user/andre/tcp-ao/lib/clang/libllvmmipsdesc/Makefile user/andre/tcp-ao/lib/clang/libllvmmipsdisassembler/Makefile user/andre/tcp-ao/lib/clang/libllvmobject/Makefile user/andre/tcp-ao/lib/clang/libllvmpowerpccodegen/Makefile user/andre/tcp-ao/lib/clang/libllvmscalaropts/Makefile user/andre/tcp-ao/lib/clang/libllvmsupport/Makefile user/andre/tcp-ao/lib/clang/libllvmtablegen/Makefile user/andre/tcp-ao/lib/clang/libllvmtarget/Makefile user/andre/tcp-ao/lib/clang/libllvmtransformutils/Makefile user/andre/tcp-ao/lib/clang/libllvmvectorize/Makefile user/andre/tcp-ao/lib/clang/libllvmx86asmparser/Makefile user/andre/tcp-ao/lib/clang/libllvmx86codegen/Makefile user/andre/tcp-ao/lib/clang/libllvmx86disassembler/Makefile user/andre/tcp-ao/lib/csu/Makefile.inc user/andre/tcp-ao/lib/csu/arm/crt1.c user/andre/tcp-ao/lib/csu/common/notes.h user/andre/tcp-ao/lib/libarchive/Makefile user/andre/tcp-ao/lib/libarchive/config_freebsd.h user/andre/tcp-ao/lib/libarchive/test/Makefile user/andre/tcp-ao/lib/libc++/Makefile user/andre/tcp-ao/lib/libc/Makefile user/andre/tcp-ao/lib/libc/amd64/gen/getcontextx.c user/andre/tcp-ao/lib/libc/amd64/sys/setlogin.S user/andre/tcp-ao/lib/libc/arm/_fpmath.h user/andre/tcp-ao/lib/libc/arm/arith.h user/andre/tcp-ao/lib/libc/arm/gen/Makefile.inc user/andre/tcp-ao/lib/libc/arm/gen/_setjmp.S user/andre/tcp-ao/lib/libc/arm/gen/getcontextx.c user/andre/tcp-ao/lib/libc/arm/gen/setjmp.S user/andre/tcp-ao/lib/libc/arm/gen/sigsetjmp.S user/andre/tcp-ao/lib/libc/arm/softfloat/arm-gcc.h user/andre/tcp-ao/lib/libc/db/btree/bt_open.c user/andre/tcp-ao/lib/libc/db/hash/hash.c user/andre/tcp-ao/lib/libc/db/hash/hash_page.c user/andre/tcp-ao/lib/libc/gen/Makefile.inc user/andre/tcp-ao/lib/libc/gen/Symbol.map user/andre/tcp-ao/lib/libc/gen/closedir.c user/andre/tcp-ao/lib/libc/gen/directory.3 user/andre/tcp-ao/lib/libc/gen/dl_iterate_phdr.3 user/andre/tcp-ao/lib/libc/gen/errlst.c user/andre/tcp-ao/lib/libc/gen/fnmatch.c user/andre/tcp-ao/lib/libc/gen/fts-compat.h user/andre/tcp-ao/lib/libc/gen/fts.3 user/andre/tcp-ao/lib/libc/gen/getcontext.3 user/andre/tcp-ao/lib/libc/gen/getlogin.c user/andre/tcp-ao/lib/libc/gen/getutxent.c user/andre/tcp-ao/lib/libc/gen/glob.c user/andre/tcp-ao/lib/libc/gen/lockf.3 user/andre/tcp-ao/lib/libc/gen/popen.3 user/andre/tcp-ao/lib/libc/gen/popen.c user/andre/tcp-ao/lib/libc/gen/posix_spawn_file_actions_addopen.3 user/andre/tcp-ao/lib/libc/gen/pututxline.c user/andre/tcp-ao/lib/libc/gen/sem_wait.3 user/andre/tcp-ao/lib/libc/gen/siginterrupt.c user/andre/tcp-ao/lib/libc/gen/signal.3 user/andre/tcp-ao/lib/libc/gen/signal.c user/andre/tcp-ao/lib/libc/gen/stringlist.3 user/andre/tcp-ao/lib/libc/gen/stringlist.c user/andre/tcp-ao/lib/libc/gen/strtofflags.c user/andre/tcp-ao/lib/libc/gen/sysconf.3 user/andre/tcp-ao/lib/libc/gen/sysctl.3 user/andre/tcp-ao/lib/libc/gen/syslog.c user/andre/tcp-ao/lib/libc/gen/wordexp.c user/andre/tcp-ao/lib/libc/gmon/gmon.c user/andre/tcp-ao/lib/libc/i386/gen/getcontextx.c user/andre/tcp-ao/lib/libc/i386/string/memchr.S user/andre/tcp-ao/lib/libc/i386/string/strchr.S user/andre/tcp-ao/lib/libc/i386/string/strrchr.S user/andre/tcp-ao/lib/libc/i386/sys/setlogin.S user/andre/tcp-ao/lib/libc/ia64/gen/getcontextx.c user/andre/tcp-ao/lib/libc/iconv/Symbol.map user/andre/tcp-ao/lib/libc/iconv/citrus_csmapper.c user/andre/tcp-ao/lib/libc/iconv/citrus_iconv.c user/andre/tcp-ao/lib/libc/iconv/citrus_iconv.h user/andre/tcp-ao/lib/libc/iconv/citrus_iconv_local.h user/andre/tcp-ao/lib/libc/iconv/citrus_lock.h user/andre/tcp-ao/lib/libc/iconv/citrus_mapper.c user/andre/tcp-ao/lib/libc/iconv/citrus_mapper_local.h user/andre/tcp-ao/lib/libc/iconv/citrus_none.c user/andre/tcp-ao/lib/libc/iconv/citrus_stdenc.h user/andre/tcp-ao/lib/libc/iconv/citrus_stdenc_local.h user/andre/tcp-ao/lib/libc/iconv/citrus_stdenc_template.h user/andre/tcp-ao/lib/libc/iconv/iconv.c user/andre/tcp-ao/lib/libc/include/compat.h user/andre/tcp-ao/lib/libc/include/libc_private.h user/andre/tcp-ao/lib/libc/locale/Makefile.inc user/andre/tcp-ao/lib/libc/locale/Symbol.map user/andre/tcp-ao/lib/libc/locale/btowc.3 user/andre/tcp-ao/lib/libc/locale/duplocale.3 user/andre/tcp-ao/lib/libc/locale/freelocale.3 user/andre/tcp-ao/lib/libc/locale/isblank.3 user/andre/tcp-ao/lib/libc/locale/mbrtowc.3 user/andre/tcp-ao/lib/libc/locale/newlocale.3 user/andre/tcp-ao/lib/libc/locale/querylocale.3 user/andre/tcp-ao/lib/libc/locale/uselocale.3 user/andre/tcp-ao/lib/libc/locale/wcrtomb.3 user/andre/tcp-ao/lib/libc/locale/xlocale.3 user/andre/tcp-ao/lib/libc/locale/xlocale_private.h user/andre/tcp-ao/lib/libc/mips/gen/getcontextx.c user/andre/tcp-ao/lib/libc/mips/gen/longjmp.c user/andre/tcp-ao/lib/libc/mips/net/htonl.S user/andre/tcp-ao/lib/libc/mips/net/htons.S user/andre/tcp-ao/lib/libc/mips/net/ntohl.S user/andre/tcp-ao/lib/libc/mips/net/ntohs.S user/andre/tcp-ao/lib/libc/net/ether_addr.c user/andre/tcp-ao/lib/libc/net/eui64.c user/andre/tcp-ao/lib/libc/net/getaddrinfo.3 user/andre/tcp-ao/lib/libc/net/getaddrinfo.c user/andre/tcp-ao/lib/libc/net/gethostbyht.c user/andre/tcp-ao/lib/libc/net/gethostbyname.3 user/andre/tcp-ao/lib/libc/net/getifaddrs.3 user/andre/tcp-ao/lib/libc/net/getifmaddrs.3 user/andre/tcp-ao/lib/libc/net/getifmaddrs.c user/andre/tcp-ao/lib/libc/net/getnameinfo.3 user/andre/tcp-ao/lib/libc/net/getnetbyht.c user/andre/tcp-ao/lib/libc/net/getprotoent.c user/andre/tcp-ao/lib/libc/net/getservent.c user/andre/tcp-ao/lib/libc/net/hesiod.c user/andre/tcp-ao/lib/libc/net/if_nametoindex.c user/andre/tcp-ao/lib/libc/net/name6.c user/andre/tcp-ao/lib/libc/net/nscachedcli.c user/andre/tcp-ao/lib/libc/net/nsdispatch.c user/andre/tcp-ao/lib/libc/net/nslexer.l user/andre/tcp-ao/lib/libc/net/nsparser.y user/andre/tcp-ao/lib/libc/net/rcmd.c user/andre/tcp-ao/lib/libc/net/recv.c user/andre/tcp-ao/lib/libc/net/sctp_bindx.3 user/andre/tcp-ao/lib/libc/net/sctp_connectx.3 user/andre/tcp-ao/lib/libc/net/sctp_freepaddrs.3 user/andre/tcp-ao/lib/libc/net/sctp_getaddrlen.3 user/andre/tcp-ao/lib/libc/net/sctp_getassocid.3 user/andre/tcp-ao/lib/libc/net/sctp_getpaddrs.3 user/andre/tcp-ao/lib/libc/net/sctp_opt_info.3 user/andre/tcp-ao/lib/libc/net/sctp_recvmsg.3 user/andre/tcp-ao/lib/libc/net/sctp_send.3 user/andre/tcp-ao/lib/libc/net/sctp_sendmsg.3 user/andre/tcp-ao/lib/libc/net/sctp_sys_calls.c user/andre/tcp-ao/lib/libc/net/send.c user/andre/tcp-ao/lib/libc/nls/C.msg user/andre/tcp-ao/lib/libc/nls/fr_FR.ISO8859-1.msg user/andre/tcp-ao/lib/libc/posix1e/acl_is_trivial_np.3 user/andre/tcp-ao/lib/libc/posix1e/mac.c user/andre/tcp-ao/lib/libc/powerpc/gen/getcontextx.c user/andre/tcp-ao/lib/libc/powerpc64/gen/fpgetmask.c user/andre/tcp-ao/lib/libc/powerpc64/gen/fpgetround.c user/andre/tcp-ao/lib/libc/powerpc64/gen/fpgetsticky.c user/andre/tcp-ao/lib/libc/powerpc64/gen/fpsetmask.c user/andre/tcp-ao/lib/libc/powerpc64/gen/fpsetround.c user/andre/tcp-ao/lib/libc/powerpc64/gen/getcontextx.c user/andre/tcp-ao/lib/libc/resolv/res_init.c user/andre/tcp-ao/lib/libc/resolv/res_query.c user/andre/tcp-ao/lib/libc/resolv/res_send.c user/andre/tcp-ao/lib/libc/sparc64/gen/getcontextx.c user/andre/tcp-ao/lib/libc/sparc64/gen/makecontext.c user/andre/tcp-ao/lib/libc/sparc64/gen/signalcontext.c user/andre/tcp-ao/lib/libc/stdio/Makefile.inc user/andre/tcp-ao/lib/libc/stdio/Symbol.map user/andre/tcp-ao/lib/libc/stdio/asprintf.c user/andre/tcp-ao/lib/libc/stdio/clrerr.c user/andre/tcp-ao/lib/libc/stdio/fclose.c user/andre/tcp-ao/lib/libc/stdio/fdopen.c user/andre/tcp-ao/lib/libc/stdio/feof.c user/andre/tcp-ao/lib/libc/stdio/ferror.c user/andre/tcp-ao/lib/libc/stdio/fflush.c user/andre/tcp-ao/lib/libc/stdio/fgetc.c user/andre/tcp-ao/lib/libc/stdio/fgetln.c user/andre/tcp-ao/lib/libc/stdio/fgetpos.c user/andre/tcp-ao/lib/libc/stdio/fgets.c user/andre/tcp-ao/lib/libc/stdio/fileno.c user/andre/tcp-ao/lib/libc/stdio/findfp.c user/andre/tcp-ao/lib/libc/stdio/flags.c user/andre/tcp-ao/lib/libc/stdio/fopen.c user/andre/tcp-ao/lib/libc/stdio/fprintf.c user/andre/tcp-ao/lib/libc/stdio/fpurge.c user/andre/tcp-ao/lib/libc/stdio/fputc.c user/andre/tcp-ao/lib/libc/stdio/fputs.c user/andre/tcp-ao/lib/libc/stdio/fread.c user/andre/tcp-ao/lib/libc/stdio/freopen.c user/andre/tcp-ao/lib/libc/stdio/fscanf.c user/andre/tcp-ao/lib/libc/stdio/fseek.c user/andre/tcp-ao/lib/libc/stdio/fsetpos.c user/andre/tcp-ao/lib/libc/stdio/ftell.c user/andre/tcp-ao/lib/libc/stdio/funopen.c user/andre/tcp-ao/lib/libc/stdio/fvwrite.c user/andre/tcp-ao/lib/libc/stdio/fwalk.c user/andre/tcp-ao/lib/libc/stdio/fwrite.c user/andre/tcp-ao/lib/libc/stdio/getc.c user/andre/tcp-ao/lib/libc/stdio/getchar.c user/andre/tcp-ao/lib/libc/stdio/gets.c user/andre/tcp-ao/lib/libc/stdio/getw.c user/andre/tcp-ao/lib/libc/stdio/makebuf.c user/andre/tcp-ao/lib/libc/stdio/mktemp.3 user/andre/tcp-ao/lib/libc/stdio/mktemp.c user/andre/tcp-ao/lib/libc/stdio/perror.c user/andre/tcp-ao/lib/libc/stdio/printf-pos.c user/andre/tcp-ao/lib/libc/stdio/printf.c user/andre/tcp-ao/lib/libc/stdio/putc.c user/andre/tcp-ao/lib/libc/stdio/putchar.c user/andre/tcp-ao/lib/libc/stdio/puts.c user/andre/tcp-ao/lib/libc/stdio/putw.c user/andre/tcp-ao/lib/libc/stdio/refill.c user/andre/tcp-ao/lib/libc/stdio/remove.c user/andre/tcp-ao/lib/libc/stdio/rewind.c user/andre/tcp-ao/lib/libc/stdio/rget.c user/andre/tcp-ao/lib/libc/stdio/scanf.c user/andre/tcp-ao/lib/libc/stdio/setbuf.c user/andre/tcp-ao/lib/libc/stdio/setbuffer.c user/andre/tcp-ao/lib/libc/stdio/setvbuf.c user/andre/tcp-ao/lib/libc/stdio/snprintf.c user/andre/tcp-ao/lib/libc/stdio/sprintf.c user/andre/tcp-ao/lib/libc/stdio/sscanf.c user/andre/tcp-ao/lib/libc/stdio/stdio.c user/andre/tcp-ao/lib/libc/stdio/tempnam.c user/andre/tcp-ao/lib/libc/stdio/tmpfile.c user/andre/tcp-ao/lib/libc/stdio/tmpnam.c user/andre/tcp-ao/lib/libc/stdio/ungetc.c user/andre/tcp-ao/lib/libc/stdio/vfprintf.c user/andre/tcp-ao/lib/libc/stdio/vfscanf.c user/andre/tcp-ao/lib/libc/stdio/vfwprintf.c user/andre/tcp-ao/lib/libc/stdio/vfwscanf.c user/andre/tcp-ao/lib/libc/stdio/vprintf.c user/andre/tcp-ao/lib/libc/stdio/vscanf.c user/andre/tcp-ao/lib/libc/stdio/vsnprintf.c user/andre/tcp-ao/lib/libc/stdio/vsprintf.c user/andre/tcp-ao/lib/libc/stdio/vsscanf.c user/andre/tcp-ao/lib/libc/stdio/vswscanf.c user/andre/tcp-ao/lib/libc/stdio/wbuf.c user/andre/tcp-ao/lib/libc/stdio/wsetup.c user/andre/tcp-ao/lib/libc/stdio/xprintf_errno.c user/andre/tcp-ao/lib/libc/stdlib/abort.3 user/andre/tcp-ao/lib/libc/stdlib/abort.c user/andre/tcp-ao/lib/libc/stdlib/abs.3 user/andre/tcp-ao/lib/libc/stdlib/abs.c user/andre/tcp-ao/lib/libc/stdlib/alloca.3 user/andre/tcp-ao/lib/libc/stdlib/atexit.3 user/andre/tcp-ao/lib/libc/stdlib/atexit.c user/andre/tcp-ao/lib/libc/stdlib/atexit.h user/andre/tcp-ao/lib/libc/stdlib/atof.3 user/andre/tcp-ao/lib/libc/stdlib/atof.c user/andre/tcp-ao/lib/libc/stdlib/atoi.3 user/andre/tcp-ao/lib/libc/stdlib/atoi.c user/andre/tcp-ao/lib/libc/stdlib/atol.3 user/andre/tcp-ao/lib/libc/stdlib/atol.c user/andre/tcp-ao/lib/libc/stdlib/atoll.c user/andre/tcp-ao/lib/libc/stdlib/bsearch.3 user/andre/tcp-ao/lib/libc/stdlib/bsearch.c user/andre/tcp-ao/lib/libc/stdlib/div.3 user/andre/tcp-ao/lib/libc/stdlib/div.c user/andre/tcp-ao/lib/libc/stdlib/exit.3 user/andre/tcp-ao/lib/libc/stdlib/exit.c user/andre/tcp-ao/lib/libc/stdlib/getenv.3 user/andre/tcp-ao/lib/libc/stdlib/getenv.c user/andre/tcp-ao/lib/libc/stdlib/getopt.3 user/andre/tcp-ao/lib/libc/stdlib/getopt.c user/andre/tcp-ao/lib/libc/stdlib/getsubopt.3 user/andre/tcp-ao/lib/libc/stdlib/getsubopt.c user/andre/tcp-ao/lib/libc/stdlib/heapsort.c user/andre/tcp-ao/lib/libc/stdlib/jemalloc/Symbol.map user/andre/tcp-ao/lib/libc/stdlib/labs.3 user/andre/tcp-ao/lib/libc/stdlib/labs.c user/andre/tcp-ao/lib/libc/stdlib/ldiv.3 user/andre/tcp-ao/lib/libc/stdlib/ldiv.c user/andre/tcp-ao/lib/libc/stdlib/lsearch.3 user/andre/tcp-ao/lib/libc/stdlib/memory.3 user/andre/tcp-ao/lib/libc/stdlib/merge.c user/andre/tcp-ao/lib/libc/stdlib/qsort.3 user/andre/tcp-ao/lib/libc/stdlib/qsort.c user/andre/tcp-ao/lib/libc/stdlib/radixsort.3 user/andre/tcp-ao/lib/libc/stdlib/radixsort.c user/andre/tcp-ao/lib/libc/stdlib/rand.3 user/andre/tcp-ao/lib/libc/stdlib/rand.c user/andre/tcp-ao/lib/libc/stdlib/random.3 user/andre/tcp-ao/lib/libc/stdlib/random.c user/andre/tcp-ao/lib/libc/stdlib/realpath.3 user/andre/tcp-ao/lib/libc/stdlib/realpath.c user/andre/tcp-ao/lib/libc/stdlib/strtod.3 user/andre/tcp-ao/lib/libc/stdlib/strtoimax.c user/andre/tcp-ao/lib/libc/stdlib/strtol.3 user/andre/tcp-ao/lib/libc/stdlib/strtol.c user/andre/tcp-ao/lib/libc/stdlib/strtoll.c user/andre/tcp-ao/lib/libc/stdlib/strtonum.3 user/andre/tcp-ao/lib/libc/stdlib/strtoq.c user/andre/tcp-ao/lib/libc/stdlib/strtoul.3 user/andre/tcp-ao/lib/libc/stdlib/strtoul.c user/andre/tcp-ao/lib/libc/stdlib/strtoull.c user/andre/tcp-ao/lib/libc/stdlib/strtoumax.c user/andre/tcp-ao/lib/libc/stdlib/strtouq.c user/andre/tcp-ao/lib/libc/stdlib/system.3 user/andre/tcp-ao/lib/libc/stdlib/system.c user/andre/tcp-ao/lib/libc/stdtime/Makefile.inc user/andre/tcp-ao/lib/libc/string/bcmp.3 user/andre/tcp-ao/lib/libc/string/bcmp.c user/andre/tcp-ao/lib/libc/string/bcopy.3 user/andre/tcp-ao/lib/libc/string/bcopy.c user/andre/tcp-ao/lib/libc/string/bstring.3 user/andre/tcp-ao/lib/libc/string/bzero.3 user/andre/tcp-ao/lib/libc/string/ffs.3 user/andre/tcp-ao/lib/libc/string/ffs.c user/andre/tcp-ao/lib/libc/string/ffsl.c user/andre/tcp-ao/lib/libc/string/ffsll.c user/andre/tcp-ao/lib/libc/string/fls.c user/andre/tcp-ao/lib/libc/string/flsl.c user/andre/tcp-ao/lib/libc/string/flsll.c user/andre/tcp-ao/lib/libc/string/index.3 user/andre/tcp-ao/lib/libc/string/memccpy.3 user/andre/tcp-ao/lib/libc/string/memccpy.c user/andre/tcp-ao/lib/libc/string/memchr.3 user/andre/tcp-ao/lib/libc/string/memchr.c user/andre/tcp-ao/lib/libc/string/memcmp.3 user/andre/tcp-ao/lib/libc/string/memcmp.c user/andre/tcp-ao/lib/libc/string/memcpy.3 user/andre/tcp-ao/lib/libc/string/memmove.3 user/andre/tcp-ao/lib/libc/string/memset.3 user/andre/tcp-ao/lib/libc/string/memset.c user/andre/tcp-ao/lib/libc/string/strcasecmp.3 user/andre/tcp-ao/lib/libc/string/strcasecmp.c user/andre/tcp-ao/lib/libc/string/strcasestr.c user/andre/tcp-ao/lib/libc/string/strcat.3 user/andre/tcp-ao/lib/libc/string/strcat.c user/andre/tcp-ao/lib/libc/string/strchr.3 user/andre/tcp-ao/lib/libc/string/strchr.c user/andre/tcp-ao/lib/libc/string/strcmp.3 user/andre/tcp-ao/lib/libc/string/strcmp.c user/andre/tcp-ao/lib/libc/string/strcoll.3 user/andre/tcp-ao/lib/libc/string/strcpy.3 user/andre/tcp-ao/lib/libc/string/strcpy.c user/andre/tcp-ao/lib/libc/string/strcspn.3 user/andre/tcp-ao/lib/libc/string/strdup.3 user/andre/tcp-ao/lib/libc/string/strdup.c user/andre/tcp-ao/lib/libc/string/strerror.3 user/andre/tcp-ao/lib/libc/string/strerror.c user/andre/tcp-ao/lib/libc/string/string.3 user/andre/tcp-ao/lib/libc/string/strlen.3 user/andre/tcp-ao/lib/libc/string/strmode.3 user/andre/tcp-ao/lib/libc/string/strmode.c user/andre/tcp-ao/lib/libc/string/strncat.c user/andre/tcp-ao/lib/libc/string/strncmp.c user/andre/tcp-ao/lib/libc/string/strncpy.c user/andre/tcp-ao/lib/libc/string/strndup.c user/andre/tcp-ao/lib/libc/string/strnstr.c user/andre/tcp-ao/lib/libc/string/strpbrk.3 user/andre/tcp-ao/lib/libc/string/strpbrk.c user/andre/tcp-ao/lib/libc/string/strrchr.c user/andre/tcp-ao/lib/libc/string/strsep.3 user/andre/tcp-ao/lib/libc/string/strsep.c user/andre/tcp-ao/lib/libc/string/strsignal.c user/andre/tcp-ao/lib/libc/string/strspn.3 user/andre/tcp-ao/lib/libc/string/strstr.3 user/andre/tcp-ao/lib/libc/string/strstr.c user/andre/tcp-ao/lib/libc/string/strtok.3 user/andre/tcp-ao/lib/libc/string/strtok.c user/andre/tcp-ao/lib/libc/string/strxfrm.3 user/andre/tcp-ao/lib/libc/string/swab.3 user/andre/tcp-ao/lib/libc/string/swab.c user/andre/tcp-ao/lib/libc/string/wcscmp.c user/andre/tcp-ao/lib/libc/string/wcscoll.3 user/andre/tcp-ao/lib/libc/string/wcsncmp.c user/andre/tcp-ao/lib/libc/string/wcsncpy.c user/andre/tcp-ao/lib/libc/string/wcsstr.c user/andre/tcp-ao/lib/libc/string/wcstok.c user/andre/tcp-ao/lib/libc/string/wcswidth.c user/andre/tcp-ao/lib/libc/string/wcsxfrm.3 user/andre/tcp-ao/lib/libc/string/wmemchr.3 user/andre/tcp-ao/lib/libc/sys/Makefile.inc user/andre/tcp-ao/lib/libc/sys/Symbol.map user/andre/tcp-ao/lib/libc/sys/accept.2 user/andre/tcp-ao/lib/libc/sys/cap_ioctls_limit.2 user/andre/tcp-ao/lib/libc/sys/cap_rights_limit.2 user/andre/tcp-ao/lib/libc/sys/chflags.2 user/andre/tcp-ao/lib/libc/sys/close.2 user/andre/tcp-ao/lib/libc/sys/cpuset.2 user/andre/tcp-ao/lib/libc/sys/cpuset_getaffinity.2 user/andre/tcp-ao/lib/libc/sys/dup.2 user/andre/tcp-ao/lib/libc/sys/extattr_get_file.2 user/andre/tcp-ao/lib/libc/sys/fork.2 user/andre/tcp-ao/lib/libc/sys/getdtablesize.2 user/andre/tcp-ao/lib/libc/sys/getrlimit.2 user/andre/tcp-ao/lib/libc/sys/getsockopt.2 user/andre/tcp-ao/lib/libc/sys/intro.2 user/andre/tcp-ao/lib/libc/sys/ioctl.2 user/andre/tcp-ao/lib/libc/sys/kqueue.2 user/andre/tcp-ao/lib/libc/sys/mlock.2 user/andre/tcp-ao/lib/libc/sys/mmap.2 user/andre/tcp-ao/lib/libc/sys/pdfork.2 user/andre/tcp-ao/lib/libc/sys/pipe.2 user/andre/tcp-ao/lib/libc/sys/posix_openpt.2 user/andre/tcp-ao/lib/libc/sys/pselect.2 user/andre/tcp-ao/lib/libc/sys/ptrace.2 user/andre/tcp-ao/lib/libc/sys/read.2 user/andre/tcp-ao/lib/libc/sys/recv.2 user/andre/tcp-ao/lib/libc/sys/sctp_generic_recvmsg.2 user/andre/tcp-ao/lib/libc/sys/sctp_generic_sendmsg.2 user/andre/tcp-ao/lib/libc/sys/sctp_peeloff.2 user/andre/tcp-ao/lib/libc/sys/setfib.2 user/andre/tcp-ao/lib/libc/sys/sigaction.2 user/andre/tcp-ao/lib/libc/sys/sigpending.2 user/andre/tcp-ao/lib/libc/sys/sigreturn.2 user/andre/tcp-ao/lib/libc/sys/sigsuspend.2 user/andre/tcp-ao/lib/libc/sys/sigwait.2 user/andre/tcp-ao/lib/libc/sys/socket.2 user/andre/tcp-ao/lib/libc/sys/socketpair.2 user/andre/tcp-ao/lib/libc/sys/wait.2 user/andre/tcp-ao/lib/libc/sys/write.2 user/andre/tcp-ao/lib/libcam/camlib.c user/andre/tcp-ao/lib/libcompiler_rt/Makefile user/andre/tcp-ao/lib/libcrypt/Makefile user/andre/tcp-ao/lib/libcrypt/tests/Makefile user/andre/tcp-ao/lib/libcrypt/tests/crypt_tests.c user/andre/tcp-ao/lib/libdwarf/dwarf_die.c user/andre/tcp-ao/lib/libdwarf/dwarf_init.c user/andre/tcp-ao/lib/libdwarf/dwarf_loc.c user/andre/tcp-ao/lib/libedit/readline.c user/andre/tcp-ao/lib/libelf/libelf_data.c user/andre/tcp-ao/lib/libfetch/common.c user/andre/tcp-ao/lib/libfetch/common.h user/andre/tcp-ao/lib/libfetch/fetch.3 user/andre/tcp-ao/lib/libfetch/fetch.c user/andre/tcp-ao/lib/libfetch/http.c user/andre/tcp-ao/lib/libgeom/geom_xml2tree.c user/andre/tcp-ao/lib/libgeom/libgeom.h user/andre/tcp-ao/lib/libiconv_modules/BIG5/citrus_big5.c user/andre/tcp-ao/lib/libiconv_modules/DECHanyu/citrus_dechanyu.c user/andre/tcp-ao/lib/libiconv_modules/EUC/citrus_euc.c user/andre/tcp-ao/lib/libiconv_modules/EUCTW/citrus_euctw.c user/andre/tcp-ao/lib/libiconv_modules/GBK2K/citrus_gbk2k.c user/andre/tcp-ao/lib/libiconv_modules/HZ/citrus_hz.c user/andre/tcp-ao/lib/libiconv_modules/ISO2022/citrus_iso2022.c user/andre/tcp-ao/lib/libiconv_modules/JOHAB/citrus_johab.c user/andre/tcp-ao/lib/libiconv_modules/MSKanji/citrus_mskanji.c user/andre/tcp-ao/lib/libiconv_modules/Makefile.inc user/andre/tcp-ao/lib/libiconv_modules/UES/citrus_ues.c user/andre/tcp-ao/lib/libiconv_modules/UTF1632/citrus_utf1632.c user/andre/tcp-ao/lib/libiconv_modules/UTF7/citrus_utf7.c user/andre/tcp-ao/lib/libiconv_modules/UTF8/citrus_utf8.c user/andre/tcp-ao/lib/libiconv_modules/VIQR/citrus_viqr.c user/andre/tcp-ao/lib/libiconv_modules/ZW/citrus_zw.c user/andre/tcp-ao/lib/libiconv_modules/iconv_none/citrus_iconv_none.c user/andre/tcp-ao/lib/libiconv_modules/iconv_std/citrus_iconv_std.c user/andre/tcp-ao/lib/libipsec/policy_token.l user/andre/tcp-ao/lib/libipsec/test-policy.c user/andre/tcp-ao/lib/libkiconv/xlat16_iconv.c user/andre/tcp-ao/lib/libkvm/Makefile user/andre/tcp-ao/lib/libkvm/kvm.c user/andre/tcp-ao/lib/libkvm/kvm.h user/andre/tcp-ao/lib/libkvm/kvm_getpcpu.3 user/andre/tcp-ao/lib/libkvm/kvm_mips.c user/andre/tcp-ao/lib/libkvm/kvm_pcpu.c user/andre/tcp-ao/lib/libldns/Makefile user/andre/tcp-ao/lib/libmemstat/memstat_uma.c user/andre/tcp-ao/lib/libnetgraph/debug.c user/andre/tcp-ao/lib/libpam/Makefile.inc user/andre/tcp-ao/lib/libpam/libpam/Makefile user/andre/tcp-ao/lib/libpam/modules/pam_passwdqc/Makefile user/andre/tcp-ao/lib/libpam/modules/pam_ssh/Makefile user/andre/tcp-ao/lib/libpam/modules/pam_unix/pam_unix.c user/andre/tcp-ao/lib/libpcap/config.h user/andre/tcp-ao/lib/libpmc/Makefile user/andre/tcp-ao/lib/libpmc/libpmc.c user/andre/tcp-ao/lib/libpmc/pmc.sandybridgexeon.3 user/andre/tcp-ao/lib/libproc/_libproc.h user/andre/tcp-ao/lib/libproc/proc_bkpt.c user/andre/tcp-ao/lib/libproc/proc_create.c user/andre/tcp-ao/lib/libproc/proc_regs.c user/andre/tcp-ao/lib/libproc/proc_sym.c user/andre/tcp-ao/lib/libproc/proc_util.c user/andre/tcp-ao/lib/libprocstat/Makefile user/andre/tcp-ao/lib/libprocstat/Symbol.map user/andre/tcp-ao/lib/libprocstat/common_kvm.h user/andre/tcp-ao/lib/libprocstat/libprocstat.3 user/andre/tcp-ao/lib/libprocstat/libprocstat.c user/andre/tcp-ao/lib/libprocstat/libprocstat.h user/andre/tcp-ao/lib/libprocstat/libprocstat_internal.h user/andre/tcp-ao/lib/libradius/radius.conf.5 user/andre/tcp-ao/lib/librt/sigev_thread.c user/andre/tcp-ao/lib/libsbuf/Symbol.map user/andre/tcp-ao/lib/libsbuf/Version.def user/andre/tcp-ao/lib/libstand/Makefile user/andre/tcp-ao/lib/libstand/ext2fs.c user/andre/tcp-ao/lib/libstand/mips/_setjmp.S user/andre/tcp-ao/lib/libstand/nfs.c user/andre/tcp-ao/lib/libstand/tftp.c user/andre/tcp-ao/lib/libtacplus/libtacplus.3 user/andre/tcp-ao/lib/libtacplus/tacplus.conf.5 user/andre/tcp-ao/lib/libthr/pthread.map user/andre/tcp-ao/lib/libthr/thread/thr_cancel.c user/andre/tcp-ao/lib/libthr/thread/thr_private.h user/andre/tcp-ao/lib/libthr/thread/thr_rtld.c user/andre/tcp-ao/lib/libthr/thread/thr_sig.c user/andre/tcp-ao/lib/libthr/thread/thr_spec.c user/andre/tcp-ao/lib/libthr/thread/thr_syscalls.c user/andre/tcp-ao/lib/libthr/thread/thr_umtx.h user/andre/tcp-ao/lib/libthread_db/arch/arm/libpthread_md.c user/andre/tcp-ao/lib/libthread_db/arch/sparc64/libpthread_md.c user/andre/tcp-ao/lib/libusb/Makefile user/andre/tcp-ao/lib/libusb/libusb.3 user/andre/tcp-ao/lib/libusb/libusb.h user/andre/tcp-ao/lib/libusb/libusb10.c user/andre/tcp-ao/lib/libusb/libusb10_io.c user/andre/tcp-ao/lib/libusb/libusb20.3 user/andre/tcp-ao/lib/libusb/libusb20.c user/andre/tcp-ao/lib/libusb/libusb20.h user/andre/tcp-ao/lib/libusb/libusb20_int.h user/andre/tcp-ao/lib/libusb/libusb20_ugen20.c user/andre/tcp-ao/lib/libusb/libusb_global_linux.h user/andre/tcp-ao/lib/libutil/expand_number.c user/andre/tcp-ao/lib/libutil/humanize_number.3 user/andre/tcp-ao/lib/libutil/humanize_number.c user/andre/tcp-ao/lib/libutil/login.conf.5 user/andre/tcp-ao/lib/libutil/login_auth.c user/andre/tcp-ao/lib/libutil/login_cap.c user/andre/tcp-ao/lib/libutil/login_class.3 user/andre/tcp-ao/lib/libutil/login_class.c user/andre/tcp-ao/lib/libutil/login_times.c user/andre/tcp-ao/lib/libutil/pidfile.c user/andre/tcp-ao/lib/libutil/quotafile.c user/andre/tcp-ao/lib/libutil/uucplock.c user/andre/tcp-ao/lib/libvmmapi/vmmapi.c user/andre/tcp-ao/lib/libvmmapi/vmmapi.h user/andre/tcp-ao/lib/libyaml/Makefile user/andre/tcp-ao/lib/libz/ChangeLog user/andre/tcp-ao/lib/libz/FREEBSD-upgrade (contents, props changed) user/andre/tcp-ao/lib/libz/Makefile (contents, props changed) user/andre/tcp-ao/lib/libz/README user/andre/tcp-ao/lib/libz/Symbol.map (contents, props changed) user/andre/tcp-ao/lib/libz/Versions.def (contents, props changed) user/andre/tcp-ao/lib/libz/compress.c user/andre/tcp-ao/lib/libz/contrib/README.contrib user/andre/tcp-ao/lib/libz/deflate.c user/andre/tcp-ao/lib/libz/deflate.h user/andre/tcp-ao/lib/libz/gzguts.h user/andre/tcp-ao/lib/libz/gzlib.c user/andre/tcp-ao/lib/libz/gzread.c user/andre/tcp-ao/lib/libz/gzwrite.c user/andre/tcp-ao/lib/libz/infback.c user/andre/tcp-ao/lib/libz/inffast.c user/andre/tcp-ao/lib/libz/inflate.c user/andre/tcp-ao/lib/libz/inftrees.c user/andre/tcp-ao/lib/libz/test/example.c user/andre/tcp-ao/lib/libz/test/minigzip.c user/andre/tcp-ao/lib/libz/trees.c user/andre/tcp-ao/lib/libz/uncompr.c user/andre/tcp-ao/lib/libz/zconf.h user/andre/tcp-ao/lib/libz/zlib.3 user/andre/tcp-ao/lib/libz/zlib.h user/andre/tcp-ao/lib/libz/zopen.c (contents, props changed) user/andre/tcp-ao/lib/libz/zutil.c user/andre/tcp-ao/lib/libz/zutil.h user/andre/tcp-ao/lib/msun/Makefile user/andre/tcp-ao/lib/msun/Symbol.map user/andre/tcp-ao/lib/msun/arm/fenv.h user/andre/tcp-ao/lib/msun/ld128/s_exp2l.c user/andre/tcp-ao/lib/msun/ld128/s_expl.c user/andre/tcp-ao/lib/msun/ld80/s_exp2l.c user/andre/tcp-ao/lib/msun/ld80/s_expl.c user/andre/tcp-ao/lib/msun/man/acosh.3 user/andre/tcp-ao/lib/msun/man/asinh.3 user/andre/tcp-ao/lib/msun/man/atanh.3 user/andre/tcp-ao/lib/msun/man/ccos.3 user/andre/tcp-ao/lib/msun/man/ccosh.3 user/andre/tcp-ao/lib/msun/man/complex.3 user/andre/tcp-ao/lib/msun/man/exp.3 user/andre/tcp-ao/lib/msun/man/log.3 user/andre/tcp-ao/lib/msun/src/e_acosh.c user/andre/tcp-ao/lib/msun/src/e_atanh.c user/andre/tcp-ao/lib/msun/src/e_exp.c user/andre/tcp-ao/lib/msun/src/e_expf.c user/andre/tcp-ao/lib/msun/src/e_log.c user/andre/tcp-ao/lib/msun/src/e_log10.c user/andre/tcp-ao/lib/msun/src/e_log10f.c user/andre/tcp-ao/lib/msun/src/e_log2.c user/andre/tcp-ao/lib/msun/src/e_log2f.c user/andre/tcp-ao/lib/msun/src/e_logf.c user/andre/tcp-ao/lib/msun/src/math.h user/andre/tcp-ao/lib/msun/src/math_private.h user/andre/tcp-ao/lib/msun/src/s_asinh.c user/andre/tcp-ao/lib/msun/src/s_erf.c user/andre/tcp-ao/lib/msun/src/s_erff.c user/andre/tcp-ao/lib/msun/src/s_exp2.c user/andre/tcp-ao/lib/msun/src/s_exp2f.c user/andre/tcp-ao/lib/msun/src/s_expm1.c user/andre/tcp-ao/lib/msun/src/s_expm1f.c user/andre/tcp-ao/lib/msun/src/s_fma.c user/andre/tcp-ao/lib/msun/src/s_fmal.c user/andre/tcp-ao/lib/msun/src/s_log1p.c user/andre/tcp-ao/lib/msun/src/s_log1pf.c user/andre/tcp-ao/lib/msun/src/s_nearbyint.c user/andre/tcp-ao/lib/ncurses/form/Makefile user/andre/tcp-ao/lib/ncurses/menu/Makefile user/andre/tcp-ao/lib/ncurses/panel/Makefile user/andre/tcp-ao/libexec/atrun/atrun.c user/andre/tcp-ao/libexec/bootpd/bootptab.5 user/andre/tcp-ao/libexec/rtld-elf/libmap.c user/andre/tcp-ao/libexec/rtld-elf/libmap.h user/andre/tcp-ao/libexec/rtld-elf/rtld.c user/andre/tcp-ao/libexec/rtld-elf/rtld.h user/andre/tcp-ao/release/Makefile user/andre/tcp-ao/release/doc/Makefile user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/early-adopter/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/errata/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/installation/i386/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/readme/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml user/andre/tcp-ao/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml user/andre/tcp-ao/release/doc/en_US.ISO8859-1/Makefile user/andre/tcp-ao/release/doc/en_US.ISO8859-1/errata/article.xml user/andre/tcp-ao/release/doc/en_US.ISO8859-1/hardware/Makefile user/andre/tcp-ao/release/doc/en_US.ISO8859-1/hardware/article.xml user/andre/tcp-ao/release/doc/en_US.ISO8859-1/readme/article.xml user/andre/tcp-ao/release/doc/en_US.ISO8859-1/relnotes/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/errata/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/common/install.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml user/andre/tcp-ao/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/errata/article.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/alpha/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/alpha/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/amd64/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/amd64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/common/artheader.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/common/dev.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/common/intro.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/i386/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/i386/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/ia64/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/ia64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/pc98/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/pc98/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml (contents, props changed) user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/sparc64/Makefile user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/common/new.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/common/relnotes.ent user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/i386/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml user/andre/tcp-ao/release/doc/ja_JP.eucJP/share/xml/catalog user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/errata/article.xml (contents, props changed) user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/install.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/layout.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/i386/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/readme/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml user/andre/tcp-ao/release/doc/ru_RU.KOI8-R/share/xml/catalog user/andre/tcp-ao/release/doc/share/mk/doc.relnotes.mk user/andre/tcp-ao/release/doc/share/xml/Makefile user/andre/tcp-ao/release/doc/share/xml/release.ent user/andre/tcp-ao/release/doc/zh_CN.GB2312/errata/article.xml user/andre/tcp-ao/release/doc/zh_CN.GB2312/hardware/Makefile user/andre/tcp-ao/release/doc/zh_CN.GB2312/hardware/article.xml user/andre/tcp-ao/release/doc/zh_CN.GB2312/readme/article.xml user/andre/tcp-ao/release/doc/zh_CN.GB2312/relnotes/article.xml user/andre/tcp-ao/release/generate-release.sh user/andre/tcp-ao/release/ia64/mkisoimages.sh user/andre/tcp-ao/release/picobsd/build/picobsd user/andre/tcp-ao/release/picobsd/floppy.tree/etc/master.passwd user/andre/tcp-ao/release/picobsd/floppy.tree/etc/rc1 user/andre/tcp-ao/release/powerpc/mkisoimages.sh user/andre/tcp-ao/release/scripts/mm-mtree.sh user/andre/tcp-ao/release/sparc64/mkisoimages.sh user/andre/tcp-ao/rescue/rescue/Makefile user/andre/tcp-ao/sbin/Makefile user/andre/tcp-ao/sbin/bsdlabel/bsdlabel.8 user/andre/tcp-ao/sbin/camcontrol/camcontrol.8 user/andre/tcp-ao/sbin/camcontrol/camcontrol.c user/andre/tcp-ao/sbin/camcontrol/fwdownload.c user/andre/tcp-ao/sbin/camcontrol/modeedit.c user/andre/tcp-ao/sbin/ccdconfig/ccdconfig.8 user/andre/tcp-ao/sbin/devd/devd.8 user/andre/tcp-ao/sbin/devd/devd.cc user/andre/tcp-ao/sbin/devd/devd.h user/andre/tcp-ao/sbin/devd/token.l user/andre/tcp-ao/sbin/devfs/devfs.8 user/andre/tcp-ao/sbin/dhclient/bpf.c user/andre/tcp-ao/sbin/dhclient/clparse.c user/andre/tcp-ao/sbin/dhclient/dhclient.c user/andre/tcp-ao/sbin/dhclient/dhcpd.h user/andre/tcp-ao/sbin/dhclient/packet.c user/andre/tcp-ao/sbin/dhclient/privsep.c user/andre/tcp-ao/sbin/dhclient/privsep.h user/andre/tcp-ao/sbin/dmesg/dmesg.8 user/andre/tcp-ao/sbin/dmesg/dmesg.c user/andre/tcp-ao/sbin/dumpfs/dumpfs.8 user/andre/tcp-ao/sbin/dumpfs/dumpfs.c user/andre/tcp-ao/sbin/dumpon/dumpon.8 user/andre/tcp-ao/sbin/etherswitchcfg/etherswitchcfg.8 user/andre/tcp-ao/sbin/etherswitchcfg/etherswitchcfg.c user/andre/tcp-ao/sbin/fdisk/fdisk.8 user/andre/tcp-ao/sbin/fdisk_pc98/fdisk.c user/andre/tcp-ao/sbin/ffsinfo/ffsinfo.8 user/andre/tcp-ao/sbin/fsck_ffs/ea.c user/andre/tcp-ao/sbin/fsck_ffs/fsck.h user/andre/tcp-ao/sbin/fsck_ffs/fsck_ffs.8 user/andre/tcp-ao/sbin/fsck_ffs/fsutil.c user/andre/tcp-ao/sbin/fsck_ffs/inode.c user/andre/tcp-ao/sbin/fsck_ffs/main.c user/andre/tcp-ao/sbin/fsck_ffs/pass1.c user/andre/tcp-ao/sbin/fsck_ffs/pass5.c user/andre/tcp-ao/sbin/fsck_ffs/setup.c user/andre/tcp-ao/sbin/fsck_ffs/suj.c user/andre/tcp-ao/sbin/fsdb/fsdb.c user/andre/tcp-ao/sbin/gbde/Makefile user/andre/tcp-ao/sbin/gbde/gbde.8 user/andre/tcp-ao/sbin/geom/class/Makefile.inc user/andre/tcp-ao/sbin/geom/class/concat/gconcat.8 user/andre/tcp-ao/sbin/geom/class/eli/geli.8 user/andre/tcp-ao/sbin/geom/class/eli/geom_eli.c user/andre/tcp-ao/sbin/geom/class/label/glabel.8 user/andre/tcp-ao/sbin/geom/class/mirror/gmirror.8 user/andre/tcp-ao/sbin/geom/class/nop/gnop.8 user/andre/tcp-ao/sbin/geom/class/part/geom_part.c user/andre/tcp-ao/sbin/geom/class/part/gpart.8 user/andre/tcp-ao/sbin/geom/class/raid/graid.8 user/andre/tcp-ao/sbin/geom/class/shsec/gshsec.8 user/andre/tcp-ao/sbin/geom/class/stripe/gstripe.8 user/andre/tcp-ao/sbin/geom/class/virstor/gvirstor.8 user/andre/tcp-ao/sbin/growfs/debug.c user/andre/tcp-ao/sbin/growfs/growfs.c user/andre/tcp-ao/sbin/gvinum/gvinum.8 user/andre/tcp-ao/sbin/gvinum/gvinum.c user/andre/tcp-ao/sbin/hastctl/Makefile user/andre/tcp-ao/sbin/hastctl/hastctl.8 user/andre/tcp-ao/sbin/hastctl/hastctl.c user/andre/tcp-ao/sbin/hastd/Makefile user/andre/tcp-ao/sbin/hastd/control.c user/andre/tcp-ao/sbin/hastd/hast.h user/andre/tcp-ao/sbin/hastd/hastd.8 user/andre/tcp-ao/sbin/hastd/parse.y user/andre/tcp-ao/sbin/hastd/primary.c user/andre/tcp-ao/sbin/hastd/refcnt.h user/andre/tcp-ao/sbin/hastd/secondary.c user/andre/tcp-ao/sbin/hastd/subr.c user/andre/tcp-ao/sbin/hastd/token.l user/andre/tcp-ao/sbin/ifconfig/Makefile user/andre/tcp-ao/sbin/ifconfig/af_nd6.c user/andre/tcp-ao/sbin/ifconfig/ifconfig.8 user/andre/tcp-ao/sbin/ifconfig/ifgroup.c user/andre/tcp-ao/sbin/ifconfig/iflagg.c user/andre/tcp-ao/sbin/init/init.c user/andre/tcp-ao/sbin/ipf/ipf/Makefile user/andre/tcp-ao/sbin/ipf/ipftest/Makefile user/andre/tcp-ao/sbin/ipf/libipf/Makefile user/andre/tcp-ao/sbin/ipfw/ipfw.8 user/andre/tcp-ao/sbin/ipfw/ipfw2.c user/andre/tcp-ao/sbin/ipfw/ipfw2.h user/andre/tcp-ao/sbin/iscontrol/auth_subr.c user/andre/tcp-ao/sbin/iscontrol/config.c user/andre/tcp-ao/sbin/iscontrol/fsm.c user/andre/tcp-ao/sbin/iscontrol/iscontrol.8 user/andre/tcp-ao/sbin/iscontrol/iscontrol.c user/andre/tcp-ao/sbin/iscontrol/iscsi.conf.5 user/andre/tcp-ao/sbin/iscontrol/login.c user/andre/tcp-ao/sbin/iscontrol/misc.c user/andre/tcp-ao/sbin/iscontrol/pdu.c user/andre/tcp-ao/sbin/kldload/kldload.8 user/andre/tcp-ao/sbin/ldconfig/ldconfig.8 user/andre/tcp-ao/sbin/ldconfig/ldconfig.c user/andre/tcp-ao/sbin/md5/Makefile user/andre/tcp-ao/sbin/mdconfig/mdconfig.8 user/andre/tcp-ao/sbin/mdconfig/mdconfig.c user/andre/tcp-ao/sbin/mount/Makefile (contents, props changed) user/andre/tcp-ao/sbin/mount/mount.8 user/andre/tcp-ao/sbin/mount/mount.c user/andre/tcp-ao/sbin/mount_msdosfs/mount_msdosfs.8 user/andre/tcp-ao/sbin/mount_nfs/mount_nfs.8 user/andre/tcp-ao/sbin/newfs/mkfs.c user/andre/tcp-ao/sbin/newfs/newfs.8 user/andre/tcp-ao/sbin/newfs/newfs.c user/andre/tcp-ao/sbin/newfs/newfs.h user/andre/tcp-ao/sbin/newfs_msdos/newfs_msdos.8 user/andre/tcp-ao/sbin/newfs_msdos/newfs_msdos.c user/andre/tcp-ao/sbin/newfs_nandfs/newfs_nandfs.8 user/andre/tcp-ao/sbin/newfs_nandfs/newfs_nandfs.c user/andre/tcp-ao/sbin/nos-tun/nos-tun.c user/andre/tcp-ao/sbin/nvmecontrol/Makefile user/andre/tcp-ao/sbin/nvmecontrol/nvmecontrol.8 user/andre/tcp-ao/sbin/nvmecontrol/nvmecontrol.c user/andre/tcp-ao/sbin/pfctl/pf_print_state.c user/andre/tcp-ao/sbin/ping6/ping6.8 user/andre/tcp-ao/sbin/ping6/ping6.c user/andre/tcp-ao/sbin/reboot/boot_i386.8 user/andre/tcp-ao/sbin/recoverdisk/recoverdisk.1 user/andre/tcp-ao/sbin/recoverdisk/recoverdisk.c user/andre/tcp-ao/sbin/route/Makefile user/andre/tcp-ao/sbin/route/keywords user/andre/tcp-ao/sbin/route/route.8 user/andre/tcp-ao/sbin/route/route.c user/andre/tcp-ao/sbin/routed/routed.8 user/andre/tcp-ao/sbin/shutdown/shutdown.8 user/andre/tcp-ao/sbin/swapon/swapon.8 user/andre/tcp-ao/sbin/swapon/swapon.c user/andre/tcp-ao/sbin/tunefs/tunefs.8 user/andre/tcp-ao/sbin/tunefs/tunefs.c user/andre/tcp-ao/secure/Makefile.inc user/andre/tcp-ao/secure/lib/libcrypto/Makefile user/andre/tcp-ao/secure/lib/libcrypto/Makefile.inc user/andre/tcp-ao/secure/lib/libssh/Makefile user/andre/tcp-ao/secure/libexec/sftp-server/Makefile user/andre/tcp-ao/secure/libexec/ssh-keysign/Makefile user/andre/tcp-ao/secure/libexec/ssh-pkcs11-helper/Makefile user/andre/tcp-ao/secure/usr.bin/bdes/bdes.1 user/andre/tcp-ao/secure/usr.bin/scp/Makefile user/andre/tcp-ao/secure/usr.bin/sftp/Makefile user/andre/tcp-ao/secure/usr.bin/ssh-add/Makefile user/andre/tcp-ao/secure/usr.bin/ssh-agent/Makefile user/andre/tcp-ao/secure/usr.bin/ssh-keygen/Makefile user/andre/tcp-ao/secure/usr.bin/ssh-keyscan/Makefile user/andre/tcp-ao/secure/usr.bin/ssh/Makefile user/andre/tcp-ao/secure/usr.sbin/sshd/Makefile user/andre/tcp-ao/share/Makefile user/andre/tcp-ao/share/doc/Makefile user/andre/tcp-ao/share/doc/legal/Makefile user/andre/tcp-ao/share/doc/psd/Makefile user/andre/tcp-ao/share/examples/BSD_daemon/README user/andre/tcp-ao/share/examples/Makefile user/andre/tcp-ao/share/examples/etc/README.examples user/andre/tcp-ao/share/examples/etc/make.conf user/andre/tcp-ao/share/examples/kld/Makefile user/andre/tcp-ao/share/examples/kld/syscall/test/call.c user/andre/tcp-ao/share/examples/ppi/ppilcd.c user/andre/tcp-ao/share/examples/scsi_target/scsi_target.c user/andre/tcp-ao/share/i18n/csmapper/KAZAKH/KZ1048%UCS.src user/andre/tcp-ao/share/i18n/csmapper/KAZAKH/UCS%KZ1048.src user/andre/tcp-ao/share/i18n/csmapper/Makefile user/andre/tcp-ao/share/i18n/esdb/Makefile user/andre/tcp-ao/share/man/man3/fpgetround.3 user/andre/tcp-ao/share/man/man3/offsetof.3 user/andre/tcp-ao/share/man/man3/pthread_affinity_np.3 user/andre/tcp-ao/share/man/man3/pthread_attr_affinity_np.3 user/andre/tcp-ao/share/man/man3/pthread_getconcurrency.3 user/andre/tcp-ao/share/man/man3/pthread_testcancel.3 user/andre/tcp-ao/share/man/man3/queue.3 user/andre/tcp-ao/share/man/man4/Makefile user/andre/tcp-ao/share/man/man4/ahci.4 user/andre/tcp-ao/share/man/man4/altera_avgen.4 user/andre/tcp-ao/share/man/man4/altq.4 user/andre/tcp-ao/share/man/man4/ata.4 user/andre/tcp-ao/share/man/man4/ath_hal.4 user/andre/tcp-ao/share/man/man4/axe.4 user/andre/tcp-ao/share/man/man4/bce.4 user/andre/tcp-ao/share/man/man4/bpf.4 user/andre/tcp-ao/share/man/man4/bridge.4 user/andre/tcp-ao/share/man/man4/bxe.4 user/andre/tcp-ao/share/man/man4/capsicum.4 user/andre/tcp-ao/share/man/man4/cas.4 user/andre/tcp-ao/share/man/man4/ccd.4 user/andre/tcp-ao/share/man/man4/cd.4 user/andre/tcp-ao/share/man/man4/ciss.4 user/andre/tcp-ao/share/man/man4/cxgbe.4 user/andre/tcp-ao/share/man/man4/ddb.4 user/andre/tcp-ao/share/man/man4/em.4 user/andre/tcp-ao/share/man/man4/filemon.4 user/andre/tcp-ao/share/man/man4/geom.4 user/andre/tcp-ao/share/man/man4/geom_linux_lvm.4 user/andre/tcp-ao/share/man/man4/hptiop.4 user/andre/tcp-ao/share/man/man4/igb.4 user/andre/tcp-ao/share/man/man4/iwn.4 user/andre/tcp-ao/share/man/man4/ixgb.4 user/andre/tcp-ao/share/man/man4/ixgbe.4 user/andre/tcp-ao/share/man/man4/lagg.4 user/andre/tcp-ao/share/man/man4/man4.arm/Makefile user/andre/tcp-ao/share/man/man4/man4.i386/npx.4 user/andre/tcp-ao/share/man/man4/man4.i386/pnp.4 user/andre/tcp-ao/share/man/man4/mfi.4 user/andre/tcp-ao/share/man/man4/mld.4 user/andre/tcp-ao/share/man/man4/netgraph.4 user/andre/tcp-ao/share/man/man4/netmap.4 user/andre/tcp-ao/share/man/man4/ng_nat.4 user/andre/tcp-ao/share/man/man4/ng_tag.4 user/andre/tcp-ao/share/man/man4/nvd.4 user/andre/tcp-ao/share/man/man4/nvme.4 user/andre/tcp-ao/share/man/man4/oce.4 user/andre/tcp-ao/share/man/man4/psm.4 user/andre/tcp-ao/share/man/man4/random.4 user/andre/tcp-ao/share/man/man4/sa.4 user/andre/tcp-ao/share/man/man4/sdhci.4 user/andre/tcp-ao/share/man/man4/sge.4 user/andre/tcp-ao/share/man/man4/syscons.4 user/andre/tcp-ao/share/man/man4/sysmouse.4 user/andre/tcp-ao/share/man/man4/udav.4 user/andre/tcp-ao/share/man/man4/udp.4 user/andre/tcp-ao/share/man/man4/unix.4 user/andre/tcp-ao/share/man/man4/usb_quirk.4 user/andre/tcp-ao/share/man/man4/virtio.4 user/andre/tcp-ao/share/man/man4/virtio_balloon.4 user/andre/tcp-ao/share/man/man4/virtio_blk.4 user/andre/tcp-ao/share/man/man4/virtio_scsi.4 user/andre/tcp-ao/share/man/man4/vlan.4 user/andre/tcp-ao/share/man/man4/vtnet.4 user/andre/tcp-ao/share/man/man5/Makefile user/andre/tcp-ao/share/man/man5/devfs.conf.5 user/andre/tcp-ao/share/man/man5/ext2fs.5 user/andre/tcp-ao/share/man/man5/freebsd-update.conf.5 user/andre/tcp-ao/share/man/man5/fstab.5 user/andre/tcp-ao/share/man/man5/libmap.conf.5 user/andre/tcp-ao/share/man/man5/mailer.conf.5 user/andre/tcp-ao/share/man/man5/make.conf.5 user/andre/tcp-ao/share/man/man5/msdosfs.5 user/andre/tcp-ao/share/man/man5/periodic.conf.5 user/andre/tcp-ao/share/man/man5/pf.conf.5 user/andre/tcp-ao/share/man/man5/portsnap.conf.5 user/andre/tcp-ao/share/man/man5/procfs.5 user/andre/tcp-ao/share/man/man5/rc.conf.5 user/andre/tcp-ao/share/man/man5/reiserfs.5 user/andre/tcp-ao/share/man/man5/src.conf.5 user/andre/tcp-ao/share/man/man7/Makefile user/andre/tcp-ao/share/man/man7/c99.7 user/andre/tcp-ao/share/man/man7/firewall.7 user/andre/tcp-ao/share/man/man7/hier.7 user/andre/tcp-ao/share/man/man7/ports.7 user/andre/tcp-ao/share/man/man7/release.7 user/andre/tcp-ao/share/man/man8/picobsd.8 user/andre/tcp-ao/share/man/man8/rc.8 user/andre/tcp-ao/share/man/man8/rc.sendmail.8 user/andre/tcp-ao/share/man/man8/rc.subr.8 user/andre/tcp-ao/share/man/man9/DELAY.9 user/andre/tcp-ao/share/man/man9/EVENTHANDLER.9 user/andre/tcp-ao/share/man/man9/Makefile user/andre/tcp-ao/share/man/man9/VOP_FSYNC.9 user/andre/tcp-ao/share/man/man9/VOP_GETPAGES.9 user/andre/tcp-ao/share/man/man9/atomic.9 user/andre/tcp-ao/share/man/man9/bus_dma.9 user/andre/tcp-ao/share/man/man9/disk.9 user/andre/tcp-ao/share/man/man9/firmware.9 user/andre/tcp-ao/share/man/man9/hhook.9 user/andre/tcp-ao/share/man/man9/ifnet.9 user/andre/tcp-ao/share/man/man9/kernel_mount.9 user/andre/tcp-ao/share/man/man9/lock.9 user/andre/tcp-ao/share/man/man9/locking.9 user/andre/tcp-ao/share/man/man9/microuptime.9 user/andre/tcp-ao/share/man/man9/mutex.9 user/andre/tcp-ao/share/man/man9/netisr.9 user/andre/tcp-ao/share/man/man9/pci.9 user/andre/tcp-ao/share/man/man9/pfil.9 user/andre/tcp-ao/share/man/man9/rmlock.9 user/andre/tcp-ao/share/man/man9/rtentry.9 user/andre/tcp-ao/share/man/man9/rwlock.9 user/andre/tcp-ao/share/man/man9/sbuf.9 user/andre/tcp-ao/share/man/man9/signal.9 user/andre/tcp-ao/share/man/man9/sleep.9 user/andre/tcp-ao/share/man/man9/socket.9 user/andre/tcp-ao/share/man/man9/sysctl.9 user/andre/tcp-ao/share/man/man9/sysctl_add_oid.9 user/andre/tcp-ao/share/man/man9/taskqueue.9 user/andre/tcp-ao/share/man/man9/timeout.9 user/andre/tcp-ao/share/man/man9/vfsconf.9 user/andre/tcp-ao/share/man/man9/vm_map_find.9 user/andre/tcp-ao/share/man/man9/vm_page_alloc.9 user/andre/tcp-ao/share/man/man9/vm_page_grab.9 user/andre/tcp-ao/share/man/man9/vnode.9 user/andre/tcp-ao/share/man/man9/zone.9 user/andre/tcp-ao/share/misc/bsd-family-tree user/andre/tcp-ao/share/misc/committers-doc.dot user/andre/tcp-ao/share/misc/committers-ports.dot user/andre/tcp-ao/share/misc/committers-src.dot user/andre/tcp-ao/share/misc/iso639 user/andre/tcp-ao/share/misc/pci_vendors user/andre/tcp-ao/share/mk/atf.test.mk user/andre/tcp-ao/share/mk/bsd.cpu.mk user/andre/tcp-ao/share/mk/bsd.crunchgen.mk user/andre/tcp-ao/share/mk/bsd.files.mk user/andre/tcp-ao/share/mk/bsd.lib.mk user/andre/tcp-ao/share/mk/bsd.libnames.mk user/andre/tcp-ao/share/mk/bsd.own.mk user/andre/tcp-ao/share/mk/bsd.prog.mk user/andre/tcp-ao/share/mk/bsd.progs.mk user/andre/tcp-ao/share/mk/bsd.subdir.mk user/andre/tcp-ao/share/mk/bsd.sys.mk user/andre/tcp-ao/share/mk/bsd.test.mk user/andre/tcp-ao/share/mk/sys.mk user/andre/tcp-ao/share/monetdef/Makefile user/andre/tcp-ao/share/syscons/fonts/iso04-wide-8x16.fnt user/andre/tcp-ao/share/syscons/fonts/iso05-8x16.fnt user/andre/tcp-ao/share/syscons/keymaps/INDEX.keymaps user/andre/tcp-ao/share/syscons/keymaps/us.dvorakp.kbd user/andre/tcp-ao/sys/amd64/amd64/apic_vector.S user/andre/tcp-ao/sys/amd64/amd64/bpf_jit_machdep.c user/andre/tcp-ao/sys/amd64/amd64/cpu_switch.S user/andre/tcp-ao/sys/amd64/amd64/db_disasm.c user/andre/tcp-ao/sys/amd64/amd64/db_trace.c user/andre/tcp-ao/sys/amd64/amd64/exception.S user/andre/tcp-ao/sys/amd64/amd64/fpu.c user/andre/tcp-ao/sys/amd64/amd64/genassym.c user/andre/tcp-ao/sys/amd64/amd64/identcpu.c user/andre/tcp-ao/sys/amd64/amd64/initcpu.c user/andre/tcp-ao/sys/amd64/amd64/machdep.c user/andre/tcp-ao/sys/amd64/amd64/minidump_machdep.c user/andre/tcp-ao/sys/amd64/amd64/mp_machdep.c user/andre/tcp-ao/sys/amd64/amd64/pmap.c user/andre/tcp-ao/sys/amd64/amd64/support.S user/andre/tcp-ao/sys/amd64/amd64/sys_machdep.c user/andre/tcp-ao/sys/amd64/amd64/trap.c user/andre/tcp-ao/sys/amd64/amd64/vm_machdep.c user/andre/tcp-ao/sys/amd64/conf/GENERIC user/andre/tcp-ao/sys/amd64/conf/NOTES user/andre/tcp-ao/sys/amd64/ia32/ia32_signal.c user/andre/tcp-ao/sys/amd64/include/acpica_machdep.h user/andre/tcp-ao/sys/amd64/include/apicvar.h user/andre/tcp-ao/sys/amd64/include/asm.h user/andre/tcp-ao/sys/amd64/include/atomic.h user/andre/tcp-ao/sys/amd64/include/clock.h user/andre/tcp-ao/sys/amd64/include/cpu.h user/andre/tcp-ao/sys/amd64/include/cpufunc.h user/andre/tcp-ao/sys/amd64/include/intr_machdep.h user/andre/tcp-ao/sys/amd64/include/md_var.h user/andre/tcp-ao/sys/amd64/include/metadata.h user/andre/tcp-ao/sys/amd64/include/param.h user/andre/tcp-ao/sys/amd64/include/pcb.h user/andre/tcp-ao/sys/amd64/include/pcpu.h user/andre/tcp-ao/sys/amd64/include/pmap.h user/andre/tcp-ao/sys/amd64/include/sf_buf.h user/andre/tcp-ao/sys/amd64/include/smp.h user/andre/tcp-ao/sys/amd64/include/vmm.h (contents, props changed) user/andre/tcp-ao/sys/amd64/include/vmm_dev.h (contents, props changed) user/andre/tcp-ao/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) user/andre/tcp-ao/sys/amd64/include/vmparam.h user/andre/tcp-ao/sys/amd64/include/xen/hypercall.h user/andre/tcp-ao/sys/amd64/include/xen/xen-os.h user/andre/tcp-ao/sys/amd64/linux32/linux32_machdep.c user/andre/tcp-ao/sys/amd64/linux32/linux32_proto.h user/andre/tcp-ao/sys/amd64/linux32/linux32_syscall.h user/andre/tcp-ao/sys/amd64/linux32/linux32_syscalls.c user/andre/tcp-ao/sys/amd64/linux32/linux32_sysent.c user/andre/tcp-ao/sys/amd64/linux32/linux32_sysvec.c user/andre/tcp-ao/sys/amd64/vmm/amd/amdv.c user/andre/tcp-ao/sys/amd64/vmm/intel/ept.c user/andre/tcp-ao/sys/amd64/vmm/intel/ept.h user/andre/tcp-ao/sys/amd64/vmm/intel/vmcs.c user/andre/tcp-ao/sys/amd64/vmm/intel/vmcs.h user/andre/tcp-ao/sys/amd64/vmm/intel/vmx.c user/andre/tcp-ao/sys/amd64/vmm/intel/vmx.h user/andre/tcp-ao/sys/amd64/vmm/intel/vmx_controls.h user/andre/tcp-ao/sys/amd64/vmm/intel/vmx_genassym.c user/andre/tcp-ao/sys/amd64/vmm/intel/vmx_support.S user/andre/tcp-ao/sys/amd64/vmm/intel/vtd.c user/andre/tcp-ao/sys/amd64/vmm/io/ppt.c user/andre/tcp-ao/sys/amd64/vmm/io/ppt.h user/andre/tcp-ao/sys/amd64/vmm/io/vlapic.c user/andre/tcp-ao/sys/amd64/vmm/vmm.c user/andre/tcp-ao/sys/amd64/vmm/vmm_dev.c user/andre/tcp-ao/sys/amd64/vmm/vmm_instruction_emul.c user/andre/tcp-ao/sys/amd64/vmm/vmm_ktr.h user/andre/tcp-ao/sys/amd64/vmm/vmm_mem.c user/andre/tcp-ao/sys/amd64/vmm/vmm_mem.h user/andre/tcp-ao/sys/amd64/vmm/vmm_msr.c user/andre/tcp-ao/sys/amd64/vmm/vmm_stat.c user/andre/tcp-ao/sys/amd64/vmm/vmm_stat.h user/andre/tcp-ao/sys/amd64/vmm/x86.c user/andre/tcp-ao/sys/amd64/vmm/x86.h user/andre/tcp-ao/sys/arm/allwinner/a10_clk.c user/andre/tcp-ao/sys/arm/allwinner/a10_gpio.c user/andre/tcp-ao/sys/arm/allwinner/a10_machdep.c user/andre/tcp-ao/sys/arm/allwinner/a10_wdog.c user/andre/tcp-ao/sys/arm/allwinner/common.c user/andre/tcp-ao/sys/arm/allwinner/files.a10 user/andre/tcp-ao/sys/arm/allwinner/timer.c user/andre/tcp-ao/sys/arm/arm/bus_space_generic.c user/andre/tcp-ao/sys/arm/arm/busdma_machdep-v6.c user/andre/tcp-ao/sys/arm/arm/busdma_machdep.c user/andre/tcp-ao/sys/arm/arm/cpufunc.c user/andre/tcp-ao/sys/arm/arm/cpufunc_asm_armv7.S user/andre/tcp-ao/sys/arm/arm/cpufunc_asm_pj4b.S user/andre/tcp-ao/sys/arm/arm/cpufunc_asm_sheeva.S user/andre/tcp-ao/sys/arm/arm/db_trace.c user/andre/tcp-ao/sys/arm/arm/elf_trampoline.c user/andre/tcp-ao/sys/arm/arm/exception.S user/andre/tcp-ao/sys/arm/arm/fusu.S user/andre/tcp-ao/sys/arm/arm/genassym.c user/andre/tcp-ao/sys/arm/arm/gic.c user/andre/tcp-ao/sys/arm/arm/identcpu.c user/andre/tcp-ao/sys/arm/arm/irq_dispatch.S user/andre/tcp-ao/sys/arm/arm/locore.S user/andre/tcp-ao/sys/arm/arm/machdep.c user/andre/tcp-ao/sys/arm/arm/minidump_machdep.c user/andre/tcp-ao/sys/arm/arm/mp_machdep.c user/andre/tcp-ao/sys/arm/arm/mpcore_timer.c user/andre/tcp-ao/sys/arm/arm/nexus.c user/andre/tcp-ao/sys/arm/arm/pl310.c user/andre/tcp-ao/sys/arm/arm/pmap-v6.c user/andre/tcp-ao/sys/arm/arm/pmap.c user/andre/tcp-ao/sys/arm/arm/stack_machdep.c user/andre/tcp-ao/sys/arm/arm/swtch.S user/andre/tcp-ao/sys/arm/arm/sys_machdep.c user/andre/tcp-ao/sys/arm/arm/trap.c user/andre/tcp-ao/sys/arm/arm/undefined.c user/andre/tcp-ao/sys/arm/arm/vfp.c user/andre/tcp-ao/sys/arm/arm/vm_machdep.c user/andre/tcp-ao/sys/arm/at91/at91.c user/andre/tcp-ao/sys/arm/at91/at91_mci.c user/andre/tcp-ao/sys/arm/at91/at91_pio.c user/andre/tcp-ao/sys/arm/at91/at91_piovar.h user/andre/tcp-ao/sys/arm/at91/at91_pmc.c user/andre/tcp-ao/sys/arm/at91/if_ate.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_dma.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_fb.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_gpio.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_machdep.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_mbox.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_mbox.h user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_systimer.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/bcm2835_wdog.c user/andre/tcp-ao/sys/arm/broadcom/bcm2835/files.bcm2835 user/andre/tcp-ao/sys/arm/conf/AC100 user/andre/tcp-ao/sys/arm/conf/ARMADAXP user/andre/tcp-ao/sys/arm/conf/ATMEL user/andre/tcp-ao/sys/arm/conf/AVILA user/andre/tcp-ao/sys/arm/conf/BEAGLEBONE user/andre/tcp-ao/sys/arm/conf/CAMBRIA user/andre/tcp-ao/sys/arm/conf/CRB user/andre/tcp-ao/sys/arm/conf/CUBIEBOARD user/andre/tcp-ao/sys/arm/conf/EFIKA_MX user/andre/tcp-ao/sys/arm/conf/EP80219 user/andre/tcp-ao/sys/arm/conf/IQ31244 user/andre/tcp-ao/sys/arm/conf/PANDABOARD user/andre/tcp-ao/sys/arm/conf/RPI-B user/andre/tcp-ao/sys/arm/conf/TS7800 user/andre/tcp-ao/sys/arm/conf/VERSATILEPB user/andre/tcp-ao/sys/arm/econa/econa.c user/andre/tcp-ao/sys/arm/econa/if_ece.c user/andre/tcp-ao/sys/arm/econa/timer.c user/andre/tcp-ao/sys/arm/freescale/imx/bus_space.c user/andre/tcp-ao/sys/arm/freescale/imx/common.c user/andre/tcp-ao/sys/arm/freescale/imx/console.c user/andre/tcp-ao/sys/arm/freescale/imx/i2c.c user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ccm.c user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ccmreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ccmvar.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_dpllreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_gpio.c user/andre/tcp-ao/sys/arm/freescale/imx/imx51_iomux.c user/andre/tcp-ao/sys/arm/freescale/imx/imx51_iomuxreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_iomuxvar.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ipuv3.c user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ipuv3reg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_sdmareg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_ssireg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx51_tzicreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx_gpt.c user/andre/tcp-ao/sys/arm/freescale/imx/imx_gptreg.h user/andre/tcp-ao/sys/arm/freescale/imx/imx_gptvar.h user/andre/tcp-ao/sys/arm/freescale/imx/imx_wdog.c user/andre/tcp-ao/sys/arm/freescale/imx/imx_wdogreg.h user/andre/tcp-ao/sys/arm/freescale/imx/tzic.c user/andre/tcp-ao/sys/arm/include/armreg.h user/andre/tcp-ao/sys/arm/include/asm.h user/andre/tcp-ao/sys/arm/include/asmacros.h user/andre/tcp-ao/sys/arm/include/atomic.h user/andre/tcp-ao/sys/arm/include/cpu.h user/andre/tcp-ao/sys/arm/include/cpufunc.h user/andre/tcp-ao/sys/arm/include/fdt.h user/andre/tcp-ao/sys/arm/include/fp.h user/andre/tcp-ao/sys/arm/include/frame.h user/andre/tcp-ao/sys/arm/include/ieee.h user/andre/tcp-ao/sys/arm/include/intr.h user/andre/tcp-ao/sys/arm/include/kdb.h user/andre/tcp-ao/sys/arm/include/param.h user/andre/tcp-ao/sys/arm/include/pcb.h user/andre/tcp-ao/sys/arm/include/pcpu.h user/andre/tcp-ao/sys/arm/include/pmap.h user/andre/tcp-ao/sys/arm/include/pte.h user/andre/tcp-ao/sys/arm/include/setjmp.h user/andre/tcp-ao/sys/arm/include/sf_buf.h user/andre/tcp-ao/sys/arm/include/smp.h user/andre/tcp-ao/sys/arm/include/sysarch.h user/andre/tcp-ao/sys/arm/include/undefined.h user/andre/tcp-ao/sys/arm/include/vfp.h user/andre/tcp-ao/sys/arm/include/vmparam.h user/andre/tcp-ao/sys/arm/lpc/if_lpe.c user/andre/tcp-ao/sys/arm/lpc/lpc_fb.c user/andre/tcp-ao/sys/arm/lpc/lpc_gpio.c user/andre/tcp-ao/sys/arm/lpc/lpc_machdep.c user/andre/tcp-ao/sys/arm/lpc/lpc_mmc.c user/andre/tcp-ao/sys/arm/lpc/lpc_spi.c user/andre/tcp-ao/sys/arm/lpc/lpc_timer.c user/andre/tcp-ao/sys/arm/mv/armadaxp/armadaxp.c user/andre/tcp-ao/sys/arm/mv/armadaxp/armadaxp_mp.c user/andre/tcp-ao/sys/arm/mv/armadaxp/std.armadaxp user/andre/tcp-ao/sys/arm/mv/common.c user/andre/tcp-ao/sys/arm/mv/gpio.c user/andre/tcp-ao/sys/arm/mv/mv_localbus.c user/andre/tcp-ao/sys/arm/mv/mv_machdep.c user/andre/tcp-ao/sys/arm/mv/mv_sata.c user/andre/tcp-ao/sys/arm/mv/mvreg.h user/andre/tcp-ao/sys/arm/mv/mvvar.h user/andre/tcp-ao/sys/arm/mv/mvwin.h user/andre/tcp-ao/sys/arm/mv/orion/db88f5xxx.c user/andre/tcp-ao/sys/arm/mv/timer.c user/andre/tcp-ao/sys/arm/s3c2xx0/s3c24x0.c user/andre/tcp-ao/sys/arm/s3c2xx0/s3c2xx0_space.c user/andre/tcp-ao/sys/arm/s3c2xx0/uart_bus_s3c2410.c user/andre/tcp-ao/sys/arm/s3c2xx0/uart_cpu_s3c2410.c user/andre/tcp-ao/sys/arm/sa11x0/sa11x0.c user/andre/tcp-ao/sys/arm/sa11x0/sa11x0_io.c user/andre/tcp-ao/sys/arm/tegra/tegra2_machdep.c user/andre/tcp-ao/sys/arm/ti/aintc.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_dmtimer.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_pmic.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_prcm.c user/andre/tcp-ao/sys/arm/ti/am335x/am335x_scm_padconf.c user/andre/tcp-ao/sys/arm/ti/am335x/files.am335x user/andre/tcp-ao/sys/arm/ti/cpsw/if_cpsw.c user/andre/tcp-ao/sys/arm/ti/files.ti user/andre/tcp-ao/sys/arm/ti/omap4/omap4_prcm_clks.c user/andre/tcp-ao/sys/arm/ti/omap4/omap4_scm_padconf.c user/andre/tcp-ao/sys/arm/ti/omap4/pandaboard/pandaboard.c user/andre/tcp-ao/sys/arm/ti/ti_cpuid.c user/andre/tcp-ao/sys/arm/ti/ti_machdep.c user/andre/tcp-ao/sys/arm/ti/ti_mmchs.c user/andre/tcp-ao/sys/arm/ti/ti_mmchs.h user/andre/tcp-ao/sys/arm/ti/ti_prcm.c user/andre/tcp-ao/sys/arm/ti/ti_prcm.h user/andre/tcp-ao/sys/arm/ti/ti_scm.c user/andre/tcp-ao/sys/arm/ti/twl/twl.c user/andre/tcp-ao/sys/arm/ti/twl/twl_clks.c user/andre/tcp-ao/sys/arm/ti/twl/twl_vreg.c user/andre/tcp-ao/sys/arm/versatile/if_smc_fdt.c user/andre/tcp-ao/sys/arm/versatile/pl050.c user/andre/tcp-ao/sys/arm/versatile/sp804.c user/andre/tcp-ao/sys/arm/versatile/versatile_clcd.c user/andre/tcp-ao/sys/arm/versatile/versatile_machdep.c user/andre/tcp-ao/sys/arm/versatile/versatile_pci.c user/andre/tcp-ao/sys/arm/versatile/versatile_sic.c user/andre/tcp-ao/sys/arm/versatile/versatile_timer.c user/andre/tcp-ao/sys/arm/xscale/i80321/ep80219_machdep.c user/andre/tcp-ao/sys/arm/xscale/i80321/i80321_pci.c user/andre/tcp-ao/sys/arm/xscale/i80321/i80321_space.c user/andre/tcp-ao/sys/arm/xscale/i80321/iq31244_machdep.c user/andre/tcp-ao/sys/arm/xscale/i80321/iq80321.c user/andre/tcp-ao/sys/arm/xscale/i8134x/crb_machdep.c user/andre/tcp-ao/sys/arm/xscale/i8134x/i81342_pci.c user/andre/tcp-ao/sys/arm/xscale/i8134x/i81342_space.c user/andre/tcp-ao/sys/arm/xscale/ixp425/avila_gpio.c user/andre/tcp-ao/sys/arm/xscale/ixp425/avila_machdep.c user/andre/tcp-ao/sys/arm/xscale/ixp425/cambria_gpio.c user/andre/tcp-ao/sys/arm/xscale/ixp425/if_npe.c user/andre/tcp-ao/sys/arm/xscale/ixp425/ixp425_mem.c user/andre/tcp-ao/sys/arm/xscale/ixp425/ixp425_npe.c user/andre/tcp-ao/sys/arm/xscale/ixp425/ixp425_pci.c user/andre/tcp-ao/sys/arm/xscale/ixp425/ixp425_pci_space.c user/andre/tcp-ao/sys/arm/xscale/ixp425/ixp425_wdog.c user/andre/tcp-ao/sys/arm/xscale/pxa/if_smc_smi.c user/andre/tcp-ao/sys/arm/xscale/pxa/pxa_machdep.c user/andre/tcp-ao/sys/arm/xscale/pxa/pxa_obio.c user/andre/tcp-ao/sys/boot/arm/at91/Makefile.inc user/andre/tcp-ao/sys/boot/arm/at91/boot2/Makefile user/andre/tcp-ao/sys/boot/arm/ixp425/Makefile.inc user/andre/tcp-ao/sys/boot/arm/ixp425/boot2/Makefile user/andre/tcp-ao/sys/boot/arm/uboot/Makefile user/andre/tcp-ao/sys/boot/common/loader.8 user/andre/tcp-ao/sys/boot/common/module.c user/andre/tcp-ao/sys/boot/common/part.c user/andre/tcp-ao/sys/boot/common/util.c user/andre/tcp-ao/sys/boot/fdt/dts/beaglebone.dts user/andre/tcp-ao/sys/boot/fdt/dts/db78460.dts user/andre/tcp-ao/sys/boot/fdt/dts/efikamx.dts user/andre/tcp-ao/sys/boot/fdt/dts/imx51x.dtsi user/andre/tcp-ao/sys/boot/fdt/dts/pandaboard.dts user/andre/tcp-ao/sys/boot/ficl/arm/sysdep.h user/andre/tcp-ao/sys/boot/ficl/loader.c user/andre/tcp-ao/sys/boot/ficl/tools.c user/andre/tcp-ao/sys/boot/forth/beastie.4th user/andre/tcp-ao/sys/boot/forth/color.4th user/andre/tcp-ao/sys/boot/forth/color.4th.8 user/andre/tcp-ao/sys/boot/forth/loader.conf user/andre/tcp-ao/sys/boot/forth/loader.conf.5 user/andre/tcp-ao/sys/boot/forth/loader.rc user/andre/tcp-ao/sys/boot/forth/menu.4th user/andre/tcp-ao/sys/boot/forth/menu.4th.8 user/andre/tcp-ao/sys/boot/forth/menu.rc user/andre/tcp-ao/sys/boot/forth/version.4th user/andre/tcp-ao/sys/boot/forth/version.4th.8 user/andre/tcp-ao/sys/boot/i386/btx/btx/btx.S user/andre/tcp-ao/sys/boot/i386/efi/Makefile user/andre/tcp-ao/sys/boot/i386/gptboot/Makefile user/andre/tcp-ao/sys/boot/i386/libi386/Makefile user/andre/tcp-ao/sys/boot/i386/libi386/biosacpi.c user/andre/tcp-ao/sys/boot/i386/libi386/smbios.c user/andre/tcp-ao/sys/boot/pc98/boot2/boot2.c user/andre/tcp-ao/sys/boot/pc98/btx/btx/btx.S user/andre/tcp-ao/sys/boot/pc98/libpc98/biosdisk.c user/andre/tcp-ao/sys/boot/pc98/libpc98/comconsole.c user/andre/tcp-ao/sys/boot/powerpc/boot1.chrp/Makefile user/andre/tcp-ao/sys/boot/powerpc/ps3/start.S user/andre/tcp-ao/sys/boot/sparc64/loader/main.c user/andre/tcp-ao/sys/boot/uboot/lib/disk.c user/andre/tcp-ao/sys/boot/uboot/lib/glue.c user/andre/tcp-ao/sys/boot/userboot/libstand/Makefile user/andre/tcp-ao/sys/boot/userboot/test/Makefile user/andre/tcp-ao/sys/boot/userboot/userboot/Makefile user/andre/tcp-ao/sys/bsm/audit_kevents.h user/andre/tcp-ao/sys/bsm/audit_record.h user/andre/tcp-ao/sys/cam/ata/ata_all.c user/andre/tcp-ao/sys/cam/ata/ata_all.h user/andre/tcp-ao/sys/cam/ata/ata_da.c user/andre/tcp-ao/sys/cam/ata/ata_pmp.c user/andre/tcp-ao/sys/cam/ata/ata_xpt.c user/andre/tcp-ao/sys/cam/cam.h user/andre/tcp-ao/sys/cam/cam_ccb.h user/andre/tcp-ao/sys/cam/cam_debug.h user/andre/tcp-ao/sys/cam/cam_periph.c user/andre/tcp-ao/sys/cam/cam_periph.h user/andre/tcp-ao/sys/cam/cam_queue.c user/andre/tcp-ao/sys/cam/cam_queue.h user/andre/tcp-ao/sys/cam/cam_sim.c user/andre/tcp-ao/sys/cam/cam_sim.h user/andre/tcp-ao/sys/cam/cam_xpt.c user/andre/tcp-ao/sys/cam/cam_xpt.h user/andre/tcp-ao/sys/cam/cam_xpt_internal.h user/andre/tcp-ao/sys/cam/cam_xpt_periph.h user/andre/tcp-ao/sys/cam/cam_xpt_sim.h user/andre/tcp-ao/sys/cam/ctl/ctl.c user/andre/tcp-ao/sys/cam/ctl/ctl.h user/andre/tcp-ao/sys/cam/ctl/ctl_backend.c user/andre/tcp-ao/sys/cam/ctl/ctl_backend.h user/andre/tcp-ao/sys/cam/ctl/ctl_backend_block.c user/andre/tcp-ao/sys/cam/ctl/ctl_backend_ramdisk.c user/andre/tcp-ao/sys/cam/ctl/ctl_frontend.h user/andre/tcp-ao/sys/cam/ctl/ctl_frontend_cam_sim.c user/andre/tcp-ao/sys/cam/ctl/ctl_frontend_internal.c user/andre/tcp-ao/sys/cam/ctl/ctl_io.h user/andre/tcp-ao/sys/cam/ctl/ctl_ioctl.h user/andre/tcp-ao/sys/cam/ctl/scsi_ctl.c user/andre/tcp-ao/sys/cam/scsi/scsi_all.c user/andre/tcp-ao/sys/cam/scsi/scsi_all.h user/andre/tcp-ao/sys/cam/scsi/scsi_cd.c user/andre/tcp-ao/sys/cam/scsi/scsi_ch.c user/andre/tcp-ao/sys/cam/scsi/scsi_ch.h user/andre/tcp-ao/sys/cam/scsi/scsi_da.c user/andre/tcp-ao/sys/cam/scsi/scsi_da.h user/andre/tcp-ao/sys/cam/scsi/scsi_enc.c user/andre/tcp-ao/sys/cam/scsi/scsi_enc_internal.h user/andre/tcp-ao/sys/cam/scsi/scsi_enc_safte.c user/andre/tcp-ao/sys/cam/scsi/scsi_enc_ses.c user/andre/tcp-ao/sys/cam/scsi/scsi_pass.c user/andre/tcp-ao/sys/cam/scsi/scsi_pt.c user/andre/tcp-ao/sys/cam/scsi/scsi_sa.c user/andre/tcp-ao/sys/cam/scsi/scsi_sg.c user/andre/tcp-ao/sys/cam/scsi/scsi_targ_bh.c user/andre/tcp-ao/sys/cam/scsi/scsi_target.c user/andre/tcp-ao/sys/cam/scsi/scsi_xpt.c user/andre/tcp-ao/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c user/andre/tcp-ao/sys/cddl/compat/opensolaris/kern/opensolaris_kmem.c user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/file.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/kcondvar.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/kmem.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/mutex.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/rwlock.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/sdt.h user/andre/tcp-ao/sys/cddl/compat/opensolaris/sys/time.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/dtrace/fasttrap.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_diff.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_object.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_zfetch.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_destroy.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_prop.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_userhold.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lzjb.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_errlog.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_send.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_destroy.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_userhold.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/unique.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_disk.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap_leaf.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_rlock.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_compress.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zvol.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/uberblock.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_queue.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_leaf.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_log.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_onexit.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_sa.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_checksum.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_compress.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio_inject.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace_impl.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/sys/fm/fs/zfs.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/intel/dtrace/fasttrap_isa.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/powerpc/dtrace/fasttrap_isa.c user/andre/tcp-ao/sys/cddl/contrib/opensolaris/uts/powerpc/sys/fasttrap_isa.h user/andre/tcp-ao/sys/cddl/dev/dtmalloc/dtmalloc.c user/andre/tcp-ao/sys/cddl/dev/dtrace/amd64/dis_tables.c user/andre/tcp-ao/sys/cddl/dev/dtrace/amd64/dis_tables.h user/andre/tcp-ao/sys/cddl/dev/dtrace/amd64/dtrace_isa.c user/andre/tcp-ao/sys/cddl/dev/dtrace/amd64/dtrace_subr.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_clone.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_ioctl.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_load.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_sysctl.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_test.c user/andre/tcp-ao/sys/cddl/dev/dtrace/dtrace_unload.c user/andre/tcp-ao/sys/cddl/dev/dtrace/i386/dis_tables.c user/andre/tcp-ao/sys/cddl/dev/dtrace/i386/dis_tables.h user/andre/tcp-ao/sys/cddl/dev/dtrace/powerpc/dtrace_asm.S user/andre/tcp-ao/sys/cddl/dev/dtrace/powerpc/dtrace_isa.c user/andre/tcp-ao/sys/cddl/dev/dtrace/powerpc/dtrace_subr.c user/andre/tcp-ao/sys/cddl/dev/fbt/fbt.c user/andre/tcp-ao/sys/cddl/dev/fbt/fbt_powerpc.c user/andre/tcp-ao/sys/cddl/dev/sdt/sdt.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32.h user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_ioctl.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_misc.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_proto.h user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_signal.h user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_syscall.h user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_syscalls.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_sysent.c user/andre/tcp-ao/sys/compat/freebsd32/freebsd32_systrace_args.c user/andre/tcp-ao/sys/compat/freebsd32/syscalls.master user/andre/tcp-ao/sys/compat/linprocfs/linprocfs.c user/andre/tcp-ao/sys/compat/linsysfs/linsysfs.c user/andre/tcp-ao/sys/compat/linux/linux_dtrace.h user/andre/tcp-ao/sys/compat/linux/linux_file.c user/andre/tcp-ao/sys/compat/linux/linux_futex.c user/andre/tcp-ao/sys/compat/linux/linux_ioctl.c user/andre/tcp-ao/sys/compat/linux/linux_ioctl.h user/andre/tcp-ao/sys/compat/linux/linux_misc.c user/andre/tcp-ao/sys/compat/linux/linux_socket.c user/andre/tcp-ao/sys/compat/linux/linux_uid16.c user/andre/tcp-ao/sys/compat/ndis/kern_ndis.c user/andre/tcp-ao/sys/compat/ndis/ndis_var.h user/andre/tcp-ao/sys/compat/ndis/subr_ndis.c user/andre/tcp-ao/sys/compat/ndis/subr_ntoskrnl.c user/andre/tcp-ao/sys/compat/ndis/subr_usbd.c user/andre/tcp-ao/sys/compat/svr4/imgact_svr4.c user/andre/tcp-ao/sys/compat/svr4/svr4_fcntl.c user/andre/tcp-ao/sys/compat/svr4/svr4_filio.c user/andre/tcp-ao/sys/compat/svr4/svr4_ioctl.c user/andre/tcp-ao/sys/compat/svr4/svr4_misc.c user/andre/tcp-ao/sys/compat/svr4/svr4_sockio.c user/andre/tcp-ao/sys/compat/svr4/svr4_stream.c user/andre/tcp-ao/sys/conf/Makefile.amd64 user/andre/tcp-ao/sys/conf/Makefile.arm user/andre/tcp-ao/sys/conf/Makefile.i386 user/andre/tcp-ao/sys/conf/NOTES user/andre/tcp-ao/sys/conf/WITHOUT_SOURCELESS_HOST user/andre/tcp-ao/sys/conf/WITHOUT_SOURCELESS_UCODE user/andre/tcp-ao/sys/conf/files user/andre/tcp-ao/sys/conf/files.amd64 user/andre/tcp-ao/sys/conf/files.arm user/andre/tcp-ao/sys/conf/files.i386 user/andre/tcp-ao/sys/conf/files.ia64 user/andre/tcp-ao/sys/conf/files.mips user/andre/tcp-ao/sys/conf/files.pc98 user/andre/tcp-ao/sys/conf/files.powerpc user/andre/tcp-ao/sys/conf/files.sparc64 user/andre/tcp-ao/sys/conf/kern.mk user/andre/tcp-ao/sys/conf/kern.post.mk user/andre/tcp-ao/sys/conf/kern.pre.mk user/andre/tcp-ao/sys/conf/kmod.mk user/andre/tcp-ao/sys/conf/makeLINT.mk user/andre/tcp-ao/sys/conf/newvers.sh user/andre/tcp-ao/sys/conf/options user/andre/tcp-ao/sys/conf/options.amd64 user/andre/tcp-ao/sys/conf/options.arm user/andre/tcp-ao/sys/conf/options.i386 user/andre/tcp-ao/sys/conf/options.mips user/andre/tcp-ao/sys/conf/options.powerpc user/andre/tcp-ao/sys/contrib/altq/altq/altq_cbq.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_cdnr.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_hfsc.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_priq.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_red.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_rio.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_rmclass.c user/andre/tcp-ao/sys/contrib/altq/altq/altq_subr.c user/andre/tcp-ao/sys/contrib/dev/acpica/acpica_prep.sh user/andre/tcp-ao/sys/contrib/dev/acpica/changes.txt (contents, props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/common/adisasm.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/adwalk.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/ahpredef.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/dmextern.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/dmrestag.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/dmtable.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/dmtbdump.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/dmtbinfo.c user/andre/tcp-ao/sys/contrib/dev/acpica/common/getopt.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslanalyze.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslbtypes.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslcodegen.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslcompile.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslcompiler.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asldefine.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslerror.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslfiles.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslfold.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslglobal.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslhex.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asllength.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asllisting.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslload.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asllookup.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslmain.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslmessages.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslmethod.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslnamesp.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslopcodes.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asloperands.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslpredef.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslprepkg.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslresource.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslrestype1i.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslrestype2s.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslstartup.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslsupport.l user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asltransform.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asltree.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/asltypes.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslwalks.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/aslxref.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtcompile.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtexpress.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtfield.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtio.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtsubtable.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dttable.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dttemplate.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dttemplate.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/dtutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/preprocess.h user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/prscan.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbcmds.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbconvert.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbdisply.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbexec.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbfileio.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbhistry.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbinput.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbmethod.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbnames.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbstats.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/dbxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmnames.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmobject.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmopcode.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmresrc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/dmwalk.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsfield.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsinit.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsobject.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dsutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dswexec.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dswload.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/dswload2.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evevent.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evglock.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evgpe.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evgpeblk.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evgpeinit.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evgpeutil.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evhandler.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evmisc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evregion.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evrgnini.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evsci.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evxfgpe.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/evxfregn.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exconfig.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exconvrt.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/excreate.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exdebug.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exdump.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exfield.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exfldio.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exmisc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exnames.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exoparg1.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exoparg2.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exoparg3.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exoparg6.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exprep.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exregion.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exresnte.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exresolv.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exresop.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exstore.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/exstoren.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwacpi.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwgpe.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwregs.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwtimer.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsaccess.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsconvert.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsdump.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nseval.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsinit.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nspredef.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsprepkg.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsrepair.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsrepair2.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nswalk.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsxfeval.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/nsxfname.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/psargs.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/psloop.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/psobject.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/psparse.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/pstree.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/psxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rscalc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rscreate.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rsdump.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rsmisc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rsutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/rsxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbfadt.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbinstal.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbutils.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbxfload.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/tbxfroot.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utcopy.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utdebug.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utdelete.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/uteval.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utexcep.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utglobal.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utids.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utmisc.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utmutex.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utobject.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utosi.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utstring.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/uttrack.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utxface.c user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/utxferror.c user/andre/tcp-ao/sys/contrib/dev/acpica/include/acapps.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acconfig.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acdebug.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acdisasm.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acevents.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acexcep.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acglobal.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/aclocal.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acmacros.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acnamesp.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acoutput.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acpiosxf.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acpixf.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acpredef.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acstruct.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/actables.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/actypes.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/acutils.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/platform/acenv.h user/andre/tcp-ao/sys/contrib/dev/acpica/include/platform/acfreebsd.h user/andre/tcp-ao/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c user/andre/tcp-ao/sys/contrib/dev/run/rt2870.fw.uu user/andre/tcp-ao/sys/contrib/ipfilter/netinet/fil.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_auth.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_auth.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_compat.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_fil.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c (contents, props changed) user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_frag.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_frag.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_ftp_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_htable.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_htable.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_ipsec_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_irc_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_log.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_lookup.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_lookup.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_nat.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_nat.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_netbios_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_pool.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_pool.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_pptp_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_proxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_proxy.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_raudio_pxy.c (contents, props changed) user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_rcmd_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_rpcb_pxy.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_rules.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_scan.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_scan.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_state.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_state.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_sync.c user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ip_sync.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/ipl.h user/andre/tcp-ao/sys/contrib/ipfilter/netinet/mlfk_ipl.c user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-app-init.h user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-helper-board.c user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-helper-sgmii.c user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-mgmt-port.c user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-mgmt-port.h user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-pcie.c user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-rtc.h user/andre/tcp-ao/sys/contrib/octeon-sdk/cvmx-usbd.c user/andre/tcp-ao/sys/contrib/rdma/krping/getopt.c user/andre/tcp-ao/sys/contrib/rdma/krping/krping.c user/andre/tcp-ao/sys/contrib/rdma/krping/krping.h user/andre/tcp-ao/sys/contrib/rdma/krping/krping_dev.c user/andre/tcp-ao/sys/crypto/aesni/aeskeys_amd64.S user/andre/tcp-ao/sys/crypto/aesni/aesni.c user/andre/tcp-ao/sys/crypto/aesni/aesni.h user/andre/tcp-ao/sys/crypto/aesni/aesni_wrap.c user/andre/tcp-ao/sys/crypto/sha2/sha2.c user/andre/tcp-ao/sys/crypto/sha2/sha2.h user/andre/tcp-ao/sys/dev/aac/aac.c user/andre/tcp-ao/sys/dev/aac/aac_cam.c user/andre/tcp-ao/sys/dev/aac/aac_disk.c user/andre/tcp-ao/sys/dev/aac/aac_linux.c user/andre/tcp-ao/sys/dev/aac/aac_pci.c user/andre/tcp-ao/sys/dev/aac/aacvar.h user/andre/tcp-ao/sys/dev/acpi_support/acpi_hp.c user/andre/tcp-ao/sys/dev/acpi_support/acpi_toshiba.c user/andre/tcp-ao/sys/dev/acpi_support/atk0110.c user/andre/tcp-ao/sys/dev/acpica/Osd/OsdSynch.c user/andre/tcp-ao/sys/dev/acpica/Osd/OsdTable.c user/andre/tcp-ao/sys/dev/acpica/acpi.c user/andre/tcp-ao/sys/dev/acpica/acpi_pci.c user/andre/tcp-ao/sys/dev/acpica/acpi_pci_link.c user/andre/tcp-ao/sys/dev/acpica/acpi_pcib.c user/andre/tcp-ao/sys/dev/acpica/acpi_pcib_acpi.c user/andre/tcp-ao/sys/dev/acpica/acpi_resource.c user/andre/tcp-ao/sys/dev/acpica/acpi_thermal.c user/andre/tcp-ao/sys/dev/acpica/acpi_timer.c user/andre/tcp-ao/sys/dev/adb/adb_kbd.c user/andre/tcp-ao/sys/dev/adb/adb_mouse.c user/andre/tcp-ao/sys/dev/advansys/adw_pci.c user/andre/tcp-ao/sys/dev/ae/if_ae.c user/andre/tcp-ao/sys/dev/ae/if_aereg.h user/andre/tcp-ao/sys/dev/age/if_age.c user/andre/tcp-ao/sys/dev/agp/agp.c user/andre/tcp-ao/sys/dev/agp/agp_i810.c user/andre/tcp-ao/sys/dev/aha/aha.c user/andre/tcp-ao/sys/dev/ahci/ahci.c user/andre/tcp-ao/sys/dev/ahci/ahci.h user/andre/tcp-ao/sys/dev/ahci/ahciem.c user/andre/tcp-ao/sys/dev/aic7xxx/ahc_isa.c user/andre/tcp-ao/sys/dev/aic7xxx/ahc_pci.c user/andre/tcp-ao/sys/dev/aic7xxx/ahd_pci.c user/andre/tcp-ao/sys/dev/aic7xxx/aic79xx.c user/andre/tcp-ao/sys/dev/aic7xxx/aic7xxx.c user/andre/tcp-ao/sys/dev/aic7xxx/aic7xxx.h user/andre/tcp-ao/sys/dev/aic7xxx/aic7xxx_pci.c user/andre/tcp-ao/sys/dev/alc/if_alc.c user/andre/tcp-ao/sys/dev/ale/if_ale.c user/andre/tcp-ao/sys/dev/altera/avgen/altera_avgen_nexus.c user/andre/tcp-ao/sys/dev/altera/jtag_uart/altera_jtag_uart.h user/andre/tcp-ao/sys/dev/altera/jtag_uart/altera_jtag_uart_nexus.c user/andre/tcp-ao/sys/dev/altera/sdcard/altera_sdcard.c user/andre/tcp-ao/sys/dev/altera/sdcard/altera_sdcard_io.c user/andre/tcp-ao/sys/dev/altera/sdcard/altera_sdcard_nexus.c user/andre/tcp-ao/sys/dev/amdtemp/amdtemp.c user/andre/tcp-ao/sys/dev/amr/amr_linux.c user/andre/tcp-ao/sys/dev/amr/amr_pci.c user/andre/tcp-ao/sys/dev/an/if_an.c user/andre/tcp-ao/sys/dev/an/if_an_pci.c user/andre/tcp-ao/sys/dev/arcmsr/arcmsr.c user/andre/tcp-ao/sys/dev/arcmsr/arcmsr.h user/andre/tcp-ao/sys/dev/asr/asr.c user/andre/tcp-ao/sys/dev/ata/ata-all.c user/andre/tcp-ao/sys/dev/ata/ata-all.h user/andre/tcp-ao/sys/dev/ata/ata-card.c user/andre/tcp-ao/sys/dev/ata/ata-cbus.c user/andre/tcp-ao/sys/dev/ata/ata-dma.c user/andre/tcp-ao/sys/dev/ata/ata-isa.c user/andre/tcp-ao/sys/dev/ata/ata-lowlevel.c user/andre/tcp-ao/sys/dev/ata/ata-pci.c user/andre/tcp-ao/sys/dev/ata/ata-pci.h user/andre/tcp-ao/sys/dev/ata/ata-sata.c user/andre/tcp-ao/sys/dev/ata/ata_if.m user/andre/tcp-ao/sys/dev/ata/chipsets/ata-acard.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-acerlabs.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-adaptec.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-ahci.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-amd.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-ati.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-cenatek.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-cypress.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-cyrix.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-fsl.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-highpoint.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-intel.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-ite.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-jmicron.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-marvell.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-micron.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-national.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-netcell.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-nvidia.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-promise.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-serverworks.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-siliconimage.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-sis.c user/andre/tcp-ao/sys/dev/ata/chipsets/ata-via.c user/andre/tcp-ao/sys/dev/ath/ath_dfs/null/dfs_null.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ah.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ah.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ah_debug.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ah_desc.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ah_devid.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ah_internal.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5212/ar5212.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416desc.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar5416/ar5416reg.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9285_reset.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c user/andre/tcp-ao/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h user/andre/tcp-ao/sys/dev/ath/ath_rate/sample/sample.c user/andre/tcp-ao/sys/dev/ath/if_ath.c user/andre/tcp-ao/sys/dev/ath/if_ath_ahb.c user/andre/tcp-ao/sys/dev/ath/if_ath_alq.c user/andre/tcp-ao/sys/dev/ath/if_ath_alq.h user/andre/tcp-ao/sys/dev/ath/if_ath_beacon.c user/andre/tcp-ao/sys/dev/ath/if_ath_debug.h user/andre/tcp-ao/sys/dev/ath/if_ath_keycache.c user/andre/tcp-ao/sys/dev/ath/if_ath_misc.h user/andre/tcp-ao/sys/dev/ath/if_ath_pci.c user/andre/tcp-ao/sys/dev/ath/if_ath_rx.c user/andre/tcp-ao/sys/dev/ath/if_ath_rx.h user/andre/tcp-ao/sys/dev/ath/if_ath_rx_edma.c user/andre/tcp-ao/sys/dev/ath/if_ath_spectral.c user/andre/tcp-ao/sys/dev/ath/if_ath_sysctl.c user/andre/tcp-ao/sys/dev/ath/if_ath_tdma.c user/andre/tcp-ao/sys/dev/ath/if_ath_tx.c user/andre/tcp-ao/sys/dev/ath/if_ath_tx.h user/andre/tcp-ao/sys/dev/ath/if_ath_tx_edma.c user/andre/tcp-ao/sys/dev/ath/if_ath_tx_ht.c user/andre/tcp-ao/sys/dev/ath/if_ath_tx_ht.h user/andre/tcp-ao/sys/dev/ath/if_athioctl.h user/andre/tcp-ao/sys/dev/ath/if_athrate.h user/andre/tcp-ao/sys/dev/ath/if_athvar.h user/andre/tcp-ao/sys/dev/atkbdc/psm.c user/andre/tcp-ao/sys/dev/bce/if_bce.c user/andre/tcp-ao/sys/dev/bce/if_bcefw.h user/andre/tcp-ao/sys/dev/bce/if_bcereg.h user/andre/tcp-ao/sys/dev/bfe/if_bfe.c user/andre/tcp-ao/sys/dev/bge/if_bge.c user/andre/tcp-ao/sys/dev/bge/if_bgereg.h user/andre/tcp-ao/sys/dev/bktr/CHANGELOG.TXT user/andre/tcp-ao/sys/dev/bktr/bktr_core.c user/andre/tcp-ao/sys/dev/bktr/bktr_os.c user/andre/tcp-ao/sys/dev/bktr/msp34xx.c user/andre/tcp-ao/sys/dev/bm/if_bm.c user/andre/tcp-ao/sys/dev/buslogic/bt.c user/andre/tcp-ao/sys/dev/buslogic/bt_pci.c user/andre/tcp-ao/sys/dev/bwi/bwimac.c user/andre/tcp-ao/sys/dev/bwi/bwiphy.c user/andre/tcp-ao/sys/dev/bwi/bwirf.c user/andre/tcp-ao/sys/dev/bwi/if_bwi.c user/andre/tcp-ao/sys/dev/bwi/if_bwi_pci.c user/andre/tcp-ao/sys/dev/bwn/if_bwn.c user/andre/tcp-ao/sys/dev/cas/if_cas.c user/andre/tcp-ao/sys/dev/cas/if_casvar.h user/andre/tcp-ao/sys/dev/ce/if_ce.c user/andre/tcp-ao/sys/dev/cesa/cesa.c user/andre/tcp-ao/sys/dev/cesa/cesa.h user/andre/tcp-ao/sys/dev/cfe/cfe_resource.c user/andre/tcp-ao/sys/dev/cfi/cfi_bus_fdt.c user/andre/tcp-ao/sys/dev/cfi/cfi_core.c user/andre/tcp-ao/sys/dev/cfi/cfi_dev.c user/andre/tcp-ao/sys/dev/cfi/cfi_disk.c user/andre/tcp-ao/sys/dev/cfi/cfi_reg.h user/andre/tcp-ao/sys/dev/cfi/cfi_var.h user/andre/tcp-ao/sys/dev/ciss/ciss.c user/andre/tcp-ao/sys/dev/cm/if_cm_isa.c user/andre/tcp-ao/sys/dev/cm/smc90cx6.c user/andre/tcp-ao/sys/dev/cp/if_cp.c user/andre/tcp-ao/sys/dev/cpuctl/cpuctl.c user/andre/tcp-ao/sys/dev/cs/if_cs.c user/andre/tcp-ao/sys/dev/cs/if_cs_isa.c user/andre/tcp-ao/sys/dev/cs/if_cs_pccard.c user/andre/tcp-ao/sys/dev/cs/if_csvar.h user/andre/tcp-ao/sys/dev/ctau/if_ct.c user/andre/tcp-ao/sys/dev/cx/csigma.c user/andre/tcp-ao/sys/dev/cx/if_cx.c user/andre/tcp-ao/sys/dev/cxgb/common/cxgb_t3_hw.c user/andre/tcp-ao/sys/dev/cxgb/cxgb_adapter.h user/andre/tcp-ao/sys/dev/cxgb/cxgb_main.c user/andre/tcp-ao/sys/dev/cxgb/cxgb_sge.c user/andre/tcp-ao/sys/dev/cxgb/sys/uipc_mvec.c user/andre/tcp-ao/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c user/andre/tcp-ao/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c user/andre/tcp-ao/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c user/andre/tcp-ao/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c user/andre/tcp-ao/sys/dev/cxgb/ulp/tom/cxgb_listen.c user/andre/tcp-ao/sys/dev/cxgbe/adapter.h user/andre/tcp-ao/sys/dev/cxgbe/common/common.h user/andre/tcp-ao/sys/dev/cxgbe/common/t4_hw.c user/andre/tcp-ao/sys/dev/cxgbe/common/t4_hw.h user/andre/tcp-ao/sys/dev/cxgbe/common/t4_msg.h user/andre/tcp-ao/sys/dev/cxgbe/common/t4_regs_values.h user/andre/tcp-ao/sys/dev/cxgbe/firmware/t4fw_cfg.txt user/andre/tcp-ao/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt user/andre/tcp-ao/sys/dev/cxgbe/firmware/t4fw_interface.h user/andre/tcp-ao/sys/dev/cxgbe/offload.h user/andre/tcp-ao/sys/dev/cxgbe/osdep.h user/andre/tcp-ao/sys/dev/cxgbe/t4_ioctl.h user/andre/tcp-ao/sys/dev/cxgbe/t4_l2t.c user/andre/tcp-ao/sys/dev/cxgbe/t4_main.c user/andre/tcp-ao/sys/dev/cxgbe/t4_sge.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_connect.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_cpl_io.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_ddp.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_listen.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_tom.c user/andre/tcp-ao/sys/dev/cxgbe/tom/t4_tom.h user/andre/tcp-ao/sys/dev/dc/dcphy.c user/andre/tcp-ao/sys/dev/dc/if_dc.c user/andre/tcp-ao/sys/dev/dc/pnphy.c user/andre/tcp-ao/sys/dev/de/if_de.c user/andre/tcp-ao/sys/dev/dpt/dpt.h user/andre/tcp-ao/sys/dev/dpt/dpt_pci.c user/andre/tcp-ao/sys/dev/dpt/dpt_scsi.c user/andre/tcp-ao/sys/dev/drm/drm_scatter.c user/andre/tcp-ao/sys/dev/drm/mach64_dma.c user/andre/tcp-ao/sys/dev/drm2/drmP.h user/andre/tcp-ao/sys/dev/drm2/drm_atomic.h user/andre/tcp-ao/sys/dev/drm2/drm_context.c user/andre/tcp-ao/sys/dev/drm2/drm_crtc.c user/andre/tcp-ao/sys/dev/drm2/drm_crtc.h user/andre/tcp-ao/sys/dev/drm2/drm_crtc_helper.h user/andre/tcp-ao/sys/dev/drm2/drm_dp_helper.h user/andre/tcp-ao/sys/dev/drm2/drm_dp_iic_helper.c user/andre/tcp-ao/sys/dev/drm2/drm_drv.c user/andre/tcp-ao/sys/dev/drm2/drm_edid.c user/andre/tcp-ao/sys/dev/drm2/drm_gem.c user/andre/tcp-ao/sys/dev/drm2/drm_gem_names.c user/andre/tcp-ao/sys/dev/drm2/drm_ioctl.c user/andre/tcp-ao/sys/dev/drm2/drm_irq.c user/andre/tcp-ao/sys/dev/drm2/drm_linux_list.h user/andre/tcp-ao/sys/dev/drm2/drm_pci.c user/andre/tcp-ao/sys/dev/drm2/drm_pciids.h user/andre/tcp-ao/sys/dev/drm2/drm_scatter.c user/andre/tcp-ao/sys/dev/drm2/drm_sysctl.c user/andre/tcp-ao/sys/dev/drm2/i915/i915_drv.c user/andre/tcp-ao/sys/dev/drm2/i915/i915_gem.c user/andre/tcp-ao/sys/dev/drm2/i915/i915_gem_execbuffer.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_crt.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_display.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_dp.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_drv.h user/andre/tcp-ao/sys/dev/drm2/i915/intel_fb.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_hdmi.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_iic.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_lvds.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_modes.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_panel.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_ringbuffer.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_sdvo.c user/andre/tcp-ao/sys/dev/drm2/i915/intel_tv.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_bo.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_bo_driver.h user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_bo_util.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_bo_vm.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_execbuf_util.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_page_alloc.c user/andre/tcp-ao/sys/dev/drm2/ttm/ttm_tt.c user/andre/tcp-ao/sys/dev/e1000/README user/andre/tcp-ao/sys/dev/e1000/e1000_80003es2lan.c user/andre/tcp-ao/sys/dev/e1000/e1000_80003es2lan.h user/andre/tcp-ao/sys/dev/e1000/e1000_82571.c user/andre/tcp-ao/sys/dev/e1000/e1000_82575.c user/andre/tcp-ao/sys/dev/e1000/e1000_82575.h user/andre/tcp-ao/sys/dev/e1000/e1000_api.c user/andre/tcp-ao/sys/dev/e1000/e1000_defines.h user/andre/tcp-ao/sys/dev/e1000/e1000_hw.h user/andre/tcp-ao/sys/dev/e1000/e1000_i210.c user/andre/tcp-ao/sys/dev/e1000/e1000_i210.h user/andre/tcp-ao/sys/dev/e1000/e1000_ich8lan.c user/andre/tcp-ao/sys/dev/e1000/e1000_ich8lan.h user/andre/tcp-ao/sys/dev/e1000/e1000_mac.c user/andre/tcp-ao/sys/dev/e1000/e1000_osdep.h user/andre/tcp-ao/sys/dev/e1000/e1000_phy.c user/andre/tcp-ao/sys/dev/e1000/e1000_phy.h user/andre/tcp-ao/sys/dev/e1000/e1000_regs.h user/andre/tcp-ao/sys/dev/e1000/e1000_vf.h user/andre/tcp-ao/sys/dev/e1000/if_em.c user/andre/tcp-ao/sys/dev/e1000/if_em.h user/andre/tcp-ao/sys/dev/e1000/if_igb.c user/andre/tcp-ao/sys/dev/e1000/if_igb.h user/andre/tcp-ao/sys/dev/e1000/if_lem.c user/andre/tcp-ao/sys/dev/e1000/if_lem.h user/andre/tcp-ao/sys/dev/ed/if_ed.c user/andre/tcp-ao/sys/dev/ed/if_ed_3c503.c user/andre/tcp-ao/sys/dev/ed/if_ed_hpp.c user/andre/tcp-ao/sys/dev/ed/if_ed_pccard.c user/andre/tcp-ao/sys/dev/ed/if_ed_rtl80x9.c user/andre/tcp-ao/sys/dev/en/if_en_pci.c user/andre/tcp-ao/sys/dev/en/midway.c user/andre/tcp-ao/sys/dev/ep/if_ep.c user/andre/tcp-ao/sys/dev/ep/if_ep_mca.c user/andre/tcp-ao/sys/dev/et/if_et.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_7240.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_8216.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_8226.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_8316.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_phy.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_reg.c user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitch_reg.h user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitchreg.h user/andre/tcp-ao/sys/dev/etherswitch/arswitch/arswitchvar.h user/andre/tcp-ao/sys/dev/etherswitch/etherswitch.c user/andre/tcp-ao/sys/dev/etherswitch/etherswitch.h user/andre/tcp-ao/sys/dev/etherswitch/etherswitch_if.m user/andre/tcp-ao/sys/dev/etherswitch/miiproxy.c user/andre/tcp-ao/sys/dev/etherswitch/rtl8366/rtl8366rb.c user/andre/tcp-ao/sys/dev/ex/if_ex.c user/andre/tcp-ao/sys/dev/fatm/if_fatm.c user/andre/tcp-ao/sys/dev/fb/vesa.c user/andre/tcp-ao/sys/dev/fdc/fdc.c user/andre/tcp-ao/sys/dev/fdt/fdt_common.c user/andre/tcp-ao/sys/dev/fdt/fdt_common.h user/andre/tcp-ao/sys/dev/fdt/fdt_mips.c user/andre/tcp-ao/sys/dev/fdt/fdt_pci.c user/andre/tcp-ao/sys/dev/fdt/fdt_powerpc.c user/andre/tcp-ao/sys/dev/fdt/fdt_slicer.c user/andre/tcp-ao/sys/dev/fdt/fdtbus.c user/andre/tcp-ao/sys/dev/fdt/simplebus.c user/andre/tcp-ao/sys/dev/fe/if_fe.c user/andre/tcp-ao/sys/dev/fe/if_fe_pccard.c user/andre/tcp-ao/sys/dev/filemon/filemon.c user/andre/tcp-ao/sys/dev/filemon/filemon_wrapper.c user/andre/tcp-ao/sys/dev/firewire/firewire.c user/andre/tcp-ao/sys/dev/firewire/fwdev.c user/andre/tcp-ao/sys/dev/firewire/fwohci_pci.c user/andre/tcp-ao/sys/dev/firewire/if_fwe.c user/andre/tcp-ao/sys/dev/firewire/if_fwip.c user/andre/tcp-ao/sys/dev/firewire/sbp.c user/andre/tcp-ao/sys/dev/firewire/sbp_targ.c user/andre/tcp-ao/sys/dev/flash/mx25l.c user/andre/tcp-ao/sys/dev/fxp/if_fxp.c user/andre/tcp-ao/sys/dev/fxp/inphy.c user/andre/tcp-ao/sys/dev/gem/if_gem.c user/andre/tcp-ao/sys/dev/glxsb/glxsb.c user/andre/tcp-ao/sys/dev/gpio/gpiobus.c user/andre/tcp-ao/sys/dev/gxemul/cons/gxemul_cons.c user/andre/tcp-ao/sys/dev/gxemul/disk/gxemul_disk.c user/andre/tcp-ao/sys/dev/gxemul/disk/gxemul_diskreg.h user/andre/tcp-ao/sys/dev/gxemul/ether/gxreg.h user/andre/tcp-ao/sys/dev/gxemul/ether/if_gx.c user/andre/tcp-ao/sys/dev/hatm/if_hatm.c user/andre/tcp-ao/sys/dev/hatm/if_hatm_intr.c user/andre/tcp-ao/sys/dev/hatm/if_hatm_ioctl.c user/andre/tcp-ao/sys/dev/hatm/if_hatm_rx.c user/andre/tcp-ao/sys/dev/hatm/if_hatm_tx.c user/andre/tcp-ao/sys/dev/hifn/hifn7751.c user/andre/tcp-ao/sys/dev/hme/if_hme.c user/andre/tcp-ao/sys/dev/hme/if_hme_pci.c user/andre/tcp-ao/sys/dev/hme/if_hme_sbus.c user/andre/tcp-ao/sys/dev/hpt27xx/hpt27xx_config.c user/andre/tcp-ao/sys/dev/hpt27xx/os_bsd.h user/andre/tcp-ao/sys/dev/hptiop/hptiop.c user/andre/tcp-ao/sys/dev/hptiop/hptiop.h user/andre/tcp-ao/sys/dev/hptmv/entry.c user/andre/tcp-ao/sys/dev/hptmv/osbsd.h user/andre/tcp-ao/sys/dev/hptrr/hptrr_osm_bsd.c user/andre/tcp-ao/sys/dev/hptrr/os_bsd.h user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_core.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_intel.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_logging.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_mod.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_powerpc.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_soft.c user/andre/tcp-ao/sys/dev/hwpmc/hwpmc_uncore.c user/andre/tcp-ao/sys/dev/hwpmc/pmc_events.h user/andre/tcp-ao/sys/dev/ic/ns16550.h user/andre/tcp-ao/sys/dev/ichsmb/ichsmb_pci.c user/andre/tcp-ao/sys/dev/ichwd/ichwd.c user/andre/tcp-ao/sys/dev/ichwd/ichwd.h user/andre/tcp-ao/sys/dev/ie/if_ie.c user/andre/tcp-ao/sys/dev/ie/if_ie_isa.c user/andre/tcp-ao/sys/dev/if_ndis/if_ndis.c user/andre/tcp-ao/sys/dev/if_ndis/if_ndis_pccard.c user/andre/tcp-ao/sys/dev/if_ndis/if_ndis_pci.c user/andre/tcp-ao/sys/dev/if_ndis/if_ndis_usb.c user/andre/tcp-ao/sys/dev/iicbus/if_ic.c user/andre/tcp-ao/sys/dev/iir/iir.c user/andre/tcp-ao/sys/dev/iir/iir.h user/andre/tcp-ao/sys/dev/iir/iir_ctrl.c user/andre/tcp-ao/sys/dev/iir/iir_pci.c user/andre/tcp-ao/sys/dev/ipmi/ipmi.c user/andre/tcp-ao/sys/dev/ipmi/ipmi_isa.c user/andre/tcp-ao/sys/dev/ipmi/ipmi_linux.c user/andre/tcp-ao/sys/dev/ipmi/ipmivars.h user/andre/tcp-ao/sys/dev/ips/ips.c user/andre/tcp-ao/sys/dev/ips/ips_pci.c user/andre/tcp-ao/sys/dev/ipw/if_ipw.c user/andre/tcp-ao/sys/dev/isci/isci.c user/andre/tcp-ao/sys/dev/isci/isci_controller.c user/andre/tcp-ao/sys/dev/isci/isci_domain.c user/andre/tcp-ao/sys/dev/isci/isci_io_request.c user/andre/tcp-ao/sys/dev/isci/isci_remote_device.c user/andre/tcp-ao/sys/dev/isci/isci_sysctl.c user/andre/tcp-ao/sys/dev/isci/isci_task_request.c user/andre/tcp-ao/sys/dev/isci/scil/sati_passthrough.c user/andre/tcp-ao/sys/dev/isci/scil/scic_sds_phy.c user/andre/tcp-ao/sys/dev/isci/scil/scic_sds_port.c user/andre/tcp-ao/sys/dev/isci/scil/scic_sds_port_configuration_agent.c user/andre/tcp-ao/sys/dev/isci/scil/scif_sas_domain.c user/andre/tcp-ao/sys/dev/isp/isp.c user/andre/tcp-ao/sys/dev/isp/isp_freebsd.c user/andre/tcp-ao/sys/dev/isp/isp_freebsd.h user/andre/tcp-ao/sys/dev/isp/isp_pci.c user/andre/tcp-ao/sys/dev/isp/ispreg.h user/andre/tcp-ao/sys/dev/isp/ispvar.h user/andre/tcp-ao/sys/dev/iwi/if_iwi.c user/andre/tcp-ao/sys/dev/iwn/if_iwn.c user/andre/tcp-ao/sys/dev/iwn/if_iwnreg.h user/andre/tcp-ao/sys/dev/iwn/if_iwnvar.h user/andre/tcp-ao/sys/dev/ixgb/README user/andre/tcp-ao/sys/dev/ixgb/if_ixgb.c user/andre/tcp-ao/sys/dev/ixgb/if_ixgb.h user/andre/tcp-ao/sys/dev/ixgb/ixgb_ids.h user/andre/tcp-ao/sys/dev/ixgbe/README user/andre/tcp-ao/sys/dev/ixgbe/ixgbe.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_82598.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_82599.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_api.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_api.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_common.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_common.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_osdep.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_phy.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_phy.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_type.h user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_vf.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_x540.c user/andre/tcp-ao/sys/dev/ixgbe/ixgbe_x540.h user/andre/tcp-ao/sys/dev/ixgbe/ixv.c user/andre/tcp-ao/sys/dev/ixgbe/ixv.h user/andre/tcp-ao/sys/dev/jme/if_jme.c user/andre/tcp-ao/sys/dev/le/if_le_ledma.c user/andre/tcp-ao/sys/dev/le/lance.c user/andre/tcp-ao/sys/dev/lge/if_lge.c user/andre/tcp-ao/sys/dev/lmc/if_lmc.c user/andre/tcp-ao/sys/dev/lmc/if_lmc.h user/andre/tcp-ao/sys/dev/malo/if_malo.c user/andre/tcp-ao/sys/dev/malo/if_malo_pci.c user/andre/tcp-ao/sys/dev/malo/if_malohal.c user/andre/tcp-ao/sys/dev/md/md.c user/andre/tcp-ao/sys/dev/mem/memdev.c user/andre/tcp-ao/sys/dev/mfi/mfi.c user/andre/tcp-ao/sys/dev/mfi/mfi_cam.c user/andre/tcp-ao/sys/dev/mfi/mfi_debug.c user/andre/tcp-ao/sys/dev/mfi/mfi_linux.c user/andre/tcp-ao/sys/dev/mfi/mfi_pci.c user/andre/tcp-ao/sys/dev/mfi/mfi_syspd.c user/andre/tcp-ao/sys/dev/mfi/mfireg.h user/andre/tcp-ao/sys/dev/mge/if_mge.c user/andre/tcp-ao/sys/dev/mii/acphy.c user/andre/tcp-ao/sys/dev/mii/amphy.c user/andre/tcp-ao/sys/dev/mii/atphy.c user/andre/tcp-ao/sys/dev/mii/axphy.c user/andre/tcp-ao/sys/dev/mii/bmtphy.c user/andre/tcp-ao/sys/dev/mii/brgphy.c user/andre/tcp-ao/sys/dev/mii/ciphy.c user/andre/tcp-ao/sys/dev/mii/e1000phy.c user/andre/tcp-ao/sys/dev/mii/gentbi.c user/andre/tcp-ao/sys/dev/mii/icsphy.c user/andre/tcp-ao/sys/dev/mii/ip1000phy.c user/andre/tcp-ao/sys/dev/mii/jmphy.c user/andre/tcp-ao/sys/dev/mii/lxtphy.c user/andre/tcp-ao/sys/dev/mii/mii.c user/andre/tcp-ao/sys/dev/mii/mii_physubr.c user/andre/tcp-ao/sys/dev/mii/miidevs user/andre/tcp-ao/sys/dev/mii/mlphy.c user/andre/tcp-ao/sys/dev/mii/nsgphy.c user/andre/tcp-ao/sys/dev/mii/nsphy.c user/andre/tcp-ao/sys/dev/mii/nsphyter.c user/andre/tcp-ao/sys/dev/mii/pnaphy.c user/andre/tcp-ao/sys/dev/mii/qsphy.c user/andre/tcp-ao/sys/dev/mii/rdcphy.c user/andre/tcp-ao/sys/dev/mii/rgephy.c user/andre/tcp-ao/sys/dev/mii/rlphy.c user/andre/tcp-ao/sys/dev/mii/rlswitch.c user/andre/tcp-ao/sys/dev/mii/smcphy.c user/andre/tcp-ao/sys/dev/mii/smscphy.c user/andre/tcp-ao/sys/dev/mii/tdkphy.c user/andre/tcp-ao/sys/dev/mii/tlphy.c user/andre/tcp-ao/sys/dev/mii/truephy.c user/andre/tcp-ao/sys/dev/mii/ukphy.c user/andre/tcp-ao/sys/dev/mii/xmphy.c user/andre/tcp-ao/sys/dev/mly/mly.c user/andre/tcp-ao/sys/dev/mmc/mmc.c user/andre/tcp-ao/sys/dev/mmc/mmcsd.c user/andre/tcp-ao/sys/dev/mn/if_mn.c user/andre/tcp-ao/sys/dev/mps/mps.c user/andre/tcp-ao/sys/dev/mps/mps_config.c user/andre/tcp-ao/sys/dev/mps/mps_mapping.c user/andre/tcp-ao/sys/dev/mps/mps_pci.c user/andre/tcp-ao/sys/dev/mps/mps_sas.c user/andre/tcp-ao/sys/dev/mps/mps_sas.h user/andre/tcp-ao/sys/dev/mps/mps_sas_lsi.c user/andre/tcp-ao/sys/dev/mps/mps_table.c user/andre/tcp-ao/sys/dev/mps/mps_user.c user/andre/tcp-ao/sys/dev/mps/mpsvar.h user/andre/tcp-ao/sys/dev/mpt/mpt_cam.c user/andre/tcp-ao/sys/dev/mpt/mpt_pci.c user/andre/tcp-ao/sys/dev/mpt/mpt_raid.c user/andre/tcp-ao/sys/dev/mpt/mpt_user.c user/andre/tcp-ao/sys/dev/msk/if_msk.c user/andre/tcp-ao/sys/dev/mvs/mvs.c user/andre/tcp-ao/sys/dev/mvs/mvs_pci.c user/andre/tcp-ao/sys/dev/mvs/mvs_soc.c user/andre/tcp-ao/sys/dev/mwl/if_mwl.c user/andre/tcp-ao/sys/dev/mwl/if_mwl_pci.c user/andre/tcp-ao/sys/dev/mxge/if_mxge.c user/andre/tcp-ao/sys/dev/my/if_my.c user/andre/tcp-ao/sys/dev/nand/nand.h user/andre/tcp-ao/sys/dev/nand/nand_geom.c user/andre/tcp-ao/sys/dev/nand/nandbus.c user/andre/tcp-ao/sys/dev/netmap/if_em_netmap.h user/andre/tcp-ao/sys/dev/netmap/if_igb_netmap.h user/andre/tcp-ao/sys/dev/netmap/if_lem_netmap.h user/andre/tcp-ao/sys/dev/netmap/if_re_netmap.h user/andre/tcp-ao/sys/dev/netmap/ixgbe_netmap.h user/andre/tcp-ao/sys/dev/netmap/netmap.c user/andre/tcp-ao/sys/dev/netmap/netmap_kern.h user/andre/tcp-ao/sys/dev/netmap/netmap_mem2.c user/andre/tcp-ao/sys/dev/nfe/if_nfe.c user/andre/tcp-ao/sys/dev/nge/if_nge.c user/andre/tcp-ao/sys/dev/nsp/nsp.c user/andre/tcp-ao/sys/dev/nvd/nvd.c user/andre/tcp-ao/sys/dev/nve/if_nve.c user/andre/tcp-ao/sys/dev/nvme/nvme.c user/andre/tcp-ao/sys/dev/nvme/nvme.h user/andre/tcp-ao/sys/dev/nvme/nvme_ctrlr.c user/andre/tcp-ao/sys/dev/nvme/nvme_ctrlr_cmd.c user/andre/tcp-ao/sys/dev/nvme/nvme_ns.c user/andre/tcp-ao/sys/dev/nvme/nvme_ns_cmd.c user/andre/tcp-ao/sys/dev/nvme/nvme_private.h user/andre/tcp-ao/sys/dev/nvme/nvme_qpair.c user/andre/tcp-ao/sys/dev/nvme/nvme_sysctl.c user/andre/tcp-ao/sys/dev/nvme/nvme_test.c user/andre/tcp-ao/sys/dev/nxge/if_nxge.c user/andre/tcp-ao/sys/dev/oce/oce_hw.c user/andre/tcp-ao/sys/dev/oce/oce_hw.h user/andre/tcp-ao/sys/dev/oce/oce_if.c user/andre/tcp-ao/sys/dev/oce/oce_if.h user/andre/tcp-ao/sys/dev/oce/oce_mbox.c user/andre/tcp-ao/sys/dev/oce/oce_queue.c user/andre/tcp-ao/sys/dev/oce/oce_sysctl.c user/andre/tcp-ao/sys/dev/oce/oce_util.c user/andre/tcp-ao/sys/dev/ofw/ofw_bus.h user/andre/tcp-ao/sys/dev/ofw/ofw_bus_if.m user/andre/tcp-ao/sys/dev/ofw/ofw_bus_subr.c user/andre/tcp-ao/sys/dev/ofw/ofw_bus_subr.h user/andre/tcp-ao/sys/dev/ofw/ofw_console.c user/andre/tcp-ao/sys/dev/ofw/ofw_fdt.c user/andre/tcp-ao/sys/dev/ofw/ofw_iicbus.c user/andre/tcp-ao/sys/dev/ofw/openfirm.c user/andre/tcp-ao/sys/dev/ofw/openfirm.h user/andre/tcp-ao/sys/dev/patm/if_patm.c user/andre/tcp-ao/sys/dev/patm/if_patm_attach.c user/andre/tcp-ao/sys/dev/patm/if_patm_intr.c user/andre/tcp-ao/sys/dev/patm/if_patm_ioctl.c user/andre/tcp-ao/sys/dev/patm/if_patm_rx.c user/andre/tcp-ao/sys/dev/patm/if_patm_tx.c user/andre/tcp-ao/sys/dev/pccbb/pccbb_pci.c user/andre/tcp-ao/sys/dev/pci/fixup_pci.c user/andre/tcp-ao/sys/dev/pci/pci.c user/andre/tcp-ao/sys/dev/pci/pci_pci.c user/andre/tcp-ao/sys/dev/pci/pci_private.h user/andre/tcp-ao/sys/dev/pci/pcib_private.h user/andre/tcp-ao/sys/dev/pci/pcireg.h user/andre/tcp-ao/sys/dev/pci/pcivar.h user/andre/tcp-ao/sys/dev/pci/vga_pci.c user/andre/tcp-ao/sys/dev/pcn/if_pcn.c user/andre/tcp-ao/sys/dev/pdq/if_fea.c user/andre/tcp-ao/sys/dev/pdq/if_fpa.c user/andre/tcp-ao/sys/dev/pdq/pdq_freebsd.h user/andre/tcp-ao/sys/dev/pdq/pdq_ifsubr.c user/andre/tcp-ao/sys/dev/ppbus/if_plip.c user/andre/tcp-ao/sys/dev/ppbus/ppbconf.c user/andre/tcp-ao/sys/dev/pst/pst-pci.c user/andre/tcp-ao/sys/dev/puc/puc_bfe.h user/andre/tcp-ao/sys/dev/puc/puc_cfg.h user/andre/tcp-ao/sys/dev/puc/pucdata.c user/andre/tcp-ao/sys/dev/qlxgb/README.txt user/andre/tcp-ao/sys/dev/qlxgb/qla_dbg.c user/andre/tcp-ao/sys/dev/qlxgb/qla_dbg.h user/andre/tcp-ao/sys/dev/qlxgb/qla_def.h user/andre/tcp-ao/sys/dev/qlxgb/qla_glbl.h user/andre/tcp-ao/sys/dev/qlxgb/qla_hw.c user/andre/tcp-ao/sys/dev/qlxgb/qla_hw.h user/andre/tcp-ao/sys/dev/qlxgb/qla_inline.h user/andre/tcp-ao/sys/dev/qlxgb/qla_ioctl.c user/andre/tcp-ao/sys/dev/qlxgb/qla_ioctl.h user/andre/tcp-ao/sys/dev/qlxgb/qla_isr.c user/andre/tcp-ao/sys/dev/qlxgb/qla_misc.c user/andre/tcp-ao/sys/dev/qlxgb/qla_os.c user/andre/tcp-ao/sys/dev/qlxgb/qla_os.h user/andre/tcp-ao/sys/dev/qlxgb/qla_reg.h user/andre/tcp-ao/sys/dev/qlxgb/qla_ver.h user/andre/tcp-ao/sys/dev/ral/rt2560.c user/andre/tcp-ao/sys/dev/ral/rt2661.c user/andre/tcp-ao/sys/dev/ral/rt2860.c user/andre/tcp-ao/sys/dev/random/harvest.c user/andre/tcp-ao/sys/dev/random/hash.c user/andre/tcp-ao/sys/dev/random/hash.h user/andre/tcp-ao/sys/dev/random/ivy.c user/andre/tcp-ao/sys/dev/random/nehemiah.c user/andre/tcp-ao/sys/dev/random/randomdev.c user/andre/tcp-ao/sys/dev/random/randomdev.h user/andre/tcp-ao/sys/dev/random/randomdev_soft.c user/andre/tcp-ao/sys/dev/random/randomdev_soft.h user/andre/tcp-ao/sys/dev/random/yarrow.c user/andre/tcp-ao/sys/dev/random/yarrow.h user/andre/tcp-ao/sys/dev/re/if_re.c user/andre/tcp-ao/sys/dev/rndtest/rndtest.c user/andre/tcp-ao/sys/dev/rp/rp_pci.c user/andre/tcp-ao/sys/dev/rt/if_rt.c user/andre/tcp-ao/sys/dev/safe/safe.c user/andre/tcp-ao/sys/dev/sbni/if_sbni.c user/andre/tcp-ao/sys/dev/sbni/if_sbni_isa.c user/andre/tcp-ao/sys/dev/scc/scc_bfe.h user/andre/tcp-ao/sys/dev/scc/scc_bfe_ebus.c user/andre/tcp-ao/sys/dev/scc/scc_bfe_macio.c user/andre/tcp-ao/sys/dev/scc/scc_bfe_quicc.c user/andre/tcp-ao/sys/dev/scc/scc_bfe_sbus.c user/andre/tcp-ao/sys/dev/scc/scc_core.c user/andre/tcp-ao/sys/dev/scc/scc_dev_quicc.c user/andre/tcp-ao/sys/dev/scc/scc_dev_sab82532.c user/andre/tcp-ao/sys/dev/scc/scc_dev_z8530.c user/andre/tcp-ao/sys/dev/sdhci/sdhci.c user/andre/tcp-ao/sys/dev/sdhci/sdhci.h user/andre/tcp-ao/sys/dev/sf/if_sf.c user/andre/tcp-ao/sys/dev/sfxge/common/efx_mcdi.c user/andre/tcp-ao/sys/dev/sfxge/sfxge.c user/andre/tcp-ao/sys/dev/sfxge/sfxge.h user/andre/tcp-ao/sys/dev/sfxge/sfxge_dma.c user/andre/tcp-ao/sys/dev/sfxge/sfxge_ev.c user/andre/tcp-ao/sys/dev/sfxge/sfxge_intr.c user/andre/tcp-ao/sys/dev/sfxge/sfxge_rx.c user/andre/tcp-ao/sys/dev/sge/if_sge.c user/andre/tcp-ao/sys/dev/siba/siba_bwn.c user/andre/tcp-ao/sys/dev/siba/siba_core.c user/andre/tcp-ao/sys/dev/siis/siis.c user/andre/tcp-ao/sys/dev/sis/if_sis.c user/andre/tcp-ao/sys/dev/sk/if_sk.c user/andre/tcp-ao/sys/dev/sk/if_skreg.h user/andre/tcp-ao/sys/dev/smc/if_smc.c user/andre/tcp-ao/sys/dev/sn/if_sn.c user/andre/tcp-ao/sys/dev/sn/if_sn_isa.c user/andre/tcp-ao/sys/dev/snc/dp83932.c user/andre/tcp-ao/sys/dev/snc/if_snc.c user/andre/tcp-ao/sys/dev/snc/if_snc_pccard.c user/andre/tcp-ao/sys/dev/sound/pci/als4000.c user/andre/tcp-ao/sys/dev/sound/pci/aureal.c user/andre/tcp-ao/sys/dev/sound/pci/cmi.c user/andre/tcp-ao/sys/dev/sound/pci/cs4281.c user/andre/tcp-ao/sys/dev/sound/pci/csa.c user/andre/tcp-ao/sys/dev/sound/pci/ds1.c user/andre/tcp-ao/sys/dev/sound/pci/emu10k1.c user/andre/tcp-ao/sys/dev/sound/pci/emu10kx.c user/andre/tcp-ao/sys/dev/sound/pci/envy24.c user/andre/tcp-ao/sys/dev/sound/pci/envy24ht.c user/andre/tcp-ao/sys/dev/sound/pci/envy24ht.h user/andre/tcp-ao/sys/dev/sound/pci/es137x.c user/andre/tcp-ao/sys/dev/sound/pci/fm801.c user/andre/tcp-ao/sys/dev/sound/pci/hda/hdaa_patches.c user/andre/tcp-ao/sys/dev/sound/pci/hda/hdac.h user/andre/tcp-ao/sys/dev/sound/pci/hdspe.c user/andre/tcp-ao/sys/dev/sound/pci/maestro.c user/andre/tcp-ao/sys/dev/sound/pci/maestro3.c user/andre/tcp-ao/sys/dev/sound/pci/neomagic.c user/andre/tcp-ao/sys/dev/sound/pci/solo.c user/andre/tcp-ao/sys/dev/sound/pci/t4dwave.c user/andre/tcp-ao/sys/dev/sound/pci/via82c686.c user/andre/tcp-ao/sys/dev/sound/pci/vibes.c user/andre/tcp-ao/sys/dev/sound/pcm/dsp.c user/andre/tcp-ao/sys/dev/sound/usb/uaudio.c user/andre/tcp-ao/sys/dev/spibus/spibus.c user/andre/tcp-ao/sys/dev/spibus/spibusvar.h user/andre/tcp-ao/sys/dev/ste/if_ste.c user/andre/tcp-ao/sys/dev/stg/tmc18c30.c user/andre/tcp-ao/sys/dev/stge/if_stge.c user/andre/tcp-ao/sys/dev/streams/streams.c user/andre/tcp-ao/sys/dev/sym/sym_hipd.c user/andre/tcp-ao/sys/dev/syscons/scmouse.c user/andre/tcp-ao/sys/dev/syscons/scvgarndr.c user/andre/tcp-ao/sys/dev/syscons/syscons.c user/andre/tcp-ao/sys/dev/tdfx/tdfx_linux.c user/andre/tcp-ao/sys/dev/tdfx/tdfx_pci.c user/andre/tcp-ao/sys/dev/terasic/de4led/terasic_de4led_nexus.c user/andre/tcp-ao/sys/dev/terasic/mtl/terasic_mtl_nexus.c user/andre/tcp-ao/sys/dev/ti/if_ti.c user/andre/tcp-ao/sys/dev/tl/if_tl.c user/andre/tcp-ao/sys/dev/tsec/if_tsec.c user/andre/tcp-ao/sys/dev/tsec/if_tsec_fdt.c user/andre/tcp-ao/sys/dev/twa/tw_osl_cam.c user/andre/tcp-ao/sys/dev/twa/tw_osl_freebsd.c user/andre/tcp-ao/sys/dev/tws/tws.c user/andre/tcp-ao/sys/dev/tws/tws.h user/andre/tcp-ao/sys/dev/tws/tws_cam.c user/andre/tcp-ao/sys/dev/tx/if_tx.c user/andre/tcp-ao/sys/dev/txp/if_txp.c user/andre/tcp-ao/sys/dev/uart/uart.h user/andre/tcp-ao/sys/dev/uart/uart_bus_fdt.c user/andre/tcp-ao/sys/dev/uart/uart_bus_pci.c user/andre/tcp-ao/sys/dev/uart/uart_core.c user/andre/tcp-ao/sys/dev/uart/uart_dev_imx.c user/andre/tcp-ao/sys/dev/uart/uart_dev_ns8250.c user/andre/tcp-ao/sys/dev/uart/uart_dev_pl011.c user/andre/tcp-ao/sys/dev/uart/uart_subr.c user/andre/tcp-ao/sys/dev/ubsec/ubsec.c user/andre/tcp-ao/sys/dev/usb/controller/at91dci_atmelarm.c user/andre/tcp-ao/sys/dev/usb/controller/dwc_otg.c user/andre/tcp-ao/sys/dev/usb/controller/ehci.c user/andre/tcp-ao/sys/dev/usb/controller/ehci_imx.c user/andre/tcp-ao/sys/dev/usb/controller/ehci_pci.c user/andre/tcp-ao/sys/dev/usb/controller/musb_otg.c user/andre/tcp-ao/sys/dev/usb/controller/musb_otg.h user/andre/tcp-ao/sys/dev/usb/controller/musb_otg_atmelarm.c user/andre/tcp-ao/sys/dev/usb/controller/ohci_pci.c user/andre/tcp-ao/sys/dev/usb/controller/usb_controller.c user/andre/tcp-ao/sys/dev/usb/controller/xhci.c user/andre/tcp-ao/sys/dev/usb/controller/xhci.h user/andre/tcp-ao/sys/dev/usb/controller/xhci_pci.c user/andre/tcp-ao/sys/dev/usb/controller/xhcireg.h user/andre/tcp-ao/sys/dev/usb/input/ukbd.c user/andre/tcp-ao/sys/dev/usb/misc/udbp.c user/andre/tcp-ao/sys/dev/usb/net/if_aue.c user/andre/tcp-ao/sys/dev/usb/net/if_axe.c user/andre/tcp-ao/sys/dev/usb/net/if_axereg.h user/andre/tcp-ao/sys/dev/usb/net/if_cdce.c user/andre/tcp-ao/sys/dev/usb/net/if_cue.c user/andre/tcp-ao/sys/dev/usb/net/if_cuereg.h user/andre/tcp-ao/sys/dev/usb/net/if_ipheth.c user/andre/tcp-ao/sys/dev/usb/net/if_kue.c user/andre/tcp-ao/sys/dev/usb/net/if_mos.c user/andre/tcp-ao/sys/dev/usb/net/if_rue.c user/andre/tcp-ao/sys/dev/usb/net/if_smsc.c user/andre/tcp-ao/sys/dev/usb/net/if_udav.c user/andre/tcp-ao/sys/dev/usb/net/if_usie.c user/andre/tcp-ao/sys/dev/usb/net/ruephy.c user/andre/tcp-ao/sys/dev/usb/net/uhso.c user/andre/tcp-ao/sys/dev/usb/net/usb_ethernet.c user/andre/tcp-ao/sys/dev/usb/quirk/usb_quirk.c user/andre/tcp-ao/sys/dev/usb/serial/u3g.c user/andre/tcp-ao/sys/dev/usb/serial/uftdi.c user/andre/tcp-ao/sys/dev/usb/serial/umcs.h user/andre/tcp-ao/sys/dev/usb/serial/umodem.c user/andre/tcp-ao/sys/dev/usb/serial/usb_serial.c user/andre/tcp-ao/sys/dev/usb/serial/usb_serial.h user/andre/tcp-ao/sys/dev/usb/serial/uslcom.c user/andre/tcp-ao/sys/dev/usb/storage/umass.c user/andre/tcp-ao/sys/dev/usb/template/usb_template.c user/andre/tcp-ao/sys/dev/usb/usb.h user/andre/tcp-ao/sys/dev/usb/usb_compat_linux.c user/andre/tcp-ao/sys/dev/usb/usb_debug.h user/andre/tcp-ao/sys/dev/usb/usb_dev.c user/andre/tcp-ao/sys/dev/usb/usb_device.c user/andre/tcp-ao/sys/dev/usb/usb_device.h user/andre/tcp-ao/sys/dev/usb/usb_dynamic.c user/andre/tcp-ao/sys/dev/usb/usb_freebsd.h user/andre/tcp-ao/sys/dev/usb/usb_freebsd_loader.h user/andre/tcp-ao/sys/dev/usb/usb_generic.c user/andre/tcp-ao/sys/dev/usb/usb_hub.c user/andre/tcp-ao/sys/dev/usb/usb_hub.h user/andre/tcp-ao/sys/dev/usb/usb_ioctl.h user/andre/tcp-ao/sys/dev/usb/usb_msctest.c user/andre/tcp-ao/sys/dev/usb/usb_parse.c user/andre/tcp-ao/sys/dev/usb/usb_pf.c user/andre/tcp-ao/sys/dev/usb/usb_process.h user/andre/tcp-ao/sys/dev/usb/usb_request.c user/andre/tcp-ao/sys/dev/usb/usb_request.h user/andre/tcp-ao/sys/dev/usb/usbdevs user/andre/tcp-ao/sys/dev/usb/wlan/if_rum.c user/andre/tcp-ao/sys/dev/usb/wlan/if_rumvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_run.c user/andre/tcp-ao/sys/dev/usb/wlan/if_runreg.h user/andre/tcp-ao/sys/dev/usb/wlan/if_runvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_uath.c user/andre/tcp-ao/sys/dev/usb/wlan/if_uathvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_upgt.c user/andre/tcp-ao/sys/dev/usb/wlan/if_upgtvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_ural.c user/andre/tcp-ao/sys/dev/usb/wlan/if_uralvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_urtw.c user/andre/tcp-ao/sys/dev/usb/wlan/if_urtwvar.h user/andre/tcp-ao/sys/dev/usb/wlan/if_zyd.c user/andre/tcp-ao/sys/dev/usb/wlan/if_zydreg.h user/andre/tcp-ao/sys/dev/vge/if_vge.c user/andre/tcp-ao/sys/dev/virtio/balloon/virtio_balloon.c user/andre/tcp-ao/sys/dev/virtio/block/virtio_blk.c user/andre/tcp-ao/sys/dev/virtio/block/virtio_blk.h user/andre/tcp-ao/sys/dev/virtio/network/if_vtnet.c user/andre/tcp-ao/sys/dev/virtio/network/if_vtnetvar.h user/andre/tcp-ao/sys/dev/virtio/network/virtio_net.h user/andre/tcp-ao/sys/dev/virtio/pci/virtio_pci.c user/andre/tcp-ao/sys/dev/virtio/scsi/virtio_scsi.c user/andre/tcp-ao/sys/dev/virtio/scsi/virtio_scsivar.h user/andre/tcp-ao/sys/dev/virtio/virtio.c user/andre/tcp-ao/sys/dev/virtio/virtio.h user/andre/tcp-ao/sys/dev/virtio/virtio_bus_if.m user/andre/tcp-ao/sys/dev/virtio/virtio_if.m user/andre/tcp-ao/sys/dev/virtio/virtqueue.c user/andre/tcp-ao/sys/dev/virtio/virtqueue.h user/andre/tcp-ao/sys/dev/vkbd/vkbd.c user/andre/tcp-ao/sys/dev/vr/if_vr.c user/andre/tcp-ao/sys/dev/vte/if_vte.c user/andre/tcp-ao/sys/dev/vx/if_vx.c user/andre/tcp-ao/sys/dev/vx/if_vx_eisa.c user/andre/tcp-ao/sys/dev/vx/if_vx_pci.c user/andre/tcp-ao/sys/dev/vxge/vxge.h user/andre/tcp-ao/sys/dev/watchdog/watchdog.c user/andre/tcp-ao/sys/dev/wb/if_wb.c user/andre/tcp-ao/sys/dev/wds/wd7000.c user/andre/tcp-ao/sys/dev/wi/if_wi.c user/andre/tcp-ao/sys/dev/wi/if_wi_pccard.c user/andre/tcp-ao/sys/dev/wi/if_wi_pci.c user/andre/tcp-ao/sys/dev/wl/if_wl.c user/andre/tcp-ao/sys/dev/wpi/if_wpi.c user/andre/tcp-ao/sys/dev/xe/if_xe.c user/andre/tcp-ao/sys/dev/xe/if_xe_pccard.c user/andre/tcp-ao/sys/dev/xen/balloon/balloon.c user/andre/tcp-ao/sys/dev/xen/blkback/blkback.c user/andre/tcp-ao/sys/dev/xen/blkfront/blkfront.c user/andre/tcp-ao/sys/dev/xen/blkfront/block.h user/andre/tcp-ao/sys/dev/xen/console/console.c user/andre/tcp-ao/sys/dev/xen/console/xencons_ring.c user/andre/tcp-ao/sys/dev/xen/control/control.c user/andre/tcp-ao/sys/dev/xen/netback/netback.c user/andre/tcp-ao/sys/dev/xen/netback/netback_unit_tests.c user/andre/tcp-ao/sys/dev/xen/netfront/netfront.c user/andre/tcp-ao/sys/dev/xen/pcifront/pcifront.c user/andre/tcp-ao/sys/dev/xen/xenpci/xenpci.c user/andre/tcp-ao/sys/dev/xen/xenpci/xenpcivar.h user/andre/tcp-ao/sys/dev/xl/if_xl.c user/andre/tcp-ao/sys/dev/xl/xlphy.c user/andre/tcp-ao/sys/fs/cd9660/cd9660_vfsops.c user/andre/tcp-ao/sys/fs/cd9660/iso.h user/andre/tcp-ao/sys/fs/devfs/devfs_devs.c user/andre/tcp-ao/sys/fs/devfs/devfs_rule.c user/andre/tcp-ao/sys/fs/devfs/devfs_vnops.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_alloc.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_balloc.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_bmap.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_dinode.h user/andre/tcp-ao/sys/fs/ext2fs/ext2_dir.h user/andre/tcp-ao/sys/fs/ext2fs/ext2_extern.h user/andre/tcp-ao/sys/fs/ext2fs/ext2_inode.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_inode_cnv.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_lookup.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_subr.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_vfsops.c user/andre/tcp-ao/sys/fs/ext2fs/ext2_vnops.c user/andre/tcp-ao/sys/fs/ext2fs/ext2fs.h user/andre/tcp-ao/sys/fs/ext2fs/fs.h user/andre/tcp-ao/sys/fs/ext2fs/inode.h user/andre/tcp-ao/sys/fs/fdescfs/fdesc_vnops.c user/andre/tcp-ao/sys/fs/fuse/fuse_vfsops.c user/andre/tcp-ao/sys/fs/fuse/fuse_vnops.c user/andre/tcp-ao/sys/fs/msdosfs/msdosfs_conv.c user/andre/tcp-ao/sys/fs/msdosfs/msdosfs_denode.c user/andre/tcp-ao/sys/fs/msdosfs/msdosfs_vnops.c user/andre/tcp-ao/sys/fs/nandfs/nandfs_segment.c user/andre/tcp-ao/sys/fs/nandfs/nandfs_vnops.c user/andre/tcp-ao/sys/fs/nfs/nfs.h user/andre/tcp-ao/sys/fs/nfs/nfs_commonkrpc.c user/andre/tcp-ao/sys/fs/nfs/nfs_commonport.c user/andre/tcp-ao/sys/fs/nfs/nfs_commonsubs.c user/andre/tcp-ao/sys/fs/nfs/nfs_var.h user/andre/tcp-ao/sys/fs/nfs/nfsm_subs.h user/andre/tcp-ao/sys/fs/nfs/nfsport.h user/andre/tcp-ao/sys/fs/nfs/nfsrvcache.h user/andre/tcp-ao/sys/fs/nfsclient/nfs_clbio.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clkrpc.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clnfsiod.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clport.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clstate.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clvfsops.c user/andre/tcp-ao/sys/fs/nfsclient/nfs_clvnops.c user/andre/tcp-ao/sys/fs/nfsserver/nfs_nfsdcache.c user/andre/tcp-ao/sys/fs/nfsserver/nfs_nfsdkrpc.c user/andre/tcp-ao/sys/fs/nfsserver/nfs_nfsdport.c user/andre/tcp-ao/sys/fs/nfsserver/nfs_nfsdsocket.c user/andre/tcp-ao/sys/fs/nullfs/null.h user/andre/tcp-ao/sys/fs/nullfs/null_subr.c user/andre/tcp-ao/sys/fs/nullfs/null_vfsops.c user/andre/tcp-ao/sys/fs/nullfs/null_vnops.c user/andre/tcp-ao/sys/fs/procfs/procfs_map.c user/andre/tcp-ao/sys/fs/smbfs/smbfs.h user/andre/tcp-ao/sys/fs/smbfs/smbfs_io.c user/andre/tcp-ao/sys/fs/smbfs/smbfs_node.c user/andre/tcp-ao/sys/fs/smbfs/smbfs_smb.c user/andre/tcp-ao/sys/fs/smbfs/smbfs_vfsops.c user/andre/tcp-ao/sys/fs/smbfs/smbfs_vnops.c user/andre/tcp-ao/sys/fs/tmpfs/tmpfs.h user/andre/tcp-ao/sys/fs/tmpfs/tmpfs_subr.c user/andre/tcp-ao/sys/fs/tmpfs/tmpfs_vfsops.c user/andre/tcp-ao/sys/fs/tmpfs/tmpfs_vnops.c user/andre/tcp-ao/sys/gdb/gdb_cons.c user/andre/tcp-ao/sys/geom/concat/g_concat.c user/andre/tcp-ao/sys/geom/concat/g_concat.h user/andre/tcp-ao/sys/geom/eli/g_eli.c user/andre/tcp-ao/sys/geom/gate/g_gate.c user/andre/tcp-ao/sys/geom/geom.h user/andre/tcp-ao/sys/geom/geom_dev.c user/andre/tcp-ao/sys/geom/geom_disk.c user/andre/tcp-ao/sys/geom/geom_disk.h user/andre/tcp-ao/sys/geom/geom_dump.c user/andre/tcp-ao/sys/geom/geom_flashmap.c user/andre/tcp-ao/sys/geom/geom_int.h user/andre/tcp-ao/sys/geom/geom_io.c user/andre/tcp-ao/sys/geom/geom_kern.c user/andre/tcp-ao/sys/geom/geom_pc98.c user/andre/tcp-ao/sys/geom/geom_slice.c user/andre/tcp-ao/sys/geom/geom_subr.c user/andre/tcp-ao/sys/geom/geom_vfs.c user/andre/tcp-ao/sys/geom/journal/g_journal.c user/andre/tcp-ao/sys/geom/label/g_label.c user/andre/tcp-ao/sys/geom/label/g_label.h user/andre/tcp-ao/sys/geom/label/g_label_ntfs.c user/andre/tcp-ao/sys/geom/mirror/g_mirror.c user/andre/tcp-ao/sys/geom/mirror/g_mirror.h user/andre/tcp-ao/sys/geom/multipath/g_multipath.c user/andre/tcp-ao/sys/geom/nop/g_nop.c user/andre/tcp-ao/sys/geom/nop/g_nop.h user/andre/tcp-ao/sys/geom/part/g_part.c user/andre/tcp-ao/sys/geom/part/g_part_apm.c user/andre/tcp-ao/sys/geom/part/g_part_bsd.c user/andre/tcp-ao/sys/geom/part/g_part_ebr.c user/andre/tcp-ao/sys/geom/part/g_part_gpt.c user/andre/tcp-ao/sys/geom/part/g_part_ldm.c user/andre/tcp-ao/sys/geom/part/g_part_mbr.c user/andre/tcp-ao/sys/geom/part/g_part_pc98.c user/andre/tcp-ao/sys/geom/part/g_part_vtoc8.c user/andre/tcp-ao/sys/geom/raid/g_raid.c user/andre/tcp-ao/sys/geom/raid/g_raid.h user/andre/tcp-ao/sys/geom/raid/g_raid_ctl.c user/andre/tcp-ao/sys/geom/raid/md_ddf.c user/andre/tcp-ao/sys/geom/raid/md_intel.c user/andre/tcp-ao/sys/geom/raid/md_jmicron.c user/andre/tcp-ao/sys/geom/raid/md_nvidia.c user/andre/tcp-ao/sys/geom/raid/md_promise.c user/andre/tcp-ao/sys/geom/raid/md_sii.c user/andre/tcp-ao/sys/geom/raid/tr_concat.c user/andre/tcp-ao/sys/geom/raid/tr_raid0.c user/andre/tcp-ao/sys/geom/raid/tr_raid1.c user/andre/tcp-ao/sys/geom/raid/tr_raid1e.c user/andre/tcp-ao/sys/geom/raid/tr_raid5.c user/andre/tcp-ao/sys/geom/stripe/g_stripe.c user/andre/tcp-ao/sys/geom/stripe/g_stripe.h user/andre/tcp-ao/sys/geom/zero/g_zero.c user/andre/tcp-ao/sys/i386/conf/GENERIC user/andre/tcp-ao/sys/i386/conf/NOTES user/andre/tcp-ao/sys/i386/conf/PAE user/andre/tcp-ao/sys/i386/conf/XBOX user/andre/tcp-ao/sys/i386/conf/XEN user/andre/tcp-ao/sys/i386/i386/apic_vector.s user/andre/tcp-ao/sys/i386/i386/bpf_jit_machdep.c user/andre/tcp-ao/sys/i386/i386/exception.s user/andre/tcp-ao/sys/i386/i386/genassym.c user/andre/tcp-ao/sys/i386/i386/identcpu.c user/andre/tcp-ao/sys/i386/i386/initcpu.c user/andre/tcp-ao/sys/i386/i386/machdep.c user/andre/tcp-ao/sys/i386/i386/mp_machdep.c user/andre/tcp-ao/sys/i386/i386/pmap.c user/andre/tcp-ao/sys/i386/i386/support.s user/andre/tcp-ao/sys/i386/i386/symbols.raw user/andre/tcp-ao/sys/i386/i386/sys_machdep.c user/andre/tcp-ao/sys/i386/i386/trap.c user/andre/tcp-ao/sys/i386/i386/uio_machdep.c user/andre/tcp-ao/sys/i386/i386/vm_machdep.c user/andre/tcp-ao/sys/i386/ibcs2/ibcs2_fcntl.c user/andre/tcp-ao/sys/i386/ibcs2/ibcs2_ioctl.c user/andre/tcp-ao/sys/i386/ibcs2/ibcs2_misc.c user/andre/tcp-ao/sys/i386/ibcs2/ibcs2_sysvec.c user/andre/tcp-ao/sys/i386/ibcs2/imgact_coff.c user/andre/tcp-ao/sys/i386/include/acpica_machdep.h user/andre/tcp-ao/sys/i386/include/apicvar.h user/andre/tcp-ao/sys/i386/include/asm.h user/andre/tcp-ao/sys/i386/include/atomic.h user/andre/tcp-ao/sys/i386/include/cpu.h user/andre/tcp-ao/sys/i386/include/intr_machdep.h user/andre/tcp-ao/sys/i386/include/md_var.h user/andre/tcp-ao/sys/i386/include/metadata.h user/andre/tcp-ao/sys/i386/include/param.h user/andre/tcp-ao/sys/i386/include/pcpu.h user/andre/tcp-ao/sys/i386/include/pmap.h user/andre/tcp-ao/sys/i386/include/sf_buf.h user/andre/tcp-ao/sys/i386/include/smp.h user/andre/tcp-ao/sys/i386/include/vmparam.h user/andre/tcp-ao/sys/i386/include/xen/xen-os.h user/andre/tcp-ao/sys/i386/include/xen/xenfunc.h user/andre/tcp-ao/sys/i386/include/xen/xenvar.h user/andre/tcp-ao/sys/i386/isa/npx.c user/andre/tcp-ao/sys/i386/isa/spic.c user/andre/tcp-ao/sys/i386/linux/imgact_linux.c user/andre/tcp-ao/sys/i386/linux/linux_machdep.c user/andre/tcp-ao/sys/i386/linux/linux_proto.h user/andre/tcp-ao/sys/i386/linux/linux_syscall.h user/andre/tcp-ao/sys/i386/linux/linux_syscalls.c user/andre/tcp-ao/sys/i386/linux/linux_sysent.c user/andre/tcp-ao/sys/i386/pci/pci_cfgreg.c user/andre/tcp-ao/sys/i386/xen/clock.c user/andre/tcp-ao/sys/i386/xen/exception.s user/andre/tcp-ao/sys/i386/xen/locore.s user/andre/tcp-ao/sys/i386/xen/mp_machdep.c user/andre/tcp-ao/sys/i386/xen/mptable.c user/andre/tcp-ao/sys/i386/xen/pmap.c user/andre/tcp-ao/sys/i386/xen/xen_machdep.c user/andre/tcp-ao/sys/ia64/conf/GENERIC user/andre/tcp-ao/sys/ia64/ia32/ia32_signal.c user/andre/tcp-ao/sys/ia64/ia64/busdma_machdep.c user/andre/tcp-ao/sys/ia64/ia64/machdep.c user/andre/tcp-ao/sys/ia64/ia64/mca.c user/andre/tcp-ao/sys/ia64/ia64/mp_machdep.c user/andre/tcp-ao/sys/ia64/ia64/pmap.c user/andre/tcp-ao/sys/ia64/ia64/vm_machdep.c user/andre/tcp-ao/sys/ia64/include/acpica_machdep.h user/andre/tcp-ao/sys/ia64/include/param.h user/andre/tcp-ao/sys/ia64/include/pcpu.h user/andre/tcp-ao/sys/ia64/include/pmap.h user/andre/tcp-ao/sys/ia64/include/sf_buf.h user/andre/tcp-ao/sys/ia64/include/vmparam.h user/andre/tcp-ao/sys/ia64/pci/pci_cfgreg.c user/andre/tcp-ao/sys/kern/Make.tags.inc user/andre/tcp-ao/sys/kern/capabilities.conf user/andre/tcp-ao/sys/kern/imgact_elf.c user/andre/tcp-ao/sys/kern/imgact_gzip.c user/andre/tcp-ao/sys/kern/init_main.c user/andre/tcp-ao/sys/kern/init_sysent.c user/andre/tcp-ao/sys/kern/kern_acct.c user/andre/tcp-ao/sys/kern/kern_alq.c user/andre/tcp-ao/sys/kern/kern_clock.c user/andre/tcp-ao/sys/kern/kern_condvar.c user/andre/tcp-ao/sys/kern/kern_conf.c user/andre/tcp-ao/sys/kern/kern_cpuset.c user/andre/tcp-ao/sys/kern/kern_descrip.c user/andre/tcp-ao/sys/kern/kern_environment.c user/andre/tcp-ao/sys/kern/kern_event.c user/andre/tcp-ao/sys/kern/kern_exec.c user/andre/tcp-ao/sys/kern/kern_exit.c user/andre/tcp-ao/sys/kern/kern_fork.c user/andre/tcp-ao/sys/kern/kern_hhook.c user/andre/tcp-ao/sys/kern/kern_intr.c user/andre/tcp-ao/sys/kern/kern_jail.c user/andre/tcp-ao/sys/kern/kern_khelp.c user/andre/tcp-ao/sys/kern/kern_kthread.c user/andre/tcp-ao/sys/kern/kern_ktrace.c user/andre/tcp-ao/sys/kern/kern_linker.c user/andre/tcp-ao/sys/kern/kern_lock.c user/andre/tcp-ao/sys/kern/kern_malloc.c user/andre/tcp-ao/sys/kern/kern_mbuf.c user/andre/tcp-ao/sys/kern/kern_mutex.c user/andre/tcp-ao/sys/kern/kern_ntptime.c user/andre/tcp-ao/sys/kern/kern_physio.c user/andre/tcp-ao/sys/kern/kern_poll.c user/andre/tcp-ao/sys/kern/kern_priv.c user/andre/tcp-ao/sys/kern/kern_proc.c user/andre/tcp-ao/sys/kern/kern_rangelock.c user/andre/tcp-ao/sys/kern/kern_resource.c user/andre/tcp-ao/sys/kern/kern_rmlock.c user/andre/tcp-ao/sys/kern/kern_rwlock.c user/andre/tcp-ao/sys/kern/kern_sdt.c user/andre/tcp-ao/sys/kern/kern_sharedpage.c user/andre/tcp-ao/sys/kern/kern_sig.c user/andre/tcp-ao/sys/kern/kern_sx.c user/andre/tcp-ao/sys/kern/kern_synch.c user/andre/tcp-ao/sys/kern/kern_sysctl.c user/andre/tcp-ao/sys/kern/kern_time.c user/andre/tcp-ao/sys/kern/kern_timeout.c user/andre/tcp-ao/sys/kern/kern_umtx.c user/andre/tcp-ao/sys/kern/kern_uuid.c user/andre/tcp-ao/sys/kern/link_elf.c user/andre/tcp-ao/sys/kern/link_elf_obj.c user/andre/tcp-ao/sys/kern/makesyscalls.sh user/andre/tcp-ao/sys/kern/sched_4bsd.c user/andre/tcp-ao/sys/kern/sched_ule.c user/andre/tcp-ao/sys/kern/subr_bus.c user/andre/tcp-ao/sys/kern/subr_bus_dma.c user/andre/tcp-ao/sys/kern/subr_busdma_bufalloc.c user/andre/tcp-ao/sys/kern/subr_devstat.c user/andre/tcp-ao/sys/kern/subr_kdb.c user/andre/tcp-ao/sys/kern/subr_lock.c user/andre/tcp-ao/sys/kern/subr_mbpool.c user/andre/tcp-ao/sys/kern/subr_param.c user/andre/tcp-ao/sys/kern/subr_prf.c user/andre/tcp-ao/sys/kern/subr_sbuf.c user/andre/tcp-ao/sys/kern/subr_smp.c user/andre/tcp-ao/sys/kern/subr_taskqueue.c user/andre/tcp-ao/sys/kern/subr_uio.c user/andre/tcp-ao/sys/kern/subr_unit.c user/andre/tcp-ao/sys/kern/subr_witness.c user/andre/tcp-ao/sys/kern/sys_capability.c user/andre/tcp-ao/sys/kern/sys_generic.c user/andre/tcp-ao/sys/kern/sys_pipe.c user/andre/tcp-ao/sys/kern/sys_procdesc.c user/andre/tcp-ao/sys/kern/sys_process.c user/andre/tcp-ao/sys/kern/sys_socket.c user/andre/tcp-ao/sys/kern/syscalls.c user/andre/tcp-ao/sys/kern/syscalls.master user/andre/tcp-ao/sys/kern/systrace_args.c user/andre/tcp-ao/sys/kern/sysv_shm.c user/andre/tcp-ao/sys/kern/tty.c user/andre/tcp-ao/sys/kern/tty_pts.c user/andre/tcp-ao/sys/kern/uipc_debug.c user/andre/tcp-ao/sys/kern/uipc_mbuf.c user/andre/tcp-ao/sys/kern/uipc_mqueue.c user/andre/tcp-ao/sys/kern/uipc_sem.c user/andre/tcp-ao/sys/kern/uipc_shm.c user/andre/tcp-ao/sys/kern/uipc_sockbuf.c user/andre/tcp-ao/sys/kern/uipc_socket.c user/andre/tcp-ao/sys/kern/uipc_syscalls.c user/andre/tcp-ao/sys/kern/uipc_usrreq.c user/andre/tcp-ao/sys/kern/vfs_acl.c user/andre/tcp-ao/sys/kern/vfs_aio.c user/andre/tcp-ao/sys/kern/vfs_bio.c user/andre/tcp-ao/sys/kern/vfs_cache.c user/andre/tcp-ao/sys/kern/vfs_cluster.c user/andre/tcp-ao/sys/kern/vfs_default.c user/andre/tcp-ao/sys/kern/vfs_extattr.c user/andre/tcp-ao/sys/kern/vfs_lookup.c user/andre/tcp-ao/sys/kern/vfs_mount.c user/andre/tcp-ao/sys/kern/vfs_mountroot.c user/andre/tcp-ao/sys/kern/vfs_subr.c user/andre/tcp-ao/sys/kern/vfs_syscalls.c user/andre/tcp-ao/sys/kern/vfs_vnops.c user/andre/tcp-ao/sys/kgssapi/gss_impl.c user/andre/tcp-ao/sys/kgssapi/krb5/krb5_mech.c user/andre/tcp-ao/sys/libkern/arc4random.c user/andre/tcp-ao/sys/libkern/arm/aeabi_unwind.c user/andre/tcp-ao/sys/libkern/ashldi3.c user/andre/tcp-ao/sys/mips/adm5120/if_admsw.c user/andre/tcp-ao/sys/mips/adm5120/obio.c user/andre/tcp-ao/sys/mips/alchemy/obio.c user/andre/tcp-ao/sys/mips/atheros/apb.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_chip.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_cpudef.h user/andre/tcp-ao/sys/mips/atheros/ar71xx_ehci.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_gpio.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_gpiovar.h user/andre/tcp-ao/sys/mips/atheros/ar71xx_machdep.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_pci.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_setup.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_setup.h user/andre/tcp-ao/sys/mips/atheros/ar71xx_spi.c user/andre/tcp-ao/sys/mips/atheros/ar71xx_wdog.c user/andre/tcp-ao/sys/mips/atheros/ar71xxreg.h user/andre/tcp-ao/sys/mips/atheros/ar724x_chip.c user/andre/tcp-ao/sys/mips/atheros/ar724x_pci.c user/andre/tcp-ao/sys/mips/atheros/ar91xx_chip.c user/andre/tcp-ao/sys/mips/atheros/ar933x_chip.c user/andre/tcp-ao/sys/mips/atheros/ar933xreg.h user/andre/tcp-ao/sys/mips/atheros/files.ar71xx user/andre/tcp-ao/sys/mips/atheros/if_arge.c user/andre/tcp-ao/sys/mips/atheros/if_argevar.h user/andre/tcp-ao/sys/mips/atheros/uart_bus_ar71xx.c user/andre/tcp-ao/sys/mips/atheros/uart_bus_ar933x.c user/andre/tcp-ao/sys/mips/atheros/uart_cpu_ar71xx.c user/andre/tcp-ao/sys/mips/atheros/uart_cpu_ar933x.c user/andre/tcp-ao/sys/mips/atheros/uart_dev_ar933x.c user/andre/tcp-ao/sys/mips/beri/beri_machdep.c user/andre/tcp-ao/sys/mips/beri/files.beri user/andre/tcp-ao/sys/mips/beri/std.beri user/andre/tcp-ao/sys/mips/cavium/ciu.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-common.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-mdio.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-mem.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-rgmii.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-rx.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-sgmii.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-spi.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-tx.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet-xaui.c user/andre/tcp-ao/sys/mips/cavium/octe/ethernet.c user/andre/tcp-ao/sys/mips/cavium/octe/wrapper-cvmx-includes.h user/andre/tcp-ao/sys/mips/cavium/octeon_ebt3000_cf.c user/andre/tcp-ao/sys/mips/cavium/octeon_gpio.c user/andre/tcp-ao/sys/mips/cavium/octeon_pmc.c user/andre/tcp-ao/sys/mips/cavium/octeon_rnd.c user/andre/tcp-ao/sys/mips/cavium/octeon_rtc.c user/andre/tcp-ao/sys/mips/cavium/std.octeon1 user/andre/tcp-ao/sys/mips/cavium/uart_dev_oct16550.c user/andre/tcp-ao/sys/mips/conf/AP121 user/andre/tcp-ao/sys/mips/conf/AP121.hints user/andre/tcp-ao/sys/mips/conf/AP93.hints user/andre/tcp-ao/sys/mips/conf/AR933X_BASE user/andre/tcp-ao/sys/mips/conf/AR933X_BASE.hints user/andre/tcp-ao/sys/mips/conf/BERI_DE4.hints user/andre/tcp-ao/sys/mips/conf/BERI_DE4_MDROOT user/andre/tcp-ao/sys/mips/conf/BERI_DE4_SDROOT user/andre/tcp-ao/sys/mips/conf/BERI_SIM_MDROOT user/andre/tcp-ao/sys/mips/conf/BERI_TEMPLATE user/andre/tcp-ao/sys/mips/conf/DIR-825 user/andre/tcp-ao/sys/mips/conf/DIR-825.hints user/andre/tcp-ao/sys/mips/conf/MALTA user/andre/tcp-ao/sys/mips/conf/MALTA64 user/andre/tcp-ao/sys/mips/conf/OCTEON1 user/andre/tcp-ao/sys/mips/conf/ROUTERSTATION user/andre/tcp-ao/sys/mips/conf/ROUTERSTATION.hints user/andre/tcp-ao/sys/mips/conf/TP-WN1043ND user/andre/tcp-ao/sys/mips/conf/XLR user/andre/tcp-ao/sys/mips/conf/XLR64 user/andre/tcp-ao/sys/mips/conf/XLRN32 user/andre/tcp-ao/sys/mips/conf/std.SWARM user/andre/tcp-ao/sys/mips/conf/std.XLP user/andre/tcp-ao/sys/mips/gxemul/mpreg.h user/andre/tcp-ao/sys/mips/idt/if_kr.c user/andre/tcp-ao/sys/mips/idt/obio.c user/andre/tcp-ao/sys/mips/include/_stdint.h user/andre/tcp-ao/sys/mips/include/asm.h user/andre/tcp-ao/sys/mips/include/atomic.h user/andre/tcp-ao/sys/mips/include/cpufunc.h user/andre/tcp-ao/sys/mips/include/cpuregs.h user/andre/tcp-ao/sys/mips/include/elf.h user/andre/tcp-ao/sys/mips/include/frame.h user/andre/tcp-ao/sys/mips/include/param.h user/andre/tcp-ao/sys/mips/include/pcb.h user/andre/tcp-ao/sys/mips/include/pcpu.h user/andre/tcp-ao/sys/mips/include/pte.h user/andre/tcp-ao/sys/mips/include/regdef.h user/andre/tcp-ao/sys/mips/include/regnum.h user/andre/tcp-ao/sys/mips/include/sf_buf.h user/andre/tcp-ao/sys/mips/include/vmparam.h user/andre/tcp-ao/sys/mips/malta/files.malta user/andre/tcp-ao/sys/mips/malta/gt.c user/andre/tcp-ao/sys/mips/malta/gt_pci.c user/andre/tcp-ao/sys/mips/malta/malta_machdep.c user/andre/tcp-ao/sys/mips/malta/std.malta user/andre/tcp-ao/sys/mips/malta/yamon.c user/andre/tcp-ao/sys/mips/mips/bus_space_fdt.c user/andre/tcp-ao/sys/mips/mips/bus_space_generic.c user/andre/tcp-ao/sys/mips/mips/busdma_machdep.c user/andre/tcp-ao/sys/mips/mips/cache.c user/andre/tcp-ao/sys/mips/mips/cpu.c user/andre/tcp-ao/sys/mips/mips/db_interface.c user/andre/tcp-ao/sys/mips/mips/db_trace.c user/andre/tcp-ao/sys/mips/mips/elf_trampoline.c user/andre/tcp-ao/sys/mips/mips/exception.S user/andre/tcp-ao/sys/mips/mips/fp.S user/andre/tcp-ao/sys/mips/mips/mp_machdep.c user/andre/tcp-ao/sys/mips/mips/pmap.c user/andre/tcp-ao/sys/mips/mips/stack_machdep.c user/andre/tcp-ao/sys/mips/mips/support.S user/andre/tcp-ao/sys/mips/mips/swtch.S user/andre/tcp-ao/sys/mips/mips/tick.c user/andre/tcp-ao/sys/mips/mips/tlb.c user/andre/tcp-ao/sys/mips/mips/trap.c user/andre/tcp-ao/sys/mips/mips/uio_machdep.c user/andre/tcp-ao/sys/mips/mips/vm_machdep.c user/andre/tcp-ao/sys/mips/nlm/board.c user/andre/tcp-ao/sys/mips/nlm/board.h user/andre/tcp-ao/sys/mips/nlm/board_cpld.c user/andre/tcp-ao/sys/mips/nlm/dev/net/nae.c user/andre/tcp-ao/sys/mips/nlm/dev/net/xaui.c user/andre/tcp-ao/sys/mips/nlm/dev/net/xlpge.c user/andre/tcp-ao/sys/mips/nlm/dev/net/xlpge.h user/andre/tcp-ao/sys/mips/nlm/dev/sec/nlmrsa.c user/andre/tcp-ao/sys/mips/nlm/dev/sec/nlmrsalib.h user/andre/tcp-ao/sys/mips/nlm/hal/nae.h user/andre/tcp-ao/sys/mips/nlm/hal/nlm_hal.c user/andre/tcp-ao/sys/mips/nlm/hal/sys.h user/andre/tcp-ao/sys/mips/nlm/tick.c user/andre/tcp-ao/sys/mips/nlm/xlp_pci.c user/andre/tcp-ao/sys/mips/rmi/dev/nlge/if_nlge.c user/andre/tcp-ao/sys/mips/rmi/iodi.c user/andre/tcp-ao/sys/mips/rmi/tick.c user/andre/tcp-ao/sys/mips/rt305x/obio.c user/andre/tcp-ao/sys/mips/rt305x/rt305x_gpio.c user/andre/tcp-ao/sys/mips/sibyte/sb_zbbus.c user/andre/tcp-ao/sys/mips/sibyte/sb_zbpci.c user/andre/tcp-ao/sys/modules/Makefile user/andre/tcp-ao/sys/modules/acpi/acpi/Makefile user/andre/tcp-ao/sys/modules/aesni/Makefile user/andre/tcp-ao/sys/modules/ata/Makefile user/andre/tcp-ao/sys/modules/ata/atacard/Makefile user/andre/tcp-ao/sys/modules/ata/atacbus/Makefile user/andre/tcp-ao/sys/modules/ata/atacore/Makefile user/andre/tcp-ao/sys/modules/ata/ataisa/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataacard/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataacerlabs/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataadaptec/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataahci/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataamd/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataati/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atacenatek/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atacypress/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atacyrix/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atahighpoint/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataintel/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataite/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atajmicron/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atamarvell/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atamicron/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atanational/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atanetcell/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atanvidia/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atapromise/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/ataserverworks/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atasiliconimage/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atasis/Makefile user/andre/tcp-ao/sys/modules/ata/atapci/chipsets/atavia/Makefile user/andre/tcp-ao/sys/modules/ath/Makefile user/andre/tcp-ao/sys/modules/bxe/Makefile user/andre/tcp-ao/sys/modules/cam/Makefile user/andre/tcp-ao/sys/modules/cc/Makefile user/andre/tcp-ao/sys/modules/ctl/Makefile user/andre/tcp-ao/sys/modules/cxgb/Makefile user/andre/tcp-ao/sys/modules/cxgb/cxgb/Makefile user/andre/tcp-ao/sys/modules/cxgbe/Makefile user/andre/tcp-ao/sys/modules/cxgbe/if_cxgbe/Makefile user/andre/tcp-ao/sys/modules/cxgbe/t4_firmware/Makefile user/andre/tcp-ao/sys/modules/cyclic/Makefile user/andre/tcp-ao/sys/modules/drm2/Makefile user/andre/tcp-ao/sys/modules/drm2/drm2/Makefile user/andre/tcp-ao/sys/modules/dtrace/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtmalloc/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtnfscl/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtnfsclient/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtrace/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtrace_test/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtraceall/Makefile user/andre/tcp-ao/sys/modules/dtrace/dtraceall/dtraceall.c user/andre/tcp-ao/sys/modules/dtrace/fasttrap/Makefile user/andre/tcp-ao/sys/modules/dtrace/fbt/Makefile user/andre/tcp-ao/sys/modules/dtrace/lockstat/Makefile user/andre/tcp-ao/sys/modules/dtrace/profile/Makefile user/andre/tcp-ao/sys/modules/dtrace/prototype/Makefile user/andre/tcp-ao/sys/modules/dtrace/sdt/Makefile user/andre/tcp-ao/sys/modules/dtrace/systrace/Makefile user/andre/tcp-ao/sys/modules/dtrace/systrace_freebsd32/Makefile user/andre/tcp-ao/sys/modules/dtrace/systrace_linux32/Makefile user/andre/tcp-ao/sys/modules/em/Makefile user/andre/tcp-ao/sys/modules/ext2fs/Makefile user/andre/tcp-ao/sys/modules/filemon/Makefile user/andre/tcp-ao/sys/modules/geom/geom_label/Makefile user/andre/tcp-ao/sys/modules/hpt27xx/Makefile user/andre/tcp-ao/sys/modules/hwpmc/Makefile user/andre/tcp-ao/sys/modules/igb/Makefile user/andre/tcp-ao/sys/modules/ip6_mroute_mod/Makefile user/andre/tcp-ao/sys/modules/ipfilter/Makefile user/andre/tcp-ao/sys/modules/iscsi/Makefile user/andre/tcp-ao/sys/modules/iwn/Makefile user/andre/tcp-ao/sys/modules/iwnfw/Makefile user/andre/tcp-ao/sys/modules/iwnfw/iwn6000g2a/Makefile user/andre/tcp-ao/sys/modules/ixgbe/Makefile user/andre/tcp-ao/sys/modules/linux/Makefile user/andre/tcp-ao/sys/modules/mlx4/Makefile user/andre/tcp-ao/sys/modules/mlx4ib/Makefile user/andre/tcp-ao/sys/modules/netgraph/Makefile user/andre/tcp-ao/sys/modules/nfsd/Makefile user/andre/tcp-ao/sys/modules/nfsserver/Makefile user/andre/tcp-ao/sys/modules/nvme/Makefile user/andre/tcp-ao/sys/modules/opensolaris/Makefile user/andre/tcp-ao/sys/modules/random/Makefile user/andre/tcp-ao/sys/modules/rdma/Makefile user/andre/tcp-ao/sys/modules/send/Makefile user/andre/tcp-ao/sys/modules/sfxge/Makefile user/andre/tcp-ao/sys/modules/ti/Makefile user/andre/tcp-ao/sys/modules/uart/Makefile user/andre/tcp-ao/sys/modules/usb/Makefile user/andre/tcp-ao/sys/modules/usb/umass/Makefile user/andre/tcp-ao/sys/modules/usb/urio/Makefile user/andre/tcp-ao/sys/modules/usb/usfs/Makefile user/andre/tcp-ao/sys/modules/virtio/network/Makefile user/andre/tcp-ao/sys/modules/vmm/Makefile user/andre/tcp-ao/sys/modules/wi/Makefile user/andre/tcp-ao/sys/modules/zfs/Makefile user/andre/tcp-ao/sys/net/bpf.c user/andre/tcp-ao/sys/net/bpf.h user/andre/tcp-ao/sys/net/bridgestp.c user/andre/tcp-ao/sys/net/ethernet.h user/andre/tcp-ao/sys/net/flowtable.c user/andre/tcp-ao/sys/net/ieee8023ad_lacp.c user/andre/tcp-ao/sys/net/ieee8023ad_lacp.h user/andre/tcp-ao/sys/net/if.c user/andre/tcp-ao/sys/net/if.h user/andre/tcp-ao/sys/net/if_arc.h user/andre/tcp-ao/sys/net/if_arcsubr.c user/andre/tcp-ao/sys/net/if_arp.h user/andre/tcp-ao/sys/net/if_atm.h user/andre/tcp-ao/sys/net/if_atmsubr.c user/andre/tcp-ao/sys/net/if_bridge.c user/andre/tcp-ao/sys/net/if_clone.c user/andre/tcp-ao/sys/net/if_clone.h user/andre/tcp-ao/sys/net/if_dead.c user/andre/tcp-ao/sys/net/if_disc.c user/andre/tcp-ao/sys/net/if_edsc.c user/andre/tcp-ao/sys/net/if_ef.c user/andre/tcp-ao/sys/net/if_enc.c user/andre/tcp-ao/sys/net/if_epair.c user/andre/tcp-ao/sys/net/if_ethersubr.c user/andre/tcp-ao/sys/net/if_faith.c user/andre/tcp-ao/sys/net/if_fddisubr.c user/andre/tcp-ao/sys/net/if_fwsubr.c user/andre/tcp-ao/sys/net/if_gif.c user/andre/tcp-ao/sys/net/if_gif.h user/andre/tcp-ao/sys/net/if_gre.c user/andre/tcp-ao/sys/net/if_iso88025subr.c user/andre/tcp-ao/sys/net/if_lagg.c user/andre/tcp-ao/sys/net/if_lagg.h user/andre/tcp-ao/sys/net/if_llatbl.h user/andre/tcp-ao/sys/net/if_loop.c user/andre/tcp-ao/sys/net/if_media.h user/andre/tcp-ao/sys/net/if_mib.c user/andre/tcp-ao/sys/net/if_pfsync.h user/andre/tcp-ao/sys/net/if_spppfr.c user/andre/tcp-ao/sys/net/if_spppsubr.c user/andre/tcp-ao/sys/net/if_stf.c user/andre/tcp-ao/sys/net/if_tap.c user/andre/tcp-ao/sys/net/if_tun.c user/andre/tcp-ao/sys/net/if_var.h user/andre/tcp-ao/sys/net/if_vlan.c user/andre/tcp-ao/sys/net/if_vlan_var.h user/andre/tcp-ao/sys/net/iso88025.h user/andre/tcp-ao/sys/net/netisr.c user/andre/tcp-ao/sys/net/netmap.h user/andre/tcp-ao/sys/net/netmap_user.h user/andre/tcp-ao/sys/net/pfil.c user/andre/tcp-ao/sys/net/pfil.h user/andre/tcp-ao/sys/net/pfvar.h user/andre/tcp-ao/sys/net/ppp_defs.h user/andre/tcp-ao/sys/net/radix.c user/andre/tcp-ao/sys/net/radix.h user/andre/tcp-ao/sys/net/raw_cb.c user/andre/tcp-ao/sys/net/raw_usrreq.c user/andre/tcp-ao/sys/net/route.c user/andre/tcp-ao/sys/net/route.h user/andre/tcp-ao/sys/net/rtsock.c user/andre/tcp-ao/sys/net/vnet.h user/andre/tcp-ao/sys/net80211/ieee80211.c user/andre/tcp-ao/sys/net80211/ieee80211.h user/andre/tcp-ao/sys/net80211/ieee80211_action.c user/andre/tcp-ao/sys/net80211/ieee80211_adhoc.c user/andre/tcp-ao/sys/net80211/ieee80211_ageq.c user/andre/tcp-ao/sys/net80211/ieee80211_alq.c user/andre/tcp-ao/sys/net80211/ieee80211_amrr.c user/andre/tcp-ao/sys/net80211/ieee80211_ddb.c user/andre/tcp-ao/sys/net80211/ieee80211_dfs.c user/andre/tcp-ao/sys/net80211/ieee80211_freebsd.c user/andre/tcp-ao/sys/net80211/ieee80211_freebsd.h user/andre/tcp-ao/sys/net80211/ieee80211_hostap.c user/andre/tcp-ao/sys/net80211/ieee80211_ht.c user/andre/tcp-ao/sys/net80211/ieee80211_hwmp.c user/andre/tcp-ao/sys/net80211/ieee80211_input.c user/andre/tcp-ao/sys/net80211/ieee80211_ioctl.c user/andre/tcp-ao/sys/net80211/ieee80211_mesh.c user/andre/tcp-ao/sys/net80211/ieee80211_monitor.c user/andre/tcp-ao/sys/net80211/ieee80211_node.c user/andre/tcp-ao/sys/net80211/ieee80211_output.c user/andre/tcp-ao/sys/net80211/ieee80211_phy.c user/andre/tcp-ao/sys/net80211/ieee80211_phy.h user/andre/tcp-ao/sys/net80211/ieee80211_power.c user/andre/tcp-ao/sys/net80211/ieee80211_proto.c user/andre/tcp-ao/sys/net80211/ieee80211_proto.h user/andre/tcp-ao/sys/net80211/ieee80211_radiotap.c user/andre/tcp-ao/sys/net80211/ieee80211_ratectl.c user/andre/tcp-ao/sys/net80211/ieee80211_ratectl_none.c user/andre/tcp-ao/sys/net80211/ieee80211_regdomain.c user/andre/tcp-ao/sys/net80211/ieee80211_rssadapt.c user/andre/tcp-ao/sys/net80211/ieee80211_scan.c user/andre/tcp-ao/sys/net80211/ieee80211_scan_sta.c user/andre/tcp-ao/sys/net80211/ieee80211_superg.c user/andre/tcp-ao/sys/net80211/ieee80211_tdma.c user/andre/tcp-ao/sys/net80211/ieee80211_var.h user/andre/tcp-ao/sys/net80211/ieee80211_wds.c user/andre/tcp-ao/sys/netatalk/aarp.c user/andre/tcp-ao/sys/netatalk/aarp.h user/andre/tcp-ao/sys/netatalk/at_control.c user/andre/tcp-ao/sys/netatalk/at_extern.h user/andre/tcp-ao/sys/netatalk/ddp_input.c user/andre/tcp-ao/sys/netatalk/ddp_output.c user/andre/tcp-ao/sys/netatalk/ddp_pcb.c user/andre/tcp-ao/sys/netatalk/ddp_usrreq.c user/andre/tcp-ao/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c user/andre/tcp-ao/sys/netgraph/bluetooth/hci/ng_hci_ulpi.c user/andre/tcp-ao/sys/netgraph/bluetooth/l2cap/ng_l2cap_cmds.c user/andre/tcp-ao/sys/netgraph/bluetooth/socket/ng_btsocket.c user/andre/tcp-ao/sys/netgraph/netflow/netflow.c user/andre/tcp-ao/sys/netgraph/netflow/ng_netflow.h user/andre/tcp-ao/sys/netgraph/ng_base.c user/andre/tcp-ao/sys/netgraph/ng_bridge.c user/andre/tcp-ao/sys/netgraph/ng_cisco.c user/andre/tcp-ao/sys/netgraph/ng_eiface.c user/andre/tcp-ao/sys/netgraph/ng_ether.c user/andre/tcp-ao/sys/netgraph/ng_iface.c user/andre/tcp-ao/sys/netgraph/ng_ipfw.c user/andre/tcp-ao/sys/netgraph/ng_one2many.c user/andre/tcp-ao/sys/netgraph/ng_pppoe.c user/andre/tcp-ao/sys/netgraph/ng_pppoe.h user/andre/tcp-ao/sys/netgraph/ng_sppp.c user/andre/tcp-ao/sys/netinet/icmp6.h user/andre/tcp-ao/sys/netinet/icmp_var.h user/andre/tcp-ao/sys/netinet/if_atm.c user/andre/tcp-ao/sys/netinet/if_atm.h user/andre/tcp-ao/sys/netinet/if_ether.c user/andre/tcp-ao/sys/netinet/if_ether.h user/andre/tcp-ao/sys/netinet/igmp.c user/andre/tcp-ao/sys/netinet/igmp_var.h user/andre/tcp-ao/sys/netinet/in.c user/andre/tcp-ao/sys/netinet/in.h user/andre/tcp-ao/sys/netinet/in_gif.c user/andre/tcp-ao/sys/netinet/in_mcast.c user/andre/tcp-ao/sys/netinet/in_pcb.c user/andre/tcp-ao/sys/netinet/in_pcb.h user/andre/tcp-ao/sys/netinet/in_proto.c user/andre/tcp-ao/sys/netinet/in_rmx.c user/andre/tcp-ao/sys/netinet/in_var.h user/andre/tcp-ao/sys/netinet/ip6.h user/andre/tcp-ao/sys/netinet/ip_carp.c user/andre/tcp-ao/sys/netinet/ip_carp.h user/andre/tcp-ao/sys/netinet/ip_divert.c user/andre/tcp-ao/sys/netinet/ip_fastfwd.c user/andre/tcp-ao/sys/netinet/ip_gre.c user/andre/tcp-ao/sys/netinet/ip_icmp.c user/andre/tcp-ao/sys/netinet/ip_input.c user/andre/tcp-ao/sys/netinet/ip_ipsec.c user/andre/tcp-ao/sys/netinet/ip_mroute.c user/andre/tcp-ao/sys/netinet/ip_mroute.h user/andre/tcp-ao/sys/netinet/ip_output.c user/andre/tcp-ao/sys/netinet/ip_var.h user/andre/tcp-ao/sys/netinet/libalias/alias_db.c user/andre/tcp-ao/sys/netinet/pim_var.h user/andre/tcp-ao/sys/netinet/raw_ip.c user/andre/tcp-ao/sys/netinet/sctp.h user/andre/tcp-ao/sys/netinet/sctp_asconf.c user/andre/tcp-ao/sys/netinet/sctp_auth.c user/andre/tcp-ao/sys/netinet/sctp_auth.h user/andre/tcp-ao/sys/netinet/sctp_constants.h user/andre/tcp-ao/sys/netinet/sctp_dtrace_define.h user/andre/tcp-ao/sys/netinet/sctp_indata.c user/andre/tcp-ao/sys/netinet/sctp_indata.h user/andre/tcp-ao/sys/netinet/sctp_input.c user/andre/tcp-ao/sys/netinet/sctp_os_bsd.h user/andre/tcp-ao/sys/netinet/sctp_output.c user/andre/tcp-ao/sys/netinet/sctp_pcb.c user/andre/tcp-ao/sys/netinet/sctp_pcb.h user/andre/tcp-ao/sys/netinet/sctp_structs.h user/andre/tcp-ao/sys/netinet/sctp_sysctl.c user/andre/tcp-ao/sys/netinet/sctp_sysctl.h user/andre/tcp-ao/sys/netinet/sctp_timer.c user/andre/tcp-ao/sys/netinet/sctp_uio.h user/andre/tcp-ao/sys/netinet/sctp_usrreq.c user/andre/tcp-ao/sys/netinet/sctputil.c user/andre/tcp-ao/sys/netinet/siftr.c user/andre/tcp-ao/sys/netinet/tcp_hostcache.c user/andre/tcp-ao/sys/netinet/tcp_input.c user/andre/tcp-ao/sys/netinet/tcp_lro.c user/andre/tcp-ao/sys/netinet/tcp_lro.h user/andre/tcp-ao/sys/netinet/tcp_offload.c user/andre/tcp-ao/sys/netinet/tcp_output.c user/andre/tcp-ao/sys/netinet/tcp_reass.c user/andre/tcp-ao/sys/netinet/tcp_sack.c user/andre/tcp-ao/sys/netinet/tcp_subr.c user/andre/tcp-ao/sys/netinet/tcp_syncache.c user/andre/tcp-ao/sys/netinet/tcp_syncache.h user/andre/tcp-ao/sys/netinet/tcp_timewait.c user/andre/tcp-ao/sys/netinet/tcp_usrreq.c user/andre/tcp-ao/sys/netinet/tcp_var.h user/andre/tcp-ao/sys/netinet/toecore.c user/andre/tcp-ao/sys/netinet/udp_usrreq.c user/andre/tcp-ao/sys/netinet/udp_var.h user/andre/tcp-ao/sys/netinet6/dest6.c user/andre/tcp-ao/sys/netinet6/frag6.c user/andre/tcp-ao/sys/netinet6/icmp6.c user/andre/tcp-ao/sys/netinet6/in6.c user/andre/tcp-ao/sys/netinet6/in6.h user/andre/tcp-ao/sys/netinet6/in6_gif.c user/andre/tcp-ao/sys/netinet6/in6_ifattach.c user/andre/tcp-ao/sys/netinet6/in6_ifattach.h user/andre/tcp-ao/sys/netinet6/in6_mcast.c user/andre/tcp-ao/sys/netinet6/in6_pcb.c user/andre/tcp-ao/sys/netinet6/in6_proto.c user/andre/tcp-ao/sys/netinet6/in6_rmx.c user/andre/tcp-ao/sys/netinet6/in6_src.c user/andre/tcp-ao/sys/netinet6/in6_var.h user/andre/tcp-ao/sys/netinet6/ip6_forward.c user/andre/tcp-ao/sys/netinet6/ip6_id.c user/andre/tcp-ao/sys/netinet6/ip6_input.c user/andre/tcp-ao/sys/netinet6/ip6_ipsec.c user/andre/tcp-ao/sys/netinet6/ip6_mroute.c user/andre/tcp-ao/sys/netinet6/ip6_mroute.h user/andre/tcp-ao/sys/netinet6/ip6_output.c user/andre/tcp-ao/sys/netinet6/ip6_var.h user/andre/tcp-ao/sys/netinet6/mld6.c user/andre/tcp-ao/sys/netinet6/nd6.c user/andre/tcp-ao/sys/netinet6/nd6.h user/andre/tcp-ao/sys/netinet6/nd6_rtr.c user/andre/tcp-ao/sys/netinet6/pim6_var.h user/andre/tcp-ao/sys/netinet6/raw_ip6.c user/andre/tcp-ao/sys/netinet6/raw_ip6.h user/andre/tcp-ao/sys/netinet6/route6.c user/andre/tcp-ao/sys/netinet6/scope6.c user/andre/tcp-ao/sys/netinet6/sctp6_usrreq.c user/andre/tcp-ao/sys/netinet6/send.c user/andre/tcp-ao/sys/netinet6/udp6_usrreq.c user/andre/tcp-ao/sys/netipsec/ah_var.h user/andre/tcp-ao/sys/netipsec/esp_var.h user/andre/tcp-ao/sys/netipsec/ipcomp_var.h user/andre/tcp-ao/sys/netipsec/ipip_var.h user/andre/tcp-ao/sys/netipsec/ipsec.c user/andre/tcp-ao/sys/netipsec/ipsec.h user/andre/tcp-ao/sys/netipsec/ipsec6.h user/andre/tcp-ao/sys/netipsec/ipsec_input.c user/andre/tcp-ao/sys/netipsec/ipsec_mbuf.c user/andre/tcp-ao/sys/netipsec/ipsec_output.c user/andre/tcp-ao/sys/netipsec/key.c user/andre/tcp-ao/sys/netipsec/key_var.h user/andre/tcp-ao/sys/netipsec/keysock.c user/andre/tcp-ao/sys/netipsec/keysock.h user/andre/tcp-ao/sys/netipsec/xform_ah.c user/andre/tcp-ao/sys/netipsec/xform_esp.c user/andre/tcp-ao/sys/netipsec/xform_ipcomp.c user/andre/tcp-ao/sys/netipsec/xform_ipip.c user/andre/tcp-ao/sys/netipx/ipx.c user/andre/tcp-ao/sys/netipx/ipx_if.h user/andre/tcp-ao/sys/netipx/ipx_input.c user/andre/tcp-ao/sys/netipx/ipx_outputfl.c user/andre/tcp-ao/sys/netipx/ipx_pcb.c user/andre/tcp-ao/sys/netipx/ipx_usrreq.c user/andre/tcp-ao/sys/netnatm/natm.c user/andre/tcp-ao/sys/netnatm/natm_pcb.c user/andre/tcp-ao/sys/netnatm/natm_proto.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_dn_io.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_dummynet.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_fw2.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_fw_dynamic.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_fw_log.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_fw_nat.c user/andre/tcp-ao/sys/netpfil/ipfw/ip_fw_private.h user/andre/tcp-ao/sys/netpfil/pf/if_pflog.c user/andre/tcp-ao/sys/netpfil/pf/if_pfsync.c user/andre/tcp-ao/sys/netpfil/pf/pf.c user/andre/tcp-ao/sys/netpfil/pf/pf_if.c user/andre/tcp-ao/sys/netpfil/pf/pf_ioctl.c user/andre/tcp-ao/sys/netpfil/pf/pf_lb.c user/andre/tcp-ao/sys/netpfil/pf/pf_norm.c user/andre/tcp-ao/sys/netpfil/pf/pf_osfp.c user/andre/tcp-ao/sys/netpfil/pf/pf_ruleset.c user/andre/tcp-ao/sys/netpfil/pf/pf_table.c user/andre/tcp-ao/sys/netsmb/smb_conn.c user/andre/tcp-ao/sys/netsmb/smb_conn.h user/andre/tcp-ao/sys/netsmb/smb_dev.c user/andre/tcp-ao/sys/netsmb/smb_dev.h user/andre/tcp-ao/sys/netsmb/smb_trantcp.c user/andre/tcp-ao/sys/nfs/bootp_subr.c user/andre/tcp-ao/sys/nfsclient/nfs_bio.c user/andre/tcp-ao/sys/nfsclient/nfs_nfsiod.c user/andre/tcp-ao/sys/nfsclient/nfs_subs.c user/andre/tcp-ao/sys/nfsclient/nfs_vfsops.c user/andre/tcp-ao/sys/nfsclient/nfs_vnops.c user/andre/tcp-ao/sys/nfsserver/nfs_serv.c user/andre/tcp-ao/sys/nfsserver/nfs_srvkrpc.c user/andre/tcp-ao/sys/nlm/nlm_prot_impl.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/addr.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/cma.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/core_priv.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/device.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/sa_query.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/sysfs.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/ucm.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/umem.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/uverbs_cmd.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/uverbs_main.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/core/verbs.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/Kconfig user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/Makefile user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/ah.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/cq.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/mad.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/main.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/mlx4_ib.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/mr.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/qp.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/srq.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/user.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mlx4/wc.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mthca/mthca_cmd.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mthca/mthca_main.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mthca/mthca_memfree.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/hw/mthca/mthca_provider.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c user/andre/tcp-ao/sys/ofed/drivers/infiniband/ulp/sdp/sdp.h user/andre/tcp-ao/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/Makefile user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/alloc.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/catas.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/cmd.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/cq.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_cq.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_frag.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_main.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_netdev.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_port.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_port.h user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_rx.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/en_tx.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/eq.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/fw.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/fw.h user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/icm.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/icm.h user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/intf.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/main.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/mcg.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/mlx4.h user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/mlx4_en.h user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/mr.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/pd.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/port.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/profile.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/qp.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/reset.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/sense.c user/andre/tcp-ao/sys/ofed/drivers/net/mlx4/srq.c user/andre/tcp-ao/sys/ofed/include/asm/atomic.h user/andre/tcp-ao/sys/ofed/include/asm/byteorder.h user/andre/tcp-ao/sys/ofed/include/linux/bitops.h user/andre/tcp-ao/sys/ofed/include/linux/compat.h user/andre/tcp-ao/sys/ofed/include/linux/device.h user/andre/tcp-ao/sys/ofed/include/linux/dma-mapping.h user/andre/tcp-ao/sys/ofed/include/linux/file.h user/andre/tcp-ao/sys/ofed/include/linux/fs.h user/andre/tcp-ao/sys/ofed/include/linux/gfp.h user/andre/tcp-ao/sys/ofed/include/linux/idr.h user/andre/tcp-ao/sys/ofed/include/linux/if_ether.h user/andre/tcp-ao/sys/ofed/include/linux/in6.h user/andre/tcp-ao/sys/ofed/include/linux/kernel.h user/andre/tcp-ao/sys/ofed/include/linux/linux_compat.c user/andre/tcp-ao/sys/ofed/include/linux/list.h user/andre/tcp-ao/sys/ofed/include/linux/log2.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/cmd.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/cq.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/device.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/driver.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/qp.h user/andre/tcp-ao/sys/ofed/include/linux/mlx4/srq.h user/andre/tcp-ao/sys/ofed/include/linux/module.h user/andre/tcp-ao/sys/ofed/include/linux/moduleparam.h user/andre/tcp-ao/sys/ofed/include/linux/net.h user/andre/tcp-ao/sys/ofed/include/linux/page.h user/andre/tcp-ao/sys/ofed/include/linux/pci.h user/andre/tcp-ao/sys/ofed/include/linux/sysfs.h user/andre/tcp-ao/sys/ofed/include/linux/types.h user/andre/tcp-ao/sys/ofed/include/linux/workqueue.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_cm.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_mad.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_sa.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_umem.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_user_verbs.h user/andre/tcp-ao/sys/ofed/include/rdma/ib_verbs.h user/andre/tcp-ao/sys/ofed/include/rdma/sdp_socket.h user/andre/tcp-ao/sys/opencrypto/cryptodev.c user/andre/tcp-ao/sys/pc98/conf/GENERIC user/andre/tcp-ao/sys/pc98/conf/NOTES user/andre/tcp-ao/sys/pc98/pc98/canbus.c user/andre/tcp-ao/sys/pc98/pc98/machdep.c user/andre/tcp-ao/sys/pci/if_rl.c user/andre/tcp-ao/sys/pci/if_rlreg.h user/andre/tcp-ao/sys/pci/ncr.c user/andre/tcp-ao/sys/powerpc/aim/interrupt.c user/andre/tcp-ao/sys/powerpc/aim/machdep.c user/andre/tcp-ao/sys/powerpc/aim/mmu_oea.c user/andre/tcp-ao/sys/powerpc/aim/mmu_oea64.c user/andre/tcp-ao/sys/powerpc/aim/mmu_oea64.h user/andre/tcp-ao/sys/powerpc/aim/mp_cpudep.c user/andre/tcp-ao/sys/powerpc/aim/trap.c user/andre/tcp-ao/sys/powerpc/booke/locore.S user/andre/tcp-ao/sys/powerpc/booke/machdep.c user/andre/tcp-ao/sys/powerpc/booke/machdep_e500.c user/andre/tcp-ao/sys/powerpc/booke/platform_bare.c user/andre/tcp-ao/sys/powerpc/booke/pmap.c user/andre/tcp-ao/sys/powerpc/conf/DEFAULTS user/andre/tcp-ao/sys/powerpc/conf/GENERIC user/andre/tcp-ao/sys/powerpc/conf/GENERIC64 user/andre/tcp-ao/sys/powerpc/conf/MPC85XX user/andre/tcp-ao/sys/powerpc/conf/Makefile user/andre/tcp-ao/sys/powerpc/include/_stdint.h user/andre/tcp-ao/sys/powerpc/include/frame.h user/andre/tcp-ao/sys/powerpc/include/gdb_machdep.h user/andre/tcp-ao/sys/powerpc/include/intr_machdep.h user/andre/tcp-ao/sys/powerpc/include/ofw_machdep.h user/andre/tcp-ao/sys/powerpc/include/param.h user/andre/tcp-ao/sys/powerpc/include/pcpu.h user/andre/tcp-ao/sys/powerpc/include/platform.h user/andre/tcp-ao/sys/powerpc/include/pmap.h user/andre/tcp-ao/sys/powerpc/include/pmc_mdep.h user/andre/tcp-ao/sys/powerpc/include/proc.h user/andre/tcp-ao/sys/powerpc/include/psl.h user/andre/tcp-ao/sys/powerpc/include/pte.h user/andre/tcp-ao/sys/powerpc/include/sf_buf.h user/andre/tcp-ao/sys/powerpc/include/spr.h user/andre/tcp-ao/sys/powerpc/include/tlb.h user/andre/tcp-ao/sys/powerpc/include/trap.h user/andre/tcp-ao/sys/powerpc/include/vmparam.h user/andre/tcp-ao/sys/powerpc/mpc85xx/atpic.c user/andre/tcp-ao/sys/powerpc/mpc85xx/fsl_sdhc.c user/andre/tcp-ao/sys/powerpc/mpc85xx/mpc85xx.c user/andre/tcp-ao/sys/powerpc/mpc85xx/mpc85xx.h user/andre/tcp-ao/sys/powerpc/ofw/ofw_cpu.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_machdep.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_pci.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_pci.h user/andre/tcp-ao/sys/powerpc/ofw/ofw_pcib_pci.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_pcibus.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_real.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_syscons.c user/andre/tcp-ao/sys/powerpc/ofw/ofw_syscons.h user/andre/tcp-ao/sys/powerpc/ofw/rtas.c user/andre/tcp-ao/sys/powerpc/powermac/ata_dbdma.c user/andre/tcp-ao/sys/powerpc/powermac/ata_kauai.c user/andre/tcp-ao/sys/powerpc/powermac/ata_macio.c user/andre/tcp-ao/sys/powerpc/powermac/atibl.c user/andre/tcp-ao/sys/powerpc/powermac/kiic.c user/andre/tcp-ao/sys/powerpc/powermac/macio.c user/andre/tcp-ao/sys/powerpc/powermac/maciovar.h user/andre/tcp-ao/sys/powerpc/powermac/nvbl.c user/andre/tcp-ao/sys/powerpc/powermac/platform_powermac.c user/andre/tcp-ao/sys/powerpc/powermac/powermac_thermal.c user/andre/tcp-ao/sys/powerpc/powermac/smu.c user/andre/tcp-ao/sys/powerpc/powerpc/bus_machdep.c user/andre/tcp-ao/sys/powerpc/powerpc/busdma_machdep.c user/andre/tcp-ao/sys/powerpc/powerpc/cpu.c user/andre/tcp-ao/sys/powerpc/powerpc/exec_machdep.c user/andre/tcp-ao/sys/powerpc/powerpc/genassym.c user/andre/tcp-ao/sys/powerpc/powerpc/intr_machdep.c user/andre/tcp-ao/sys/powerpc/powerpc/mmu_if.m user/andre/tcp-ao/sys/powerpc/powerpc/mp_machdep.c user/andre/tcp-ao/sys/powerpc/powerpc/pic_if.m user/andre/tcp-ao/sys/powerpc/powerpc/platform.c user/andre/tcp-ao/sys/powerpc/powerpc/platform_if.m user/andre/tcp-ao/sys/powerpc/powerpc/pmap_dispatch.c user/andre/tcp-ao/sys/powerpc/powerpc/uio_machdep.c user/andre/tcp-ao/sys/powerpc/ps3/if_glc.c user/andre/tcp-ao/sys/powerpc/ps3/ps3cdrom.c user/andre/tcp-ao/sys/powerpc/psim/ata_iobus.c user/andre/tcp-ao/sys/powerpc/wii/platform_wii.c user/andre/tcp-ao/sys/powerpc/wii/wii_bus.c user/andre/tcp-ao/sys/powerpc/wii/wii_fb.c user/andre/tcp-ao/sys/powerpc/wii/wii_gpio.c user/andre/tcp-ao/sys/powerpc/wii/wii_gpioreg.h user/andre/tcp-ao/sys/powerpc/wii/wii_ipcreg.h user/andre/tcp-ao/sys/powerpc/wii/wii_pic.c user/andre/tcp-ao/sys/powerpc/wii/wii_picreg.h user/andre/tcp-ao/sys/rpc/clnt_dg.c user/andre/tcp-ao/sys/rpc/rpcsec_gss.h user/andre/tcp-ao/sys/rpc/rpcsec_gss/rpcsec_gss.c user/andre/tcp-ao/sys/rpc/rpcsec_gss/rpcsec_gss_prot.c user/andre/tcp-ao/sys/rpc/svc_vc.c user/andre/tcp-ao/sys/security/audit/audit.c user/andre/tcp-ao/sys/security/audit/audit.h user/andre/tcp-ao/sys/security/audit/audit_arg.c user/andre/tcp-ao/sys/security/audit/audit_bsm.c user/andre/tcp-ao/sys/security/audit/audit_bsm_klib.c user/andre/tcp-ao/sys/security/audit/audit_pipe.c user/andre/tcp-ao/sys/security/audit/audit_private.h user/andre/tcp-ao/sys/security/audit/bsm_token.c user/andre/tcp-ao/sys/security/mac/mac_framework.c user/andre/tcp-ao/sys/security/mac/mac_framework.h user/andre/tcp-ao/sys/security/mac/mac_internal.h user/andre/tcp-ao/sys/security/mac/mac_policy.h user/andre/tcp-ao/sys/security/mac/mac_posix_shm.c user/andre/tcp-ao/sys/security/mac/mac_process.c user/andre/tcp-ao/sys/security/mac/mac_syscalls.c user/andre/tcp-ao/sys/security/mac/mac_vfs.c user/andre/tcp-ao/sys/security/mac_biba/mac_biba.c user/andre/tcp-ao/sys/security/mac_ifoff/mac_ifoff.c user/andre/tcp-ao/sys/security/mac_mls/mac_mls.c user/andre/tcp-ao/sys/security/mac_stub/mac_stub.c user/andre/tcp-ao/sys/security/mac_test/mac_test.c user/andre/tcp-ao/sys/sparc64/conf/GENERIC user/andre/tcp-ao/sys/sparc64/include/atomic.h user/andre/tcp-ao/sys/sparc64/include/bus.h user/andre/tcp-ao/sys/sparc64/include/bus_dma.h user/andre/tcp-ao/sys/sparc64/include/bus_private.h user/andre/tcp-ao/sys/sparc64/include/param.h user/andre/tcp-ao/sys/sparc64/include/pcpu.h user/andre/tcp-ao/sys/sparc64/include/pmap.h user/andre/tcp-ao/sys/sparc64/include/proc.h user/andre/tcp-ao/sys/sparc64/include/sf_buf.h user/andre/tcp-ao/sys/sparc64/include/ucontext.h user/andre/tcp-ao/sys/sparc64/include/vmparam.h user/andre/tcp-ao/sys/sparc64/pci/fire.c user/andre/tcp-ao/sys/sparc64/pci/psycho.c user/andre/tcp-ao/sys/sparc64/pci/schizo.c user/andre/tcp-ao/sys/sparc64/sbus/sbus.c user/andre/tcp-ao/sys/sparc64/sparc64/bus_machdep.c user/andre/tcp-ao/sys/sparc64/sparc64/genassym.c user/andre/tcp-ao/sys/sparc64/sparc64/machdep.c user/andre/tcp-ao/sys/sparc64/sparc64/mem.c user/andre/tcp-ao/sys/sparc64/sparc64/mp_machdep.c user/andre/tcp-ao/sys/sparc64/sparc64/pmap.c user/andre/tcp-ao/sys/sparc64/sparc64/sys_machdep.c user/andre/tcp-ao/sys/sparc64/sparc64/uio_machdep.c user/andre/tcp-ao/sys/sparc64/sparc64/vm_machdep.c user/andre/tcp-ao/sys/sys/_cpuset.h user/andre/tcp-ao/sys/sys/_rmlock.h user/andre/tcp-ao/sys/sys/_types.h user/andre/tcp-ao/sys/sys/aio.h user/andre/tcp-ao/sys/sys/ata.h user/andre/tcp-ao/sys/sys/buf.h user/andre/tcp-ao/sys/sys/bufobj.h user/andre/tcp-ao/sys/sys/bus.h user/andre/tcp-ao/sys/sys/bus_dma.h user/andre/tcp-ao/sys/sys/callout.h user/andre/tcp-ao/sys/sys/capability.h user/andre/tcp-ao/sys/sys/cdefs.h user/andre/tcp-ao/sys/sys/chio.h user/andre/tcp-ao/sys/sys/conf.h user/andre/tcp-ao/sys/sys/cpuset.h user/andre/tcp-ao/sys/sys/devicestat.h user/andre/tcp-ao/sys/sys/diskpc98.h user/andre/tcp-ao/sys/sys/dtrace_bsd.h user/andre/tcp-ao/sys/sys/elf_common.h user/andre/tcp-ao/sys/sys/errno.h user/andre/tcp-ao/sys/sys/event.h user/andre/tcp-ao/sys/sys/eventhandler.h user/andre/tcp-ao/sys/sys/eventvar.h user/andre/tcp-ao/sys/sys/fcntl.h user/andre/tcp-ao/sys/sys/file.h user/andre/tcp-ao/sys/sys/filedesc.h user/andre/tcp-ao/sys/sys/hhook.h user/andre/tcp-ao/sys/sys/jail.h user/andre/tcp-ao/sys/sys/kernel.h user/andre/tcp-ao/sys/sys/ksem.h user/andre/tcp-ao/sys/sys/ktrace.h user/andre/tcp-ao/sys/sys/libkern.h user/andre/tcp-ao/sys/sys/linker.h user/andre/tcp-ao/sys/sys/lock.h user/andre/tcp-ao/sys/sys/lockmgr.h user/andre/tcp-ao/sys/sys/malloc.h user/andre/tcp-ao/sys/sys/mbpool.h user/andre/tcp-ao/sys/sys/mbuf.h user/andre/tcp-ao/sys/sys/mman.h user/andre/tcp-ao/sys/sys/module_khelp.h user/andre/tcp-ao/sys/sys/mount.h user/andre/tcp-ao/sys/sys/mouse.h user/andre/tcp-ao/sys/sys/mutex.h user/andre/tcp-ao/sys/sys/namei.h user/andre/tcp-ao/sys/sys/param.h user/andre/tcp-ao/sys/sys/pcpu.h user/andre/tcp-ao/sys/sys/pmckern.h user/andre/tcp-ao/sys/sys/priv.h user/andre/tcp-ao/sys/sys/proc.h user/andre/tcp-ao/sys/sys/procdesc.h user/andre/tcp-ao/sys/sys/queue.h user/andre/tcp-ao/sys/sys/random.h user/andre/tcp-ao/sys/sys/rangelock.h user/andre/tcp-ao/sys/sys/resource.h user/andre/tcp-ao/sys/sys/resourcevar.h user/andre/tcp-ao/sys/sys/rmlock.h user/andre/tcp-ao/sys/sys/sbuf.h user/andre/tcp-ao/sys/sys/sched.h user/andre/tcp-ao/sys/sys/sdt.h user/andre/tcp-ao/sys/sys/sf_buf.h user/andre/tcp-ao/sys/sys/smp.h user/andre/tcp-ao/sys/sys/sockbuf.h user/andre/tcp-ao/sys/sys/socket.h user/andre/tcp-ao/sys/sys/socketvar.h user/andre/tcp-ao/sys/sys/stat.h user/andre/tcp-ao/sys/sys/syscall.h user/andre/tcp-ao/sys/sys/syscall.mk user/andre/tcp-ao/sys/sys/syscallsubr.h user/andre/tcp-ao/sys/sys/sysctl.h user/andre/tcp-ao/sys/sys/syslog.h user/andre/tcp-ao/sys/sys/sysproto.h user/andre/tcp-ao/sys/sys/systm.h user/andre/tcp-ao/sys/sys/time.h user/andre/tcp-ao/sys/sys/timetc.h user/andre/tcp-ao/sys/sys/timex.h user/andre/tcp-ao/sys/sys/ttydefaults.h user/andre/tcp-ao/sys/sys/types.h user/andre/tcp-ao/sys/sys/ucontext.h user/andre/tcp-ao/sys/sys/uio.h user/andre/tcp-ao/sys/sys/user.h user/andre/tcp-ao/sys/sys/uuid.h user/andre/tcp-ao/sys/sys/vmmeter.h user/andre/tcp-ao/sys/sys/vnode.h user/andre/tcp-ao/sys/sys/wait.h user/andre/tcp-ao/sys/ufs/ffs/ffs_alloc.c user/andre/tcp-ao/sys/ufs/ffs/ffs_balloc.c user/andre/tcp-ao/sys/ufs/ffs/ffs_extern.h user/andre/tcp-ao/sys/ufs/ffs/ffs_inode.c user/andre/tcp-ao/sys/ufs/ffs/ffs_snapshot.c user/andre/tcp-ao/sys/ufs/ffs/ffs_softdep.c user/andre/tcp-ao/sys/ufs/ffs/ffs_suspend.c user/andre/tcp-ao/sys/ufs/ffs/ffs_vfsops.c user/andre/tcp-ao/sys/ufs/ffs/ffs_vnops.c user/andre/tcp-ao/sys/ufs/ffs/softdep.h user/andre/tcp-ao/sys/ufs/ufs/dinode.h user/andre/tcp-ao/sys/ufs/ufs/inode.h user/andre/tcp-ao/sys/ufs/ufs/ufs_dirhash.c user/andre/tcp-ao/sys/ufs/ufs/ufs_extattr.c user/andre/tcp-ao/sys/ufs/ufs/ufs_extern.h user/andre/tcp-ao/sys/ufs/ufs/ufs_vnops.c user/andre/tcp-ao/sys/ufs/ufs/ufsmount.h user/andre/tcp-ao/sys/vm/_vm_radix.h user/andre/tcp-ao/sys/vm/device_pager.c user/andre/tcp-ao/sys/vm/memguard.c user/andre/tcp-ao/sys/vm/memguard.h user/andre/tcp-ao/sys/vm/phys_pager.c user/andre/tcp-ao/sys/vm/pmap.h user/andre/tcp-ao/sys/vm/sg_pager.c user/andre/tcp-ao/sys/vm/swap_pager.c user/andre/tcp-ao/sys/vm/uma.h user/andre/tcp-ao/sys/vm/uma_core.c user/andre/tcp-ao/sys/vm/uma_dbg.c user/andre/tcp-ao/sys/vm/uma_int.h user/andre/tcp-ao/sys/vm/vm.h user/andre/tcp-ao/sys/vm/vm_extern.h user/andre/tcp-ao/sys/vm/vm_fault.c user/andre/tcp-ao/sys/vm/vm_glue.c user/andre/tcp-ao/sys/vm/vm_init.c user/andre/tcp-ao/sys/vm/vm_kern.c user/andre/tcp-ao/sys/vm/vm_kern.h user/andre/tcp-ao/sys/vm/vm_map.c user/andre/tcp-ao/sys/vm/vm_map.h user/andre/tcp-ao/sys/vm/vm_mmap.c user/andre/tcp-ao/sys/vm/vm_object.c user/andre/tcp-ao/sys/vm/vm_object.h user/andre/tcp-ao/sys/vm/vm_page.c user/andre/tcp-ao/sys/vm/vm_page.h user/andre/tcp-ao/sys/vm/vm_pageout.c user/andre/tcp-ao/sys/vm/vm_pager.c user/andre/tcp-ao/sys/vm/vm_pager.h user/andre/tcp-ao/sys/vm/vm_param.h user/andre/tcp-ao/sys/vm/vm_phys.c user/andre/tcp-ao/sys/vm/vm_phys.h user/andre/tcp-ao/sys/vm/vm_radix.c user/andre/tcp-ao/sys/vm/vm_radix.h user/andre/tcp-ao/sys/vm/vm_reserv.c user/andre/tcp-ao/sys/vm/vm_reserv.h user/andre/tcp-ao/sys/vm/vm_zeroidle.c user/andre/tcp-ao/sys/vm/vnode_pager.c user/andre/tcp-ao/sys/x86/acpica/acpi_wakeup.c user/andre/tcp-ao/sys/x86/acpica/madt.c user/andre/tcp-ao/sys/x86/acpica/srat.c user/andre/tcp-ao/sys/x86/cpufreq/p4tcc.c user/andre/tcp-ao/sys/x86/include/segments.h user/andre/tcp-ao/sys/x86/include/specialreg.h user/andre/tcp-ao/sys/x86/include/stdarg.h user/andre/tcp-ao/sys/x86/include/trap.h user/andre/tcp-ao/sys/x86/isa/atpic.c user/andre/tcp-ao/sys/x86/isa/clock.c user/andre/tcp-ao/sys/x86/x86/busdma_machdep.c user/andre/tcp-ao/sys/x86/x86/intr_machdep.c user/andre/tcp-ao/sys/x86/x86/io_apic.c user/andre/tcp-ao/sys/x86/x86/local_apic.c user/andre/tcp-ao/sys/x86/x86/tsc.c user/andre/tcp-ao/sys/xen/evtchn.h user/andre/tcp-ao/sys/xen/evtchn/evtchn_dev.c user/andre/tcp-ao/sys/xen/features.c user/andre/tcp-ao/sys/xen/gnttab.c user/andre/tcp-ao/sys/xen/gnttab.h user/andre/tcp-ao/sys/xen/interface/arch-ia64.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/cpuid.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/hvm/save.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/xen-mca.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/xen-x86_32.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/xen-x86_64.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/xen.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86_32.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86_64.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/domctl.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/elfnote.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/event_channel.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/features.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/foreign/structs.py (contents, props changed) user/andre/tcp-ao/sys/xen/interface/grant_table.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/hvm/hvm_info_table.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/hvm/hvm_op.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/hvm/ioreq.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/hvm/params.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/hvm/save.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/blkif.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/netif.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/pciif.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/protocols.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/ring.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/io/xs_wire.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/kexec.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/memory.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/nmi.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/physdev.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/platform.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/sched.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/sysctl.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/trace.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/vcpu.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/version.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/xen-compat.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/xen.h (contents, props changed) user/andre/tcp-ao/sys/xen/interface/xenoprof.h (contents, props changed) user/andre/tcp-ao/sys/xen/xen_intr.h user/andre/tcp-ao/sys/xen/xenbus/xenbus.c user/andre/tcp-ao/sys/xen/xenbus/xenbus_if.m user/andre/tcp-ao/sys/xen/xenbus/xenbusb.c user/andre/tcp-ao/sys/xen/xenbus/xenbusb_front.c user/andre/tcp-ao/sys/xen/xenbus/xenbusvar.h user/andre/tcp-ao/sys/xen/xenstore/xenstore.c user/andre/tcp-ao/sys/xen/xenstore/xenstore_dev.c user/andre/tcp-ao/sys/xen/xenstore/xenstorevar.h user/andre/tcp-ao/tools/build/mk/OptionalObsoleteFiles.inc user/andre/tcp-ao/tools/build/options/WITHOUT_BINUTILS user/andre/tcp-ao/tools/build/options/WITHOUT_GCC user/andre/tcp-ao/tools/build/options/WITHOUT_JAIL user/andre/tcp-ao/tools/build/options/WITHOUT_KERBEROS_SUPPORT user/andre/tcp-ao/tools/build/options/WITHOUT_LDNS user/andre/tcp-ao/tools/build/options/WITHOUT_LEGACY_CONSOLE user/andre/tcp-ao/tools/build/options/WITHOUT_PKGBOOTSTRAP user/andre/tcp-ao/tools/build/options/makeman user/andre/tcp-ao/tools/make_libdeps.sh user/andre/tcp-ao/tools/regression/aio/aiop/aiop.c user/andre/tcp-ao/tools/regression/aio/aiotest/aiotest.c user/andre/tcp-ao/tools/regression/bin/test/regress.sh user/andre/tcp-ao/tools/regression/file/dup/dup.c user/andre/tcp-ao/tools/regression/filemon/Makefile user/andre/tcp-ao/tools/regression/filemon/filemontest.c user/andre/tcp-ao/tools/regression/filemon/test_script.sh user/andre/tcp-ao/tools/regression/filemon/timed-forkb.c user/andre/tcp-ao/tools/regression/lib/libc/gen/Makefile user/andre/tcp-ao/tools/regression/lib/libc/gen/test-fnmatch.c user/andre/tcp-ao/tools/regression/lib/libc/gen/test-fpclassify.c user/andre/tcp-ao/tools/regression/lib/libc/gen/test-ftw.c user/andre/tcp-ao/tools/regression/lib/libc/gen/test-wordexp.c user/andre/tcp-ao/tools/regression/lib/libc/locale/Makefile user/andre/tcp-ao/tools/regression/lib/libc/locale/test-btowc.c user/andre/tcp-ao/tools/regression/lib/libc/locale/test-iswctype.c user/andre/tcp-ao/tools/regression/lib/libc/locale/test-towctrans.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getaddr.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getgr.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-gethostby.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getproto.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getpw.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getrpc.c user/andre/tcp-ao/tools/regression/lib/libc/nss/test-getusershell.c user/andre/tcp-ao/tools/regression/lib/libc/nss/testutil.h user/andre/tcp-ao/tools/regression/lib/libc/stdio/Makefile user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-fmemopen.t user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-open_memstream.t user/andre/tcp-ao/tools/regression/lib/libc/stdio/test-open_wmemstream.t user/andre/tcp-ao/tools/regression/lib/libutil/Makefile user/andre/tcp-ao/tools/regression/lib/msun/Makefile user/andre/tcp-ao/tools/regression/lib/msun/test-cexp.c user/andre/tcp-ao/tools/regression/lib/msun/test-conj.c user/andre/tcp-ao/tools/regression/lib/msun/test-csqrt.c user/andre/tcp-ao/tools/regression/lib/msun/test-ctrig.c user/andre/tcp-ao/tools/regression/lib/msun/test-exponential.c user/andre/tcp-ao/tools/regression/lib/msun/test-fma.c user/andre/tcp-ao/tools/regression/lib/msun/test-fmaxmin.c user/andre/tcp-ao/tools/regression/lib/msun/test-invtrig.c user/andre/tcp-ao/tools/regression/lib/msun/test-logarithm.c user/andre/tcp-ao/tools/regression/lib/msun/test-nearbyint.c user/andre/tcp-ao/tools/regression/lib/msun/test-next.c user/andre/tcp-ao/tools/regression/lib/msun/test-rem.c user/andre/tcp-ao/tools/regression/lib/msun/test-trig.c user/andre/tcp-ao/tools/regression/pjdfstest/Makefile user/andre/tcp-ao/tools/regression/pjdfstest/pjdfstest.c user/andre/tcp-ao/tools/regression/pjdfstest/tests/misc.sh user/andre/tcp-ao/tools/regression/priv/Makefile user/andre/tcp-ao/tools/regression/pthread/cv_cancel1/cv_cancel1.c user/andre/tcp-ao/tools/regression/sbin/dhclient/Makefile user/andre/tcp-ao/tools/regression/security/cap_test/cap_test_capabilities.c user/andre/tcp-ao/tools/regression/sockets/sendfile/sendfile.c user/andre/tcp-ao/tools/regression/usr.bin/xargs/regress.sh user/andre/tcp-ao/tools/regression/usr.bin/yacc/grammar.y user/andre/tcp-ao/tools/regression/usr.bin/yacc/regress.08.out user/andre/tcp-ao/tools/test/dtrace/Makefile user/andre/tcp-ao/tools/test/hwpmc/pmctest.py user/andre/tcp-ao/tools/test/posixshm/shm_test.c user/andre/tcp-ao/tools/tools/README user/andre/tcp-ao/tools/tools/ath/Makefile user/andre/tcp-ao/tools/tools/ath/Makefile.inc user/andre/tcp-ao/tools/tools/ath/athalq/Makefile user/andre/tcp-ao/tools/tools/ath/athalq/main.c user/andre/tcp-ao/tools/tools/ath/athspectral/athspectral.c user/andre/tcp-ao/tools/tools/ath/athstats/athstats.c user/andre/tcp-ao/tools/tools/bootparttest/bootparttest.c user/andre/tcp-ao/tools/tools/bus_autoconf/bus_load_file.c user/andre/tcp-ao/tools/tools/crypto/ipsecstats.c user/andre/tcp-ao/tools/tools/cxgbetool/cxgbetool.c user/andre/tcp-ao/tools/tools/ifinfo/ifinfo.c user/andre/tcp-ao/tools/tools/nanobsd/gateworks/common user/andre/tcp-ao/tools/tools/nanobsd/nanobsd.sh user/andre/tcp-ao/tools/tools/net80211/wlanstats/Makefile user/andre/tcp-ao/tools/tools/netmap/Makefile user/andre/tcp-ao/tools/tools/netmap/README user/andre/tcp-ao/tools/tools/netmap/bridge.c user/andre/tcp-ao/tools/tools/netmap/nm_util.c user/andre/tcp-ao/tools/tools/netmap/pcap.c user/andre/tcp-ao/tools/tools/netmap/pkt-gen.c user/andre/tcp-ao/tools/tools/netrate/netreceive/Makefile user/andre/tcp-ao/tools/tools/notescheck/notescheck.py user/andre/tcp-ao/tools/tools/pciroms/pciroms.c user/andre/tcp-ao/tools/tools/sysbuild/sysbuild.sh user/andre/tcp-ao/tools/tools/sysdoc/sysdoc.sh user/andre/tcp-ao/tools/tools/sysdoc/tunables.mdoc user/andre/tcp-ao/tools/tools/tinybsd/conf/firewall/TINYBSD user/andre/tcp-ao/tools/tools/umastat/umastat.c user/andre/tcp-ao/tools/tools/zfsboottest/Makefile user/andre/tcp-ao/tools/tools/zfsboottest/zfsboottest.c user/andre/tcp-ao/tools/tools/zfsboottest/zfsboottest.sh user/andre/tcp-ao/usr.bin/Makefile user/andre/tcp-ao/usr.bin/Makefile.amd64 user/andre/tcp-ao/usr.bin/Makefile.i386 user/andre/tcp-ao/usr.bin/Makefile.ia64 user/andre/tcp-ao/usr.bin/Makefile.powerpc user/andre/tcp-ao/usr.bin/Makefile.sparc64 user/andre/tcp-ao/usr.bin/ar/Makefile user/andre/tcp-ao/usr.bin/ar/acplex.l user/andre/tcp-ao/usr.bin/ar/acpyacc.y user/andre/tcp-ao/usr.bin/ar/read.c user/andre/tcp-ao/usr.bin/ar/write.c user/andre/tcp-ao/usr.bin/at/at.c user/andre/tcp-ao/usr.bin/at/privs.h (contents, props changed) user/andre/tcp-ao/usr.bin/atf/Makefile user/andre/tcp-ao/usr.bin/atf/Makefile.inc user/andre/tcp-ao/usr.bin/bc/Makefile user/andre/tcp-ao/usr.bin/bc/scan.l user/andre/tcp-ao/usr.bin/biff/biff.1 user/andre/tcp-ao/usr.bin/bmake/Makefile user/andre/tcp-ao/usr.bin/bmake/Makefile.inc user/andre/tcp-ao/usr.bin/bmake/config.h user/andre/tcp-ao/usr.bin/bmake/unit-tests/Makefile user/andre/tcp-ao/usr.bin/brandelf/brandelf.1 user/andre/tcp-ao/usr.bin/bzip2recover/Makefile user/andre/tcp-ao/usr.bin/calendar/Makefile (contents, props changed) user/andre/tcp-ao/usr.bin/calendar/calendar.1 (contents, props changed) user/andre/tcp-ao/usr.bin/calendar/calendar.h (contents, props changed) user/andre/tcp-ao/usr.bin/calendar/calendars/calendar.birthday user/andre/tcp-ao/usr.bin/calendar/calendars/calendar.dutch user/andre/tcp-ao/usr.bin/calendar/calendars/calendar.freebsd user/andre/tcp-ao/usr.bin/calendar/calendars/calendar.history user/andre/tcp-ao/usr.bin/calendar/dates.c user/andre/tcp-ao/usr.bin/calendar/io.c (contents, props changed) user/andre/tcp-ao/usr.bin/calendar/parsedata.c user/andre/tcp-ao/usr.bin/calendar/pathnames.h (contents, props changed) user/andre/tcp-ao/usr.bin/calendar/sunpos.c user/andre/tcp-ao/usr.bin/clang/Makefile user/andre/tcp-ao/usr.bin/clang/bugpoint/Makefile user/andre/tcp-ao/usr.bin/clang/bugpoint/bugpoint.1 user/andre/tcp-ao/usr.bin/clang/clang-tblgen/Makefile user/andre/tcp-ao/usr.bin/clang/clang/Makefile user/andre/tcp-ao/usr.bin/clang/clang/clang.1 user/andre/tcp-ao/usr.bin/clang/llc/Makefile user/andre/tcp-ao/usr.bin/clang/llc/llc.1 user/andre/tcp-ao/usr.bin/clang/lli/Makefile user/andre/tcp-ao/usr.bin/clang/lli/lli.1 user/andre/tcp-ao/usr.bin/clang/llvm-ar/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-ar/llvm-ar.1 user/andre/tcp-ao/usr.bin/clang/llvm-as/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-as/llvm-as.1 user/andre/tcp-ao/usr.bin/clang/llvm-bcanalyzer/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 user/andre/tcp-ao/usr.bin/clang/llvm-diff/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-diff/llvm-diff.1 user/andre/tcp-ao/usr.bin/clang/llvm-dis/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-dis/llvm-dis.1 user/andre/tcp-ao/usr.bin/clang/llvm-extract/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-extract/llvm-extract.1 user/andre/tcp-ao/usr.bin/clang/llvm-link/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-link/llvm-link.1 user/andre/tcp-ao/usr.bin/clang/llvm-mc/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-nm/llvm-nm.1 user/andre/tcp-ao/usr.bin/clang/llvm-objdump/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-prof/llvm-prof.1 user/andre/tcp-ao/usr.bin/clang/llvm-ranlib/Makefile user/andre/tcp-ao/usr.bin/clang/llvm-ranlib/llvm-ranlib.1 user/andre/tcp-ao/usr.bin/clang/llvm-rtdyld/Makefile user/andre/tcp-ao/usr.bin/clang/opt/Makefile user/andre/tcp-ao/usr.bin/clang/opt/opt.1 user/andre/tcp-ao/usr.bin/clang/tblgen/Makefile user/andre/tcp-ao/usr.bin/clang/tblgen/tblgen.1 user/andre/tcp-ao/usr.bin/cpio/Makefile user/andre/tcp-ao/usr.bin/cpio/test/Makefile user/andre/tcp-ao/usr.bin/csup/token.l user/andre/tcp-ao/usr.bin/csup/updater.h user/andre/tcp-ao/usr.bin/ctlstat/ctlstat.8 user/andre/tcp-ao/usr.bin/ctlstat/ctlstat.c user/andre/tcp-ao/usr.bin/dtc/checking.cc user/andre/tcp-ao/usr.bin/dtc/dtc.1 user/andre/tcp-ao/usr.bin/dtc/dtc.cc user/andre/tcp-ao/usr.bin/dtc/fdt.cc user/andre/tcp-ao/usr.bin/dtc/fdt.hh user/andre/tcp-ao/usr.bin/dtc/input_buffer.cc user/andre/tcp-ao/usr.bin/fetch/fetch.1 user/andre/tcp-ao/usr.bin/fetch/fetch.c user/andre/tcp-ao/usr.bin/find/Makefile user/andre/tcp-ao/usr.bin/find/find.h user/andre/tcp-ao/usr.bin/find/function.c user/andre/tcp-ao/usr.bin/fstat/fstat.1 user/andre/tcp-ao/usr.bin/fstat/fstat.c user/andre/tcp-ao/usr.bin/fstat/fuser.1 user/andre/tcp-ao/usr.bin/gcore/Makefile user/andre/tcp-ao/usr.bin/gcore/elfcore.c user/andre/tcp-ao/usr.bin/getent/getent.c user/andre/tcp-ao/usr.bin/grep/Makefile user/andre/tcp-ao/usr.bin/grep/regex/tre-fastmatch.c user/andre/tcp-ao/usr.bin/head/head.1 user/andre/tcp-ao/usr.bin/host/Makefile user/andre/tcp-ao/usr.bin/iconv/iconv.c user/andre/tcp-ao/usr.bin/indent/Makefile user/andre/tcp-ao/usr.bin/kdump/kdump.c user/andre/tcp-ao/usr.bin/kdump/mksubr user/andre/tcp-ao/usr.bin/killall/killall.1 user/andre/tcp-ao/usr.bin/killall/killall.c user/andre/tcp-ao/usr.bin/ldd/ldd.c user/andre/tcp-ao/usr.bin/lex/Makefile user/andre/tcp-ao/usr.bin/lex/config.h user/andre/tcp-ao/usr.bin/lex/initscan.c user/andre/tcp-ao/usr.bin/lex/lex.1 user/andre/tcp-ao/usr.bin/lex/lib/Makefile user/andre/tcp-ao/usr.bin/limits/limits.1 user/andre/tcp-ao/usr.bin/limits/limits.c user/andre/tcp-ao/usr.bin/lockf/lockf.1 user/andre/tcp-ao/usr.bin/lockf/lockf.c user/andre/tcp-ao/usr.bin/lsvfs/lsvfs.1 user/andre/tcp-ao/usr.bin/lsvfs/lsvfs.c user/andre/tcp-ao/usr.bin/m4/Makefile user/andre/tcp-ao/usr.bin/m4/TEST/ack.m4 user/andre/tcp-ao/usr.bin/m4/TEST/hanoi.m4 user/andre/tcp-ao/usr.bin/m4/TEST/hash.m4 user/andre/tcp-ao/usr.bin/m4/TEST/sqroot.m4 user/andre/tcp-ao/usr.bin/m4/TEST/string.m4 user/andre/tcp-ao/usr.bin/m4/TEST/test.m4 user/andre/tcp-ao/usr.bin/m4/eval.c user/andre/tcp-ao/usr.bin/m4/extern.h user/andre/tcp-ao/usr.bin/m4/lib/ohash_init.3 user/andre/tcp-ao/usr.bin/m4/lib/ohash_interval.3 user/andre/tcp-ao/usr.bin/m4/m4.1 user/andre/tcp-ao/usr.bin/m4/main.c user/andre/tcp-ao/usr.bin/m4/parser.y user/andre/tcp-ao/usr.bin/m4/tokenizer.l user/andre/tcp-ao/usr.bin/mail/popen.c user/andre/tcp-ao/usr.bin/make/Makefile user/andre/tcp-ao/usr.bin/make/job.c user/andre/tcp-ao/usr.bin/mkcsmapper/Makefile user/andre/tcp-ao/usr.bin/mkcsmapper/ldef.h user/andre/tcp-ao/usr.bin/mkcsmapper/lex.l user/andre/tcp-ao/usr.bin/mkcsmapper/yacc.y user/andre/tcp-ao/usr.bin/mkesdb/Makefile user/andre/tcp-ao/usr.bin/mkesdb/ldef.h user/andre/tcp-ao/usr.bin/mkesdb/lex.l user/andre/tcp-ao/usr.bin/mkesdb/yacc.y user/andre/tcp-ao/usr.bin/mklocale/Makefile user/andre/tcp-ao/usr.bin/mklocale/lex.l user/andre/tcp-ao/usr.bin/netstat/Makefile user/andre/tcp-ao/usr.bin/netstat/if.c user/andre/tcp-ao/usr.bin/netstat/inet.c user/andre/tcp-ao/usr.bin/netstat/inet6.c user/andre/tcp-ao/usr.bin/netstat/ipsec.c user/andre/tcp-ao/usr.bin/netstat/main.c user/andre/tcp-ao/usr.bin/netstat/mbuf.c user/andre/tcp-ao/usr.bin/netstat/mroute.c user/andre/tcp-ao/usr.bin/netstat/netstat.1 user/andre/tcp-ao/usr.bin/netstat/netstat.h user/andre/tcp-ao/usr.bin/netstat/pfkey.c user/andre/tcp-ao/usr.bin/netstat/route.c user/andre/tcp-ao/usr.bin/nfsstat/nfsstat.1 user/andre/tcp-ao/usr.bin/nfsstat/nfsstat.c user/andre/tcp-ao/usr.bin/patch/Makefile user/andre/tcp-ao/usr.bin/patch/patch.1 user/andre/tcp-ao/usr.bin/patch/patch.c user/andre/tcp-ao/usr.bin/patch/pch.c user/andre/tcp-ao/usr.bin/patch/util.c user/andre/tcp-ao/usr.bin/pathchk/pathchk.c user/andre/tcp-ao/usr.bin/procstat/procstat.1 user/andre/tcp-ao/usr.bin/procstat/procstat.c user/andre/tcp-ao/usr.bin/procstat/procstat.h user/andre/tcp-ao/usr.bin/procstat/procstat_args.c user/andre/tcp-ao/usr.bin/procstat/procstat_auxv.c user/andre/tcp-ao/usr.bin/procstat/procstat_bin.c user/andre/tcp-ao/usr.bin/procstat/procstat_cred.c user/andre/tcp-ao/usr.bin/procstat/procstat_files.c user/andre/tcp-ao/usr.bin/procstat/procstat_kstack.c user/andre/tcp-ao/usr.bin/procstat/procstat_rlimit.c user/andre/tcp-ao/usr.bin/procstat/procstat_sigs.c user/andre/tcp-ao/usr.bin/procstat/procstat_threads.c user/andre/tcp-ao/usr.bin/procstat/procstat_vm.c user/andre/tcp-ao/usr.bin/rctl/rctl.8 user/andre/tcp-ao/usr.bin/renice/renice.8 user/andre/tcp-ao/usr.bin/rpcinfo/rpcinfo.c user/andre/tcp-ao/usr.bin/rwho/rwho.c user/andre/tcp-ao/usr.bin/script/script.1 user/andre/tcp-ao/usr.bin/sed/main.c user/andre/tcp-ao/usr.bin/sort/bwstring.c user/andre/tcp-ao/usr.bin/sort/bwstring.h user/andre/tcp-ao/usr.bin/sort/coll.c user/andre/tcp-ao/usr.bin/sort/coll.h user/andre/tcp-ao/usr.bin/sort/file.c user/andre/tcp-ao/usr.bin/sort/file.h user/andre/tcp-ao/usr.bin/sort/mem.c user/andre/tcp-ao/usr.bin/sort/mem.h user/andre/tcp-ao/usr.bin/sort/radixsort.c user/andre/tcp-ao/usr.bin/sort/radixsort.h user/andre/tcp-ao/usr.bin/sort/sort.1.in user/andre/tcp-ao/usr.bin/sort/sort.c user/andre/tcp-ao/usr.bin/sort/sort.h user/andre/tcp-ao/usr.bin/sort/vsort.c user/andre/tcp-ao/usr.bin/sort/vsort.h user/andre/tcp-ao/usr.bin/split/split.1 user/andre/tcp-ao/usr.bin/split/split.c user/andre/tcp-ao/usr.bin/su/su.1 user/andre/tcp-ao/usr.bin/su/su.c user/andre/tcp-ao/usr.bin/systat/Makefile user/andre/tcp-ao/usr.bin/systat/cmdtab.c user/andre/tcp-ao/usr.bin/systat/extern.h user/andre/tcp-ao/usr.bin/systat/netcmds.c user/andre/tcp-ao/usr.bin/systat/systat.1 user/andre/tcp-ao/usr.bin/systat/vmstat.c user/andre/tcp-ao/usr.bin/tail/extern.h user/andre/tcp-ao/usr.bin/tail/forward.c user/andre/tcp-ao/usr.bin/tail/misc.c user/andre/tcp-ao/usr.bin/tail/tail.1 user/andre/tcp-ao/usr.bin/tail/tail.c user/andre/tcp-ao/usr.bin/tar/Makefile user/andre/tcp-ao/usr.bin/tar/test/Makefile user/andre/tcp-ao/usr.bin/top/machine.c user/andre/tcp-ao/usr.bin/touch/touch.c user/andre/tcp-ao/usr.bin/truss/syscall.h user/andre/tcp-ao/usr.bin/truss/syscalls.c user/andre/tcp-ao/usr.bin/uname/uname.1 user/andre/tcp-ao/usr.bin/uname/uname.c user/andre/tcp-ao/usr.bin/unifdef/unifdef.1 user/andre/tcp-ao/usr.bin/unifdef/unifdef.c user/andre/tcp-ao/usr.bin/unifdef/unifdefall.sh user/andre/tcp-ao/usr.bin/uniq/uniq.c user/andre/tcp-ao/usr.bin/unvis/Makefile user/andre/tcp-ao/usr.bin/unzip/unzip.c user/andre/tcp-ao/usr.bin/usbhidctl/usbhidctl.1 user/andre/tcp-ao/usr.bin/vi/Makefile user/andre/tcp-ao/usr.bin/vi/config.h user/andre/tcp-ao/usr.bin/vi/pathnames.h user/andre/tcp-ao/usr.bin/vis/Makefile user/andre/tcp-ao/usr.bin/xargs/xargs.c user/andre/tcp-ao/usr.bin/xinstall/install.1 user/andre/tcp-ao/usr.bin/xinstall/xinstall.c user/andre/tcp-ao/usr.bin/xlint/lint1/scan.l user/andre/tcp-ao/usr.sbin/Makefile user/andre/tcp-ao/usr.sbin/Makefile.amd64 user/andre/tcp-ao/usr.sbin/Makefile.i386 user/andre/tcp-ao/usr.sbin/Makefile.ia64 user/andre/tcp-ao/usr.sbin/Makefile.powerpc user/andre/tcp-ao/usr.sbin/Makefile.sparc64 user/andre/tcp-ao/usr.sbin/ac/ac.8 user/andre/tcp-ao/usr.sbin/acpi/acpidb/Makefile user/andre/tcp-ao/usr.sbin/acpi/acpidb/acpidb.c user/andre/tcp-ao/usr.sbin/acpi/acpidump/acpi.c user/andre/tcp-ao/usr.sbin/acpi/acpidump/acpi_user.c user/andre/tcp-ao/usr.sbin/acpi/iasl/Makefile user/andre/tcp-ao/usr.sbin/apmd/apmdlex.l user/andre/tcp-ao/usr.sbin/arp/arp.4 user/andre/tcp-ao/usr.sbin/arp/arp.c user/andre/tcp-ao/usr.sbin/auditdistd/Makefile user/andre/tcp-ao/usr.sbin/authpf/Makefile user/andre/tcp-ao/usr.sbin/bhyve/Makefile user/andre/tcp-ao/usr.sbin/bhyve/acpi.c user/andre/tcp-ao/usr.sbin/bhyve/acpi.h user/andre/tcp-ao/usr.sbin/bhyve/atpic.c user/andre/tcp-ao/usr.sbin/bhyve/bhyverun.c user/andre/tcp-ao/usr.sbin/bhyve/bhyverun.h user/andre/tcp-ao/usr.sbin/bhyve/consport.c user/andre/tcp-ao/usr.sbin/bhyve/dbgport.c user/andre/tcp-ao/usr.sbin/bhyve/dbgport.h user/andre/tcp-ao/usr.sbin/bhyve/inout.c user/andre/tcp-ao/usr.sbin/bhyve/inout.h user/andre/tcp-ao/usr.sbin/bhyve/ioapic.c user/andre/tcp-ao/usr.sbin/bhyve/mem.c user/andre/tcp-ao/usr.sbin/bhyve/mem.h user/andre/tcp-ao/usr.sbin/bhyve/mevent.c user/andre/tcp-ao/usr.sbin/bhyve/mevent.h user/andre/tcp-ao/usr.sbin/bhyve/mevent_test.c user/andre/tcp-ao/usr.sbin/bhyve/mptbl.c user/andre/tcp-ao/usr.sbin/bhyve/mptbl.h user/andre/tcp-ao/usr.sbin/bhyve/pci_emul.c user/andre/tcp-ao/usr.sbin/bhyve/pci_emul.h user/andre/tcp-ao/usr.sbin/bhyve/pci_hostbridge.c user/andre/tcp-ao/usr.sbin/bhyve/pci_uart.c user/andre/tcp-ao/usr.sbin/bhyve/pci_virtio_block.c user/andre/tcp-ao/usr.sbin/bhyve/pci_virtio_net.c user/andre/tcp-ao/usr.sbin/bhyve/pit_8254.c user/andre/tcp-ao/usr.sbin/bhyve/pmtmr.c user/andre/tcp-ao/usr.sbin/bhyve/rtc.c user/andre/tcp-ao/usr.sbin/bhyve/spinup_ap.c user/andre/tcp-ao/usr.sbin/bhyve/virtio.h user/andre/tcp-ao/usr.sbin/bhyvectl/Makefile user/andre/tcp-ao/usr.sbin/bhyvectl/bhyvectl.c user/andre/tcp-ao/usr.sbin/bhyveload/Makefile user/andre/tcp-ao/usr.sbin/bhyveload/bhyveload.8 user/andre/tcp-ao/usr.sbin/bhyveload/bhyveload.c user/andre/tcp-ao/usr.sbin/bluetooth/ath3kfw/ath3kfw.c user/andre/tcp-ao/usr.sbin/bluetooth/bthidd/Makefile user/andre/tcp-ao/usr.sbin/bluetooth/bthidd/lexer.l user/andre/tcp-ao/usr.sbin/bluetooth/hccontrol/link_control.c user/andre/tcp-ao/usr.sbin/bluetooth/l2ping/l2ping.8 user/andre/tcp-ao/usr.sbin/boot0cfg/boot0cfg.8 user/andre/tcp-ao/usr.sbin/boot98cfg/boot98cfg.c user/andre/tcp-ao/usr.sbin/bootparamd/bootparamd/bootparamd.8 user/andre/tcp-ao/usr.sbin/bootparamd/bootparamd/main.c user/andre/tcp-ao/usr.sbin/bootparamd/callbootd/callbootd.c user/andre/tcp-ao/usr.sbin/bsdconfig/Makefile user/andre/tcp-ao/usr.sbin/bsdconfig/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/bsdconfig user/andre/tcp-ao/usr.sbin/bsdconfig/bsdconfig.8 user/andre/tcp-ao/usr.sbin/bsdconfig/console/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/console/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/console/console user/andre/tcp-ao/usr.sbin/bsdconfig/console/font user/andre/tcp-ao/usr.sbin/bsdconfig/console/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/console/keymap user/andre/tcp-ao/usr.sbin/bsdconfig/console/repeat user/andre/tcp-ao/usr.sbin/bsdconfig/console/saver user/andre/tcp-ao/usr.sbin/bsdconfig/console/screenmap user/andre/tcp-ao/usr.sbin/bsdconfig/console/ttys user/andre/tcp-ao/usr.sbin/bsdconfig/diskmgmt/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/diskmgmt/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/diskmgmt/diskmgmt user/andre/tcp-ao/usr.sbin/bsdconfig/docsinstall/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/docsinstall/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/docsinstall/docsinstall user/andre/tcp-ao/usr.sbin/bsdconfig/dot/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/dot/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/dot/dot user/andre/tcp-ao/usr.sbin/bsdconfig/examples/Makefile user/andre/tcp-ao/usr.sbin/bsdconfig/examples/bsdconfigrc user/andre/tcp-ao/usr.sbin/bsdconfig/include/media.hlp user/andre/tcp-ao/usr.sbin/bsdconfig/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/include/options.hlp user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/disable user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/enable user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/flags user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/mouse user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/port user/andre/tcp-ao/usr.sbin/bsdconfig/mouse/type user/andre/tcp-ao/usr.sbin/bsdconfig/networking/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/networking/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/networking/defaultrouter user/andre/tcp-ao/usr.sbin/bsdconfig/networking/devices user/andre/tcp-ao/usr.sbin/bsdconfig/networking/hostname user/andre/tcp-ao/usr.sbin/bsdconfig/networking/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/nameservers user/andre/tcp-ao/usr.sbin/bsdconfig/networking/networking user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/Makefile user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/common.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/device.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/hostname.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/ipaddr.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/media.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/netmask.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/resolv.subr user/andre/tcp-ao/usr.sbin/bsdconfig/networking/share/routing.subr user/andre/tcp-ao/usr.sbin/bsdconfig/password/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/password/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/password/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/password/password user/andre/tcp-ao/usr.sbin/bsdconfig/password/share/password.subr user/andre/tcp-ao/usr.sbin/bsdconfig/security/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/security/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/security/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/security/kern_securelevel user/andre/tcp-ao/usr.sbin/bsdconfig/security/security user/andre/tcp-ao/usr.sbin/bsdconfig/share/Makefile user/andre/tcp-ao/usr.sbin/bsdconfig/share/common.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/device.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/dialog.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/Makefile user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/any.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/cdrom.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/common.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/directory.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/dos.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/floppy.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/ftp.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/httpproxy.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/network.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/nfs.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/options.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/tcpip.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/ufs.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/media/usb.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/mustberoot.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/script.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/strings.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/struct.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/sysrc.subr user/andre/tcp-ao/usr.sbin/bsdconfig/share/variable.subr user/andre/tcp-ao/usr.sbin/bsdconfig/startup/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/startup/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/startup/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/startup/misc user/andre/tcp-ao/usr.sbin/bsdconfig/startup/rcadd user/andre/tcp-ao/usr.sbin/bsdconfig/startup/rcconf user/andre/tcp-ao/usr.sbin/bsdconfig/startup/rcdelete user/andre/tcp-ao/usr.sbin/bsdconfig/startup/rcedit user/andre/tcp-ao/usr.sbin/bsdconfig/startup/rcvar user/andre/tcp-ao/usr.sbin/bsdconfig/startup/share/rcconf.subr user/andre/tcp-ao/usr.sbin/bsdconfig/startup/share/rcedit.subr user/andre/tcp-ao/usr.sbin/bsdconfig/startup/share/rcvar.subr user/andre/tcp-ao/usr.sbin/bsdconfig/startup/startup user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/share/continents.subr user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/share/countries.subr user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/share/iso3166.subr user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/share/menus.subr user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/share/zones.subr user/andre/tcp-ao/usr.sbin/bsdconfig/timezone/timezone user/andre/tcp-ao/usr.sbin/bsdconfig/ttys/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/ttys/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/ttys/ttys user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/INDEX user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/USAGE user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/groupadd user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/groupdel user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/groupedit user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/groupinput user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/include/messages.subr user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/share/group_input.subr user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/share/user_input.subr user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/useradd user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/userdel user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/useredit user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/userinput user/andre/tcp-ao/usr.sbin/bsdconfig/usermgmt/usermgmt user/andre/tcp-ao/usr.sbin/bsdinstall/bsdinstall user/andre/tcp-ao/usr.sbin/bsdinstall/bsdinstall.8 user/andre/tcp-ao/usr.sbin/bsdinstall/distextract/Makefile user/andre/tcp-ao/usr.sbin/bsdinstall/distextract/distextract.c user/andre/tcp-ao/usr.sbin/bsdinstall/distfetch/Makefile user/andre/tcp-ao/usr.sbin/bsdinstall/partedit/Makefile user/andre/tcp-ao/usr.sbin/bsdinstall/partedit/diskeditor.c user/andre/tcp-ao/usr.sbin/bsdinstall/partedit/gpart_ops.c user/andre/tcp-ao/usr.sbin/bsdinstall/partedit/partedit_powerpc.c user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/Makefile user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/auto user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/config user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/jail user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/keymap user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/mirrorselect user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/netconfig user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/script user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/services user/andre/tcp-ao/usr.sbin/bsnmpd/modules/Makefile user/andre/tcp-ao/usr.sbin/bsnmpd/modules/Makefile.inc user/andre/tcp-ao/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c user/andre/tcp-ao/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 user/andre/tcp-ao/usr.sbin/config/Makefile user/andre/tcp-ao/usr.sbin/config/lang.l user/andre/tcp-ao/usr.sbin/config/main.c user/andre/tcp-ao/usr.sbin/crashinfo/crashinfo.sh user/andre/tcp-ao/usr.sbin/ctladm/ctladm.8 user/andre/tcp-ao/usr.sbin/ctladm/ctladm.c user/andre/tcp-ao/usr.sbin/daemon/daemon.8 user/andre/tcp-ao/usr.sbin/daemon/daemon.c user/andre/tcp-ao/usr.sbin/dumpcis/printcis.c user/andre/tcp-ao/usr.sbin/edquota/edquota.c user/andre/tcp-ao/usr.sbin/extattr/rmextattr.c user/andre/tcp-ao/usr.sbin/fifolog/lib/Makefile user/andre/tcp-ao/usr.sbin/freebsd-update/freebsd-update.8 user/andre/tcp-ao/usr.sbin/freebsd-update/freebsd-update.sh user/andre/tcp-ao/usr.sbin/gpioctl/gpioctl.8 user/andre/tcp-ao/usr.sbin/gpioctl/gpioctl.c user/andre/tcp-ao/usr.sbin/gssd/gssd.8 user/andre/tcp-ao/usr.sbin/gssd/gssd.c user/andre/tcp-ao/usr.sbin/ifmcstat/ifmcstat.c user/andre/tcp-ao/usr.sbin/jail/Makefile user/andre/tcp-ao/usr.sbin/jail/command.c user/andre/tcp-ao/usr.sbin/jail/config.c user/andre/tcp-ao/usr.sbin/jail/jail.8 user/andre/tcp-ao/usr.sbin/jail/jail.c user/andre/tcp-ao/usr.sbin/jail/jaillex.l user/andre/tcp-ao/usr.sbin/jail/jailp.h user/andre/tcp-ao/usr.sbin/jls/jls.8 user/andre/tcp-ao/usr.sbin/jls/jls.c user/andre/tcp-ao/usr.sbin/kbdcontrol/lex.l user/andre/tcp-ao/usr.sbin/kldxref/ef.c user/andre/tcp-ao/usr.sbin/kldxref/ef_amd64.c user/andre/tcp-ao/usr.sbin/kldxref/ef_i386.c user/andre/tcp-ao/usr.sbin/kldxref/ef_obj.c user/andre/tcp-ao/usr.sbin/kldxref/kldxref.c user/andre/tcp-ao/usr.sbin/lpr/common_source/common.c user/andre/tcp-ao/usr.sbin/lpr/common_source/lp.cdefs.h user/andre/tcp-ao/usr.sbin/makefs/Makefile user/andre/tcp-ao/usr.sbin/makefs/cd9660.c user/andre/tcp-ao/usr.sbin/makefs/cd9660/iso9660_rrip.c user/andre/tcp-ao/usr.sbin/makefs/ffs/ufs_bswap.h user/andre/tcp-ao/usr.sbin/makefs/makefs.8 user/andre/tcp-ao/usr.sbin/makefs/makefs.c user/andre/tcp-ao/usr.sbin/makefs/makefs.h user/andre/tcp-ao/usr.sbin/makefs/mtree.c user/andre/tcp-ao/usr.sbin/makefs/walk.c user/andre/tcp-ao/usr.sbin/mergemaster/mergemaster.8 user/andre/tcp-ao/usr.sbin/mergemaster/mergemaster.sh user/andre/tcp-ao/usr.sbin/mfiutil/Makefile user/andre/tcp-ao/usr.sbin/mfiutil/mfi_config.c user/andre/tcp-ao/usr.sbin/mfiutil/mfi_drive.c user/andre/tcp-ao/usr.sbin/mfiutil/mfi_show.c user/andre/tcp-ao/usr.sbin/mfiutil/mfi_volume.c user/andre/tcp-ao/usr.sbin/mfiutil/mfiutil.8 user/andre/tcp-ao/usr.sbin/mfiutil/mfiutil.c user/andre/tcp-ao/usr.sbin/mfiutil/mfiutil.h user/andre/tcp-ao/usr.sbin/moused/moused.c user/andre/tcp-ao/usr.sbin/mptutil/mptutil.8 user/andre/tcp-ao/usr.sbin/mtree/create.c user/andre/tcp-ao/usr.sbin/nandsim/nandsim_cfgparse.c user/andre/tcp-ao/usr.sbin/ndiscvt/inf-token.l user/andre/tcp-ao/usr.sbin/ndp/ndp.8 user/andre/tcp-ao/usr.sbin/ndp/ndp.c user/andre/tcp-ao/usr.sbin/newsyslog/newsyslog.c user/andre/tcp-ao/usr.sbin/nfsd/nfsv4.4 user/andre/tcp-ao/usr.sbin/nmtree/Makefile user/andre/tcp-ao/usr.sbin/ntp/config.h user/andre/tcp-ao/usr.sbin/ntp/libparse/Makefile user/andre/tcp-ao/usr.sbin/nvram/nvram.c user/andre/tcp-ao/usr.sbin/pc-sysinstall/backend-query/disk-list.sh user/andre/tcp-ao/usr.sbin/pciconf/cap.c user/andre/tcp-ao/usr.sbin/periodic/periodic.sh user/andre/tcp-ao/usr.sbin/pkg/Makefile user/andre/tcp-ao/usr.sbin/pkg/config.c user/andre/tcp-ao/usr.sbin/pkg/config.h user/andre/tcp-ao/usr.sbin/pkg/dns_utils.c user/andre/tcp-ao/usr.sbin/pkg/dns_utils.h user/andre/tcp-ao/usr.sbin/pkg/elf_tables.h user/andre/tcp-ao/usr.sbin/pkg/pkg.c user/andre/tcp-ao/usr.sbin/pmcannotate/pmcannotate.8 user/andre/tcp-ao/usr.sbin/pmcannotate/pmcannotate.c user/andre/tcp-ao/usr.sbin/portsnap/portsnap/portsnap.8 user/andre/tcp-ao/usr.sbin/portsnap/portsnap/portsnap.sh user/andre/tcp-ao/usr.sbin/powerd/powerd.8 user/andre/tcp-ao/usr.sbin/powerd/powerd.c user/andre/tcp-ao/usr.sbin/ppp/Makefile user/andre/tcp-ao/usr.sbin/ppp/command.c user/andre/tcp-ao/usr.sbin/ppp/defs.c user/andre/tcp-ao/usr.sbin/ppp/defs.h user/andre/tcp-ao/usr.sbin/ppp/mppe.c user/andre/tcp-ao/usr.sbin/pw/pw.conf.5 user/andre/tcp-ao/usr.sbin/pw/pw_user.c user/andre/tcp-ao/usr.sbin/rarpd/rarpd.c user/andre/tcp-ao/usr.sbin/rrenumd/lexer.l user/andre/tcp-ao/usr.sbin/rtadvctl/rtadvctl.c user/andre/tcp-ao/usr.sbin/rtadvd/config.c user/andre/tcp-ao/usr.sbin/rtadvd/if.c user/andre/tcp-ao/usr.sbin/rtadvd/rrenum.c user/andre/tcp-ao/usr.sbin/rtadvd/rtadvd.c user/andre/tcp-ao/usr.sbin/rtadvd/rtadvd.h user/andre/tcp-ao/usr.sbin/rtadvd/timer.c user/andre/tcp-ao/usr.sbin/rtadvd/timer.h user/andre/tcp-ao/usr.sbin/rtadvd/timer_subr.c user/andre/tcp-ao/usr.sbin/rtadvd/timer_subr.h user/andre/tcp-ao/usr.sbin/rtsold/dump.c user/andre/tcp-ao/usr.sbin/rtsold/if.c user/andre/tcp-ao/usr.sbin/rtsold/probe.c user/andre/tcp-ao/usr.sbin/rtsold/rtsock.c user/andre/tcp-ao/usr.sbin/rtsold/rtsol.c user/andre/tcp-ao/usr.sbin/rtsold/rtsold.8 user/andre/tcp-ao/usr.sbin/rtsold/rtsold.c user/andre/tcp-ao/usr.sbin/rtsold/rtsold.h user/andre/tcp-ao/usr.sbin/rwhod/rwhod.c user/andre/tcp-ao/usr.sbin/services_mkdb/services_mkdb.8 user/andre/tcp-ao/usr.sbin/setfib/setfib.1 user/andre/tcp-ao/usr.sbin/syslogd/syslogd.c user/andre/tcp-ao/usr.sbin/sysrc/sysrc user/andre/tcp-ao/usr.sbin/sysrc/sysrc.8 user/andre/tcp-ao/usr.sbin/tcpdump/tcpdump/Makefile user/andre/tcp-ao/usr.sbin/tcpdump/tcpdump/config.h user/andre/tcp-ao/usr.sbin/tcpdump/tcpdump/tcpdump.1 user/andre/tcp-ao/usr.sbin/timed/timed/timed.8 user/andre/tcp-ao/usr.sbin/uhsoctl/uhsoctl.1 user/andre/tcp-ao/usr.sbin/vidcontrol/vidcontrol.c user/andre/tcp-ao/usr.sbin/wake/wake.8 user/andre/tcp-ao/usr.sbin/watch/watch.c user/andre/tcp-ao/usr.sbin/watchdogd/watchdogd.8 user/andre/tcp-ao/usr.sbin/watchdogd/watchdogd.c user/andre/tcp-ao/usr.sbin/wpa/Makefile.crypto user/andre/tcp-ao/usr.sbin/wpa/Makefile.inc user/andre/tcp-ao/usr.sbin/wpa/hostapd/Makefile user/andre/tcp-ao/usr.sbin/wpa/hostapd_cli/Makefile user/andre/tcp-ao/usr.sbin/wpa/wpa_cli/Makefile user/andre/tcp-ao/usr.sbin/wpa/wpa_passphrase/Makefile user/andre/tcp-ao/usr.sbin/wpa/wpa_supplicant/Makefile user/andre/tcp-ao/usr.sbin/ypserv/yp_access.c user/andre/tcp-ao/usr.sbin/ypserv/yp_dnslookup.c user/andre/tcp-ao/usr.sbin/ypserv/yp_main.c user/andre/tcp-ao/usr.sbin/ypset/ypset.c Directory Properties: user/andre/tcp-ao/ (props changed) user/andre/tcp-ao/cddl/ (props changed) user/andre/tcp-ao/cddl/contrib/opensolaris/ (props changed) user/andre/tcp-ao/cddl/contrib/opensolaris/cmd/zfs/ (props changed) user/andre/tcp-ao/cddl/contrib/opensolaris/lib/libzfs/ (props changed) user/andre/tcp-ao/contrib/atf/ (props changed) user/andre/tcp-ao/contrib/binutils/ (props changed) user/andre/tcp-ao/contrib/bmake/ (props changed) user/andre/tcp-ao/contrib/byacc/ (props changed) user/andre/tcp-ao/contrib/dialog/ (props changed) user/andre/tcp-ao/contrib/gcc/ (props changed) user/andre/tcp-ao/contrib/gdb/ (props changed) user/andre/tcp-ao/contrib/groff/ (props changed) user/andre/tcp-ao/contrib/ipfilter/ (props changed) user/andre/tcp-ao/contrib/ldns/ (props changed) user/andre/tcp-ao/contrib/less/ (props changed) user/andre/tcp-ao/contrib/libarchive/ (props changed) user/andre/tcp-ao/contrib/libarchive/cpio/ (props changed) user/andre/tcp-ao/contrib/libarchive/libarchive/ (props changed) user/andre/tcp-ao/contrib/libarchive/tar/ (props changed) user/andre/tcp-ao/contrib/libc++/ (props changed) user/andre/tcp-ao/contrib/libc-vis/ (props changed) user/andre/tcp-ao/contrib/libcxxrt/ (props changed) user/andre/tcp-ao/contrib/libpcap/ (props changed) user/andre/tcp-ao/contrib/libstdc++/ (props changed) user/andre/tcp-ao/contrib/llvm/ (props changed) user/andre/tcp-ao/contrib/llvm/tools/clang/ (props changed) user/andre/tcp-ao/contrib/mtree/ (props changed) user/andre/tcp-ao/contrib/netcat/ (props changed) user/andre/tcp-ao/contrib/nvi/ (props changed) user/andre/tcp-ao/contrib/openbsm/ (props changed) user/andre/tcp-ao/contrib/openpam/ (props changed) user/andre/tcp-ao/contrib/sendmail/ (props changed) user/andre/tcp-ao/contrib/tcpdump/ (props changed) user/andre/tcp-ao/contrib/tzdata/ (props changed) user/andre/tcp-ao/contrib/wpa/ (props changed) user/andre/tcp-ao/contrib/wpa/hostapd/eap_testing.txt (props changed) user/andre/tcp-ao/contrib/wpa/hostapd/hostapd.8 (props changed) user/andre/tcp-ao/contrib/wpa/hostapd/hostapd_cli.1 (props changed) user/andre/tcp-ao/contrib/wpa/hostapd/logwatch/hostapd.conf (props changed) user/andre/tcp-ao/contrib/wpa/hostapd/wired.conf (props changed) user/andre/tcp-ao/contrib/wpa/src/ap/vlan_init.h (props changed) user/andre/tcp-ao/contrib/wpa/src/ap/wmm.h (props changed) user/andre/tcp-ao/contrib/wpa/src/utils/radiotap.c (props changed) user/andre/tcp-ao/contrib/wpa/src/wps/http.h (props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/dbus/dbus-wpa_supplicant.conf (props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-getall.py (props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new-wps.py (props changed) user/andre/tcp-ao/contrib/wpa/wpa_supplicant/examples/wpas-dbus-new.py (props changed) user/andre/tcp-ao/crypto/heimdal/ (props changed) user/andre/tcp-ao/crypto/openssh/ (props changed) user/andre/tcp-ao/crypto/openssl/ (props changed) user/andre/tcp-ao/gnu/lib/ (props changed) user/andre/tcp-ao/gnu/usr.bin/binutils/ (props changed) user/andre/tcp-ao/gnu/usr.bin/cc/cc_tools/ (props changed) user/andre/tcp-ao/gnu/usr.bin/gdb/ (props changed) user/andre/tcp-ao/lib/libc/ (props changed) user/andre/tcp-ao/lib/libc/stdtime/ (props changed) user/andre/tcp-ao/lib/libutil/ (props changed) user/andre/tcp-ao/lib/libvmmapi/ (props changed) user/andre/tcp-ao/lib/libz/ (props changed) user/andre/tcp-ao/sbin/ (props changed) user/andre/tcp-ao/sbin/dumpon/ (props changed) user/andre/tcp-ao/sbin/ipfw/ (props changed) user/andre/tcp-ao/share/examples/kld/random_adaptor/random_adaptor_example.c (props changed) user/andre/tcp-ao/share/man/man4/ (props changed) user/andre/tcp-ao/sys/ (props changed) user/andre/tcp-ao/sys/amd64/include/xen/ (props changed) user/andre/tcp-ao/sys/amd64/vmm/ (props changed) user/andre/tcp-ao/sys/boot/ (props changed) user/andre/tcp-ao/sys/boot/i386/efi/ (props changed) user/andre/tcp-ao/sys/boot/powerpc/boot1.chrp/ (props changed) user/andre/tcp-ao/sys/cddl/contrib/opensolaris/ (props changed) user/andre/tcp-ao/sys/conf/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/common/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/compiler/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/debugger/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/disassembler/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/dispatcher/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/events/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/executer/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/hardware/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/namespace/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/parser/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/resources/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/tables/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/components/utilities/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/include/ (props changed) user/andre/tcp-ao/sys/contrib/dev/acpica/os_specific/ (props changed) user/andre/tcp-ao/sys/contrib/ipfilter/ (props changed) user/andre/tcp-ao/sys/contrib/octeon-sdk/ (props changed) user/andre/tcp-ao/sys/modules/vmm/ (props changed) user/andre/tcp-ao/sys/xen/interface/ (props changed) user/andre/tcp-ao/sys/xen/interface/COPYING (props changed) user/andre/tcp-ao/sys/xen/interface/acm.h (props changed) user/andre/tcp-ao/sys/xen/interface/acm_ops.h (props changed) user/andre/tcp-ao/sys/xen/interface/arch-powerpc.h (props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/ (props changed) user/andre/tcp-ao/sys/xen/interface/arch-x86/hvm/ (props changed) user/andre/tcp-ao/sys/xen/interface/callback.h (props changed) user/andre/tcp-ao/sys/xen/interface/dom0_ops.h (props changed) user/andre/tcp-ao/sys/xen/interface/elfstructs.h (props changed) user/andre/tcp-ao/sys/xen/interface/foreign/ (props changed) user/andre/tcp-ao/sys/xen/interface/foreign/Makefile (props changed) user/andre/tcp-ao/sys/xen/interface/foreign/mkchecker.py (props changed) user/andre/tcp-ao/sys/xen/interface/foreign/mkheader.py (props changed) user/andre/tcp-ao/sys/xen/interface/foreign/reference.size (props changed) user/andre/tcp-ao/sys/xen/interface/hvm/ (props changed) user/andre/tcp-ao/sys/xen/interface/hvm/e820.h (props changed) user/andre/tcp-ao/sys/xen/interface/io/ (props changed) user/andre/tcp-ao/sys/xen/interface/io/console.h (props changed) user/andre/tcp-ao/sys/xen/interface/io/fbif.h (props changed) user/andre/tcp-ao/sys/xen/interface/io/kbdif.h (props changed) user/andre/tcp-ao/sys/xen/interface/io/tpmif.h (props changed) user/andre/tcp-ao/sys/xen/interface/io/xenbus.h (props changed) user/andre/tcp-ao/sys/xen/interface/libelf.h (props changed) user/andre/tcp-ao/sys/xen/interface/xencomm.h (props changed) user/andre/tcp-ao/usr.bin/calendar/ (props changed) user/andre/tcp-ao/usr.bin/csup/ (props changed) user/andre/tcp-ao/usr.bin/procstat/ (props changed) user/andre/tcp-ao/usr.sbin/bhyve/ (props changed) user/andre/tcp-ao/usr.sbin/bhyvectl/ (props changed) user/andre/tcp-ao/usr.sbin/bhyveload/ (props changed) user/andre/tcp-ao/usr.sbin/bsdinstall/scripts/docsinstall (props changed) user/andre/tcp-ao/usr.sbin/jail/ (props changed) user/andre/tcp-ao/usr.sbin/ndiscvt/ (props changed) user/andre/tcp-ao/usr.sbin/rtadvctl/ (props changed) user/andre/tcp-ao/usr.sbin/rtadvd/ (props changed) user/andre/tcp-ao/usr.sbin/rtsold/ (props changed) Modified: user/andre/tcp-ao/LOCKS ============================================================================== --- user/andre/tcp-ao/LOCKS Fri Nov 1 19:29:59 2013 (r257519) +++ user/andre/tcp-ao/LOCKS Fri Nov 1 19:44:57 2013 (r257520) @@ -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: user/andre/tcp-ao/MAINTAINERS ============================================================================== --- user/andre/tcp-ao/MAINTAINERS Fri Nov 1 19:29:59 2013 (r257519) +++ user/andre/tcp-ao/MAINTAINERS Fri Nov 1 19:44:57 2013 (r257520) @@ -28,9 +28,11 @@ 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. -NEWCARD imp Pre-commit review requested. +PC Card imp Pre-commit review requested. +CardBus imp Pre-commit review requested. pci bus imp,jhb Pre-commit review requested. cdboot jhb Pre-commit review requested. pxeboot jhb Pre-commit review requested. @@ -62,8 +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. -cvs peter Heads-up appreciated, try not to break 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: user/andre/tcp-ao/Makefile ============================================================================== --- user/andre/tcp-ao/Makefile Fri Nov 1 19:29:59 2013 (r257519) +++ user/andre/tcp-ao/Makefile Fri Nov 1 19:44:57 2013 (r257520) @@ -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,8 +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 ${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); \ @@ -294,33 +335,35 @@ upgrade_checks: # 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} \ -D_UPGRADING \ -DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \ - -DNO_CPU_CFLAGS -DNO_WERROR + -DNO_CPU_CFLAGS -DNO_WERROR DESTDIR= PROGNAME=${MYMAKE:T} -make: .PHONY +make bmake: .PHONY @echo @echo "--------------------------------------------------------------" @echo ">>> Building an up-to-date make(1)" @echo "--------------------------------------------------------------" - ${_+_}@cd ${.CURDIR}/usr.bin/make; \ + ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \ ${MMAKE} obj && \ ${MMAKE} depend && \ ${MMAKE} all && \ - ${MMAKE} install DESTDIR=${MAKEPATH} BINDIR= + ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR= + +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 @@ -331,7 +374,7 @@ kernel-toolchains: # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 -TARGET_ARCHES_arm?= arm armeb armv6 armv6eb +TARGET_ARCHES_arm?= arm armeb armv6 TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 @@ -361,6 +404,7 @@ MAKEFAIL=tee -a ${FAILFILE} MAKEFAIL=cat .endif +universe_prologue: upgrade_checks universe: universe_prologue universe_prologue: @echo "--------------------------------------------------------------" @@ -371,17 +415,17 @@ universe_prologue: .endif .for target in ${TARGETS} universe: universe_${target} -.ORDER: universe_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 || \ @@ -392,13 +436,21 @@ universe_${target}_${target_arch}: unive .endfor .endif .if !defined(MAKE_JUST_WORLDS) +# If we are building world and kernels wait for the required worlds to finish +.if !defined(MAKE_JUST_KERNELS) +.for target_arch in ${TARGET_ARCHES_${target}} +universe_${target}_kernels: universe_${target}_${target_arch} +.endfor +.endif +universe_${target}: universe_${target}_kernels +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`" @@ -419,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} \ @@ -446,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: user/andre/tcp-ao/Makefile.inc1 ============================================================================== --- user/andre/tcp-ao/Makefile.inc1 Fri Nov 1 19:29:59 2013 (r257519) +++ user/andre/tcp-ao/Makefile.inc1 Fri Nov 1 19:44:57 2013 (r257520) @@ -35,19 +35,12 @@ # 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: # obj depend all install clean cleandepend cleanobj -# You are supposed to define both of these when calling Makefile.inc1 -# directly. However, some old scripts don't. Cope for the moment, but -# issue a new warning for a transition period. -.if defined(TARGET) && !defined(TARGET_ARCH) -.warning "You must pass both TARGET and TARGET_ARCH to Makefile.inc1. Setting TARGET_ARCH=${TARGET}." -TARGET_ARCH=${TARGET} -.endif .if !defined(TARGET) || !defined(TARGET_ARCH) .error "Both TARGET and TARGET_ARCH must be defined." .endif @@ -65,6 +58,10 @@ TARGET_ARCH=${TARGET} # use that new version. And the new (dynamically-linked) /bin/sh # will expect to find appropriate libraries in /lib and /libexec. # +SRCDIR?= ${.CURDIR} +.if defined(SUBDIR_OVERRIDE) +SUBDIR= ${SUBDIR_OVERRIDE} +.else SUBDIR= share/info lib libexec SUBDIR+=bin .if ${MK_GAMES} != "no" @@ -88,6 +85,9 @@ SUBDIR+=secure SUBDIR+=share .endif SUBDIR+=sys usr.bin usr.sbin +.if ${MK_TESTS} != "no" +SUBDIR+= tests +.endif .if ${MK_OFED} != "no" SUBDIR+=contrib/ofed .endif @@ -103,9 +103,6 @@ SUBDIR+=etc SUBDIR+= ${_DIR} .endif .endfor - -.if defined(SUBDIR_OVERRIDE) -SUBDIR= ${SUBDIR_OVERRIDE} .endif .if defined(NOCLEAN) @@ -121,15 +118,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) @@ -142,11 +132,14 @@ OSRELDATE= 0 .endif .if !defined(VERSION) -VERSION!= uname -srp -VERSION+= ${OSRELDATE} +REVISION!= make -C ${SRCDIR}/release -V REVISION +BRANCH!= make -C ${SRCDIR}/release -V BRANCH +SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ + ${SRCDIR}/sys/sys/param.h +VERSION= FreeBSD ${REVISION}-${BRANCH} ${TARGET_ARCH} ${SRCRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm armv6eb/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/arm armv6/arm i386 i386/pc98 ia64 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -277,18 +270,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}-freebsd11.0 +XFLAGS+= -target ${TARGET_TRIPLE} +.endif +.endif + WMAKEENV+= COMPILER_TYPE=${WMAKE_COMPILER_TYPE} WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP} @@ -324,6 +376,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 \ @@ -334,10 +389,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,14 +402,14 @@ LIB32WMAKEFLAGS+= \ -DNO_LINT LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \ - -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML + -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS \ ${IMAKE_INSTALL} .endif 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} \ @@ -366,11 +422,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) @@ -380,7 +437,7 @@ IMAKE_MTREE= MTREE_CMD="nmtree ${MTREEFL # kernel stage KMAKEENV= ${WMAKEENV} -KMAKE= ${KMAKEENV} ${MAKE} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} +KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} # # buildworld @@ -428,9 +485,16 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null ln -sf ${.CURDIR}/sys ${WORLDTMP} -.if ${MK_BIND_LIBS} != "no" - mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ - -p ${WORLDTMP}/usr/include >/dev/null +.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_TESTS} != "no" + mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ + -p ${WORLDTMP}${TESTSBASE} >/dev/null .endif .for _mtree in ${LOCAL_MTREE} mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null @@ -513,6 +577,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 @@ -615,7 +683,9 @@ kernel-toolchain: ${TOOLCHAIN_TGTS:N_inc # # Checks to be sure system is ready for installworld/installkernel. # -installcheck: +installcheck: _installcheck_world _installcheck_kernel +_installcheck_world: +_installcheck_kernel: # # Require DESTDIR to be set if installing for a different architecture or @@ -624,8 +694,9 @@ installcheck: .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 @@ -647,8 +718,12 @@ CHECK_GIDS+= smmsp CHECK_UIDS+= proxy CHECK_GIDS+= proxy authpf .endif -installcheck: installcheck_UGID -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."; \ @@ -703,7 +778,7 @@ EXTRA_DISTRIBUTIONS+= lib32 MTREE_MAGIC?= mtree 2.0 -distributeworld installworld: installcheck +distributeworld installworld: _installcheck_world mkdir -p ${INSTALLTMP} progs=$$(for prog in ${ITOOLS}; do \ if progpath=`which $$prog`; then \ @@ -737,6 +812,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} @@ -750,13 +829,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} @@ -769,6 +848,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 @@ -777,13 +868,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 # @@ -796,7 +903,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" @@ -844,16 +951,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 @@ -882,12 +984,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 "--------------------------------------------------------------" @@ -960,7 +1056,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 @@ -977,25 +1073,54 @@ 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/} +.if defined(NO_ROOT) + sed -e 's|^./kernel|.|' \ + ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ + ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta +.endif .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 @@ -1012,63 +1137,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 # @@ -1092,11 +1176,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 @@ -1131,11 +1215,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 @@ -1163,8 +1255,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 @@ -1183,13 +1275,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} \ @@ -1207,17 +1300,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 @@ -1240,7 +1335,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 \ @@ -1253,18 +1348,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 @@ -1285,20 +1381,27 @@ _kgzip= usr.sbin/kgzip .endif .endif -.if ${MK_BINUTILS} != "no" +.if ${XAS:M/*} == "" && ${MK_BINUTILS} != "no" _binutils= gnu/usr.bin/binutils .endif -.if ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang") +# 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_IS_CC} != "no" || ${CC:T:Mclang} == "clang" _clang= usr.bin/clang _clang_libs= lib/clang +.else +_cc= gnu/usr.bin/cc .endif -.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") +# The boot2 for pc98 requires gcc. +.if ${TARGET} == "pc98" _cc= gnu/usr.bin/cc .endif +.endif -cross-tools: +cross-tools: .MAKE .for _tool in \ ${_clang_libs} \ ${_clang} \ @@ -1309,10 +1412,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; \ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Sat Nov 2 13:14:46 2013 Return-Path: Delivered-To: svn-src-user@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 B6C47A0B; Sat, 2 Nov 2013 13:14:46 +0000 (UTC) (envelope-from dumbbell@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 A497724EE; Sat, 2 Nov 2013 13:14:46 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA2DEknP082356; Sat, 2 Nov 2013 13:14:46 GMT (envelope-from dumbbell@svn.freebsd.org) Received: (from dumbbell@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2DEkmn082355; Sat, 2 Nov 2013 13:14:46 GMT (envelope-from dumbbell@svn.freebsd.org) Message-Id: <201311021314.rA2DEkmn082355@svn.freebsd.org> From: Jean-Sebastien Pedron Date: Sat, 2 Nov 2013 13:14:46 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257544 - user/ed/newcons/sys/dev/drm2 X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 13:14:46 -0000 Author: dumbbell Date: Sat Nov 2 13:14:46 2013 New Revision: 257544 URL: http://svnweb.freebsd.org/changeset/base/257544 Log: drm: Log error if we fail to attach fbd device Modified: user/ed/newcons/sys/dev/drm2/drm_fb_helper.c Modified: user/ed/newcons/sys/dev/drm2/drm_fb_helper.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/drm_fb_helper.c Sat Nov 2 11:37:16 2013 (r257543) +++ user/ed/newcons/sys/dev/drm2/drm_fb_helper.c Sat Nov 2 13:14:46 2013 (r257544) @@ -1034,9 +1034,14 @@ int drm_fb_helper_single_fb_probe(struct #if defined(__FreeBSD__) if (new_fb) { + device_t fbd; + int ret; + kdev = fb_helper->dev->device; - device_add_child(kdev, "fbd", device_get_unit(kdev)); - bus_generic_attach(kdev); + fbd = device_add_child(kdev, "fbd", device_get_unit(kdev)); + ret = device_probe_and_attach(fbd); + if (ret != 0) + DRM_ERROR("Failed to attach fbd device: %d\n", ret); } #else if (new_fb) { From owner-svn-src-user@FreeBSD.ORG Sat Nov 2 13:16:02 2013 Return-Path: Delivered-To: svn-src-user@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 08D90AF6; Sat, 2 Nov 2013 13:16:02 +0000 (UTC) (envelope-from dumbbell@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 CFBE824F6; Sat, 2 Nov 2013 13:16: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 rA2DG1GI082584; Sat, 2 Nov 2013 13:16:01 GMT (envelope-from dumbbell@svn.freebsd.org) Received: (from dumbbell@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2DG1QQ082580; Sat, 2 Nov 2013 13:16:01 GMT (envelope-from dumbbell@svn.freebsd.org) Message-Id: <201311021316.rA2DG1QQ082580@svn.freebsd.org> From: Jean-Sebastien Pedron Date: Sat, 2 Nov 2013 13:16:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257545 - user/ed/newcons/sys/dev/drm2/radeon X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 13:16:02 -0000 Author: dumbbell Date: Sat Nov 2 13:16:00 2013 New Revision: 257545 URL: http://svnweb.freebsd.org/changeset/base/257545 Log: drm/radeon: Implement the FB_GETINFO() newbus callback Modified: user/ed/newcons/sys/dev/drm2/radeon/radeon.h user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c user/ed/newcons/sys/dev/drm2/radeon/radeon_fb.c Modified: user/ed/newcons/sys/dev/drm2/radeon/radeon.h ============================================================================== --- user/ed/newcons/sys/dev/drm2/radeon/radeon.h Sat Nov 2 13:14:46 2013 (r257544) +++ user/ed/newcons/sys/dev/drm2/radeon/radeon.h Sat Nov 2 13:16:00 2013 (r257545) @@ -2041,6 +2041,9 @@ void radeon_pm_acpi_event_handler(struct int radeon_ttm_init(struct radeon_device *rdev); void radeon_ttm_fini(struct radeon_device *rdev); +/* radeon_fb.c */ +struct fb_info * radeon_fb_helper_getinfo(device_t kdev); + /* r600.c */ int r600_ih_ring_alloc(struct radeon_device *rdev); void r600_ih_ring_fini(struct radeon_device *rdev); Modified: user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c Sat Nov 2 13:14:46 2013 (r257544) +++ user/ed/newcons/sys/dev/drm2/radeon/radeon_drv.c Sat Nov 2 13:16:00 2013 (r257545) @@ -489,27 +489,7 @@ radeon_resume(device_t kdev) return (-ret); } -static struct fb_info * -radeon_fb_helper_getinfo(device_t kdev) -{ -#if 0 /* XXX */ - struct drm_device *dev; - struct radeon_mode_info *mode_info; - struct radeon_fbdev *rfbdev; - struct radeon_device *rdev; - struct fb_info *info; - - - dev = device_get_softc(kdev); - rdev = dev->dev_private; - mode_info = &rdev->mode_info; - rfbdev = mode_info->rfbdev; - info = rfbdev->helper.fbdev; - return (info); -#else - return (NULL); -#endif -} +extern struct fb_info * radeon_fb_helper_getinfo(device_t kdev); static device_method_t radeon_methods[] = { /* Device interface */ Modified: user/ed/newcons/sys/dev/drm2/radeon/radeon_fb.c ============================================================================== --- user/ed/newcons/sys/dev/drm2/radeon/radeon_fb.c Sat Nov 2 13:14:46 2013 (r257544) +++ user/ed/newcons/sys/dev/drm2/radeon/radeon_fb.c Sat Nov 2 13:16:00 2013 (r257545) @@ -375,3 +375,22 @@ bool radeon_fbdev_robj_is_fb(struct rade return true; return false; } + +struct fb_info * +radeon_fb_helper_getinfo(device_t kdev) +{ + struct drm_device *dev; + struct radeon_device *rdev; + struct radeon_fbdev *rfbdev; + struct fb_info *info; + + dev = device_get_softc(kdev); + rdev = dev->dev_private; + rfbdev = rdev->mode_info.rfbdev; + if (rfbdev == NULL) + return (NULL); + + info = rfbdev->helper.fbdev; + + return (info); +} From owner-svn-src-user@FreeBSD.ORG Sat Nov 2 14:05:20 2013 Return-Path: Delivered-To: svn-src-user@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 3E9DC588; Sat, 2 Nov 2013 14:05:20 +0000 (UTC) (envelope-from ray@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 2CB6E2703; Sat, 2 Nov 2013 14:05: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 rA2E5KME099076; Sat, 2 Nov 2013 14:05:20 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2E5KmJ099075; Sat, 2 Nov 2013 14:05:20 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201311021405.rA2E5KmJ099075@svn.freebsd.org> From: Aleksandr Rybalko Date: Sat, 2 Nov 2013 14:05:20 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257546 - user/ed/newcons/sys/dev/fb X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 14:05:20 -0000 Author: ray Date: Sat Nov 2 14:05:19 2013 New Revision: 257546 URL: http://svnweb.freebsd.org/changeset/base/257546 Log: Fail to attach if fb_info not passed. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/fb/fbd.c Modified: user/ed/newcons/sys/dev/fb/fbd.c ============================================================================== --- user/ed/newcons/sys/dev/fb/fbd.c Sat Nov 2 13:16:00 2013 (r257545) +++ user/ed/newcons/sys/dev/fb/fbd.c Sat Nov 2 14:05:19 2013 (r257546) @@ -372,6 +372,8 @@ fbd_attach(device_t dev) sc->sc_dev = dev; sc->sc_info = FB_GETINFO(device_get_parent(dev)); + if (sc->sc_info == NULL) + return (ENXIO); err = fbd_register(sc->sc_info); return (err); From owner-svn-src-user@FreeBSD.ORG Sat Nov 2 14:20:30 2013 Return-Path: Delivered-To: svn-src-user@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 58BF48E1; Sat, 2 Nov 2013 14:20:30 +0000 (UTC) (envelope-from ray@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 2D2A627A2; Sat, 2 Nov 2013 14:20:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA2EKUQW005571; Sat, 2 Nov 2013 14:20:30 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2EKTH2005566; Sat, 2 Nov 2013 14:20:29 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201311021420.rA2EKTH2005566@svn.freebsd.org> From: Aleksandr Rybalko Date: Sat, 2 Nov 2013 14:20:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257547 - user/ed/newcons/sys/dev/vt X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 14:20:30 -0000 Author: ray Date: Sat Nov 2 14:20:29 2013 New Revision: 257547 URL: http://svnweb.freebsd.org/changeset/base/257547 Log: Fix copyrights. Sponsored by: The FreeBSD Foundation Modified: user/ed/newcons/sys/dev/vt/vt.h user/ed/newcons/sys/dev/vt/vt_buf.c user/ed/newcons/sys/dev/vt/vt_core.c Modified: user/ed/newcons/sys/dev/vt/vt.h ============================================================================== --- user/ed/newcons/sys/dev/vt/vt.h Sat Nov 2 14:05:19 2013 (r257546) +++ user/ed/newcons/sys/dev/vt/vt.h Sat Nov 2 14:20:29 2013 (r257547) @@ -1,10 +1,13 @@ /*- - * Copyright (c) 2009 The FreeBSD Foundation + * Copyright (c) 2009, 2013 The FreeBSD Foundation * All rights reserved. * * This software was developed by Ed Schouten under sponsorship from the * FreeBSD Foundation. * + * Portions of this software were developed by Oleksandr Rybalko + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: Modified: user/ed/newcons/sys/dev/vt/vt_buf.c ============================================================================== --- user/ed/newcons/sys/dev/vt/vt_buf.c Sat Nov 2 14:05:19 2013 (r257546) +++ user/ed/newcons/sys/dev/vt/vt_buf.c Sat Nov 2 14:20:29 2013 (r257547) @@ -1,10 +1,13 @@ /*- - * Copyright (c) 2009 The FreeBSD Foundation + * Copyright (c) 2009, 2013 The FreeBSD Foundation * All rights reserved. * * This software was developed by Ed Schouten under sponsorship from the * FreeBSD Foundation. * + * Portions of this software were developed by Oleksandr Rybalko + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: Modified: user/ed/newcons/sys/dev/vt/vt_core.c ============================================================================== --- user/ed/newcons/sys/dev/vt/vt_core.c Sat Nov 2 14:05:19 2013 (r257546) +++ user/ed/newcons/sys/dev/vt/vt_core.c Sat Nov 2 14:20:29 2013 (r257547) @@ -1,10 +1,13 @@ /*- - * Copyright (c) 2009 The FreeBSD Foundation + * Copyright (c) 2009, 2013 The FreeBSD Foundation * All rights reserved. * * This software was developed by Ed Schouten under sponsorship from the * FreeBSD Foundation. * + * Portions of this software were developed by Oleksandr Rybalko + * under sponsorship from the FreeBSD Foundation. + * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: From owner-svn-src-user@FreeBSD.ORG Sat Nov 2 23:20:57 2013 Return-Path: Delivered-To: svn-src-user@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 29982157; Sat, 2 Nov 2013 23:20:57 +0000 (UTC) (envelope-from cperciva@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 15AA72E6E; Sat, 2 Nov 2013 23:20:57 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id rA2NKurA091213; Sat, 2 Nov 2013 23:20:56 GMT (envelope-from cperciva@svn.freebsd.org) Received: (from cperciva@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id rA2NKu6F091212; Sat, 2 Nov 2013 23:20:56 GMT (envelope-from cperciva@svn.freebsd.org) Message-Id: <201311022320.rA2NKu6F091212@svn.freebsd.org> From: Colin Percival Date: Sat, 2 Nov 2013 23:20:56 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org Subject: svn commit: r257562 - user/cperciva/panicmail X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Nov 2013 23:20:57 -0000 Author: cperciva Date: Sat Nov 2 23:20:56 2013 New Revision: 257562 URL: http://svnweb.freebsd.org/changeset/base/257562 Log: Change default submission target from cperciva-panicmail@daemonology.net to cperciva@freebsd.org. Include the To: "name" in the variable, not just the email address. Avoid missed periods. Use > instead of >> when first writing to a file we're constructing in parts. Add quoting of strings containing variable expansions. Exit if pkesh fails. Set umask correctly: Panic emails might contain information we don't want local unprivileged users to read. If present, use the info.last symlink to locate the most recent panic. If not, fall back to using bounds as before. Compare timestamps on vmcore.N and panicmail.N; otherwise we will miss sending email for panics after numbers rotate back to zero. Submitted by: dt71 via freebsd-hackers Modified: user/cperciva/panicmail/panicmail Modified: user/cperciva/panicmail/panicmail ============================================================================== --- user/cperciva/panicmail/panicmail Sat Nov 2 22:44:35 2013 (r257561) +++ user/cperciva/panicmail/panicmail Sat Nov 2 23:20:56 2013 (r257562) @@ -13,7 +13,8 @@ # emails instead of sending them to root for # review first. # -# panicmail_sendto (str): Set to "cperciva-panicmail@daemonology.net" +# panicmail_sendto (str): Set to +# "FreeBSD Panic Reporting " # by default. # Change to your desired panic submission target. # @@ -23,7 +24,7 @@ # submission target. : ${panicmail_enable:="NO"} : ${panicmail_autosubmit:="NO"} -: ${panicmail_sendto:="cperciva-panicmail@daemonology.net"} +: ${panicmail_sendto:="FreeBSD Panic Reporting "} : ${panicmail_key:="/usr/local/etc/cperciva-panicmail.pem"} . /etc/rc.subr @@ -33,49 +34,50 @@ rcvar=panicmail_enable start_cmd="panicmail_run" stop_cmd=":" -# Gather the data we want to include in a panic report +# Gather the data we want to include in a panic report. panicmail_gather() { local tmpfile=`mktemp` || exit 1 # We want the dump header. - cat ${dumpdir}/info.$1 >> ${dumpdir}/panicmail.$1 - echo >> ${dumpdir}/panicmail.$1 + cat "${dumpdir}/info.$1" > "${dumpdir}/panicmail.$1" + echo >> "${dumpdir}/panicmail.$1" # And we want a backtrace (we should be able to pipe the commands # directly into kgdb, but that doesn't work with our /bin/sh): - echo "Backtrace:" >> ${dumpdir}/panicmail.$1 + echo "Backtrace:" >> "${dumpdir}/panicmail.$1" echo bt > ${tmpfile} echo quit >> ${tmpfile} - kgdb -q `sysctl -n kern.bootfile` ${dumpdir}/vmcore.$1 \ - < ${tmpfile} >> ${dumpdir}/panicmail.$1 2> /dev/null - echo >> ${dumpdir}/panicmail.$1 + kgdb -q `sysctl -n kern.bootfile` "${dumpdir}/vmcore.$1" \ + < ${tmpfile} >> "${dumpdir}/panicmail.$1" 2> /dev/null + echo >> "${dumpdir}/panicmail.$1" rm ${tmpfile} } -# Encrypt the information in the panic report +# Encrypt the information in the panic report. panicmail_encrypt() { local tmpfile=`mktemp` || exit 1 # Encrypt using pkesh. - /usr/local/bin/pkesh enc $2 ${dumpdir}/panicmail.$1 ${tmpfile} + /usr/local/bin/pkesh enc "$2" "${dumpdir}/panicmail.$1" ${tmpfile} || exit 1 - # Add extra armour - echo "-----ENCRYPTED FREEBSD PANIC DATA STARTS HERE---------------------" > ${dumpdir}/panicmail.$1.enc - lam -s '|' ${tmpfile} -s '|' >> ${dumpdir}/panicmail.$1.enc - echo "-----ENCRYPTED FREEBSD PANIC DATA ENDS HERE-----------------------" >> ${dumpdir}/panicmail.$1.enc + # Add extra armour. + echo "-----ENCRYPTED FREEBSD PANIC DATA STARTS HERE---------------------" > "${dumpdir}/panicmail.$1.enc" + lam -s '|' ${tmpfile} -s '|' >> "${dumpdir}/panicmail.$1.enc" + echo "-----ENCRYPTED FREEBSD PANIC DATA ENDS HERE-----------------------" >> "${dumpdir}/panicmail.$1.enc" - # Remove temporary file + # Remove temporary file. rm ${tmpfile} } +# Construct an email destined for root to review and forward. panicmail_root() { cat <<-EOF To: root - From: FreeBSD Panic Reporting <${panicmail_sendto}> + From: ${panicmail_sendto} Subject: Kernel panic A kernel panic has occurred on this system. You can assist in @@ -86,7 +88,7 @@ panicmail_root() report at the end of this email: EOF - lam -s "> " ${dumpdir}/panicmail.$1 + lam -s "> " "${dumpdir}/panicmail.$1" cat <<-EOF If you are happy to have this information submitted (i.e., it @@ -97,40 +99,52 @@ panicmail_root() client and removing everything up to this point. EOF - cat ${dumpdir}/panicmail.$1.enc + cat "${dumpdir}/panicmail.$1.enc" } +# Construct an email headed directly to the panic submission target. panicmail_auto() { cat <<-EOF - To: FreeBSD Panic Reporting <${panicmail_sendto}> + To: ${panicmail_sendto} From: root Subject: Kernel panic EOF - cat ${dumpdir}/panicmail.$1.enc + cat "${dumpdir}/panicmail.$1.enc" } panicmail_run() { local nr - # Quit if we have no dumps + # Set umask; we may create files with sensitive data. + umask 077 + + # Quit if we have no dumps. if ! [ -f "${dumpdir}/bounds" ]; then return 0; fi - # Figure out which dump is the most recent - nr=$((`cat ${dumpdir}/bounds` - 1)) + # If we have info.last, use that to figure out the last dump number. + if [ -e "${dumpdir}/info.last" ]; then + nr=`readlink ${dumpdir}/info.last` + nr=${nr##*.} + else + # Otherwise get the number from bounds. + nr=$((`cat ${dumpdir}/bounds` - 1)) + fi - # Make sure it actually exists - if ! [ -f "${dumpdir}/info.${nr}" ]; then + # Make sure the dump actually exists. + if ! [ -f "${dumpdir}/info.${nr}" ] || + ! [ -f "${dumpdir}/vmcore.${nr}" ]; then return 0; fi - # Have we already sent an email about this one? - if [ -f "${dumpdir}/panicmail.${nr}" ]; then + # Have we already sent an email about this one? We compare times in + # order to catch the case where dump numbers repeat. + if [ "${dumpdir}/panicmail.${nr}" -nt "${dumpdir}/vmcore.${nr}" ]; then return 0; fi @@ -138,7 +152,7 @@ panicmail_run() panicmail_gather ${nr} # Encrypt the panic information. - panicmail_encrypt ${nr} ${panicmail_key} + panicmail_encrypt ${nr} "${panicmail_key}" # Generate and send an email. if checkyesno panicmail_autosubmit; then