From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:11:10 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48E106EE; Sun, 25 Nov 2012 12:11:10 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 15F3E8FC15; Sun, 25 Nov 2012 12:11:10 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCB9wK056055; Sun, 25 Nov 2012 12:11:09 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCB9pe056054; Sun, 25 Nov 2012 12:11:09 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251211.qAPCB9pe056054@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:11:09 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243507 - projects/efika_mx/sys/powerpc/mpc85xx X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:11:10 -0000 Author: ray Date: Sun Nov 25 12:11:09 2012 New Revision: 243507 URL: http://svnweb.freebsd.org/changeset/base/243507 Log: Allow to bind to i.MX i2c controllers. Sponsored by: FreeBSD Foundation Modified: projects/efika_mx/sys/powerpc/mpc85xx/i2c.c Modified: projects/efika_mx/sys/powerpc/mpc85xx/i2c.c ============================================================================== --- projects/efika_mx/sys/powerpc/mpc85xx/i2c.c Sun Nov 25 11:26:36 2012 (r243506) +++ projects/efika_mx/sys/powerpc/mpc85xx/i2c.c Sun Nov 25 12:11:09 2012 (r243507) @@ -83,6 +83,8 @@ struct i2c_softc { device_t iicbus; struct resource *res; struct mtx mutex; + int flags; +#define FSL_IMX_I2C (1 << 0) /* To distinguish MPC and i.MX SoCs */ int rid; bus_space_handle_t bsh; bus_space_tag_t bst; @@ -187,10 +189,16 @@ i2c_probe(device_t dev) { struct i2c_softc *sc; - if (!ofw_bus_is_compatible(dev, "fsl-i2c")) + sc = device_get_softc(dev); + + if (ofw_bus_is_compatible(dev, "fsl-i2c")) + /* compatible */; + else if (ofw_bus_is_compatible(dev, "fsl,imx-i2c")) + /* compatible, i.MX SoC */ + sc->flags |= FSL_IMX_I2C; + else return (ENXIO); - sc = device_get_softc(dev); sc->rid = 0; sc->res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &sc->rid, @@ -341,7 +349,8 @@ i2c_reset(device_t dev, u_char speed, u_ i2c_write_reg(sc, I2C_STATUS_REG, 0x0); DELAY(1000); i2c_write_reg(sc, I2C_FDR_REG, baud_rate); - i2c_write_reg(sc, I2C_DFSRR_REG, I2C_DFSSR_DIV); + if (!(sc->flags & FSL_IMX_I2C)) + i2c_write_reg(sc, I2C_DFSRR_REG, I2C_DFSSR_DIV); i2c_write_reg(sc, I2C_CONTROL_REG, I2C_ENABLE); DELAY(1000); mtx_unlock(&sc->mutex); From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:13:04 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B24E280F; Sun, 25 Nov 2012 12:13:04 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 97F5B8FC08; Sun, 25 Nov 2012 12:13:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCD4Ho056426; Sun, 25 Nov 2012 12:13:04 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCD4jG056424; Sun, 25 Nov 2012 12:13:04 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251213.qAPCD4jG056424@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:13:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243508 - projects/efika_mx/sys/boot/fdt/dts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:13:04 -0000 Author: ray Date: Sun Nov 25 12:13:04 2012 New Revision: 243508 URL: http://svnweb.freebsd.org/changeset/base/243508 Log: Expand compatibilty for i2c controlers in Freescale SoCs. Modified: projects/efika_mx/sys/boot/fdt/dts/imx51x.dtsi Modified: projects/efika_mx/sys/boot/fdt/dts/imx51x.dtsi ============================================================================== --- projects/efika_mx/sys/boot/fdt/dts/imx51x.dtsi Sun Nov 25 12:11:09 2012 (r243507) +++ projects/efika_mx/sys/boot/fdt/dts/imx51x.dtsi Sun Nov 25 12:13:04 2012 (r243508) @@ -446,7 +446,7 @@ i2c@83fc4000 { #address-cells = <1>; #size-cells = <0>; - compatible = "fsl,imx51-i2c", "fsl,imx1-i2c"; + compatible = "fsl,imx51-i2c", "fsl,imx1-i2c", "fsl,imx-i2c"; reg = <0x83fc4000 0x4000>; interrupt-parent = <&tzic>; interrupts = <63>; status = "disabled"; @@ -456,7 +456,7 @@ i2c@83fc8000 { #address-cells = <1>; #size-cells = <0>; - compatible = "fsl,imx51-i2c", "fsl,imx1-i2c"; + compatible = "fsl,imx51-i2c", "fsl,imx1-i2c", "fsl,imx-i2c"; reg = <0x83fc8000 0x4000>; interrupt-parent = <&tzic>; interrupts = <62>; status = "disabled"; From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:18:07 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D5E41B58; Sun, 25 Nov 2012 12:18:07 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BAD818FC0C; Sun, 25 Nov 2012 12:18:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCI7gS057341; Sun, 25 Nov 2012 12:18:07 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCI7hm057340; Sun, 25 Nov 2012 12:18:07 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251218.qAPCI7hm057340@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:18:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243509 - projects/efika_mx/sys/boot/fdt/dts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:18:07 -0000 Author: ray Date: Sun Nov 25 12:18:07 2012 New Revision: 243509 URL: http://svnweb.freebsd.org/changeset/base/243509 Log: Replace spaces with tabs. Modified: projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Modified: projects/efika_mx/sys/boot/fdt/dts/efikamx.dts ============================================================================== --- projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Sun Nov 25 12:13:04 2012 (r243508) +++ projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Sun Nov 25 12:18:07 2012 (r243509) @@ -45,9 +45,9 @@ soc@70000000 { aips@70000000 { - timer@73fa0000 { + timer@73fa0000 { status = "okay"; - }; + }; /* UART1, console */ UART1: serial@73fbc000 { @@ -55,17 +55,17 @@ clock-frequency = <3000000>; /* XXX */ }; - clock@73fd4000 { + clock@73fd4000 { + status = "okay"; + }; + wdog@73f98000 { status = "okay"; - }; - wdog@73f98000 { - status = "okay"; - }; + }; }; aips@80000000 { - ide@83fe0000 { - status = "okay"; - }; + ide@83fe0000 { + status = "okay"; + }; }; }; From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:19:17 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 97286CBC; Sun, 25 Nov 2012 12:19:17 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7CE488FC13; Sun, 25 Nov 2012 12:19:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCJHDW057559; Sun, 25 Nov 2012 12:19:17 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCJHCn057558; Sun, 25 Nov 2012 12:19:17 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251219.qAPCJHCn057558@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:19:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243510 - projects/efika_mx/sys/boot/fdt/dts X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:19:17 -0000 Author: ray Date: Sun Nov 25 12:19:17 2012 New Revision: 243510 URL: http://svnweb.freebsd.org/changeset/base/243510 Log: Enable i2c controllers. Sponsored by: FreeBSD Foundation Modified: projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Modified: projects/efika_mx/sys/boot/fdt/dts/efikamx.dts ============================================================================== --- projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Sun Nov 25 12:18:07 2012 (r243509) +++ projects/efika_mx/sys/boot/fdt/dts/efikamx.dts Sun Nov 25 12:19:17 2012 (r243510) @@ -63,6 +63,12 @@ }; }; aips@80000000 { + i2c@83fc4000 { + status = "okay"; + }; + i2c@83fc8000 { + status = "okay"; + }; ide@83fe0000 { status = "okay"; }; From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:29:01 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EC273DD; Sun, 25 Nov 2012 12:29:01 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8489C8FC0C; Sun, 25 Nov 2012 12:29:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCT1h4059401; Sun, 25 Nov 2012 12:29:01 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCT1HO059400; Sun, 25 Nov 2012 12:29:01 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251229.qAPCT1HO059400@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:29:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243512 - projects/efika_mx/sys/arm/freescale/imx X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:29:01 -0000 Author: ray Date: Sun Nov 25 12:29:01 2012 New Revision: 243512 URL: http://svnweb.freebsd.org/changeset/base/243512 Log: Allow to enable i2c controller driver with fsliic device option in kernel config. Sponsored by: FreeBSD Foundation Modified: projects/efika_mx/sys/arm/freescale/imx/imx.files Modified: projects/efika_mx/sys/arm/freescale/imx/imx.files ============================================================================== --- projects/efika_mx/sys/arm/freescale/imx/imx.files Sun Nov 25 12:27:19 2012 (r243511) +++ projects/efika_mx/sys/arm/freescale/imx/imx.files Sun Nov 25 12:29:01 2012 (r243512) @@ -35,3 +35,6 @@ dev/usb/controller/ehci_imx.c optional # Watchdog arm/freescale/imx/imx_wdog.c optional imxwdt + +# i2c +powerpc/mpc85xx/i2c.c optional fsliic From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:34:49 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 090A6C52; Sun, 25 Nov 2012 12:34:49 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id E16208FC08; Sun, 25 Nov 2012 12:34:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCYmGF060213; Sun, 25 Nov 2012 12:34:48 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCYmKF060211; Sun, 25 Nov 2012 12:34:48 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251234.qAPCYmKF060211@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:34:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243513 - projects/efika_mx/sys/arm/freescale/imx X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:34:49 -0000 Author: ray Date: Sun Nov 25 12:34:48 2012 New Revision: 243513 URL: http://svnweb.freebsd.org/changeset/base/243513 Log: imx_gpt can serve ET_FLAGS_PERIODIC too now. ET_FLAGS_PERIODIC not well tested yet. Sponsored by: FreeBSD Foundation Modified: projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c projects/efika_mx/sys/arm/freescale/imx/imx_gptvar.h Modified: projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c ============================================================================== --- projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c Sun Nov 25 12:29:01 2012 (r243512) +++ projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c Sun Nov 25 12:34:48 2012 (r243513) @@ -171,7 +171,7 @@ imx_gpt_attach(device_t dev) } sc->et.et_name = "i.MXxxx GPT Eventtimer"; - sc->et.et_flags = ET_FLAGS_ONESHOT; + sc->et.et_flags = ET_FLAGS_ONESHOT | ET_FLAGS_PERIODIC; sc->et.et_quality = 1000; sc->et.et_frequency = sc->clkfreq; sc->et.et_min_period.sec = 0; @@ -215,7 +215,15 @@ imx_gpt_timer_start(struct eventtimer *e uint32_t ticks; sc = (struct imx_gpt_softc *)et->et_priv; - if (first != NULL) { + + if (period != NULL) { + sc->sc_period = (et->et_frequency * (first->frac >> 32)) >> 32; + sc->sc_period += et->et_frequency * first->sec; + /* Set expected value */ + 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); + } else if (first != NULL) { ticks = (et->et_frequency * (first->frac >> 32)) >> 32; if (first->sec != 0) @@ -248,9 +256,10 @@ imx_gpt_timer_stop(struct eventtimer *et sc = (struct imx_gpt_softc *)et->et_priv; - /* Disable OF1 Interrupt */ - CLEAR4(sc, IMX_GPT_IR, GPT_IR_OF1); - WRITE4(sc, IMX_GPT_SR, GPT_IR_OF1); + /* Disable OF2 Interrupt */ + CLEAR4(sc, IMX_GPT_IR, GPT_IR_OF2); + WRITE4(sc, IMX_GPT_SR, GPT_IR_OF2); + sc->sc_period = 0; return (0); } @@ -295,6 +304,14 @@ imx_gpt_intr(void *arg) sc->et.et_event_cb(&sc->et, sc->et.et_arg); } } + if (status & GPT_IR_OF2) { + if (sc->et.et_active) { + sc->et.et_event_cb(&sc->et, sc->et.et_arg); + /* Set expected value */ + WRITE4(sc, IMX_GPT_OCR2, READ4(sc, IMX_GPT_CNT) + + sc->sc_period); + } + } /* ACK */ WRITE4(sc, IMX_GPT_SR, status); Modified: projects/efika_mx/sys/arm/freescale/imx/imx_gptvar.h ============================================================================== --- projects/efika_mx/sys/arm/freescale/imx/imx_gptvar.h Sun Nov 25 12:29:01 2012 (r243512) +++ projects/efika_mx/sys/arm/freescale/imx/imx_gptvar.h Sun Nov 25 12:34:48 2012 (r243513) @@ -38,6 +38,7 @@ struct imx_gpt_softc { bus_space_tag_t sc_iot; bus_space_handle_t sc_ioh; void *sc_ih; /* interrupt handler */ + uint32_t sc_period; uint32_t sc_clksrc; uint32_t clkfreq; struct eventtimer et; From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 12:38:13 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 232ADE3F; Sun, 25 Nov 2012 12:38:13 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 097A88FC08; Sun, 25 Nov 2012 12:38:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPCcCb2060678; Sun, 25 Nov 2012 12:38:12 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPCcCvj060677; Sun, 25 Nov 2012 12:38:12 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211251238.qAPCcCvj060677@svn.freebsd.org> From: Aleksandr Rybalko Date: Sun, 25 Nov 2012 12:38:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243514 - projects/efika_mx/sys/arm/conf X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 12:38:13 -0000 Author: ray Date: Sun Nov 25 12:38:12 2012 New Revision: 243514 URL: http://svnweb.freebsd.org/changeset/base/243514 Log: Enable i2c for EFIKA_MX kerenl. i2c used to control HDMI PHY (smarttop) and LVDS controller (smartbook). Modified: projects/efika_mx/sys/arm/conf/EFIKA_MX Modified: projects/efika_mx/sys/arm/conf/EFIKA_MX ============================================================================== --- projects/efika_mx/sys/arm/conf/EFIKA_MX Sun Nov 25 12:34:48 2012 (r243513) +++ projects/efika_mx/sys/arm/conf/EFIKA_MX Sun Nov 25 12:38:12 2012 (r243514) @@ -113,6 +113,10 @@ device imxata options ATA_CAM options ATA_STATIC_ID # Static device numbering +device fsliic +device iic +device iicbus + # SCSI peripherals device scbus # SCSI bus (required for SCSI) device da # Direct Access (disks) From owner-svn-src-projects@FreeBSD.ORG Sun Nov 25 15:58:35 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D470C3B7; Sun, 25 Nov 2012 15:58:35 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id B92DB8FC0C; Sun, 25 Nov 2012 15:58:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAPFwZus086930; Sun, 25 Nov 2012 15:58:35 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAPFwZLL086929; Sun, 25 Nov 2012 15:58:35 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201211251558.qAPFwZLL086929@svn.freebsd.org> From: Alexander Motin Date: Sun, 25 Nov 2012 15:58:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243522 - projects/calloutng/sys/dev/sound/pci/hda X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Nov 2012 15:58:35 -0000 Author: mav Date: Sun Nov 25 15:58:35 2012 New Revision: 243522 URL: http://svnweb.freebsd.org/changeset/base/243522 Log: On multiple requests, compact HDA driver verbose output by hiding CODEC's detailed information under the sound debug. To make it easier accessible, export that information through the set of sysctls like dev.hdaa.X.nidY. Also tune some output to make it both more compact and informative. Modified: projects/calloutng/sys/dev/sound/pci/hda/hdaa.c Modified: projects/calloutng/sys/dev/sound/pci/hda/hdaa.c ============================================================================== --- projects/calloutng/sys/dev/sound/pci/hda/hdaa.c Sun Nov 25 15:46:29 2012 (r243521) +++ projects/calloutng/sys/dev/sound/pci/hda/hdaa.c Sun Nov 25 15:58:35 2012 (r243522) @@ -978,6 +978,253 @@ hdaa_local_patch_pin(struct hdaa_widget w->wclass.pin.newconf = w->wclass.pin.config = config; } +static void +hdaa_dump_audio_formats_sb(struct sbuf *sb, uint32_t fcap, uint32_t pcmcap) +{ + uint32_t cap; + + cap = fcap; + if (cap != 0) { + sbuf_printf(sb, " Stream cap: 0x%08x", cap); + if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap)) + sbuf_printf(sb, " AC3"); + if (HDA_PARAM_SUPP_STREAM_FORMATS_FLOAT32(cap)) + sbuf_printf(sb, " FLOAT32"); + if (HDA_PARAM_SUPP_STREAM_FORMATS_PCM(cap)) + sbuf_printf(sb, " PCM"); + sbuf_printf(sb, "\n"); + } + cap = pcmcap; + if (cap != 0) { + sbuf_printf(sb, " PCM cap: 0x%08x", cap); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8BIT(cap)) + sbuf_printf(sb, " 8"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16BIT(cap)) + sbuf_printf(sb, " 16"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_20BIT(cap)) + sbuf_printf(sb, " 20"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_24BIT(cap)) + sbuf_printf(sb, " 24"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32BIT(cap)) + sbuf_printf(sb, " 32"); + sbuf_printf(sb, " bits,"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8KHZ(cap)) + sbuf_printf(sb, " 8"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_11KHZ(cap)) + sbuf_printf(sb, " 11"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16KHZ(cap)) + sbuf_printf(sb, " 16"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_22KHZ(cap)) + sbuf_printf(sb, " 22"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_32KHZ(cap)) + sbuf_printf(sb, " 32"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_44KHZ(cap)) + sbuf_printf(sb, " 44"); + sbuf_printf(sb, " 48"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_88KHZ(cap)) + sbuf_printf(sb, " 88"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_96KHZ(cap)) + sbuf_printf(sb, " 96"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_176KHZ(cap)) + sbuf_printf(sb, " 176"); + if (HDA_PARAM_SUPP_PCM_SIZE_RATE_192KHZ(cap)) + sbuf_printf(sb, " 192"); + sbuf_printf(sb, " KHz\n"); + } +} + +static void +hdaa_dump_pin_sb(struct sbuf *sb, struct hdaa_widget *w) +{ + uint32_t pincap, conf; + + pincap = w->wclass.pin.cap; + + sbuf_printf(sb, " Pin cap: 0x%08x", pincap); + if (HDA_PARAM_PIN_CAP_IMP_SENSE_CAP(pincap)) + sbuf_printf(sb, " ISC"); + if (HDA_PARAM_PIN_CAP_TRIGGER_REQD(pincap)) + sbuf_printf(sb, " TRQD"); + if (HDA_PARAM_PIN_CAP_PRESENCE_DETECT_CAP(pincap)) + sbuf_printf(sb, " PDC"); + if (HDA_PARAM_PIN_CAP_HEADPHONE_CAP(pincap)) + sbuf_printf(sb, " HP"); + if (HDA_PARAM_PIN_CAP_OUTPUT_CAP(pincap)) + sbuf_printf(sb, " OUT"); + if (HDA_PARAM_PIN_CAP_INPUT_CAP(pincap)) + sbuf_printf(sb, " IN"); + if (HDA_PARAM_PIN_CAP_BALANCED_IO_PINS(pincap)) + sbuf_printf(sb, " BAL"); + if (HDA_PARAM_PIN_CAP_HDMI(pincap)) + sbuf_printf(sb, " HDMI"); + if (HDA_PARAM_PIN_CAP_VREF_CTRL(pincap)) { + sbuf_printf(sb, " VREF["); + if (HDA_PARAM_PIN_CAP_VREF_CTRL_50(pincap)) + sbuf_printf(sb, " 50"); + if (HDA_PARAM_PIN_CAP_VREF_CTRL_80(pincap)) + sbuf_printf(sb, " 80"); + if (HDA_PARAM_PIN_CAP_VREF_CTRL_100(pincap)) + sbuf_printf(sb, " 100"); + if (HDA_PARAM_PIN_CAP_VREF_CTRL_GROUND(pincap)) + sbuf_printf(sb, " GROUND"); + if (HDA_PARAM_PIN_CAP_VREF_CTRL_HIZ(pincap)) + sbuf_printf(sb, " HIZ"); + sbuf_printf(sb, " ]"); + } + if (HDA_PARAM_PIN_CAP_EAPD_CAP(pincap)) + sbuf_printf(sb, " EAPD"); + if (HDA_PARAM_PIN_CAP_DP(pincap)) + sbuf_printf(sb, " DP"); + if (HDA_PARAM_PIN_CAP_HBR(pincap)) + sbuf_printf(sb, " HBR"); + sbuf_printf(sb, "\n"); + conf = w->wclass.pin.config; + sbuf_printf(sb, " Pin config: 0x%08x", conf); + sbuf_printf(sb, " as=%d seq=%d " + "device=%s conn=%s ctype=%s loc=%s color=%s misc=%d\n", + HDA_CONFIG_DEFAULTCONF_ASSOCIATION(conf), + HDA_CONFIG_DEFAULTCONF_SEQUENCE(conf), + HDA_DEVS[HDA_CONFIG_DEFAULTCONF_DEVICE(conf)], + HDA_CONNS[HDA_CONFIG_DEFAULTCONF_CONNECTIVITY(conf)], + HDA_CONNECTORS[HDA_CONFIG_DEFAULTCONF_CONNECTION_TYPE(conf)], + HDA_LOCS[HDA_CONFIG_DEFAULTCONF_LOCATION(conf)], + HDA_COLORS[HDA_CONFIG_DEFAULTCONF_COLOR(conf)], + HDA_CONFIG_DEFAULTCONF_MISC(conf)); + sbuf_printf(sb, " Pin control: 0x%08x", w->wclass.pin.ctrl); + if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_HPHN_ENABLE) + sbuf_printf(sb, " HP"); + if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_IN_ENABLE) + sbuf_printf(sb, " IN"); + if (w->wclass.pin.ctrl & HDA_CMD_SET_PIN_WIDGET_CTRL_OUT_ENABLE) + sbuf_printf(sb, " OUT"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) { + if ((w->wclass.pin.ctrl & + HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) == 0x03) + sbuf_printf(sb, " HBR"); + else if ((w->wclass.pin.ctrl & + HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) + sbuf_printf(sb, " EPTs"); + } else { + if ((w->wclass.pin.ctrl & + HDA_CMD_SET_PIN_WIDGET_CTRL_VREF_ENABLE_MASK) != 0) + sbuf_printf(sb, " VREFs"); + } + sbuf_printf(sb, "\n"); +} + +static void +hdaa_dump_amp_sb(struct sbuf *sb, uint32_t cap, char *banner) +{ + int offset, size, step; + + offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(cap); + size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(cap); + step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(cap); + sbuf_printf(sb, " %s amp: 0x%08x " + "mute=%d step=%d size=%d offset=%d (%+d/%+ddB)\n", + banner, cap, + HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(cap), + step, size, offset, + ((0 - offset) * (size + 1)) / 4, + ((step - offset) * (size + 1)) / 4); +} + + +static int +hdaa_sysctl_caps(SYSCTL_HANDLER_ARGS) +{ + struct hdaa_devinfo *devinfo; + struct hdaa_widget *w, *cw; + struct sbuf sb; + char buf[64]; + int error, j; + + w = (struct hdaa_widget *)oidp->oid_arg1; + devinfo = w->devinfo; + sbuf_new_for_sysctl(&sb, NULL, 256, req); + + sbuf_printf(&sb, "%s%s\n", w->name, + (w->enable == 0) ? " [DISABLED]" : ""); + sbuf_printf(&sb, " Widget cap: 0x%08x", + w->param.widget_cap); + if (w->param.widget_cap & 0x0ee1) { + if (HDA_PARAM_AUDIO_WIDGET_CAP_LR_SWAP(w->param.widget_cap)) + sbuf_printf(&sb, " LRSWAP"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_POWER_CTRL(w->param.widget_cap)) + sbuf_printf(&sb, " PWR"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_DIGITAL(w->param.widget_cap)) + sbuf_printf(&sb, " DIGITAL"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_UNSOL_CAP(w->param.widget_cap)) + sbuf_printf(&sb, " UNSOL"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_PROC_WIDGET(w->param.widget_cap)) + sbuf_printf(&sb, " PROC"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_STRIPE(w->param.widget_cap)) + sbuf_printf(&sb, " STRIPE(x%d)", + 1 << (fls(w->wclass.conv.stripecap) - 1)); + j = HDA_PARAM_AUDIO_WIDGET_CAP_CC(w->param.widget_cap); + if (j == 1) + sbuf_printf(&sb, " STEREO"); + else if (j > 1) + sbuf_printf(&sb, " %dCH", j + 1); + } + sbuf_printf(&sb, "\n"); + if (w->bindas != -1) { + sbuf_printf(&sb, " Association: %d (0x%04x)\n", + w->bindas, w->bindseqmask); + } + if (w->ossmask != 0 || w->ossdev >= 0) { + sbuf_printf(&sb, " OSS: %s", + hdaa_audio_ctl_ossmixer_mask2allname(w->ossmask, buf, sizeof(buf))); + if (w->ossdev >= 0) + sbuf_printf(&sb, " (%s)", ossnames[w->ossdev]); + sbuf_printf(&sb, "\n"); + } + if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_OUTPUT || + w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_INPUT) { + hdaa_dump_audio_formats_sb(&sb, + w->param.supp_stream_formats, + w->param.supp_pcm_size_rate); + } else if (w->type == + HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX || w->waspin) + hdaa_dump_pin_sb(&sb, w); + if (w->param.eapdbtl != HDA_INVALID) { + sbuf_printf(&sb, " EAPD: 0x%08x%s%s%s\n", + w->param.eapdbtl, + (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_LR_SWAP) ? + " LRSWAP" : "", + (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD) ? + " EAPD" : "", + (w->param.eapdbtl & HDA_CMD_SET_EAPD_BTL_ENABLE_BTL) ? + " BTL" : ""); + } + if (HDA_PARAM_AUDIO_WIDGET_CAP_OUT_AMP(w->param.widget_cap) && + w->param.outamp_cap != 0) + hdaa_dump_amp_sb(&sb, w->param.outamp_cap, "Output"); + if (HDA_PARAM_AUDIO_WIDGET_CAP_IN_AMP(w->param.widget_cap) && + w->param.inamp_cap != 0) + hdaa_dump_amp_sb(&sb, w->param.inamp_cap, " Input"); + if (w->nconns > 0) + sbuf_printf(&sb, " Connections: %d\n", w->nconns); + for (j = 0; j < w->nconns; j++) { + cw = hdaa_widget_get(devinfo, w->conns[j]); + sbuf_printf(&sb, " + %s<- nid=%d [%s]", + (w->connsenable[j] == 0)?"[DISABLED] ":"", + w->conns[j], (cw == NULL) ? "GHOST!" : cw->name); + if (cw == NULL) + sbuf_printf(&sb, " [UNKNOWN]"); + else if (cw->enable == 0) + sbuf_printf(&sb, " [DISABLED]"); + if (w->nconns > 1 && w->selconn == j && w->type != + HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_AUDIO_MIXER) + sbuf_printf(&sb, " (selected)"); + sbuf_printf(&sb, "\n"); + } + sbuf_trim(&sb); + error = sbuf_finish(&sb); + sbuf_delete(&sb); + return (error); +} + static int hdaa_sysctl_config(SYSCTL_HANDLER_ARGS) { @@ -1301,8 +1548,16 @@ hdaa_widget_parse(struct hdaa_widget *w) w->param.eapdbtl |= HDA_CMD_SET_EAPD_BTL_ENABLE_EAPD; } else w->param.eapdbtl = HDA_INVALID; + } + w->unsol = -1; - hdaa_unlock(w->devinfo); + hdaa_unlock(w->devinfo); + snprintf(buf, sizeof(buf), "nid%d", w->nid); + SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), + SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, + buf, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, + w, sizeof(w), hdaa_sysctl_caps, "A", "Node capabilities"); + if (w->type == HDA_PARAM_AUDIO_WIDGET_CAP_TYPE_PIN_COMPLEX) { snprintf(buf, sizeof(buf), "nid%d_config", w->nid); SYSCTL_ADD_PROC(device_get_sysctl_ctx(dev), SYSCTL_CHILDREN(device_get_sysctl_tree(dev)), OID_AUTO, @@ -1315,9 +1570,8 @@ hdaa_widget_parse(struct hdaa_widget *w) buf, CTLTYPE_STRING | CTLFLAG_RD | CTLFLAG_MPSAFE, &w->wclass.pin.original, sizeof(&w->wclass.pin.original), hdaa_sysctl_config, "A", "Original pin configuration"); - hdaa_lock(w->devinfo); } - w->unsol = -1; + hdaa_lock(w->devinfo); } static void @@ -5327,7 +5581,6 @@ hdaa_dump_ctls(struct hdaa_pcm_devinfo * continue; if (printed == 0) { - device_printf(pdevinfo->dev, "\n"); if (banner != NULL) { device_printf(pdevinfo->dev, "%s", banner); } else { @@ -5342,7 +5595,6 @@ hdaa_dump_ctls(struct hdaa_pcm_devinfo * pdevinfo->maxamp[j] / 4); } else printf("\n"); - device_printf(pdevinfo->dev, " |\n"); printed = 1; } device_printf(pdevinfo->dev, " +- ctl %2d (nid %3d %s", i, @@ -5362,6 +5614,8 @@ hdaa_dump_ctls(struct hdaa_pcm_devinfo * printf("%s\n", ctl->mute?"mute":""); } } + if (printed) + device_printf(pdevinfo->dev, "\n"); } static void @@ -5371,8 +5625,7 @@ hdaa_dump_audio_formats(device_t dev, ui cap = fcap; if (cap != 0) { - device_printf(dev, " Stream cap: 0x%08x\n", cap); - device_printf(dev, " "); + device_printf(dev, " Stream cap: 0x%08x", cap); if (HDA_PARAM_SUPP_STREAM_FORMATS_AC3(cap)) printf(" AC3"); if (HDA_PARAM_SUPP_STREAM_FORMATS_FLOAT32(cap)) @@ -5383,8 +5636,7 @@ hdaa_dump_audio_formats(device_t dev, ui } cap = pcmcap; if (cap != 0) { - device_printf(dev, " PCM cap: 0x%08x\n", cap); - device_printf(dev, " "); + device_printf(dev, " PCM cap: 0x%08x", cap); if (HDA_PARAM_SUPP_PCM_SIZE_RATE_8BIT(cap)) printf(" 8"); if (HDA_PARAM_SUPP_PCM_SIZE_RATE_16BIT(cap)) @@ -5428,8 +5680,7 @@ hdaa_dump_pin(struct hdaa_widget *w) pincap = w->wclass.pin.cap; - device_printf(w->devinfo->dev, " Pin cap: 0x%08x\n", pincap); - device_printf(w->devinfo->dev, " "); + device_printf(w->devinfo->dev, " Pin cap: 0x%08x", pincap); if (HDA_PARAM_PIN_CAP_IMP_SENSE_CAP(pincap)) printf(" ISC"); if (HDA_PARAM_PIN_CAP_TRIGGER_REQD(pincap)) @@ -5530,13 +5781,18 @@ hdaa_dump_pin_configs(struct hdaa_devinf static void hdaa_dump_amp(device_t dev, uint32_t cap, char *banner) { - device_printf(dev, " %s amp: 0x%08x\n", banner, cap); - device_printf(dev, " " - "mute=%d step=%d size=%d offset=%d\n", + int offset, size, step; + + offset = HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(cap); + size = HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(cap); + step = HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(cap); + device_printf(dev, " %s amp: 0x%08x " + "mute=%d step=%d size=%d offset=%d (%+d/%+ddB)\n", + banner, cap, HDA_PARAM_OUTPUT_AMP_CAP_MUTE_CAP(cap), - HDA_PARAM_OUTPUT_AMP_CAP_NUMSTEPS(cap), - HDA_PARAM_OUTPUT_AMP_CAP_STEPSIZE(cap), - HDA_PARAM_OUTPUT_AMP_CAP_OFFSET(cap)); + step, size, offset, + ((0 - offset) * (size + 1)) / 4, + ((step - offset) * (size + 1)) / 4); } static void @@ -5547,15 +5803,12 @@ hdaa_dump_nodes(struct hdaa_devinfo *dev int i, j; device_printf(devinfo->dev, "\n"); - device_printf(devinfo->dev, "Default Parameter\n"); - device_printf(devinfo->dev, "-----------------\n"); + device_printf(devinfo->dev, "Default parameters:\n"); hdaa_dump_audio_formats(devinfo->dev, devinfo->supp_stream_formats, devinfo->supp_pcm_size_rate); - device_printf(devinfo->dev, " IN amp: 0x%08x\n", - devinfo->inamp_cap); - device_printf(devinfo->dev, " OUT amp: 0x%08x\n", - devinfo->outamp_cap); + hdaa_dump_amp(devinfo->dev, devinfo->inamp_cap, " Input"); + hdaa_dump_amp(devinfo->dev, devinfo->outamp_cap, "Output"); for (i = devinfo->startnode; i < devinfo->endnode; i++) { w = hdaa_widget_get(devinfo, i); if (w == NULL) { @@ -5566,10 +5819,9 @@ hdaa_dump_nodes(struct hdaa_devinfo *dev device_printf(devinfo->dev, " nid: %d%s\n", w->nid, (w->enable == 0) ? " [DISABLED]" : ""); device_printf(devinfo->dev, " Name: %s\n", w->name); - device_printf(devinfo->dev, " Widget cap: 0x%08x\n", + device_printf(devinfo->dev, " Widget cap: 0x%08x", w->param.widget_cap); if (w->param.widget_cap & 0x0ee1) { - device_printf(devinfo->dev, " "); if (HDA_PARAM_AUDIO_WIDGET_CAP_LR_SWAP(w->param.widget_cap)) printf(" LRSWAP"); if (HDA_PARAM_AUDIO_WIDGET_CAP_POWER_CTRL(w->param.widget_cap)) @@ -5588,10 +5840,10 @@ hdaa_dump_nodes(struct hdaa_devinfo *dev printf(" STEREO"); else if (j > 1) printf(" %dCH", j + 1); - printf("\n"); } + printf("\n"); if (w->bindas != -1) { - device_printf(devinfo->dev, " Association: %d (0x%08x)\n", + device_printf(devinfo->dev, " Association: %d (0x%04x)\n", w->bindas, w->bindseqmask); } if (w->ossmask != 0 || w->ossdev >= 0) { @@ -5618,10 +5870,8 @@ hdaa_dump_nodes(struct hdaa_devinfo *dev if (HDA_PARAM_AUDIO_WIDGET_CAP_IN_AMP(w->param.widget_cap) && w->param.inamp_cap != 0) hdaa_dump_amp(devinfo->dev, w->param.inamp_cap, " Input"); - if (w->nconns > 0) { - device_printf(devinfo->dev, " connections: %d\n", w->nconns); - device_printf(devinfo->dev, " |\n"); - } + if (w->nconns > 0) + device_printf(devinfo->dev, " Connections: %d\n", w->nconns); for (j = 0; j < w->nconns; j++) { cw = hdaa_widget_get(devinfo, w->conns[j]); device_printf(devinfo->dev, " + %s<- nid=%d [%s]", @@ -5646,7 +5896,7 @@ hdaa_dump_dst_nid(struct hdaa_pcm_devinf struct hdaa_devinfo *devinfo = pdevinfo->devinfo; struct hdaa_widget *w, *cw; char buf[64]; - int i, printed = 0; + int i; if (depth > HDA_PARSE_MAXDEPTH) return; @@ -5682,10 +5932,6 @@ hdaa_dump_dst_nid(struct hdaa_pcm_devinf cw = hdaa_widget_get(devinfo, w->conns[i]); if (cw == NULL || cw->enable == 0 || cw->bindas == -1) continue; - if (printed == 0) { - device_printf(pdevinfo->dev, "%*s |\n", 4 + (depth) * 7, ""); - printed = 1; - } hdaa_dump_dst_nid(pdevinfo, w->conns[i], depth + 1); } @@ -5697,11 +5943,26 @@ hdaa_dump_dac(struct hdaa_pcm_devinfo *p struct hdaa_devinfo *devinfo = pdevinfo->devinfo; struct hdaa_audio_as *as; struct hdaa_widget *w; - int i, printed = 0; + nid_t *nids; + int chid, i; if (pdevinfo->playas < 0) return; + device_printf(pdevinfo->dev, "Playback:\n"); + + chid = devinfo->as[pdevinfo->playas].chans[0]; + hdaa_dump_audio_formats(pdevinfo->dev, + devinfo->chans[chid].supp_stream_formats, + devinfo->chans[chid].supp_pcm_size_rate); + for (i = 0; i < devinfo->as[pdevinfo->playas].num_chans; i++) { + chid = devinfo->as[pdevinfo->playas].chans[i]; + device_printf(pdevinfo->dev, " DAC:"); + for (nids = devinfo->chans[chid].io; *nids != -1; nids++) + printf(" %d", *nids); + printf("\n"); + } + as = &devinfo->as[pdevinfo->playas]; for (i = 0; i < 16; i++) { if (as->pins[i] <= 0) @@ -5709,14 +5970,10 @@ hdaa_dump_dac(struct hdaa_pcm_devinfo *p w = hdaa_widget_get(devinfo, as->pins[i]); if (w == NULL || w->enable == 0) continue; - if (printed == 0) { - printed = 1; - device_printf(pdevinfo->dev, "\n"); - device_printf(pdevinfo->dev, "Playback:\n"); - } device_printf(pdevinfo->dev, "\n"); hdaa_dump_dst_nid(pdevinfo, as->pins[i], 0); } + device_printf(pdevinfo->dev, "\n"); } static void @@ -5724,12 +5981,26 @@ hdaa_dump_adc(struct hdaa_pcm_devinfo *p { struct hdaa_devinfo *devinfo = pdevinfo->devinfo; struct hdaa_widget *w; - int i; - int printed = 0; + nid_t *nids; + int chid, i; if (pdevinfo->recas < 0) return; + device_printf(pdevinfo->dev, "Record:\n"); + + chid = devinfo->as[pdevinfo->recas].chans[0]; + hdaa_dump_audio_formats(pdevinfo->dev, + devinfo->chans[chid].supp_stream_formats, + devinfo->chans[chid].supp_pcm_size_rate); + for (i = 0; i < devinfo->as[pdevinfo->recas].num_chans; i++) { + chid = devinfo->as[pdevinfo->recas].chans[i]; + device_printf(pdevinfo->dev, " ADC:"); + for (nids = devinfo->chans[chid].io; *nids != -1; nids++) + printf(" %d", *nids); + printf("\n"); + } + for (i = devinfo->startnode; i < devinfo->endnode; i++) { w = hdaa_widget_get(devinfo, i); if (w == NULL || w->enable == 0) @@ -5738,14 +6009,10 @@ hdaa_dump_adc(struct hdaa_pcm_devinfo *p continue; if (w->bindas != pdevinfo->recas) continue; - if (printed == 0) { - printed = 1; - device_printf(pdevinfo->dev, "\n"); - device_printf(pdevinfo->dev, "Record:\n"); - } device_printf(pdevinfo->dev, "\n"); hdaa_dump_dst_nid(pdevinfo, i, 0); } + device_printf(pdevinfo->dev, "\n"); } static void @@ -5766,53 +6033,13 @@ hdaa_dump_mix(struct hdaa_pcm_devinfo *p continue; if (printed == 0) { printed = 1; - device_printf(pdevinfo->dev, "\n"); device_printf(pdevinfo->dev, "Input Mix:\n"); } device_printf(pdevinfo->dev, "\n"); hdaa_dump_dst_nid(pdevinfo, i, 0); } -} - -static void -hdaa_dump_pcmchannels(struct hdaa_pcm_devinfo *pdevinfo) -{ - struct hdaa_devinfo *devinfo = pdevinfo->devinfo; - nid_t *nids; - int chid, i; - - if (pdevinfo->playas >= 0) { - device_printf(pdevinfo->dev, "\n"); - device_printf(pdevinfo->dev, "Playback:\n"); - device_printf(pdevinfo->dev, "\n"); - chid = devinfo->as[pdevinfo->playas].chans[0]; - hdaa_dump_audio_formats(pdevinfo->dev, - devinfo->chans[chid].supp_stream_formats, - devinfo->chans[chid].supp_pcm_size_rate); - for (i = 0; i < devinfo->as[pdevinfo->playas].num_chans; i++) { - chid = devinfo->as[pdevinfo->playas].chans[i]; - device_printf(pdevinfo->dev, " DAC:"); - for (nids = devinfo->chans[chid].io; *nids != -1; nids++) - printf(" %d", *nids); - printf("\n"); - } - } - if (pdevinfo->recas >= 0) { - device_printf(pdevinfo->dev, "\n"); - device_printf(pdevinfo->dev, "Record:\n"); + if (printed) device_printf(pdevinfo->dev, "\n"); - chid = devinfo->as[pdevinfo->recas].chans[0]; - hdaa_dump_audio_formats(pdevinfo->dev, - devinfo->chans[chid].supp_stream_formats, - devinfo->chans[chid].supp_pcm_size_rate); - for (i = 0; i < devinfo->as[pdevinfo->recas].num_chans; i++) { - chid = devinfo->as[pdevinfo->recas].chans[i]; - device_printf(pdevinfo->dev, " DAC:"); - for (nids = devinfo->chans[chid].io; *nids != -1; nids++) - printf(" %d", *nids); - printf("\n"); - } - } } static void @@ -5991,19 +6218,19 @@ hdaa_configure(device_t dev) } printf("\n"); } + ); + HDA_BOOTHVERBOSE( device_printf(dev, "\n"); - device_printf(dev, "+-------------------+\n"); - device_printf(dev, "| DUMPING HDA NODES |\n"); - device_printf(dev, "+-------------------+\n"); + device_printf(dev, "+-----------+\n"); + device_printf(dev, "| HDA NODES |\n"); + device_printf(dev, "+-----------+\n"); hdaa_dump_nodes(devinfo); - ); - HDA_BOOTHVERBOSE( device_printf(dev, "\n"); - device_printf(dev, "+------------------------+\n"); - device_printf(dev, "| DUMPING HDA AMPLIFIERS |\n"); - device_printf(dev, "+------------------------+\n"); + device_printf(dev, "+----------------+\n"); + device_printf(dev, "| HDA AMPLIFIERS |\n"); + device_printf(dev, "+----------------+\n"); device_printf(dev, "\n"); i = 0; while ((ctl = hdaa_audio_ctl_each(devinfo, &i)) != NULL) { @@ -6024,9 +6251,6 @@ hdaa_configure(device_t dev) (ctl->enable == 0) ? " [DISABLED]" : ((ctl->ossmask == 0) ? " [UNUSED]" : "")); } - ); - - HDA_BOOTVERBOSE( device_printf(dev, "\n"); ); } @@ -6790,21 +7014,9 @@ hdaa_pcm_attach(device_t dev) HDA_BUFSZ_MIN, HDA_BUFSZ_DEFAULT, HDA_BUFSZ_MAX); HDA_BOOTVERBOSE( - device_printf(dev, "+--------------------------------------+\n"); - device_printf(dev, "| DUMPING PCM Playback/Record Channels |\n"); - device_printf(dev, "+--------------------------------------+\n"); - hdaa_dump_pcmchannels(pdevinfo); - device_printf(dev, "\n"); - device_printf(dev, "+-------------------------------+\n"); - device_printf(dev, "| DUMPING Playback/Record Paths |\n"); - device_printf(dev, "+-------------------------------+\n"); hdaa_dump_dac(pdevinfo); hdaa_dump_adc(pdevinfo); hdaa_dump_mix(pdevinfo); - device_printf(dev, "\n"); - device_printf(dev, "+-------------------------+\n"); - device_printf(dev, "| DUMPING Volume Controls |\n"); - device_printf(dev, "+-------------------------+\n"); hdaa_dump_ctls(pdevinfo, "Master Volume", SOUND_MASK_VOLUME); hdaa_dump_ctls(pdevinfo, "PCM Volume", SOUND_MASK_PCM); hdaa_dump_ctls(pdevinfo, "CD Volume", SOUND_MASK_CD); @@ -6816,7 +7028,6 @@ hdaa_pcm_attach(device_t dev) hdaa_dump_ctls(pdevinfo, "Input Mix Level", SOUND_MASK_IMIX); hdaa_dump_ctls(pdevinfo, "Input Monitoring Level", SOUND_MASK_IGAIN); hdaa_dump_ctls(pdevinfo, NULL, 0); - device_printf(dev, "\n"); ); if (resource_int_value(device_get_name(dev), From owner-svn-src-projects@FreeBSD.ORG Mon Nov 26 04:19:03 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6D6D211B; Mon, 26 Nov 2012 04:19:03 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 43AEC8FC12; Mon, 26 Nov 2012 04:19:03 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAQ4J3gx091979; Mon, 26 Nov 2012 04:19:03 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAQ4J2nL091952; Mon, 26 Nov 2012 04:19:02 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211260419.qAQ4J2nL091952@svn.freebsd.org> From: Lawrence Stewart Date: Mon, 26 Nov 2012 04:19:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243543 - in projects/diffused_head: . bin/cat bin/chio bin/df bin/ed bin/ln bin/ls bin/mkdir bin/mv bin/ps bin/rm bin/sh bin/stty bin/test cddl/contrib/opensolaris/cmd/dtrace cddl/cont... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2012 04:19:03 -0000 Author: lstewart Date: Mon Nov 26 04:18:58 2012 New Revision: 243543 URL: http://svnweb.freebsd.org/changeset/base/243543 Log: Merge revs 226086:230000 from head. Added: projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c - copied unchanged from r230000, head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/diffused_head/contrib/binutils/ld/emulparams/elf64ppc_fbsd.sh - copied unchanged from r230000, head/contrib/binutils/ld/emulparams/elf64ppc_fbsd.sh projects/diffused_head/contrib/compiler-rt/lib/int_endianness.h - copied unchanged from r230000, head/contrib/compiler-rt/lib/int_endianness.h projects/diffused_head/contrib/compiler-rt/lib/int_math.h - copied unchanged from r230000, head/contrib/compiler-rt/lib/int_math.h projects/diffused_head/contrib/compiler-rt/lib/int_types.h - copied unchanged from r230000, head/contrib/compiler-rt/lib/int_types.h projects/diffused_head/contrib/compiler-rt/lib/int_util.c - copied unchanged from r230000, head/contrib/compiler-rt/lib/int_util.c projects/diffused_head/contrib/compiler-rt/lib/int_util.h - copied unchanged from r230000, head/contrib/compiler-rt/lib/int_util.h projects/diffused_head/contrib/compiler-rt/lib/mulodi4.c - copied unchanged from r230000, head/contrib/compiler-rt/lib/mulodi4.c projects/diffused_head/contrib/compiler-rt/lib/mulosi4.c - copied unchanged from r230000, head/contrib/compiler-rt/lib/mulosi4.c projects/diffused_head/contrib/compiler-rt/lib/muloti4.c - copied unchanged from r230000, head/contrib/compiler-rt/lib/muloti4.c projects/diffused_head/contrib/gperf/configure.ac - copied unchanged from r230000, head/contrib/gperf/configure.ac projects/diffused_head/contrib/gperf/doc/configure.ac - copied unchanged from r230000, head/contrib/gperf/doc/configure.ac projects/diffused_head/contrib/gperf/lib/configure.ac - copied unchanged from r230000, head/contrib/gperf/lib/configure.ac projects/diffused_head/contrib/gperf/lib/getline.cc - copied unchanged from r230000, head/contrib/gperf/lib/getline.cc projects/diffused_head/contrib/gperf/lib/getline.h - copied unchanged from r230000, head/contrib/gperf/lib/getline.h projects/diffused_head/contrib/gperf/src/config.h_vms - copied unchanged from r230000, head/contrib/gperf/src/config.h_vms projects/diffused_head/contrib/gperf/src/configure.ac - copied unchanged from r230000, head/contrib/gperf/src/configure.ac projects/diffused_head/contrib/gperf/src/input.cc - copied unchanged from r230000, head/contrib/gperf/src/input.cc projects/diffused_head/contrib/gperf/src/input.h - copied unchanged from r230000, head/contrib/gperf/src/input.h projects/diffused_head/contrib/gperf/src/keyword-list.cc - copied unchanged from r230000, head/contrib/gperf/src/keyword-list.cc projects/diffused_head/contrib/gperf/src/keyword-list.h - copied unchanged from r230000, head/contrib/gperf/src/keyword-list.h projects/diffused_head/contrib/gperf/src/keyword-list.icc - copied unchanged from r230000, head/contrib/gperf/src/keyword-list.icc projects/diffused_head/contrib/gperf/src/keyword.cc - copied unchanged from r230000, head/contrib/gperf/src/keyword.cc projects/diffused_head/contrib/gperf/src/keyword.h - copied unchanged from r230000, head/contrib/gperf/src/keyword.h projects/diffused_head/contrib/gperf/src/keyword.icc - copied unchanged from r230000, head/contrib/gperf/src/keyword.icc projects/diffused_head/contrib/gperf/src/output.cc - copied unchanged from r230000, head/contrib/gperf/src/output.cc projects/diffused_head/contrib/gperf/src/output.h - copied unchanged from r230000, head/contrib/gperf/src/output.h projects/diffused_head/contrib/gperf/src/positions.cc - copied unchanged from r230000, head/contrib/gperf/src/positions.cc projects/diffused_head/contrib/gperf/src/positions.h - copied unchanged from r230000, head/contrib/gperf/src/positions.h projects/diffused_head/contrib/gperf/src/positions.icc - copied unchanged from r230000, head/contrib/gperf/src/positions.icc projects/diffused_head/contrib/gperf/src/search.cc - copied unchanged from r230000, head/contrib/gperf/src/search.cc projects/diffused_head/contrib/gperf/src/search.h - copied unchanged from r230000, head/contrib/gperf/src/search.h - copied from r230000, head/contrib/libarchive/ projects/diffused_head/contrib/libc++/ - copied from r230000, head/contrib/libc++/ - copied from r230000, head/contrib/libcxxrt/ projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h - copied unchanged from r230000, head/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h projects/diffused_head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopIterator.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Analysis/LoopIterator.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h projects/diffused_head/contrib/llvm/include/llvm/DebugInfo/ - copied from r230000, head/contrib/llvm/include/llvm/DebugInfo/ projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmBackend.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAtom.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCAtom.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCModule.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCModule.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/diffused_head/contrib/llvm/include/llvm/MC/MachineLocation.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/MC/MachineLocation.h projects/diffused_head/contrib/llvm/include/llvm/Object/Archive.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Object/Archive.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachO.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Object/MachO.h projects/diffused_head/contrib/llvm/include/llvm/Support/BlockFrequency.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/BlockFrequency.h projects/diffused_head/contrib/llvm/include/llvm/Support/Capacity.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/Capacity.h projects/diffused_head/contrib/llvm/include/llvm/Support/CodeGen.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/CodeGen.h projects/diffused_head/contrib/llvm/include/llvm/Support/DataExtractor.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/DataExtractor.h projects/diffused_head/contrib/llvm/include/llvm/Support/GCOV.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/GCOV.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetRegistry.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetSelect.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Support/TargetSelect.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/ - copied from r230000, head/contrib/llvm/include/llvm/TableGen/ projects/diffused_head/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h - copied unchanged from r230000, head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h projects/diffused_head/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/ - copied from r230000, head/contrib/llvm/lib/DebugInfo/ projects/diffused_head/contrib/llvm/lib/MC/MCAsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAtom.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCAtom.cpp projects/diffused_head/contrib/llvm/lib/MC/MCCodeGenInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCCodeGenInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCInstrAnalysis.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCInstrAnalysis.cpp projects/diffused_head/contrib/llvm/lib/MC/MCModule.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCModule.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCTargetAsmLexer.cpp - copied unchanged from r230000, head/contrib/llvm/lib/MC/MCTargetAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Object/Archive.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Object/Archive.cpp projects/diffused_head/contrib/llvm/lib/Support/BlockFrequency.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Support/BlockFrequency.cpp projects/diffused_head/contrib/llvm/lib/Support/DataExtractor.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Support/DataExtractor.cpp projects/diffused_head/contrib/llvm/lib/TableGen/ - copied from r230000, head/contrib/llvm/lib/TableGen/ projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRelocations.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/Mips/MipsRelocations.h projects/diffused_head/contrib/llvm/lib/Target/PTX/InstPrinter/ - copied from r230000, head/contrib/llvm/lib/Target/PTX/InstPrinter/ projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXParamManager.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp - copied unchanged from r230000, head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/diffused_head/contrib/llvm/lib/VMCore/GCOV.cpp - copied unchanged from r230000, head/contrib/llvm/lib/VMCore/GCOV.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/AST/VTTBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/MultiInitializer.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Sema/MultiInitializer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Weak.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Sema/Weak.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/Module.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/ClangCheckers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerOptInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/stdalign.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Headers/stdalign.h projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/MultiInitializer.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Sema/MultiInitializer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/Module.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangCheckers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp - copied unchanged from r230000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/ - copied from r230000, head/contrib/llvm/tools/clang/utils/ projects/diffused_head/contrib/openpam/bin/pamtest/ - copied from r230000, head/contrib/openpam/bin/pamtest/ projects/diffused_head/contrib/openpam/bin/su/su.1 - copied unchanged from r230000, head/contrib/openpam/bin/su/su.1 projects/diffused_head/contrib/openpam/doc/man/openpam_subst.3 - copied unchanged from r230000, head/contrib/openpam/doc/man/openpam_subst.3 projects/diffused_head/contrib/openpam/lib/openpam_check_owner_perms.c - copied unchanged from r230000, head/contrib/openpam/lib/openpam_check_owner_perms.c projects/diffused_head/contrib/openpam/lib/openpam_constants.c - copied unchanged from r230000, head/contrib/openpam/lib/openpam_constants.c projects/diffused_head/contrib/openpam/lib/openpam_constants.h - copied unchanged from r230000, head/contrib/openpam/lib/openpam_constants.h projects/diffused_head/contrib/openpam/lib/openpam_debug.h - copied unchanged from r230000, head/contrib/openpam/lib/openpam_debug.h projects/diffused_head/contrib/openpam/lib/openpam_strlcmp.h - copied unchanged from r230000, head/contrib/openpam/lib/openpam_strlcmp.h projects/diffused_head/contrib/openpam/lib/openpam_strlcpy.h - copied unchanged from r230000, head/contrib/openpam/lib/openpam_strlcpy.h projects/diffused_head/contrib/openpam/lib/openpam_subst.c - copied unchanged from r230000, head/contrib/openpam/lib/openpam_subst.c projects/diffused_head/etc/devd/apple.conf - copied unchanged from r230000, head/etc/devd/apple.conf projects/diffused_head/etc/rc.d/static_ndp - copied unchanged from r230000, head/etc/rc.d/static_ndp projects/diffused_head/include/_xlocale_ctype.h - copied unchanged from r230000, head/include/_xlocale_ctype.h projects/diffused_head/include/stdalign.h - copied unchanged from r230000, head/include/stdalign.h projects/diffused_head/include/stdatomic.h - copied unchanged from r230000, head/include/stdatomic.h projects/diffused_head/include/stdnoreturn.h - copied unchanged from r230000, head/include/stdnoreturn.h projects/diffused_head/include/xlocale.h - copied unchanged from r230000, head/include/xlocale.h projects/diffused_head/lib/clang/include/ARMGenDisassemblerTables.inc - copied unchanged from r230000, head/lib/clang/include/ARMGenDisassemblerTables.inc projects/diffused_head/lib/clang/include/MipsGenCodeEmitter.inc - copied unchanged from r230000, head/lib/clang/include/MipsGenCodeEmitter.inc projects/diffused_head/lib/clang/include/clang/Parse/ - copied from r230000, head/lib/clang/include/clang/Parse/ projects/diffused_head/lib/clang/libllvmtablegen/ - copied from r230000, head/lib/clang/libllvmtablegen/ projects/diffused_head/lib/libc++/ - copied from r230000, head/lib/libc++/ projects/diffused_head/lib/libc/gen/libc_dlopen.c - copied unchanged from r230000, head/lib/libc/gen/libc_dlopen.c projects/diffused_head/lib/libc/gen/modf.c - copied unchanged from r230000, head/lib/libc/gen/modf.c projects/diffused_head/lib/libc/locale/DESIGN.xlocale - copied unchanged from r230000, head/lib/libc/locale/DESIGN.xlocale projects/diffused_head/lib/libc/locale/ctype.c - copied unchanged from r230000, head/lib/libc/locale/ctype.c projects/diffused_head/lib/libc/locale/duplocale.3 - copied unchanged from r230000, head/lib/libc/locale/duplocale.3 projects/diffused_head/lib/libc/locale/freelocale.3 - copied unchanged from r230000, head/lib/libc/locale/freelocale.3 projects/diffused_head/lib/libc/locale/newlocale.3 - copied unchanged from r230000, head/lib/libc/locale/newlocale.3 projects/diffused_head/lib/libc/locale/querylocale.3 - copied unchanged from r230000, head/lib/libc/locale/querylocale.3 projects/diffused_head/lib/libc/locale/uselocale.3 - copied unchanged from r230000, head/lib/libc/locale/uselocale.3 projects/diffused_head/lib/libc/locale/xlocale.3 - copied unchanged from r230000, head/lib/libc/locale/xlocale.3 projects/diffused_head/lib/libc/locale/xlocale.c - copied unchanged from r230000, head/lib/libc/locale/xlocale.c projects/diffused_head/lib/libc/locale/xlocale_private.h - copied unchanged from r230000, head/lib/libc/locale/xlocale_private.h projects/diffused_head/lib/libc/mips/string/strchr.S - copied unchanged from r230000, head/lib/libc/mips/string/strchr.S projects/diffused_head/lib/libc/mips/string/strrchr.S - copied unchanged from r230000, head/lib/libc/mips/string/strrchr.S projects/diffused_head/lib/libc/stdlib/aligned_alloc.3 - copied unchanged from r230000, head/lib/libc/stdlib/aligned_alloc.3 projects/diffused_head/lib/libc/stdlib/at_quick_exit.3 - copied unchanged from r230000, head/lib/libc/stdlib/at_quick_exit.3 projects/diffused_head/lib/libc/stdlib/quick_exit.3 - copied unchanged from r230000, head/lib/libc/stdlib/quick_exit.3 projects/diffused_head/lib/libc/stdlib/quick_exit.c - copied unchanged from r230000, head/lib/libc/stdlib/quick_exit.c projects/diffused_head/lib/libc/sys/ffclock.2 - copied unchanged from r230000, head/lib/libc/sys/ffclock.2 projects/diffused_head/lib/libc/sys/posix_fadvise.2 - copied unchanged from r230000, head/lib/libc/sys/posix_fadvise.2 projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_add_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_add_4.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_add_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_add_8.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_and_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_and_4.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_and_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_and_8.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_op_n.h - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_op_n.h projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_or_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_or_4.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_or_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_or_8.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_sub_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_sub_4.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_sub_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_sub_8.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_xor_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_xor_4.c projects/diffused_head/lib/libcompiler_rt/__sync_fetch_and_xor_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_fetch_and_xor_8.c projects/diffused_head/lib/libcompiler_rt/__sync_lock_test_and_set_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_lock_test_and_set_4.c projects/diffused_head/lib/libcompiler_rt/__sync_lock_test_and_set_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_lock_test_and_set_8.c projects/diffused_head/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_val_compare_and_swap_4.c projects/diffused_head/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_val_compare_and_swap_8.c projects/diffused_head/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h - copied unchanged from r230000, head/lib/libcompiler_rt/__sync_val_compare_and_swap_n.h projects/diffused_head/lib/libcxxrt/ - copied from r230000, head/lib/libcxxrt/ projects/diffused_head/lib/libstdthreads/ - copied from r230000, head/lib/libstdthreads/ projects/diffused_head/lib/msun/man/ccos.3 - copied unchanged from r230000, head/lib/msun/man/ccos.3 projects/diffused_head/lib/msun/man/ccosh.3 - copied unchanged from r230000, head/lib/msun/man/ccosh.3 projects/diffused_head/lib/msun/src/k_exp.c - copied unchanged from r230000, head/lib/msun/src/k_exp.c projects/diffused_head/lib/msun/src/k_expf.c - copied unchanged from r230000, head/lib/msun/src/k_expf.c projects/diffused_head/lib/msun/src/s_ccosh.c - copied unchanged from r230000, head/lib/msun/src/s_ccosh.c projects/diffused_head/lib/msun/src/s_ccoshf.c - copied unchanged from r230000, head/lib/msun/src/s_ccoshf.c projects/diffused_head/lib/msun/src/s_csinh.c - copied unchanged from r230000, head/lib/msun/src/s_csinh.c projects/diffused_head/lib/msun/src/s_csinhf.c - copied unchanged from r230000, head/lib/msun/src/s_csinhf.c projects/diffused_head/lib/msun/src/s_ctanh.c - copied unchanged from r230000, head/lib/msun/src/s_ctanh.c projects/diffused_head/lib/msun/src/s_ctanhf.c - copied unchanged from r230000, head/lib/msun/src/s_ctanhf.c projects/diffused_head/sbin/camcontrol/fwdownload.c - copied unchanged from r230000, head/sbin/camcontrol/fwdownload.c projects/diffused_head/sbin/ifconfig/carp.c - copied unchanged from r230000, head/sbin/ifconfig/carp.c projects/diffused_head/share/man/man3/ATOMIC_VAR_INIT.3 - copied unchanged from r230000, head/share/man/man3/ATOMIC_VAR_INIT.3 projects/diffused_head/share/man/man4/apic.4 - copied unchanged from r230000, head/share/man/man4/apic.4 projects/diffused_head/share/man/man4/capsicum.4 - copied unchanged from r230000, head/share/man/man4/capsicum.4 projects/diffused_head/share/man/man4/eventtimers.4 - copied unchanged from r230000, head/share/man/man4/eventtimers.4 projects/diffused_head/share/man/man4/ffclock.4 - copied unchanged from r230000, head/share/man/man4/ffclock.4 projects/diffused_head/share/man/man4/hpt27xx.4 - copied unchanged from r230000, head/share/man/man4/hpt27xx.4 projects/diffused_head/share/man/man4/man4.powerpc/abtn.4 - copied unchanged from r230000, head/share/man/man4/man4.powerpc/abtn.4 projects/diffused_head/share/man/man4/netmap.4 - copied unchanged from r230000, head/share/man/man4/netmap.4 projects/diffused_head/share/man/man4/qlxgb.4 - copied unchanged from r230000, head/share/man/man4/qlxgb.4 projects/diffused_head/share/man/man4/sfxge.4 - copied unchanged from r230000, head/share/man/man4/sfxge.4 projects/diffused_head/share/man/man4/timecounters.4 - copied unchanged from r230000, head/share/man/man4/timecounters.4 projects/diffused_head/share/man/man4/viawd.4 - copied unchanged from r230000, head/share/man/man4/viawd.4 projects/diffused_head/share/man/man4/virtio.4 - copied unchanged from r230000, head/share/man/man4/virtio.4 projects/diffused_head/share/man/man4/virtio_balloon.4 - copied unchanged from r230000, head/share/man/man4/virtio_balloon.4 projects/diffused_head/share/man/man4/virtio_blk.4 - copied unchanged from r230000, head/share/man/man4/virtio_blk.4 projects/diffused_head/share/man/man4/vtnet.4 - copied unchanged from r230000, head/share/man/man4/vtnet.4 projects/diffused_head/share/man/man9/eventtimers.9 - copied unchanged from r230000, head/share/man/man9/eventtimers.9 projects/diffused_head/share/man/man9/memcchr.9 - copied unchanged from r230000, head/share/man/man9/memcchr.9 projects/diffused_head/share/man/man9/shm_map.9 - copied unchanged from r230000, head/share/man/man9/shm_map.9 projects/diffused_head/sys/boot/fdt/dts/p1020rdb.dts - copied unchanged from r230000, head/sys/boot/fdt/dts/p1020rdb.dts projects/diffused_head/sys/boot/fdt/dts/p2020ds.dts - copied unchanged from r230000, head/sys/boot/fdt/dts/p2020ds.dts projects/diffused_head/sys/boot/fdt/dts/p3041ds.dts - copied unchanged from r230000, head/sys/boot/fdt/dts/p3041ds.dts projects/diffused_head/sys/boot/fdt/dts/xlp-basic.dts - copied unchanged from r230000, head/sys/boot/fdt/dts/xlp-basic.dts projects/diffused_head/sys/boot/i386/common/edd.h - copied unchanged from r230000, head/sys/boot/i386/common/edd.h projects/diffused_head/sys/cam/ctl/ - copied from r230000, head/sys/cam/ctl/ projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2s.c - copied unchanged from r230000, head/sys/contrib/dev/acpica/compiler/aslrestype2s.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmresrcl2.c - copied unchanged from r230000, head/sys/contrib/dev/acpica/disassembler/dmresrcl2.c projects/diffused_head/sys/contrib/dev/acpica/include/actbl3.h - copied unchanged from r230000, head/sys/contrib/dev/acpica/include/actbl3.h projects/diffused_head/sys/contrib/dev/acpica/os_specific/ - copied from r230000, head/sys/contrib/dev/acpica/os_specific/ projects/diffused_head/sys/contrib/dev/acpica/resources/rsserial.c - copied unchanged from r230000, head/sys/contrib/dev/acpica/resources/rsserial.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utaddress.c - copied unchanged from r230000, head/sys/contrib/dev/acpica/utilities/utaddress.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utxfmutex.c - copied unchanged from r230000, head/sys/contrib/dev/acpica/utilities/utxfmutex.c projects/diffused_head/sys/contrib/xz-embedded/ - copied from r230000, head/sys/contrib/xz-embedded/ projects/diffused_head/sys/dev/adb/adb_buttons.c - copied unchanged from r230000, head/sys/dev/adb/adb_buttons.c projects/diffused_head/sys/dev/ath/if_ath_led.c - copied unchanged from r230000, head/sys/dev/ath/if_ath_led.c projects/diffused_head/sys/dev/ath/if_ath_led.h - copied unchanged from r230000, head/sys/dev/ath/if_ath_led.h projects/diffused_head/sys/dev/cesa/ - copied from r230000, head/sys/dev/cesa/ projects/diffused_head/sys/dev/cxgbe/firmware/ - copied from r230000, head/sys/dev/cxgbe/firmware/ projects/diffused_head/sys/dev/esp/am53c974reg.h - copied unchanged from r230000, head/sys/dev/esp/am53c974reg.h projects/diffused_head/sys/dev/esp/esp_pci.c - copied unchanged from r230000, head/sys/dev/esp/esp_pci.c projects/diffused_head/sys/dev/fb/splash_txt.c - copied unchanged from r230000, head/sys/dev/fb/splash_txt.c projects/diffused_head/sys/dev/fdt/fdt_mips.c - copied unchanged from r230000, head/sys/dev/fdt/fdt_mips.c projects/diffused_head/sys/dev/fxp/inphy.c - copied unchanged from r230000, head/sys/dev/fxp/inphy.c projects/diffused_head/sys/dev/fxp/inphyreg.h - copied unchanged from r230000, head/sys/dev/fxp/inphyreg.h projects/diffused_head/sys/dev/hpt27xx/ - copied from r230000, head/sys/dev/hpt27xx/ projects/diffused_head/sys/dev/mii/mii_bitbang.c - copied unchanged from r230000, head/sys/dev/mii/mii_bitbang.c projects/diffused_head/sys/dev/mii/mii_bitbang.h - copied unchanged from r230000, head/sys/dev/mii/mii_bitbang.h projects/diffused_head/sys/dev/netmap/ - copied from r230000, head/sys/dev/netmap/ projects/diffused_head/sys/dev/qlxgb/ - copied from r230000, head/sys/dev/qlxgb/ projects/diffused_head/sys/dev/sfxge/ - copied from r230000, head/sys/dev/sfxge/ projects/diffused_head/sys/dev/sound/pci/emuxkireg.h - copied unchanged from r230000, head/sys/dev/sound/pci/emuxkireg.h projects/diffused_head/sys/dev/usb/net/ruephy.c - copied unchanged from r230000, head/sys/dev/usb/net/ruephy.c projects/diffused_head/sys/dev/usb/net/ruephyreg.h - copied unchanged from r230000, head/sys/dev/usb/net/ruephyreg.h projects/diffused_head/sys/dev/viawd/ - copied from r230000, head/sys/dev/viawd/ projects/diffused_head/sys/dev/virtio/ - copied from r230000, head/sys/dev/virtio/ projects/diffused_head/sys/dev/wtap/ - copied from r230000, head/sys/dev/wtap/ projects/diffused_head/sys/dev/xl/xlphy.c - copied unchanged from r230000, head/sys/dev/xl/xlphy.c projects/diffused_head/sys/geom/uncompress/ - copied from r230000, head/sys/geom/uncompress/ projects/diffused_head/sys/kern/kern_ffclock.c - copied unchanged from r230000, head/sys/kern/kern_ffclock.c projects/diffused_head/sys/libkern/iconv_ucs.c - copied unchanged from r230000, head/sys/libkern/iconv_ucs.c projects/diffused_head/sys/libkern/memcchr.c - copied unchanged from r230000, head/sys/libkern/memcchr.c projects/diffused_head/sys/libkern/strchr.c - copied unchanged from r230000, head/sys/libkern/strchr.c projects/diffused_head/sys/libkern/strrchr.c - copied unchanged from r230000, head/sys/libkern/strrchr.c projects/diffused_head/sys/mips/cavium/octeon_cop2.S - copied unchanged from r230000, head/sys/mips/cavium/octeon_cop2.S projects/diffused_head/sys/mips/cavium/octeon_cop2.h - copied unchanged from r230000, head/sys/mips/cavium/octeon_cop2.h projects/diffused_head/sys/mips/cavium/octeon_gpio.c - copied unchanged from r230000, head/sys/mips/cavium/octeon_gpio.c projects/diffused_head/sys/mips/cavium/octeon_gpiovar.h - copied unchanged from r230000, head/sys/mips/cavium/octeon_gpiovar.h projects/diffused_head/sys/mips/conf/AR71XX_BASE - copied unchanged from r230000, head/sys/mips/conf/AR71XX_BASE projects/diffused_head/sys/mips/conf/AR71XX_BASE.hints - copied unchanged from r230000, head/sys/mips/conf/AR71XX_BASE.hints projects/diffused_head/sys/mips/conf/PB47 - copied unchanged from r230000, head/sys/mips/conf/PB47 projects/diffused_head/sys/mips/conf/PB47.hints - copied unchanged from r230000, head/sys/mips/conf/PB47.hints projects/diffused_head/sys/mips/conf/ROUTERSTATION - copied unchanged from r230000, head/sys/mips/conf/ROUTERSTATION projects/diffused_head/sys/mips/conf/ROUTERSTATION.hints - copied unchanged from r230000, head/sys/mips/conf/ROUTERSTATION.hints projects/diffused_head/sys/mips/conf/ROUTERSTATION_MFS - copied unchanged from r230000, head/sys/mips/conf/ROUTERSTATION_MFS projects/diffused_head/sys/mips/conf/RSPRO - copied unchanged from r230000, head/sys/mips/conf/RSPRO projects/diffused_head/sys/mips/conf/RSPRO.hints - copied unchanged from r230000, head/sys/mips/conf/RSPRO.hints projects/diffused_head/sys/mips/conf/RSPRO_MFS - copied unchanged from r230000, head/sys/mips/conf/RSPRO_MFS projects/diffused_head/sys/mips/conf/RSPRO_STANDALONE - copied unchanged from r230000, head/sys/mips/conf/RSPRO_STANDALONE projects/diffused_head/sys/mips/conf/std.XLP - copied unchanged from r230000, head/sys/mips/conf/std.XLP projects/diffused_head/sys/mips/include/fdt.h - copied unchanged from r230000, head/sys/mips/include/fdt.h projects/diffused_head/sys/mips/include/octeon_cop2.h - copied unchanged from r230000, head/sys/mips/include/octeon_cop2.h projects/diffused_head/sys/mips/include/ofw_machdep.h - copied unchanged from r230000, head/sys/mips/include/ofw_machdep.h projects/diffused_head/sys/mips/mips/octeon_cop2.c - copied unchanged from r230000, head/sys/mips/mips/octeon_cop2.c projects/diffused_head/sys/mips/mips/octeon_cop2_swtch.S - copied unchanged from r230000, head/sys/mips/mips/octeon_cop2_swtch.S projects/diffused_head/sys/mips/nlm/hal/nlm_hal.c - copied unchanged from r230000, head/sys/mips/nlm/hal/nlm_hal.c projects/diffused_head/sys/modules/carp/ - copied from r230000, head/sys/modules/carp/ projects/diffused_head/sys/modules/cfi/ - copied from r230000, head/sys/modules/cfi/ projects/diffused_head/sys/modules/cxgbe/firmware/ - copied from r230000, head/sys/modules/cxgbe/firmware/ projects/diffused_head/sys/modules/geom/geom_uncompress/ - copied from r230000, head/sys/modules/geom/geom_uncompress/ projects/diffused_head/sys/modules/hpt27xx/ - copied from r230000, head/sys/modules/hpt27xx/ projects/diffused_head/sys/modules/qlxgb/ - copied from r230000, head/sys/modules/qlxgb/ projects/diffused_head/sys/modules/sfxge/ - copied from r230000, head/sys/modules/sfxge/ projects/diffused_head/sys/modules/splash/txt/ - copied from r230000, head/sys/modules/splash/txt/ projects/diffused_head/sys/modules/usb/avr32dci/ - copied from r230000, head/sys/modules/usb/avr32dci/ projects/diffused_head/sys/modules/viawd/ - copied from r230000, head/sys/modules/viawd/ projects/diffused_head/sys/modules/virtio/ - copied from r230000, head/sys/modules/virtio/ projects/diffused_head/sys/modules/wtap/ - copied from r230000, head/sys/modules/wtap/ projects/diffused_head/sys/net/netmap.h - copied unchanged from r230000, head/sys/net/netmap.h projects/diffused_head/sys/net/netmap_user.h - copied unchanged from r230000, head/sys/net/netmap_user.h projects/diffused_head/sys/sparc64/sparc64/cam_machdep.c - copied unchanged from r230000, head/sys/sparc64/sparc64/cam_machdep.c projects/diffused_head/sys/sys/_ffcounter.h - copied unchanged from r230000, head/sys/sys/_ffcounter.h projects/diffused_head/sys/sys/_kstack_cache.h - copied unchanged from r230000, head/sys/sys/_kstack_cache.h projects/diffused_head/sys/sys/timeffc.h - copied unchanged from r230000, head/sys/sys/timeffc.h projects/diffused_head/tools/bsdbox/ - copied from r230000, head/tools/bsdbox/ projects/diffused_head/tools/build/options/WITHOUT_CAPSICUM - copied unchanged from r230000, head/tools/build/options/WITHOUT_CAPSICUM projects/diffused_head/tools/build/options/WITH_CTF - copied unchanged from r230000, head/tools/build/options/WITH_CTF projects/diffused_head/tools/build/options/WITH_LIBCPLUSPLUS - copied unchanged from r230000, head/tools/build/options/WITH_LIBCPLUSPLUS projects/diffused_head/tools/regression/bin/sh/builtins/case11.0 - copied unchanged from r230000, head/tools/regression/bin/sh/builtins/case11.0 projects/diffused_head/tools/regression/bin/sh/builtins/case12.0 - copied unchanged from r230000, head/tools/regression/bin/sh/builtins/case12.0 projects/diffused_head/tools/regression/bin/sh/builtins/case13.0 - copied unchanged from r230000, head/tools/regression/bin/sh/builtins/case13.0 projects/diffused_head/tools/regression/bin/sh/builtins/for1.0 - copied unchanged from r230000, head/tools/regression/bin/sh/builtins/for1.0 projects/diffused_head/tools/regression/bin/sh/parameters/optind1.0 - copied unchanged from r230000, head/tools/regression/bin/sh/parameters/optind1.0 projects/diffused_head/tools/regression/bin/sh/parameters/positional2.0 - copied unchanged from r230000, head/tools/regression/bin/sh/parameters/positional2.0 projects/diffused_head/tools/regression/lib/libc/gen/test-arc4random.c - copied unchanged from r230000, head/tools/regression/lib/libc/gen/test-arc4random.c projects/diffused_head/tools/regression/lib/msun/test-ctrig.c - copied unchanged from r230000, head/tools/regression/lib/msun/test-ctrig.c projects/diffused_head/tools/regression/lib/msun/test-ctrig.t - copied unchanged from r230000, head/tools/regression/lib/msun/test-ctrig.t projects/diffused_head/tools/regression/pipe/pipe-ino.c - copied unchanged from r230000, head/tools/regression/pipe/pipe-ino.c projects/diffused_head/tools/regression/pipe/pipe-reverse2.c - copied unchanged from r230000, head/tools/regression/pipe/pipe-reverse2.c projects/diffused_head/tools/regression/sbin/dhclient/ - copied from r230000, head/tools/regression/sbin/dhclient/ projects/diffused_head/tools/regression/usr.bin/make/execution/ - copied from r230000, head/tools/regression/usr.bin/make/execution/ projects/diffused_head/tools/tinder.sh - copied unchanged from r230000, head/tools/tinder.sh projects/diffused_head/tools/tools/netmap/ - copied from r230000, head/tools/tools/netmap/ projects/diffused_head/tools/tools/wtap/ - copied from r230000, head/tools/tools/wtap/ projects/diffused_head/tools/tools/zfsboottest/zfsboottest.sh - copied unchanged from r230000, head/tools/tools/zfsboottest/zfsboottest.sh projects/diffused_head/usr.bin/clang/clang-tblgen/ - copied from r230000, head/usr.bin/clang/clang-tblgen/ projects/diffused_head/usr.bin/ctlstat/ - copied from r230000, head/usr.bin/ctlstat/ projects/diffused_head/usr.bin/gzip/unxz.c - copied unchanged from r230000, head/usr.bin/gzip/unxz.c projects/diffused_head/usr.bin/m4/lib/ - copied from r230000, head/usr.bin/m4/lib/ projects/diffused_head/usr.bin/m4/parser.y - copied unchanged from r230000, head/usr.bin/m4/parser.y projects/diffused_head/usr.bin/m4/tokenizer.l - copied unchanged from r230000, head/usr.bin/m4/tokenizer.l projects/diffused_head/usr.bin/mkulzma/ - copied from r230000, head/usr.bin/mkulzma/ projects/diffused_head/usr.bin/procstat/procstat_auxv.c - copied unchanged from r230000, head/usr.bin/procstat/procstat_auxv.c projects/diffused_head/usr.bin/procstat/procstat_rlimit.c - copied unchanged from r230000, head/usr.bin/procstat/procstat_rlimit.c projects/diffused_head/usr.sbin/cpucontrol/via.c - copied unchanged from r230000, head/usr.sbin/cpucontrol/via.c projects/diffused_head/usr.sbin/cpucontrol/via.h - copied unchanged from r230000, head/usr.sbin/cpucontrol/via.h projects/diffused_head/usr.sbin/ctladm/ - copied from r230000, head/usr.sbin/ctladm/ Directory Properties: projects/diffused_head/contrib/libarchive/ (props changed) projects/diffused_head/contrib/libcxxrt/ (props changed) Replaced: projects/diffused_head/contrib/gperf/doc/gperf.texi - copied unchanged from r230000, head/contrib/gperf/doc/gperf.texi projects/diffused_head/contrib/gperf/doc/gpl.texinfo - copied unchanged from r230000, head/contrib/gperf/doc/gpl.texinfo projects/diffused_head/lib/libc/string/strchr.c - copied unchanged from r230000, head/lib/libc/string/strchr.c projects/diffused_head/lib/libc/string/strrchr.c - copied unchanged from r230000, head/lib/libc/string/strrchr.c Deleted: projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_graph.c projects/diffused_head/contrib/compiler-rt/lib/abi.h projects/diffused_head/contrib/compiler-rt/lib/apple_versioning.c projects/diffused_head/contrib/compiler-rt/lib/endianness.h projects/diffused_head/contrib/gperf/acconfig.h projects/diffused_head/contrib/gperf/configure.in projects/diffused_head/contrib/gperf/doc/configure.in projects/diffused_head/contrib/gperf/doc/texinfo.tex projects/diffused_head/contrib/gperf/lib/configure.in projects/diffused_head/contrib/gperf/src/configure.in projects/diffused_head/contrib/gperf/src/gen-perf.cc projects/diffused_head/contrib/gperf/src/gen-perf.h projects/diffused_head/contrib/gperf/src/iterator.cc projects/diffused_head/contrib/gperf/src/iterator.h projects/diffused_head/contrib/gperf/src/key-list.cc projects/diffused_head/contrib/gperf/src/key-list.h projects/diffused_head/contrib/gperf/src/list-node.cc projects/diffused_head/contrib/gperf/src/list-node.h projects/diffused_head/contrib/gperf/src/new.cc projects/diffused_head/contrib/gperf/src/read-line.cc projects/diffused_head/contrib/gperf/src/read-line.h projects/diffused_head/contrib/gperf/src/read-line.icc projects/diffused_head/contrib/gperf/src/trace.cc projects/diffused_head/contrib/gperf/src/trace.h projects/diffused_head/contrib/gperf/src/vectors.cc projects/diffused_head/contrib/gperf/src/vectors.h projects/diffused_head/contrib/gperf/tests/ projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequency.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequency.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineLocation.h projects/diffused_head/contrib/llvm/include/llvm/CompilerDriver/ projects/diffused_head/contrib/llvm/include/llvm/Support/PassManagerBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetAsmBackend.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetAsmInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetAsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetAsmParser.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetRegistry.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSelect.h projects/diffused_head/contrib/llvm/lib/Analysis/BlockFrequency.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LowerSubregs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBlockFrequency.cpp projects/diffused_head/contrib/llvm/lib/CompilerDriver/ projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/Makefile projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/Makefile projects/diffused_head/contrib/llvm/lib/MC/MCParser/TargetAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/TargetAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Object/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Object/Makefile projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAddressingModes.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMCExpr.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMCExpr.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ThumbDisassemblerCore.h projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/ARM/NEONMoveFix.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/Alpha/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/Blackfin/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/Blackfin/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/Makefile projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/Makefile projects/diffused_head/contrib/llvm/lib/Target/MBlaze/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MBlaze/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/PTX/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/PTX/TargetInfo/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/PTX/TargetInfo/Makefile projects/diffused_head/contrib/llvm/lib/Target/PTX/generate-register-td.py projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCPredicates.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCPredicates.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/TargetAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/Makefile projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Target/X86/SSEDomainFix.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/Makefile projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86MachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/CMakeLists.txt projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/Makefile projects/diffused_head/contrib/llvm/lib/Transforms/IPO/LowerSetJmp.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/TailDuplication.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang/Config/ projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticClient.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticsClient.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTSerializationListener.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerProvider.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticClients.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRState.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRStateTrait.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TransferFuncs.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Makefile projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticsClient.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCXXCast.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Makefile projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicStore.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CXXExprEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FlatStore.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/GRState.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Makefile projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/Makefile projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Makefile projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/README.txt projects/diffused_head/contrib/llvm/utils/TableGen/ClangASTNodesEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ClangASTNodesEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/ClangAttrEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ClangAttrEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/ClangSACheckersEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ClangSACheckersEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/Error.cpp projects/diffused_head/contrib/llvm/utils/TableGen/Error.h projects/diffused_head/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/NeonEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/NeonEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/OptParserEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/OptParserEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/Record.cpp projects/diffused_head/contrib/llvm/utils/TableGen/Record.h projects/diffused_head/contrib/llvm/utils/TableGen/TGLexer.cpp projects/diffused_head/contrib/llvm/utils/TableGen/TGLexer.h projects/diffused_head/contrib/llvm/utils/TableGen/TGParser.cpp projects/diffused_head/contrib/llvm/utils/TableGen/TGParser.h projects/diffused_head/contrib/llvm/utils/TableGen/TableGenBackend.cpp projects/diffused_head/contrib/llvm/utils/TableGen/TableGenBackend.h projects/diffused_head/gnu/lib/libodialog/ projects/diffused_head/lib/clang/include/ARMGenDecoderTables.inc projects/diffused_head/lib/libarchive/COPYING projects/diffused_head/lib/libarchive/README projects/diffused_head/lib/libarchive/archive.h projects/diffused_head/lib/libarchive/archive_check_magic.c projects/diffused_head/lib/libarchive/archive_crc32.h projects/diffused_head/lib/libarchive/archive_endian.h projects/diffused_head/lib/libarchive/archive_entry.3 projects/diffused_head/lib/libarchive/archive_entry.c projects/diffused_head/lib/libarchive/archive_entry.h projects/diffused_head/lib/libarchive/archive_entry_copy_stat.c projects/diffused_head/lib/libarchive/archive_entry_link_resolver.c projects/diffused_head/lib/libarchive/archive_entry_private.h projects/diffused_head/lib/libarchive/archive_entry_stat.c projects/diffused_head/lib/libarchive/archive_entry_strmode.c projects/diffused_head/lib/libarchive/archive_entry_xattr.c projects/diffused_head/lib/libarchive/archive_hash.h projects/diffused_head/lib/libarchive/archive_platform.h projects/diffused_head/lib/libarchive/archive_private.h projects/diffused_head/lib/libarchive/archive_read.3 projects/diffused_head/lib/libarchive/archive_read.c projects/diffused_head/lib/libarchive/archive_read_data_into_fd.c projects/diffused_head/lib/libarchive/archive_read_disk.3 projects/diffused_head/lib/libarchive/archive_read_disk.c projects/diffused_head/lib/libarchive/archive_read_disk_entry_from_file.c projects/diffused_head/lib/libarchive/archive_read_disk_private.h projects/diffused_head/lib/libarchive/archive_read_disk_set_standard_lookup.c projects/diffused_head/lib/libarchive/archive_read_extract.c projects/diffused_head/lib/libarchive/archive_read_open_fd.c projects/diffused_head/lib/libarchive/archive_read_open_file.c projects/diffused_head/lib/libarchive/archive_read_open_filename.c projects/diffused_head/lib/libarchive/archive_read_open_memory.c projects/diffused_head/lib/libarchive/archive_read_private.h projects/diffused_head/lib/libarchive/archive_read_support_compression_all.c projects/diffused_head/lib/libarchive/archive_read_support_compression_bzip2.c projects/diffused_head/lib/libarchive/archive_read_support_compression_compress.c projects/diffused_head/lib/libarchive/archive_read_support_compression_gzip.c projects/diffused_head/lib/libarchive/archive_read_support_compression_none.c projects/diffused_head/lib/libarchive/archive_read_support_compression_program.c projects/diffused_head/lib/libarchive/archive_read_support_compression_rpm.c projects/diffused_head/lib/libarchive/archive_read_support_compression_uu.c projects/diffused_head/lib/libarchive/archive_read_support_compression_xz.c projects/diffused_head/lib/libarchive/archive_read_support_format_all.c projects/diffused_head/lib/libarchive/archive_read_support_format_ar.c projects/diffused_head/lib/libarchive/archive_read_support_format_cpio.c projects/diffused_head/lib/libarchive/archive_read_support_format_empty.c projects/diffused_head/lib/libarchive/archive_read_support_format_iso9660.c projects/diffused_head/lib/libarchive/archive_read_support_format_mtree.c projects/diffused_head/lib/libarchive/archive_read_support_format_raw.c projects/diffused_head/lib/libarchive/archive_read_support_format_tar.c projects/diffused_head/lib/libarchive/archive_read_support_format_xar.c projects/diffused_head/lib/libarchive/archive_read_support_format_zip.c projects/diffused_head/lib/libarchive/archive_string.c projects/diffused_head/lib/libarchive/archive_string.h projects/diffused_head/lib/libarchive/archive_string_sprintf.c projects/diffused_head/lib/libarchive/archive_util.3 projects/diffused_head/lib/libarchive/archive_util.c projects/diffused_head/lib/libarchive/archive_virtual.c projects/diffused_head/lib/libarchive/archive_write.3 projects/diffused_head/lib/libarchive/archive_write.c projects/diffused_head/lib/libarchive/archive_write_disk.3 projects/diffused_head/lib/libarchive/archive_write_disk.c projects/diffused_head/lib/libarchive/archive_write_disk_private.h projects/diffused_head/lib/libarchive/archive_write_disk_set_standard_lookup.c projects/diffused_head/lib/libarchive/archive_write_open_fd.c projects/diffused_head/lib/libarchive/archive_write_open_file.c projects/diffused_head/lib/libarchive/archive_write_open_filename.c projects/diffused_head/lib/libarchive/archive_write_open_memory.c projects/diffused_head/lib/libarchive/archive_write_private.h projects/diffused_head/lib/libarchive/archive_write_set_compression_bzip2.c projects/diffused_head/lib/libarchive/archive_write_set_compression_compress.c projects/diffused_head/lib/libarchive/archive_write_set_compression_gzip.c projects/diffused_head/lib/libarchive/archive_write_set_compression_none.c projects/diffused_head/lib/libarchive/archive_write_set_compression_program.c projects/diffused_head/lib/libarchive/archive_write_set_compression_xz.c projects/diffused_head/lib/libarchive/archive_write_set_format.c projects/diffused_head/lib/libarchive/archive_write_set_format_ar.c projects/diffused_head/lib/libarchive/archive_write_set_format_by_name.c projects/diffused_head/lib/libarchive/archive_write_set_format_cpio.c projects/diffused_head/lib/libarchive/archive_write_set_format_cpio_newc.c projects/diffused_head/lib/libarchive/archive_write_set_format_mtree.c projects/diffused_head/lib/libarchive/archive_write_set_format_pax.c projects/diffused_head/lib/libarchive/archive_write_set_format_shar.c projects/diffused_head/lib/libarchive/archive_write_set_format_ustar.c projects/diffused_head/lib/libarchive/archive_write_set_format_zip.c projects/diffused_head/lib/libarchive/cpio.5 projects/diffused_head/lib/libarchive/filter_fork.c projects/diffused_head/lib/libarchive/filter_fork.h projects/diffused_head/lib/libarchive/libarchive-formats.5 projects/diffused_head/lib/libarchive/libarchive.3 projects/diffused_head/lib/libarchive/libarchive_fe/ projects/diffused_head/lib/libarchive/libarchive_internals.3 projects/diffused_head/lib/libarchive/tar.5 projects/diffused_head/lib/libarchive/test/.cvsignore projects/diffused_head/lib/libarchive/test/README projects/diffused_head/lib/libarchive/test/main.c projects/diffused_head/lib/libarchive/test/read_open_memory.c projects/diffused_head/lib/libarchive/test/test.h projects/diffused_head/lib/libarchive/test/test_acl_basic.c projects/diffused_head/lib/libarchive/test/test_acl_freebsd.c projects/diffused_head/lib/libarchive/test/test_acl_pax.c projects/diffused_head/lib/libarchive/test/test_archive_api_feature.c projects/diffused_head/lib/libarchive/test/test_bad_fd.c projects/diffused_head/lib/libarchive/test/test_compat_bzip2.c projects/diffused_head/lib/libarchive/test/test_compat_bzip2_1.tbz.uu projects/diffused_head/lib/libarchive/test/test_compat_bzip2_2.tbz.uu projects/diffused_head/lib/libarchive/test/test_compat_cpio.c projects/diffused_head/lib/libarchive/test/test_compat_cpio_1.cpio.uu projects/diffused_head/lib/libarchive/test/test_compat_gtar.c projects/diffused_head/lib/libarchive/test/test_compat_gtar_1.tar.uu projects/diffused_head/lib/libarchive/test/test_compat_gzip.c projects/diffused_head/lib/libarchive/test/test_compat_gzip_1.tgz.uu projects/diffused_head/lib/libarchive/test/test_compat_gzip_2.tgz.uu projects/diffused_head/lib/libarchive/test/test_compat_lzma.c projects/diffused_head/lib/libarchive/test/test_compat_lzma_1.tlz.uu projects/diffused_head/lib/libarchive/test/test_compat_lzma_2.tlz.uu projects/diffused_head/lib/libarchive/test/test_compat_lzma_3.tlz.uu projects/diffused_head/lib/libarchive/test/test_compat_solaris_tar_acl.c projects/diffused_head/lib/libarchive/test/test_compat_solaris_tar_acl.tar.uu projects/diffused_head/lib/libarchive/test/test_compat_tar_hardlink.c projects/diffused_head/lib/libarchive/test/test_compat_tar_hardlink_1.tar.uu projects/diffused_head/lib/libarchive/test/test_compat_xz.c projects/diffused_head/lib/libarchive/test/test_compat_xz_1.txz.uu projects/diffused_head/lib/libarchive/test/test_compat_zip.c projects/diffused_head/lib/libarchive/test/test_compat_zip_1.zip.uu projects/diffused_head/lib/libarchive/test/test_compat_zip_2.zip.uu projects/diffused_head/lib/libarchive/test/test_empty_write.c projects/diffused_head/lib/libarchive/test/test_entry.c projects/diffused_head/lib/libarchive/test/test_entry_strmode.c projects/diffused_head/lib/libarchive/test/test_extattr_freebsd.c projects/diffused_head/lib/libarchive/test/test_fuzz.c projects/diffused_head/lib/libarchive/test/test_fuzz_1.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_link_resolver.c projects/diffused_head/lib/libarchive/test/test_open_failure.c projects/diffused_head/lib/libarchive/test/test_open_fd.c projects/diffused_head/lib/libarchive/test/test_open_file.c projects/diffused_head/lib/libarchive/test/test_open_filename.c projects/diffused_head/lib/libarchive/test/test_pax_filename_encoding.c projects/diffused_head/lib/libarchive/test/test_pax_filename_encoding.tar.uu projects/diffused_head/lib/libarchive/test/test_read_compress_program.c projects/diffused_head/lib/libarchive/test/test_read_data_large.c projects/diffused_head/lib/libarchive/test/test_read_disk.c projects/diffused_head/lib/libarchive/test/test_read_disk_entry_from_file.c projects/diffused_head/lib/libarchive/test/test_read_extract.c projects/diffused_head/lib/libarchive/test/test_read_file_nonexistent.c projects/diffused_head/lib/libarchive/test/test_read_format_ar.ar.uu projects/diffused_head/lib/libarchive/test/test_read_format_ar.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_Z.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_be.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_be.cpio.uu projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_gz.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_lzma.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_bin_xz.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_odc.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.rpm.uu projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4_gzip.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.rpm.uu projects/diffused_head/lib/libarchive/test/test_read_format_cpio_svr4c_Z.c projects/diffused_head/lib/libarchive/test/test_read_format_empty.c projects/diffused_head/lib/libarchive/test/test_read_format_gtar_gz.c projects/diffused_head/lib/libarchive/test/test_read_format_gtar_lzma.c projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse.c projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_13.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_17.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix00.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix01.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_gtar_sparse_1_17_posix10_modified.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_2.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_gz.c projects/diffused_head/lib/libarchive/test/test_read_format_iso_joliet.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_joliet_long.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_joliet_rockridge.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_multi_extent.c projects/diffused_head/lib/libarchive/test/test_read_format_iso_multi_extent.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_rockridge.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_rockridge_ce.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_rockridge_new.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_rockridge_rr_moved.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_iso_zisofs.iso.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_isojoliet_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_isojoliet_long.c projects/diffused_head/lib/libarchive/test/test_read_format_isojoliet_rr.c projects/diffused_head/lib/libarchive/test/test_read_format_isorr_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_isorr_ce.c projects/diffused_head/lib/libarchive/test/test_read_format_isorr_new_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_isorr_rr_moved.c projects/diffused_head/lib/libarchive/test/test_read_format_isozisofs_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_mtree.c projects/diffused_head/lib/libarchive/test/test_read_format_mtree.mtree.uu projects/diffused_head/lib/libarchive/test/test_read_format_pax_bz2.c projects/diffused_head/lib/libarchive/test/test_read_format_raw.c projects/diffused_head/lib/libarchive/test/test_read_format_raw.data.Z.uu projects/diffused_head/lib/libarchive/test/test_read_format_raw.data.uu projects/diffused_head/lib/libarchive/test/test_read_format_tar.c projects/diffused_head/lib/libarchive/test/test_read_format_tar_empty_filename.c projects/diffused_head/lib/libarchive/test/test_read_format_tar_empty_filename.tar.uu projects/diffused_head/lib/libarchive/test/test_read_format_tbz.c projects/diffused_head/lib/libarchive/test/test_read_format_tgz.c projects/diffused_head/lib/libarchive/test/test_read_format_tlz.c projects/diffused_head/lib/libarchive/test/test_read_format_txz.c projects/diffused_head/lib/libarchive/test/test_read_format_tz.c projects/diffused_head/lib/libarchive/test/test_read_format_xar.c projects/diffused_head/lib/libarchive/test/test_read_format_zip.c projects/diffused_head/lib/libarchive/test/test_read_format_zip.zip.uu projects/diffused_head/lib/libarchive/test/test_read_large.c projects/diffused_head/lib/libarchive/test/test_read_pax_truncated.c projects/diffused_head/lib/libarchive/test/test_read_position.c projects/diffused_head/lib/libarchive/test/test_read_truncated.c projects/diffused_head/lib/libarchive/test/test_read_uu.c projects/diffused_head/lib/libarchive/test/test_tar_filenames.c projects/diffused_head/lib/libarchive/test/test_tar_large.c projects/diffused_head/lib/libarchive/test/test_ustar_filenames.c projects/diffused_head/lib/libarchive/test/test_write_compress.c projects/diffused_head/lib/libarchive/test/test_write_compress_bzip2.c projects/diffused_head/lib/libarchive/test/test_write_compress_gzip.c projects/diffused_head/lib/libarchive/test/test_write_compress_lzma.c projects/diffused_head/lib/libarchive/test/test_write_compress_program.c projects/diffused_head/lib/libarchive/test/test_write_compress_xz.c projects/diffused_head/lib/libarchive/test/test_write_disk.c projects/diffused_head/lib/libarchive/test/test_write_disk_failures.c projects/diffused_head/lib/libarchive/test/test_write_disk_hardlink.c projects/diffused_head/lib/libarchive/test/test_write_disk_perms.c projects/diffused_head/lib/libarchive/test/test_write_disk_secure.c projects/diffused_head/lib/libarchive/test/test_write_disk_sparse.c projects/diffused_head/lib/libarchive/test/test_write_disk_symlink.c projects/diffused_head/lib/libarchive/test/test_write_disk_times.c projects/diffused_head/lib/libarchive/test/test_write_format_ar.c projects/diffused_head/lib/libarchive/test/test_write_format_cpio.c projects/diffused_head/lib/libarchive/test/test_write_format_cpio_empty.c projects/diffused_head/lib/libarchive/test/test_write_format_cpio_newc.c projects/diffused_head/lib/libarchive/test/test_write_format_cpio_odc.c projects/diffused_head/lib/libarchive/test/test_write_format_mtree.c projects/diffused_head/lib/libarchive/test/test_write_format_pax.c projects/diffused_head/lib/libarchive/test/test_write_format_shar_empty.c projects/diffused_head/lib/libarchive/test/test_write_format_tar.c projects/diffused_head/lib/libarchive/test/test_write_format_tar_empty.c projects/diffused_head/lib/libarchive/test/test_write_format_tar_ustar.c projects/diffused_head/lib/libarchive/test/test_write_format_zip.c projects/diffused_head/lib/libarchive/test/test_write_format_zip_empty.c projects/diffused_head/lib/libarchive/test/test_write_format_zip_no_compression.c projects/diffused_head/lib/libarchive/test/test_write_open_memory.c projects/diffused_head/lib/libc/amd64/gen/modf.S projects/diffused_head/lib/libc/arm/gen/modf.c projects/diffused_head/lib/libc/i386/gen/modf.S projects/diffused_head/lib/libc/i386/string/index.S projects/diffused_head/lib/libc/i386/string/rindex.S projects/diffused_head/lib/libc/ia64/gen/modf.c projects/diffused_head/lib/libc/mips/gen/modf.S projects/diffused_head/lib/libc/mips/gen/modf.c projects/diffused_head/lib/libc/mips/string/index.S projects/diffused_head/lib/libc/mips/string/rindex.S projects/diffused_head/lib/libc/powerpc/gen/modf.c projects/diffused_head/lib/libc/powerpc64/gen/modf.c projects/diffused_head/lib/libc/sparc64/gen/modf.S projects/diffused_head/lib/libc/stdlib/posix_memalign.3 projects/diffused_head/lib/libc/string/index.c projects/diffused_head/lib/libc/string/rindex.c projects/diffused_head/release/svnbranch.awk projects/diffused_head/sbin/ifconfig/ifcarp.c projects/diffused_head/share/man/man4/amd.4 projects/diffused_head/share/man/man7/eventtimers.7 projects/diffused_head/sys/contrib/dev/acpica/osunixxf.c projects/diffused_head/sys/contrib/dev/acpica/tools/ projects/diffused_head/sys/dev/amd/ projects/diffused_head/sys/dev/cxgbe/common/t4fw_interface.h projects/diffused_head/sys/dev/mii/exphy.c projects/diffused_head/sys/dev/mii/inphy.c projects/diffused_head/sys/dev/mii/inphyreg.h projects/diffused_head/sys/dev/mii/ruephy.c projects/diffused_head/sys/dev/mii/ruephyreg.h projects/diffused_head/sys/fs/ext2fs/ext2_readwrite.c projects/diffused_head/sys/gnu/dev/sound/pci/emu10k1-alsa.h projects/diffused_head/sys/gnu/dev/sound/pci/p16v-alsa.h projects/diffused_head/sys/gnu/dev/sound/pci/p17v-alsa.h projects/diffused_head/sys/libkern/gets.c projects/diffused_head/sys/libkern/index.c projects/diffused_head/sys/libkern/rindex.c projects/diffused_head/sys/libkern/skpc.c projects/diffused_head/sys/mips/conf/AR71XX projects/diffused_head/sys/mips/conf/AR71XX.hints projects/diffused_head/sys/mips/nlm/uart_bus_xlp_iodi.c projects/diffused_head/sys/modules/amd/ projects/diffused_head/sys/modules/if_carp/ projects/diffused_head/usr.bin/cpio/bsdcpio.1 projects/diffused_head/usr.bin/cpio/cmdline.c projects/diffused_head/usr.bin/cpio/cpio.c projects/diffused_head/usr.bin/cpio/cpio.h projects/diffused_head/usr.bin/cpio/cpio_platform.h projects/diffused_head/usr.bin/cpio/test/main.c projects/diffused_head/usr.bin/cpio/test/test.h projects/diffused_head/usr.bin/cpio/test/test_0.c projects/diffused_head/usr.bin/cpio/test/test_basic.c projects/diffused_head/usr.bin/cpio/test/test_cmdline.c projects/diffused_head/usr.bin/cpio/test/test_format_newc.c projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat.c projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref.bin.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref.crc.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref.newc.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref.ustar.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.bin.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.crc.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.newc.uu projects/diffused_head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.ustar.uu projects/diffused_head/usr.bin/cpio/test/test_option_B_upper.c projects/diffused_head/usr.bin/cpio/test/test_option_C_upper.c projects/diffused_head/usr.bin/cpio/test/test_option_J_upper.c projects/diffused_head/usr.bin/cpio/test/test_option_L_upper.c projects/diffused_head/usr.bin/cpio/test/test_option_Z_upper.c projects/diffused_head/usr.bin/cpio/test/test_option_a.c projects/diffused_head/usr.bin/cpio/test/test_option_c.c projects/diffused_head/usr.bin/cpio/test/test_option_d.c projects/diffused_head/usr.bin/cpio/test/test_option_f.c projects/diffused_head/usr.bin/cpio/test/test_option_f.cpio.uu projects/diffused_head/usr.bin/cpio/test/test_option_help.c projects/diffused_head/usr.bin/cpio/test/test_option_l.c projects/diffused_head/usr.bin/cpio/test/test_option_lzma.c projects/diffused_head/usr.bin/cpio/test/test_option_m.c projects/diffused_head/usr.bin/cpio/test/test_option_m.cpio.uu projects/diffused_head/usr.bin/cpio/test/test_option_t.c projects/diffused_head/usr.bin/cpio/test/test_option_t.cpio.uu projects/diffused_head/usr.bin/cpio/test/test_option_t.stdout.uu projects/diffused_head/usr.bin/cpio/test/test_option_tv.stdout.uu projects/diffused_head/usr.bin/cpio/test/test_option_u.c projects/diffused_head/usr.bin/cpio/test/test_option_version.c projects/diffused_head/usr.bin/cpio/test/test_option_y.c projects/diffused_head/usr.bin/cpio/test/test_option_z.c projects/diffused_head/usr.bin/cpio/test/test_owner_parse.c projects/diffused_head/usr.bin/cpio/test/test_passthrough_dotdot.c projects/diffused_head/usr.bin/cpio/test/test_passthrough_reverse.c projects/diffused_head/usr.bin/cpio/test/test_pathmatch.c projects/diffused_head/usr.bin/kdump/kdump_subr.h projects/diffused_head/usr.bin/tar/COPYING projects/diffused_head/usr.bin/tar/bsdtar.1 projects/diffused_head/usr.bin/tar/bsdtar.c projects/diffused_head/usr.bin/tar/bsdtar.h projects/diffused_head/usr.bin/tar/bsdtar_platform.h projects/diffused_head/usr.bin/tar/cmdline.c projects/diffused_head/usr.bin/tar/getdate.c projects/diffused_head/usr.bin/tar/read.c projects/diffused_head/usr.bin/tar/subst.c projects/diffused_head/usr.bin/tar/test/main.c projects/diffused_head/usr.bin/tar/test/test.h projects/diffused_head/usr.bin/tar/test/test_0.c projects/diffused_head/usr.bin/tar/test/test_basic.c projects/diffused_head/usr.bin/tar/test/test_copy.c projects/diffused_head/usr.bin/tar/test/test_empty_mtree.c projects/diffused_head/usr.bin/tar/test/test_getdate.c projects/diffused_head/usr.bin/tar/test/test_help.c projects/diffused_head/usr.bin/tar/test/test_option_T_upper.c projects/diffused_head/usr.bin/tar/test/test_option_q.c projects/diffused_head/usr.bin/tar/test/test_option_r.c projects/diffused_head/usr.bin/tar/test/test_option_s.c projects/diffused_head/usr.bin/tar/test/test_patterns.c projects/diffused_head/usr.bin/tar/test/test_patterns_2.tar.uu projects/diffused_head/usr.bin/tar/test/test_patterns_3.tar.uu projects/diffused_head/usr.bin/tar/test/test_patterns_4.tar.uu projects/diffused_head/usr.bin/tar/test/test_stdio.c projects/diffused_head/usr.bin/tar/test/test_strip_components.c projects/diffused_head/usr.bin/tar/test/test_symlink_dir.c projects/diffused_head/usr.bin/tar/test/test_version.c projects/diffused_head/usr.bin/tar/tree.c projects/diffused_head/usr.bin/tar/tree.h projects/diffused_head/usr.bin/tar/util.c projects/diffused_head/usr.bin/tar/write.c projects/diffused_head/usr.sbin/sade/config.c projects/diffused_head/usr.sbin/sade/dispatch.c Modified: projects/diffused_head/COPYRIGHT projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/cat/cat.c projects/diffused_head/bin/chio/chio.c projects/diffused_head/bin/df/df.1 projects/diffused_head/bin/df/df.c projects/diffused_head/bin/ed/io.c projects/diffused_head/bin/ed/main.c projects/diffused_head/bin/ln/ln.c projects/diffused_head/bin/ls/ls.c projects/diffused_head/bin/mkdir/mkdir.c projects/diffused_head/bin/mv/mv.c projects/diffused_head/bin/ps/print.c projects/diffused_head/bin/ps/ps.1 projects/diffused_head/bin/ps/ps.c projects/diffused_head/bin/rm/rm.c projects/diffused_head/bin/sh/arith_yacc.c projects/diffused_head/bin/sh/eval.c projects/diffused_head/bin/sh/exec.c projects/diffused_head/bin/sh/exec.h projects/diffused_head/bin/sh/expand.c projects/diffused_head/bin/sh/expand.h projects/diffused_head/bin/sh/histedit.c projects/diffused_head/bin/sh/input.c projects/diffused_head/bin/sh/input.h projects/diffused_head/bin/sh/main.c projects/diffused_head/bin/sh/main.h projects/diffused_head/bin/sh/mksyntax.c projects/diffused_head/bin/sh/myhistedit.h projects/diffused_head/bin/sh/mystring.c projects/diffused_head/bin/sh/mystring.h projects/diffused_head/bin/sh/options.c projects/diffused_head/bin/sh/sh.1 projects/diffused_head/bin/stty/modes.c projects/diffused_head/bin/test/test.c projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/dtrace.c projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/io/tst.fds.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zdb/zdb.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.1 projects/diffused_head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/diffused_head/cddl/contrib/opensolaris/head/thread.h projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/drti.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_handle.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/i386/dt_isadep.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_impl.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/taskq.c projects/diffused_head/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c projects/diffused_head/cddl/lib/drti/Makefile projects/diffused_head/cddl/lib/libzfs/Makefile projects/diffused_head/cddl/sbin/zfs/Makefile projects/diffused_head/cddl/sbin/zpool/Makefile projects/diffused_head/cddl/usr.bin/zinject/Makefile projects/diffused_head/cddl/usr.bin/ztest/Makefile projects/diffused_head/cddl/usr.sbin/zdb/Makefile projects/diffused_head/contrib/bind9/CHANGES projects/diffused_head/contrib/bind9/bin/named/query.c projects/diffused_head/contrib/bind9/lib/dns/rbtdb.c projects/diffused_head/contrib/bind9/version projects/diffused_head/contrib/bsnmp/snmp_mibII/mibII.c projects/diffused_head/contrib/bsnmp/snmpd/snmpmod.h projects/diffused_head/contrib/bzip2/bzip2recover.c projects/diffused_head/contrib/compiler-rt/LICENSE.TXT projects/diffused_head/contrib/compiler-rt/README.txt projects/diffused_head/contrib/compiler-rt/lib/absvdi2.c projects/diffused_head/contrib/compiler-rt/lib/absvsi2.c projects/diffused_head/contrib/compiler-rt/lib/absvti2.c projects/diffused_head/contrib/compiler-rt/lib/adddf3.c projects/diffused_head/contrib/compiler-rt/lib/addsf3.c projects/diffused_head/contrib/compiler-rt/lib/addvdi3.c projects/diffused_head/contrib/compiler-rt/lib/addvsi3.c projects/diffused_head/contrib/compiler-rt/lib/addvti3.c projects/diffused_head/contrib/compiler-rt/lib/arm/adddf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/addsf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/divdf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/divsf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/eqdf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/eqsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/extendsfdf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/fixdfsivfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/fixsfsivfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/fixunsdfsivfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/fixunssfsivfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/floatsidfvfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/floatsisfvfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/floatunssidfvfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/floatunssisfvfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/gedf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/gesf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/gtdf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/gtsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/ledf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/lesf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/ltdf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/ltsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/muldf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/mulsf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/nedf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/negdf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/negsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/nesf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/subdf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/subsf3vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/truncdfsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/unorddf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/arm/unordsf2vfp.S projects/diffused_head/contrib/compiler-rt/lib/ashldi3.c projects/diffused_head/contrib/compiler-rt/lib/ashrdi3.c projects/diffused_head/contrib/compiler-rt/lib/assembly.h projects/diffused_head/contrib/compiler-rt/lib/clear_cache.c projects/diffused_head/contrib/compiler-rt/lib/clzdi2.c projects/diffused_head/contrib/compiler-rt/lib/clzsi2.c projects/diffused_head/contrib/compiler-rt/lib/cmpdi2.c projects/diffused_head/contrib/compiler-rt/lib/ctzdi2.c projects/diffused_head/contrib/compiler-rt/lib/ctzsi2.c projects/diffused_head/contrib/compiler-rt/lib/divdc3.c projects/diffused_head/contrib/compiler-rt/lib/divdf3.c projects/diffused_head/contrib/compiler-rt/lib/divdi3.c projects/diffused_head/contrib/compiler-rt/lib/divmoddi4.c projects/diffused_head/contrib/compiler-rt/lib/divmodsi4.c projects/diffused_head/contrib/compiler-rt/lib/divsc3.c projects/diffused_head/contrib/compiler-rt/lib/divsf3.c projects/diffused_head/contrib/compiler-rt/lib/divsi3.c projects/diffused_head/contrib/compiler-rt/lib/divxc3.c projects/diffused_head/contrib/compiler-rt/lib/enable_execute_stack.c projects/diffused_head/contrib/compiler-rt/lib/eprintf.c projects/diffused_head/contrib/compiler-rt/lib/extendsfdf2.c projects/diffused_head/contrib/compiler-rt/lib/ffsdi2.c projects/diffused_head/contrib/compiler-rt/lib/fixdfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixdfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixsfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixsfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixunsdfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixunsdfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixunssfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixunssfsi.c projects/diffused_head/contrib/compiler-rt/lib/floatdidf.c projects/diffused_head/contrib/compiler-rt/lib/floatdisf.c projects/diffused_head/contrib/compiler-rt/lib/floatsidf.c projects/diffused_head/contrib/compiler-rt/lib/floatsisf.c projects/diffused_head/contrib/compiler-rt/lib/floattidf.c projects/diffused_head/contrib/compiler-rt/lib/floattisf.c projects/diffused_head/contrib/compiler-rt/lib/floattixf.c projects/diffused_head/contrib/compiler-rt/lib/floatundidf.c projects/diffused_head/contrib/compiler-rt/lib/floatundisf.c projects/diffused_head/contrib/compiler-rt/lib/floatunsidf.c projects/diffused_head/contrib/compiler-rt/lib/floatunsisf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntidf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntisf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntixf.c projects/diffused_head/contrib/compiler-rt/lib/fp_lib.h projects/diffused_head/contrib/compiler-rt/lib/gcc_personality_v0.c projects/diffused_head/contrib/compiler-rt/lib/int_lib.h projects/diffused_head/contrib/compiler-rt/lib/lshrdi3.c projects/diffused_head/contrib/compiler-rt/lib/moddi3.c projects/diffused_head/contrib/compiler-rt/lib/modsi3.c projects/diffused_head/contrib/compiler-rt/lib/muldc3.c projects/diffused_head/contrib/compiler-rt/lib/muldf3.c projects/diffused_head/contrib/compiler-rt/lib/muldi3.c projects/diffused_head/contrib/compiler-rt/lib/mulsc3.c projects/diffused_head/contrib/compiler-rt/lib/mulsf3.c projects/diffused_head/contrib/compiler-rt/lib/mulvdi3.c projects/diffused_head/contrib/compiler-rt/lib/mulvsi3.c projects/diffused_head/contrib/compiler-rt/lib/mulvti3.c projects/diffused_head/contrib/compiler-rt/lib/mulxc3.c projects/diffused_head/contrib/compiler-rt/lib/negdf2.c projects/diffused_head/contrib/compiler-rt/lib/negsf2.c projects/diffused_head/contrib/compiler-rt/lib/negvdi2.c projects/diffused_head/contrib/compiler-rt/lib/negvsi2.c projects/diffused_head/contrib/compiler-rt/lib/negvti2.c projects/diffused_head/contrib/compiler-rt/lib/paritydi2.c projects/diffused_head/contrib/compiler-rt/lib/paritysi2.c projects/diffused_head/contrib/compiler-rt/lib/popcountdi2.c projects/diffused_head/contrib/compiler-rt/lib/popcountsi2.c projects/diffused_head/contrib/compiler-rt/lib/powidf2.c projects/diffused_head/contrib/compiler-rt/lib/powisf2.c projects/diffused_head/contrib/compiler-rt/lib/ppc/DD.h projects/diffused_head/contrib/compiler-rt/lib/ppc/divtc3.c projects/diffused_head/contrib/compiler-rt/lib/ppc/fixtfdi.c projects/diffused_head/contrib/compiler-rt/lib/ppc/fixunstfdi.c projects/diffused_head/contrib/compiler-rt/lib/ppc/floatditf.c projects/diffused_head/contrib/compiler-rt/lib/ppc/floatunditf.c projects/diffused_head/contrib/compiler-rt/lib/ppc/multc3.c projects/diffused_head/contrib/compiler-rt/lib/subdf3.c projects/diffused_head/contrib/compiler-rt/lib/subsf3.c projects/diffused_head/contrib/compiler-rt/lib/subvdi3.c projects/diffused_head/contrib/compiler-rt/lib/subvsi3.c projects/diffused_head/contrib/compiler-rt/lib/subvti3.c projects/diffused_head/contrib/compiler-rt/lib/trampoline_setup.c projects/diffused_head/contrib/compiler-rt/lib/truncdfsf2.c projects/diffused_head/contrib/compiler-rt/lib/ucmpdi2.c projects/diffused_head/contrib/compiler-rt/lib/udivdi3.c projects/diffused_head/contrib/compiler-rt/lib/udivmoddi4.c projects/diffused_head/contrib/compiler-rt/lib/udivmodsi4.c projects/diffused_head/contrib/compiler-rt/lib/udivmodti4.c projects/diffused_head/contrib/compiler-rt/lib/udivsi3.c projects/diffused_head/contrib/compiler-rt/lib/umoddi3.c projects/diffused_head/contrib/compiler-rt/lib/umodsi3.c projects/diffused_head/contrib/compiler-rt/lib/x86_64/floatdidf.c projects/diffused_head/contrib/compiler-rt/lib/x86_64/floatdisf.c projects/diffused_head/contrib/compiler-rt/lib/x86_64/floatdixf.c projects/diffused_head/contrib/ee/ee.c projects/diffused_head/contrib/file/softmagic.c projects/diffused_head/contrib/gcc/BASE-VER projects/diffused_head/contrib/gcc/ChangeLog.gcc43 projects/diffused_head/contrib/gcc/DEV-PHASE projects/diffused_head/contrib/gcc/builtins.c projects/diffused_head/contrib/gcc/config/arm/arm.c projects/diffused_head/contrib/gcc/config/freebsd.h projects/diffused_head/contrib/gcc/config/i386/pmm_malloc.h projects/diffused_head/contrib/gcc/config/rs6000/freebsd.h projects/diffused_head/contrib/gcclibs/libcpp/include/cpplib.h projects/diffused_head/contrib/gcclibs/libcpp/init.c projects/diffused_head/contrib/gcclibs/libcpp/internal.h projects/diffused_head/contrib/gcclibs/libcpp/macro.c projects/diffused_head/contrib/gdtoa/gdtoaimp.h projects/diffused_head/contrib/gdtoa/strtod.c projects/diffused_head/contrib/gdtoa/strtodg.c projects/diffused_head/contrib/gdtoa/strtof.c projects/diffused_head/contrib/gdtoa/strtorQ.c projects/diffused_head/contrib/gdtoa/strtord.c projects/diffused_head/contrib/gdtoa/strtorx.c projects/diffused_head/contrib/gperf/AUTHORS projects/diffused_head/contrib/gperf/COPYING projects/diffused_head/contrib/gperf/ChangeLog projects/diffused_head/contrib/gperf/FREEBSD-Xlist projects/diffused_head/contrib/gperf/INSTALL projects/diffused_head/contrib/gperf/Makefile.devel projects/diffused_head/contrib/gperf/Makefile.in projects/diffused_head/contrib/gperf/NEWS projects/diffused_head/contrib/gperf/README projects/diffused_head/contrib/gperf/aclocal.m4 projects/diffused_head/contrib/gperf/configure projects/diffused_head/contrib/gperf/doc/Makefile.in projects/diffused_head/contrib/gperf/doc/configure projects/diffused_head/contrib/gperf/doc/gperf.1 projects/diffused_head/contrib/gperf/doc/help2man projects/diffused_head/contrib/gperf/lib/Makefile.in projects/diffused_head/contrib/gperf/lib/configure projects/diffused_head/contrib/gperf/lib/hash.cc projects/diffused_head/contrib/gperf/lib/hash.h projects/diffused_head/contrib/gperf/src/Makefile.in projects/diffused_head/contrib/gperf/src/bool-array.cc projects/diffused_head/contrib/gperf/src/bool-array.h projects/diffused_head/contrib/gperf/src/bool-array.icc projects/diffused_head/contrib/gperf/src/config.h.in projects/diffused_head/contrib/gperf/src/configure projects/diffused_head/contrib/gperf/src/hash-table.cc projects/diffused_head/contrib/gperf/src/hash-table.h projects/diffused_head/contrib/gperf/src/main.cc projects/diffused_head/contrib/gperf/src/options.cc projects/diffused_head/contrib/gperf/src/options.h projects/diffused_head/contrib/gperf/src/options.icc projects/diffused_head/contrib/gperf/src/version.cc projects/diffused_head/contrib/gperf/src/version.h projects/diffused_head/contrib/groff/tmac/doc-common projects/diffused_head/contrib/groff/tmac/doc-syms projects/diffused_head/contrib/groff/tmac/doc.tmac projects/diffused_head/contrib/groff/tmac/groff_mdoc.man projects/diffused_head/contrib/less/command.c projects/diffused_head/contrib/less/prompt.c projects/diffused_head/contrib/libstdc++/ChangeLog projects/diffused_head/contrib/libstdc++/config/os/aix/os_defines.h projects/diffused_head/contrib/libstdc++/include/bits/allocator.h projects/diffused_head/contrib/libstdc++/include/bits/basic_string.h projects/diffused_head/contrib/libstdc++/include/bits/fstream.tcc projects/diffused_head/contrib/libstdc++/include/bits/locale_facets.tcc projects/diffused_head/contrib/libstdc++/include/debug/map.h projects/diffused_head/contrib/libstdc++/include/debug/multimap.h projects/diffused_head/contrib/libstdc++/include/ext/atomicity.h projects/diffused_head/contrib/libstdc++/include/ext/codecvt_specializations.h projects/diffused_head/contrib/libstdc++/include/ext/concurrence.h projects/diffused_head/contrib/libstdc++/include/ext/vstring.h projects/diffused_head/contrib/libstdc++/include/tr1/boost_shared_ptr.h projects/diffused_head/contrib/libstdc++/include/tr1/random projects/diffused_head/contrib/libstdc++/libsupc++/eh_personality.cc projects/diffused_head/contrib/libstdc++/libsupc++/typeinfo projects/diffused_head/contrib/libstdc++/src/valarray-inst.cc projects/diffused_head/contrib/llvm/include/llvm-c/Core.h projects/diffused_head/contrib/llvm/include/llvm-c/Disassembler.h projects/diffused_head/contrib/llvm/include/llvm-c/Object.h projects/diffused_head/contrib/llvm/include/llvm-c/Target.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/IPO.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/Scalar.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APInt.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseMapInfo.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ImmutableMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/IntervalMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PointerUnion.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PostOrderIterator.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SCCIterator.h projects/diffused_head/contrib/llvm/include/llvm/ADT/STLExtras.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Statistic.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringExtras.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Triple.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Twine.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ConstantFolding.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DIBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DebugInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/FindUsedTypes.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopPass.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/RegionPass.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/diffused_head/contrib/llvm/include/llvm/Argument.h projects/diffused_head/contrib/llvm/include/llvm/Attributes.h projects/diffused_head/contrib/llvm/include/llvm/AutoUpgrade.h projects/diffused_head/contrib/llvm/include/llvm/BasicBlock.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/Analysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveStackAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveVariables.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/Passes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/diffused_head/contrib/llvm/include/llvm/Constant.h projects/diffused_head/contrib/llvm/include/llvm/Constants.h projects/diffused_head/contrib/llvm/include/llvm/DerivedTypes.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/diffused_head/contrib/llvm/include/llvm/Function.h projects/diffused_head/contrib/llvm/include/llvm/GlobalAlias.h projects/diffused_head/contrib/llvm/include/llvm/GlobalValue.h projects/diffused_head/contrib/llvm/include/llvm/GlobalVariable.h projects/diffused_head/contrib/llvm/include/llvm/InitializePasses.h projects/diffused_head/contrib/llvm/include/llvm/InlineAsm.h projects/diffused_head/contrib/llvm/include/llvm/InstrTypes.h projects/diffused_head/contrib/llvm/include/llvm/Instruction.def projects/diffused_head/contrib/llvm/include/llvm/Instruction.h projects/diffused_head/contrib/llvm/include/llvm/Instructions.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicInst.h projects/diffused_head/contrib/llvm/include/llvm/Intrinsics.h projects/diffused_head/contrib/llvm/include/llvm/Intrinsics.td projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsXCore.td projects/diffused_head/contrib/llvm/include/llvm/LinkAllPasses.h projects/diffused_head/contrib/llvm/include/llvm/Linker.h projects/diffused_head/contrib/llvm/include/llvm/MC/EDInstInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAssembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCContext.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDirectives.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDwarf.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInst.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCStreamer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCValue.h projects/diffused_head/contrib/llvm/include/llvm/Module.h projects/diffused_head/contrib/llvm/include/llvm/Object/COFF.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachOFormat.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachOObject.h projects/diffused_head/contrib/llvm/include/llvm/Object/ObjectFile.h projects/diffused_head/contrib/llvm/include/llvm/OperandTraits.h projects/diffused_head/contrib/llvm/include/llvm/Operator.h projects/diffused_head/contrib/llvm/include/llvm/PassManagers.h projects/diffused_head/contrib/llvm/include/llvm/Support/BranchProbability.h projects/diffused_head/contrib/llvm/include/llvm/Support/CallSite.h projects/diffused_head/contrib/llvm/include/llvm/Support/CommandLine.h projects/diffused_head/contrib/llvm/include/llvm/Support/ConstantFolder.h projects/diffused_head/contrib/llvm/include/llvm/Support/DataTypes.h.in projects/diffused_head/contrib/llvm/include/llvm/Support/Dwarf.h projects/diffused_head/contrib/llvm/include/llvm/Support/DynamicLibrary.h projects/diffused_head/contrib/llvm/include/llvm/Support/ELF.h projects/diffused_head/contrib/llvm/include/llvm/Support/FileSystem.h projects/diffused_head/contrib/llvm/include/llvm/Support/Format.h projects/diffused_head/contrib/llvm/include/llvm/Support/GetElementPtrTypeIterator.h projects/diffused_head/contrib/llvm/include/llvm/Support/IRBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/InstVisitor.h projects/diffused_head/contrib/llvm/include/llvm/Support/MachO.h projects/diffused_head/contrib/llvm/include/llvm/Support/MemoryBuffer.h projects/diffused_head/contrib/llvm/include/llvm/Support/NoFolder.h projects/diffused_head/contrib/llvm/include/llvm/Support/PathV1.h projects/diffused_head/contrib/llvm/include/llvm/Support/PathV2.h projects/diffused_head/contrib/llvm/include/llvm/Support/Process.h projects/diffused_head/contrib/llvm/include/llvm/Support/SMLoc.h projects/diffused_head/contrib/llvm/include/llvm/Support/SourceMgr.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetFolder.h projects/diffused_head/contrib/llvm/include/llvm/Support/TypeBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Target/Target.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetData.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetFrameLowering.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetIntrinsicInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLowering.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetMachine.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetOptions.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/diffused_head/contrib/llvm/include/llvm/Transforms/IPO.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Scalar.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/AddrModeMatcher.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/FunctionUtils.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h projects/diffused_head/contrib/llvm/include/llvm/Type.h projects/diffused_head/contrib/llvm/include/llvm/User.h projects/diffused_head/contrib/llvm/include/llvm/Value.h projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Analysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DIBuilder.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DebugInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IVUsers.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Lint.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Loads.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PathNumbering.cpp projects/diffused_head/contrib/llvm/lib/Analysis/RegionPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.h projects/diffused_head/contrib/llvm/lib/AsmParser/LLToken.h projects/diffused_head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/diffused_head/contrib/llvm/lib/CodeGen/Analysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ELFCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ELFCodeEmitter.h projects/diffused_head/contrib/llvm/lib/CodeGen/ELFWriter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/diffused_head/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeEdit.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveStackAnalysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocLinearScan.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h projects/diffused_head/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SpillPlacement.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SpillPlacement.h projects/diffused_head/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SplitKit.h projects/diffused_head/contrib/llvm/lib/CodeGen/Splitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/Intercept.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/diffused_head/contrib/llvm/lib/Linker/LinkModules.cpp projects/diffused_head/contrib/llvm/lib/Linker/Linker.cpp projects/diffused_head/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/ELFObjectWriter.h projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAssembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCContext.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDInst.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDToken.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDToken.h projects/diffused_head/contrib/llvm/lib/MC/MCDwarf.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFStreamer.h projects/diffused_head/contrib/llvm/lib/MC/MCExpr.cpp projects/diffused_head/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCLoggingStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCPureStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCWin64EH.cpp projects/diffused_head/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/diffused_head/contrib/llvm/lib/Object/Binary.cpp projects/diffused_head/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/ELFObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObject.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/Object.cpp projects/diffused_head/contrib/llvm/lib/Object/ObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Support/APFloat.cpp projects/diffused_head/contrib/llvm/lib/Support/APInt.cpp projects/diffused_head/contrib/llvm/lib/Support/Atomic.cpp projects/diffused_head/contrib/llvm/lib/Support/BranchProbability.cpp projects/diffused_head/contrib/llvm/lib/Support/CommandLine.cpp projects/diffused_head/contrib/llvm/lib/Support/ConstantRange.cpp projects/diffused_head/contrib/llvm/lib/Support/CrashRecoveryContext.cpp projects/diffused_head/contrib/llvm/lib/Support/Disassembler.cpp projects/diffused_head/contrib/llvm/lib/Support/Dwarf.cpp projects/diffused_head/contrib/llvm/lib/Support/DynamicLibrary.cpp projects/diffused_head/contrib/llvm/lib/Support/FoldingSet.cpp projects/diffused_head/contrib/llvm/lib/Support/Host.cpp projects/diffused_head/contrib/llvm/lib/Support/IncludeFile.cpp projects/diffused_head/contrib/llvm/lib/Support/Memory.cpp projects/diffused_head/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/diffused_head/contrib/llvm/lib/Support/MemoryObject.cpp projects/diffused_head/contrib/llvm/lib/Support/Mutex.cpp projects/diffused_head/contrib/llvm/lib/Support/Path.cpp projects/diffused_head/contrib/llvm/lib/Support/PathV2.cpp projects/diffused_head/contrib/llvm/lib/Support/PrettyStackTrace.cpp projects/diffused_head/contrib/llvm/lib/Support/RWMutex.cpp projects/diffused_head/contrib/llvm/lib/Support/SearchForAddressOfSpecialSymbol.cpp projects/diffused_head/contrib/llvm/lib/Support/StringExtras.cpp projects/diffused_head/contrib/llvm/lib/Support/StringRef.cpp projects/diffused_head/contrib/llvm/lib/Support/TargetRegistry.cpp projects/diffused_head/contrib/llvm/lib/Support/ThreadLocal.cpp projects/diffused_head/contrib/llvm/lib/Support/Threading.cpp projects/diffused_head/contrib/llvm/lib/Support/Triple.cpp projects/diffused_head/contrib/llvm/lib/Support/Twine.cpp projects/diffused_head/contrib/llvm/lib/Support/Unix/Host.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Path.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Memory.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/RWMutex.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Signals.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Windows.h projects/diffused_head/contrib/llvm/lib/Support/raw_ostream.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARM.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARM.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMGlobalMerge.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/AlphaTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Alpha/MCTargetDesc/AlphaMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/TargetInfo/AlphaTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinIntrinsicInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinIntrinsicInfo.h projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/BlackfinTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Blackfin/MCTargetDesc/BlackfinMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Blackfin/TargetInfo/BlackfinTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CBackend/CBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/CBackend/CTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/CBackend/TargetInfo/CBackendTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/TargetInfo/CellSPUTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/CppBackend/TargetInfo/CppBackendTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlaze.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/TargetInfo/MBlazeTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mangler.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Target.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetData.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrVMX.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/diffused_head/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/IPO.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/EdgeProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Attributes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/diffused_head/contrib/llvm/lib/VMCore/BasicBlock.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantFold.h projects/diffused_head/contrib/llvm/lib/VMCore/Constants.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantsContext.h projects/diffused_head/contrib/llvm/lib/VMCore/Core.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DebugLoc.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Function.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Globals.cpp projects/diffused_head/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/diffused_head/contrib/llvm/lib/VMCore/InlineAsm.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instruction.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instructions.cpp projects/diffused_head/contrib/llvm/lib/VMCore/LLVMContextImpl.h projects/diffused_head/contrib/llvm/lib/VMCore/Module.cpp projects/diffused_head/contrib/llvm/lib/VMCore/PassManager.cpp projects/diffused_head/contrib/llvm/lib/VMCore/PassRegistry.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Type.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Value.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Verifier.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/Index.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/APValue.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/UnresolvedSet.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Support/BlkExprDeclBitVector.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGStmtVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DelayedCleanupPool.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Arg.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Option.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Tool.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Types.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Util.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/ASTLocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/CallGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/Entity.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/Handlers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/TranslationUnit.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Designator.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngineBuilders.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/diffused_head/contrib/llvm/tools/clang/lib/AST/APValue.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Mangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGException.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Action.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Job.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Option.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Phases.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/avxintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/float.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/pmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/tgmath.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Index/ASTLocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Index/CallGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Index/Entity.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Index/EntityImpl.h projects/diffused_head/contrib/llvm/tools/clang/lib/Index/GlobalSelector.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/MacroArgs.h projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AggExprVisitor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ARMDecoderEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ARMDecoderEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterInst.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CallingConvEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeEmitterGen.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DisassemblerEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/EDEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FastISelEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/InstrEnumEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/InstrEnumEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/SetTheory.cpp projects/diffused_head/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/SubtargetEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/TableGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerTables.h projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/diffused_head/contrib/netcat/netcat.c projects/diffused_head/contrib/openpam/CREDITS projects/diffused_head/contrib/openpam/HISTORY projects/diffused_head/contrib/openpam/LICENSE projects/diffused_head/contrib/openpam/Makefile.am projects/diffused_head/contrib/openpam/Makefile.in projects/diffused_head/contrib/openpam/README projects/diffused_head/contrib/openpam/RELNOTES projects/diffused_head/contrib/openpam/aclocal.m4 projects/diffused_head/contrib/openpam/bin/Makefile.am projects/diffused_head/contrib/openpam/bin/Makefile.in projects/diffused_head/contrib/openpam/bin/su/Makefile.am projects/diffused_head/contrib/openpam/bin/su/Makefile.in projects/diffused_head/contrib/openpam/bin/su/su.c projects/diffused_head/contrib/openpam/config.h.in projects/diffused_head/contrib/openpam/configure projects/diffused_head/contrib/openpam/configure.ac projects/diffused_head/contrib/openpam/depcomp projects/diffused_head/contrib/openpam/doc/Makefile.in projects/diffused_head/contrib/openpam/doc/man/Makefile.am projects/diffused_head/contrib/openpam/doc/man/Makefile.in projects/diffused_head/contrib/openpam/doc/man/openpam.3 projects/diffused_head/contrib/openpam/doc/man/openpam_borrow_cred.3 projects/diffused_head/contrib/openpam/doc/man/openpam_free_data.3 projects/diffused_head/contrib/openpam/doc/man/openpam_free_envlist.3 projects/diffused_head/contrib/openpam/doc/man/openpam_get_option.3 projects/diffused_head/contrib/openpam/doc/man/openpam_log.3 projects/diffused_head/contrib/openpam/doc/man/openpam_nullconv.3 projects/diffused_head/contrib/openpam/doc/man/openpam_readline.3 projects/diffused_head/contrib/openpam/doc/man/openpam_restore_cred.3 projects/diffused_head/contrib/openpam/doc/man/openpam_set_option.3 projects/diffused_head/contrib/openpam/doc/man/openpam_ttyconv.3 projects/diffused_head/contrib/openpam/doc/man/pam.3 projects/diffused_head/contrib/openpam/doc/man/pam.conf.5 projects/diffused_head/contrib/openpam/doc/man/pam_acct_mgmt.3 projects/diffused_head/contrib/openpam/doc/man/pam_authenticate.3 projects/diffused_head/contrib/openpam/doc/man/pam_chauthtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_close_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_conv.3 projects/diffused_head/contrib/openpam/doc/man/pam_end.3 projects/diffused_head/contrib/openpam/doc/man/pam_error.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_authtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_data.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_item.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_user.3 projects/diffused_head/contrib/openpam/doc/man/pam_getenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_getenvlist.3 projects/diffused_head/contrib/openpam/doc/man/pam_info.3 projects/diffused_head/contrib/openpam/doc/man/pam_open_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_prompt.3 projects/diffused_head/contrib/openpam/doc/man/pam_putenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_set_data.3 projects/diffused_head/contrib/openpam/doc/man/pam_set_item.3 projects/diffused_head/contrib/openpam/doc/man/pam_setcred.3 projects/diffused_head/contrib/openpam/doc/man/pam_setenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_authenticate.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_chauthtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_close_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_open_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_setcred.3 projects/diffused_head/contrib/openpam/doc/man/pam_start.3 projects/diffused_head/contrib/openpam/doc/man/pam_strerror.3 projects/diffused_head/contrib/openpam/doc/man/pam_verror.3 projects/diffused_head/contrib/openpam/doc/man/pam_vinfo.3 projects/diffused_head/contrib/openpam/doc/man/pam_vprompt.3 projects/diffused_head/contrib/openpam/include/Makefile.in projects/diffused_head/contrib/openpam/include/security/Makefile.in projects/diffused_head/contrib/openpam/include/security/openpam.h projects/diffused_head/contrib/openpam/include/security/openpam_version.h projects/diffused_head/contrib/openpam/include/security/pam_appl.h projects/diffused_head/contrib/openpam/include/security/pam_constants.h projects/diffused_head/contrib/openpam/include/security/pam_modules.h projects/diffused_head/contrib/openpam/include/security/pam_types.h projects/diffused_head/contrib/openpam/install-sh projects/diffused_head/contrib/openpam/lib/Makefile.am projects/diffused_head/contrib/openpam/lib/Makefile.in projects/diffused_head/contrib/openpam/lib/openpam_borrow_cred.c projects/diffused_head/contrib/openpam/lib/openpam_configure.c projects/diffused_head/contrib/openpam/lib/openpam_dispatch.c projects/diffused_head/contrib/openpam/lib/openpam_dynamic.c projects/diffused_head/contrib/openpam/lib/openpam_findenv.c projects/diffused_head/contrib/openpam/lib/openpam_free_data.c projects/diffused_head/contrib/openpam/lib/openpam_free_envlist.c projects/diffused_head/contrib/openpam/lib/openpam_get_option.c projects/diffused_head/contrib/openpam/lib/openpam_impl.h projects/diffused_head/contrib/openpam/lib/openpam_load.c projects/diffused_head/contrib/openpam/lib/openpam_log.c projects/diffused_head/contrib/openpam/lib/openpam_nullconv.c projects/diffused_head/contrib/openpam/lib/openpam_readline.c projects/diffused_head/contrib/openpam/lib/openpam_restore_cred.c projects/diffused_head/contrib/openpam/lib/openpam_set_option.c projects/diffused_head/contrib/openpam/lib/openpam_static.c projects/diffused_head/contrib/openpam/lib/openpam_ttyconv.c projects/diffused_head/contrib/openpam/lib/pam_acct_mgmt.c projects/diffused_head/contrib/openpam/lib/pam_authenticate.c projects/diffused_head/contrib/openpam/lib/pam_authenticate_secondary.c projects/diffused_head/contrib/openpam/lib/pam_chauthtok.c projects/diffused_head/contrib/openpam/lib/pam_close_session.c projects/diffused_head/contrib/openpam/lib/pam_end.c projects/diffused_head/contrib/openpam/lib/pam_error.c projects/diffused_head/contrib/openpam/lib/pam_get_authtok.c projects/diffused_head/contrib/openpam/lib/pam_get_data.c projects/diffused_head/contrib/openpam/lib/pam_get_item.c projects/diffused_head/contrib/openpam/lib/pam_get_mapped_authtok.c projects/diffused_head/contrib/openpam/lib/pam_get_mapped_username.c projects/diffused_head/contrib/openpam/lib/pam_get_user.c projects/diffused_head/contrib/openpam/lib/pam_getenv.c projects/diffused_head/contrib/openpam/lib/pam_getenvlist.c projects/diffused_head/contrib/openpam/lib/pam_info.c projects/diffused_head/contrib/openpam/lib/pam_open_session.c projects/diffused_head/contrib/openpam/lib/pam_prompt.c projects/diffused_head/contrib/openpam/lib/pam_putenv.c projects/diffused_head/contrib/openpam/lib/pam_set_data.c projects/diffused_head/contrib/openpam/lib/pam_set_item.c projects/diffused_head/contrib/openpam/lib/pam_set_mapped_authtok.c projects/diffused_head/contrib/openpam/lib/pam_set_mapped_username.c projects/diffused_head/contrib/openpam/lib/pam_setcred.c projects/diffused_head/contrib/openpam/lib/pam_setenv.c projects/diffused_head/contrib/openpam/lib/pam_sm_acct_mgmt.c projects/diffused_head/contrib/openpam/lib/pam_sm_authenticate.c projects/diffused_head/contrib/openpam/lib/pam_sm_authenticate_secondary.c projects/diffused_head/contrib/openpam/lib/pam_sm_chauthtok.c projects/diffused_head/contrib/openpam/lib/pam_sm_close_session.c projects/diffused_head/contrib/openpam/lib/pam_sm_get_mapped_authtok.c projects/diffused_head/contrib/openpam/lib/pam_sm_get_mapped_username.c projects/diffused_head/contrib/openpam/lib/pam_sm_open_session.c projects/diffused_head/contrib/openpam/lib/pam_sm_set_mapped_authtok.c projects/diffused_head/contrib/openpam/lib/pam_sm_set_mapped_username.c projects/diffused_head/contrib/openpam/lib/pam_sm_setcred.c projects/diffused_head/contrib/openpam/lib/pam_start.c projects/diffused_head/contrib/openpam/lib/pam_strerror.c projects/diffused_head/contrib/openpam/lib/pam_verror.c projects/diffused_head/contrib/openpam/lib/pam_vinfo.c projects/diffused_head/contrib/openpam/lib/pam_vprompt.c projects/diffused_head/contrib/openpam/ltmain.sh projects/diffused_head/contrib/openpam/misc/gendoc.pl projects/diffused_head/contrib/openpam/missing projects/diffused_head/contrib/openpam/modules/Makefile.in projects/diffused_head/contrib/openpam/modules/pam_deny/Makefile.in projects/diffused_head/contrib/openpam/modules/pam_deny/pam_deny.c projects/diffused_head/contrib/openpam/modules/pam_permit/Makefile.in projects/diffused_head/contrib/openpam/modules/pam_permit/pam_permit.c projects/diffused_head/contrib/openpam/modules/pam_unix/Makefile.am projects/diffused_head/contrib/openpam/modules/pam_unix/Makefile.in projects/diffused_head/contrib/openpam/modules/pam_unix/pam_unix.c projects/diffused_head/contrib/pf/man/pfsync.4 projects/diffused_head/contrib/pf/pfctl/pfctl.8 projects/diffused_head/contrib/pnpinfo/pnpinfo.c projects/diffused_head/contrib/tcpdump/print-eigrp.c projects/diffused_head/contrib/tcpdump/print-icmp6.c projects/diffused_head/contrib/tcpdump/print-ldp.c projects/diffused_head/contrib/tcpdump/print-lmp.c projects/diffused_head/contrib/tcpdump/print-lspping.c projects/diffused_head/contrib/tcpdump/print-rsvp.c projects/diffused_head/contrib/tcpdump/print-slow.c projects/diffused_head/contrib/telnet/libtelnet/encrypt.c projects/diffused_head/contrib/telnet/libtelnet/sra.c projects/diffused_head/contrib/telnet/telnet/utilities.c projects/diffused_head/contrib/telnet/telnetd/utility.c projects/diffused_head/contrib/tzcode/stdtime/localtime.c projects/diffused_head/contrib/tzcode/zic/zdump.c projects/diffused_head/contrib/tzdata/africa projects/diffused_head/contrib/tzdata/asia projects/diffused_head/contrib/tzdata/australasia projects/diffused_head/contrib/tzdata/backward projects/diffused_head/contrib/tzdata/europe projects/diffused_head/contrib/tzdata/northamerica projects/diffused_head/contrib/tzdata/southamerica projects/diffused_head/contrib/tzdata/zone.tab projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/encrypt.c projects/diffused_head/crypto/openssh/ssh-agent.1 projects/diffused_head/crypto/openssh/ssh-agent.c projects/diffused_head/etc/defaults/periodic.conf projects/diffused_head/etc/defaults/rc.conf projects/diffused_head/etc/devd.conf projects/diffused_head/etc/devd/Makefile projects/diffused_head/etc/devd/usb.conf projects/diffused_head/etc/devfs.conf projects/diffused_head/etc/mac.conf projects/diffused_head/etc/mtree/BSD.include.dist projects/diffused_head/etc/namedb/named.conf projects/diffused_head/etc/network.subr projects/diffused_head/etc/periodic/daily/220.backup-pkgdb projects/diffused_head/etc/periodic/daily/310.accounting projects/diffused_head/etc/periodic/daily/800.scrub-zfs projects/diffused_head/etc/portsnap.conf projects/diffused_head/etc/rc.d/Makefile projects/diffused_head/etc/rc.d/NETWORKING projects/diffused_head/etc/rc.d/auditd projects/diffused_head/etc/rc.d/bgfsck projects/diffused_head/etc/rc.d/dhclient projects/diffused_head/etc/rc.d/hostname projects/diffused_head/etc/rc.d/kld projects/diffused_head/etc/rc.d/nfsd projects/diffused_head/etc/rc.d/pfsync projects/diffused_head/etc/rc.d/routing projects/diffused_head/etc/rc.d/syscons projects/diffused_head/etc/rc.firewall projects/diffused_head/etc/rc.initdiskless projects/diffused_head/etc/rc.resume projects/diffused_head/etc/rc.subr projects/diffused_head/etc/services projects/diffused_head/games/bcd/bcd.c projects/diffused_head/games/caesar/caesar.c projects/diffused_head/games/factor/factor.c projects/diffused_head/games/fortune/datfiles/fortunes projects/diffused_head/games/fortune/datfiles/fortunes-o.real projects/diffused_head/games/fortune/datfiles/murphy projects/diffused_head/games/fortune/fortune/fortune.c projects/diffused_head/games/fortune/unstr/unstr.c projects/diffused_head/games/grdc/grdc.c projects/diffused_head/games/morse/morse.c projects/diffused_head/games/number/number.c projects/diffused_head/gnu/lib/Makefile projects/diffused_head/gnu/lib/libstdc++/config.h projects/diffused_head/gnu/usr.bin/binutils/ld/Makefile.powerpc projects/diffused_head/gnu/usr.bin/binutils/ld/Makefile.powerpc64 projects/diffused_head/gnu/usr.bin/binutils/libbinutils/Makefile projects/diffused_head/gnu/usr.bin/binutils/objcopy/objcopy.1 projects/diffused_head/gnu/usr.bin/binutils/strip/strip.1 projects/diffused_head/gnu/usr.bin/cc/Makefile.ver projects/diffused_head/gnu/usr.bin/cc/cc_tools/freebsd-native.h projects/diffused_head/gnu/usr.bin/cvs/lib/config.h.proto projects/diffused_head/gnu/usr.bin/dialog/Makefile projects/diffused_head/gnu/usr.bin/gdb/kgdb/main.c projects/diffused_head/gnu/usr.bin/gperf/Makefile projects/diffused_head/gnu/usr.bin/gperf/config.h projects/diffused_head/gnu/usr.bin/groff/tmac/mdoc.local projects/diffused_head/include/Makefile projects/diffused_head/include/arpa/nameser_compat.h projects/diffused_head/include/assert.h projects/diffused_head/include/complex.h projects/diffused_head/include/ctype.h projects/diffused_head/include/dlfcn.h projects/diffused_head/include/glob.h projects/diffused_head/include/gssapi/gssapi.h projects/diffused_head/include/ieeefp.h projects/diffused_head/include/locale.h projects/diffused_head/include/netdb.h projects/diffused_head/include/regex.h projects/diffused_head/include/resolv.h projects/diffused_head/include/rpc/svc.h projects/diffused_head/include/rpcsvc/mount.x projects/diffused_head/include/rpcsvc/nfs_prot.x projects/diffused_head/include/rpcsvc/nis.x projects/diffused_head/include/runetype.h projects/diffused_head/include/signal.h projects/diffused_head/include/stdbool.h projects/diffused_head/include/stdio.h projects/diffused_head/include/stdlib.h projects/diffused_head/include/tgmath.h projects/diffused_head/include/unistd.h projects/diffused_head/include/wchar.h projects/diffused_head/include/wctype.h projects/diffused_head/kerberos5/Makefile.inc projects/diffused_head/kerberos5/lib/libhdb/Makefile projects/diffused_head/kerberos5/usr.bin/kadmin/Makefile projects/diffused_head/kerberos5/usr.sbin/ktutil/Makefile projects/diffused_head/lib/Makefile projects/diffused_head/lib/clang/Makefile projects/diffused_head/lib/clang/clang.build.mk projects/diffused_head/lib/clang/include/clang/Basic/Version.inc projects/diffused_head/lib/clang/include/llvm/Config/config.h projects/diffused_head/lib/clang/include/llvm/Config/llvm-config.h projects/diffused_head/lib/clang/libclanganalysis/Makefile projects/diffused_head/lib/clang/libclangarcmigrate/Makefile projects/diffused_head/lib/clang/libclangast/Makefile projects/diffused_head/lib/clang/libclangbasic/Makefile projects/diffused_head/lib/clang/libclangcodegen/Makefile projects/diffused_head/lib/clang/libclangfrontend/Makefile projects/diffused_head/lib/clang/libclangparse/Makefile projects/diffused_head/lib/clang/libclangsema/Makefile projects/diffused_head/lib/clang/libclangserialization/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercheckers/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercore/Makefile projects/diffused_head/lib/clang/libllvmarmcodegen/Makefile projects/diffused_head/lib/clang/libllvmarmdesc/Makefile projects/diffused_head/lib/clang/libllvmarmdisassembler/Makefile projects/diffused_head/lib/clang/libllvmarminfo/Makefile projects/diffused_head/lib/clang/libllvmcodegen/Makefile projects/diffused_head/lib/clang/libllvmipo/Makefile projects/diffused_head/lib/clang/libllvmmc/Makefile projects/diffused_head/lib/clang/libllvmmcparser/Makefile projects/diffused_head/lib/clang/libllvmmipscodegen/Makefile projects/diffused_head/lib/clang/libllvmmipsdesc/Makefile projects/diffused_head/lib/clang/libllvmmipsinfo/Makefile projects/diffused_head/lib/clang/libllvmpowerpccodegen/Makefile projects/diffused_head/lib/clang/libllvmpowerpcdesc/Makefile projects/diffused_head/lib/clang/libllvmpowerpcinfo/Makefile projects/diffused_head/lib/clang/libllvmscalaropts/Makefile projects/diffused_head/lib/clang/libllvmtarget/Makefile projects/diffused_head/lib/clang/libllvmtransformutils/Makefile projects/diffused_head/lib/clang/libllvmx86codegen/Makefile projects/diffused_head/lib/clang/libllvmx86desc/Makefile projects/diffused_head/lib/clang/libllvmx86disassembler/Makefile projects/diffused_head/lib/clang/libllvmx86info/Makefile projects/diffused_head/lib/libarchive/Makefile projects/diffused_head/lib/libarchive/config_freebsd.h projects/diffused_head/lib/libarchive/test/Makefile projects/diffused_head/lib/libc/Makefile projects/diffused_head/lib/libc/Versions.def projects/diffused_head/lib/libc/amd64/Symbol.map projects/diffused_head/lib/libc/amd64/gen/Makefile.inc projects/diffused_head/lib/libc/amd64/gen/setjmp.S projects/diffused_head/lib/libc/amd64/gen/sigsetjmp.S projects/diffused_head/lib/libc/arm/Symbol.map projects/diffused_head/lib/libc/arm/gen/Makefile.inc projects/diffused_head/lib/libc/arm/string/Makefile.inc projects/diffused_head/lib/libc/gdtoa/machdep_ldisQ.c projects/diffused_head/lib/libc/gdtoa/machdep_ldisd.c projects/diffused_head/lib/libc/gdtoa/machdep_ldisx.c projects/diffused_head/lib/libc/gen/Makefile.inc projects/diffused_head/lib/libc/gen/Symbol.map projects/diffused_head/lib/libc/gen/_pthread_stubs.c projects/diffused_head/lib/libc/gen/arc4random.c projects/diffused_head/lib/libc/gen/dlfcn.c projects/diffused_head/lib/libc/gen/dlopen.3 projects/diffused_head/lib/libc/gen/exec.c projects/diffused_head/lib/libc/gen/fnmatch.c projects/diffused_head/lib/libc/gen/getosreldate.c projects/diffused_head/lib/libc/gen/getttyent.c projects/diffused_head/lib/libc/gen/getusershell.c projects/diffused_head/lib/libc/gen/getutxent.3 projects/diffused_head/lib/libc/gen/glob.3 projects/diffused_head/lib/libc/gen/glob.c projects/diffused_head/lib/libc/gen/opendir.c projects/diffused_head/lib/libc/gen/pututxline.c projects/diffused_head/lib/libc/gen/strtofflags.c projects/diffused_head/lib/libc/gen/syslog.c projects/diffused_head/lib/libc/gen/timezone.c projects/diffused_head/lib/libc/i386/Symbol.map projects/diffused_head/lib/libc/i386/gen/Makefile.inc projects/diffused_head/lib/libc/i386/gen/setjmp.S projects/diffused_head/lib/libc/i386/gen/sigsetjmp.S projects/diffused_head/lib/libc/i386/string/Makefile.inc projects/diffused_head/lib/libc/i386/string/strchr.S projects/diffused_head/lib/libc/i386/string/strrchr.S projects/diffused_head/lib/libc/ia64/Symbol.map projects/diffused_head/lib/libc/ia64/gen/Makefile.inc projects/diffused_head/lib/libc/iconv/citrus_module.c projects/diffused_head/lib/libc/include/libc_private.h projects/diffused_head/lib/libc/locale/Makefile.inc projects/diffused_head/lib/libc/locale/Symbol.map projects/diffused_head/lib/libc/locale/ascii.c projects/diffused_head/lib/libc/locale/big5.c projects/diffused_head/lib/libc/locale/btowc.c projects/diffused_head/lib/libc/locale/collate.c projects/diffused_head/lib/libc/locale/collate.h projects/diffused_head/lib/libc/locale/collcmp.c projects/diffused_head/lib/libc/locale/euc.c projects/diffused_head/lib/libc/locale/gb18030.c projects/diffused_head/lib/libc/locale/gb2312.c projects/diffused_head/lib/libc/locale/gbk.c projects/diffused_head/lib/libc/locale/lmessages.c projects/diffused_head/lib/libc/locale/lmessages.h projects/diffused_head/lib/libc/locale/lmonetary.c projects/diffused_head/lib/libc/locale/lmonetary.h projects/diffused_head/lib/libc/locale/lnumeric.c projects/diffused_head/lib/libc/locale/lnumeric.h projects/diffused_head/lib/libc/locale/localeconv.3 projects/diffused_head/lib/libc/locale/localeconv.c projects/diffused_head/lib/libc/locale/mblen.c projects/diffused_head/lib/libc/locale/mblocal.h projects/diffused_head/lib/libc/locale/mbrlen.c projects/diffused_head/lib/libc/locale/mbrtowc.c projects/diffused_head/lib/libc/locale/mbsinit.c projects/diffused_head/lib/libc/locale/mbsnrtowcs.c projects/diffused_head/lib/libc/locale/mbsrtowcs.c projects/diffused_head/lib/libc/locale/mbstowcs.c projects/diffused_head/lib/libc/locale/mbtowc.c projects/diffused_head/lib/libc/locale/mskanji.c projects/diffused_head/lib/libc/locale/nextwctype.c projects/diffused_head/lib/libc/locale/nl_langinfo.c projects/diffused_head/lib/libc/locale/none.c projects/diffused_head/lib/libc/locale/runetype.c projects/diffused_head/lib/libc/locale/setlocale.c projects/diffused_head/lib/libc/locale/setrunelocale.c projects/diffused_head/lib/libc/locale/table.c projects/diffused_head/lib/libc/locale/tolower.c projects/diffused_head/lib/libc/locale/toupper.c projects/diffused_head/lib/libc/locale/utf8.c projects/diffused_head/lib/libc/locale/wcrtomb.c projects/diffused_head/lib/libc/locale/wcsftime.c projects/diffused_head/lib/libc/locale/wcsnrtombs.c projects/diffused_head/lib/libc/locale/wcsrtombs.c projects/diffused_head/lib/libc/locale/wcstod.c projects/diffused_head/lib/libc/locale/wcstof.c projects/diffused_head/lib/libc/locale/wcstoimax.c projects/diffused_head/lib/libc/locale/wcstol.c projects/diffused_head/lib/libc/locale/wcstold.c projects/diffused_head/lib/libc/locale/wcstoll.c projects/diffused_head/lib/libc/locale/wcstombs.c projects/diffused_head/lib/libc/locale/wcstoul.c projects/diffused_head/lib/libc/locale/wcstoull.c projects/diffused_head/lib/libc/locale/wcstoumax.c projects/diffused_head/lib/libc/locale/wctob.c projects/diffused_head/lib/libc/locale/wctomb.c projects/diffused_head/lib/libc/locale/wctrans.c projects/diffused_head/lib/libc/locale/wctype.c projects/diffused_head/lib/libc/locale/wcwidth.c projects/diffused_head/lib/libc/mips/Symbol.map projects/diffused_head/lib/libc/mips/gen/Makefile.inc projects/diffused_head/lib/libc/mips/string/Makefile.inc projects/diffused_head/lib/libc/net/Symbol.map projects/diffused_head/lib/libc/net/getaddrinfo.c projects/diffused_head/lib/libc/net/gethostbynis.c projects/diffused_head/lib/libc/net/getifaddrs.c projects/diffused_head/lib/libc/net/getnetbynis.c projects/diffused_head/lib/libc/net/nsdispatch.c projects/diffused_head/lib/libc/net/sctp_sys_calls.c projects/diffused_head/lib/libc/powerpc/SYS.h projects/diffused_head/lib/libc/powerpc/Symbol.map projects/diffused_head/lib/libc/powerpc/gen/Makefile.inc projects/diffused_head/lib/libc/powerpc/gen/setjmp.S projects/diffused_head/lib/libc/powerpc64/SYS.h projects/diffused_head/lib/libc/powerpc64/Symbol.map projects/diffused_head/lib/libc/powerpc64/gen/Makefile.inc projects/diffused_head/lib/libc/powerpc64/gen/setjmp.S projects/diffused_head/lib/libc/regex/regcomp.c projects/diffused_head/lib/libc/resolv/res_send.c projects/diffused_head/lib/libc/rpc/crypt_client.c projects/diffused_head/lib/libc/sparc64/Symbol.map projects/diffused_head/lib/libc/sparc64/gen/Makefile.inc projects/diffused_head/lib/libc/stdio/Symbol.map projects/diffused_head/lib/libc/stdio/asprintf.c projects/diffused_head/lib/libc/stdio/fgetwc.c projects/diffused_head/lib/libc/stdio/fgetwln.c projects/diffused_head/lib/libc/stdio/fgetws.c projects/diffused_head/lib/libc/stdio/flags.c projects/diffused_head/lib/libc/stdio/fopen.3 projects/diffused_head/lib/libc/stdio/fprintf.c projects/diffused_head/lib/libc/stdio/fputwc.c projects/diffused_head/lib/libc/stdio/fputws.c projects/diffused_head/lib/libc/stdio/fscanf.c projects/diffused_head/lib/libc/stdio/fwprintf.c projects/diffused_head/lib/libc/stdio/fwscanf.c projects/diffused_head/lib/libc/stdio/getwc.c projects/diffused_head/lib/libc/stdio/getwchar.c projects/diffused_head/lib/libc/stdio/local.h projects/diffused_head/lib/libc/stdio/printf.c projects/diffused_head/lib/libc/stdio/printfcommon.h projects/diffused_head/lib/libc/stdio/putwc.c projects/diffused_head/lib/libc/stdio/putwchar.c projects/diffused_head/lib/libc/stdio/scanf.c projects/diffused_head/lib/libc/stdio/snprintf.c projects/diffused_head/lib/libc/stdio/sprintf.c projects/diffused_head/lib/libc/stdio/sscanf.c projects/diffused_head/lib/libc/stdio/swprintf.c projects/diffused_head/lib/libc/stdio/swscanf.c projects/diffused_head/lib/libc/stdio/ungetwc.c projects/diffused_head/lib/libc/stdio/vasprintf.c projects/diffused_head/lib/libc/stdio/vdprintf.c projects/diffused_head/lib/libc/stdio/vfprintf.c projects/diffused_head/lib/libc/stdio/vfscanf.c projects/diffused_head/lib/libc/stdio/vfwprintf.c projects/diffused_head/lib/libc/stdio/vfwscanf.c projects/diffused_head/lib/libc/stdio/vprintf.c projects/diffused_head/lib/libc/stdio/vscanf.c projects/diffused_head/lib/libc/stdio/vsnprintf.c projects/diffused_head/lib/libc/stdio/vsprintf.c projects/diffused_head/lib/libc/stdio/vsscanf.c projects/diffused_head/lib/libc/stdio/vswprintf.c projects/diffused_head/lib/libc/stdio/vswscanf.c projects/diffused_head/lib/libc/stdio/vwprintf.c projects/diffused_head/lib/libc/stdio/vwscanf.c projects/diffused_head/lib/libc/stdio/wprintf.c projects/diffused_head/lib/libc/stdio/wscanf.c projects/diffused_head/lib/libc/stdlib/Makefile.inc projects/diffused_head/lib/libc/stdlib/Symbol.map projects/diffused_head/lib/libc/stdlib/atexit.3 projects/diffused_head/lib/libc/stdlib/atof.c projects/diffused_head/lib/libc/stdlib/atoi.c projects/diffused_head/lib/libc/stdlib/atol.c projects/diffused_head/lib/libc/stdlib/atoll.c projects/diffused_head/lib/libc/stdlib/exit.3 projects/diffused_head/lib/libc/stdlib/getopt_long.3 projects/diffused_head/lib/libc/stdlib/getsubopt.3 projects/diffused_head/lib/libc/stdlib/malloc.c projects/diffused_head/lib/libc/stdlib/realpath.c projects/diffused_head/lib/libc/stdlib/strfmon.c projects/diffused_head/lib/libc/stdlib/strtoimax.c projects/diffused_head/lib/libc/stdlib/strtol.c projects/diffused_head/lib/libc/stdlib/strtoll.c projects/diffused_head/lib/libc/stdlib/strtoul.c projects/diffused_head/lib/libc/stdlib/strtoull.c projects/diffused_head/lib/libc/stdlib/strtoumax.c projects/diffused_head/lib/libc/stdtime/strftime.c projects/diffused_head/lib/libc/stdtime/strptime.c projects/diffused_head/lib/libc/stdtime/timelocal.c projects/diffused_head/lib/libc/stdtime/timelocal.h projects/diffused_head/lib/libc/string/Makefile.inc projects/diffused_head/lib/libc/string/Symbol.map projects/diffused_head/lib/libc/string/strcasecmp.c projects/diffused_head/lib/libc/string/strcasestr.c projects/diffused_head/lib/libc/string/strcoll.c projects/diffused_head/lib/libc/string/strxfrm.c projects/diffused_head/lib/libc/string/wcscoll.c projects/diffused_head/lib/libc/string/wcswidth.c projects/diffused_head/lib/libc/string/wcsxfrm.c projects/diffused_head/lib/libc/sys/Makefile.inc projects/diffused_head/lib/libc/sys/Symbol.map projects/diffused_head/lib/libc/sys/cap_enter.2 projects/diffused_head/lib/libc/sys/cap_new.2 projects/diffused_head/lib/libc/sys/chroot.2 projects/diffused_head/lib/libc/sys/flock.2 projects/diffused_head/lib/libc/sys/getsockopt.2 projects/diffused_head/lib/libc/sys/kqueue.2 projects/diffused_head/lib/libc/sys/ktrace.2 projects/diffused_head/lib/libc/sys/madvise.2 projects/diffused_head/lib/libc/sys/rtprio.2 projects/diffused_head/lib/libc/sys/stat.2 projects/diffused_head/lib/libc/sys/timer_create.2 projects/diffused_head/lib/libc/yp/xdryp.c projects/diffused_head/lib/libc/yp/yplib.c projects/diffused_head/lib/libcam/camlib.c projects/diffused_head/lib/libcompiler_rt/Makefile projects/diffused_head/lib/libdevstat/devstat.c projects/diffused_head/lib/libedit/edit/readline/Makefile projects/diffused_head/lib/libedit/edit/readline/readline.h projects/diffused_head/lib/libedit/histedit.h projects/diffused_head/lib/libelf/elf_update.3 projects/diffused_head/lib/libfetch/common.c projects/diffused_head/lib/libfetch/common.h projects/diffused_head/lib/libfetch/fetch.3 projects/diffused_head/lib/libfetch/fetch.c projects/diffused_head/lib/libfetch/fetch.h projects/diffused_head/lib/libfetch/file.c projects/diffused_head/lib/libfetch/ftp.c projects/diffused_head/lib/libfetch/http.c projects/diffused_head/lib/libgssapi/Symbol.map projects/diffused_head/lib/libgssapi/gss_display_status.c projects/diffused_head/lib/libgssapi/gss_pseudo_random.c projects/diffused_head/lib/libgssapi/gss_release_oid.c projects/diffused_head/lib/libipsec/ipsec_strerror.3 projects/diffused_head/lib/libipsec/policy_token.l projects/diffused_head/lib/libkiconv/xlat16_iconv.c projects/diffused_head/lib/libkvm/kvm_getprocs.3 projects/diffused_head/lib/libkvm/kvm_proc.c projects/diffused_head/lib/libmp/Symbol.map projects/diffused_head/lib/libncp/ncpl_bind.c projects/diffused_head/lib/libopie/config.h projects/diffused_head/lib/libpam/Makefile.inc projects/diffused_head/lib/libpam/libpam/Makefile projects/diffused_head/lib/libpam/modules/Makefile.inc projects/diffused_head/lib/libpam/modules/pam_lastlog/pam_lastlog.c projects/diffused_head/lib/libpam/modules/pam_ssh/pam_ssh.8 projects/diffused_head/lib/libpam/modules/pam_ssh/pam_ssh.c projects/diffused_head/lib/libpam/modules/pam_unix/Makefile projects/diffused_head/lib/libpam/modules/pam_unix/pam_unix.8 projects/diffused_head/lib/libpam/modules/pam_unix/pam_unix.c projects/diffused_head/lib/libpmc/libpmc.c projects/diffused_head/lib/libpmc/pmc.3 projects/diffused_head/lib/libpmc/pmc.core.3 projects/diffused_head/lib/libpmc/pmc.corei7.3 projects/diffused_head/lib/libpmc/pmc.h projects/diffused_head/lib/libpmc/pmc_configure_logfile.3 projects/diffused_head/lib/libradius/Makefile projects/diffused_head/lib/libradius/libradius.3 projects/diffused_head/lib/libradius/radlib.c projects/diffused_head/lib/libradius/radlib.h projects/diffused_head/lib/libradius/radlib_private.h projects/diffused_head/lib/librt/timer.c projects/diffused_head/lib/libsdp/sdp.h projects/diffused_head/lib/libsm/Makefile projects/diffused_head/lib/libstand/Makefile projects/diffused_head/lib/libstand/bootp.c projects/diffused_head/lib/libstand/tftp.c projects/diffused_head/lib/libthr/arch/amd64/include/pthread_md.h projects/diffused_head/lib/libthr/arch/i386/include/pthread_md.h projects/diffused_head/lib/libthr/thread/thr_umtx.c projects/diffused_head/lib/libthread_db/Makefile projects/diffused_head/lib/libufs/block.c projects/diffused_head/lib/libulog/Symbol.map projects/diffused_head/lib/libusb/Makefile projects/diffused_head/lib/libusb/libusb.3 projects/diffused_head/lib/libusb/libusb.h projects/diffused_head/lib/libusb/libusb10.c projects/diffused_head/lib/libusb/libusb10_desc.c projects/diffused_head/lib/libusb/libusb20.3 projects/diffused_head/lib/libusb/libusb20_desc.c projects/diffused_head/lib/libusb/libusb20_desc.h projects/diffused_head/lib/libutil/Makefile projects/diffused_head/lib/libutil/flopen.3 projects/diffused_head/lib/libutil/gr_util.c projects/diffused_head/lib/libutil/kld.3 projects/diffused_head/lib/libutil/libutil.h projects/diffused_head/lib/libutil/pidfile.3 projects/diffused_head/lib/libutil/pidfile.c projects/diffused_head/lib/libutil/pw_util.c projects/diffused_head/lib/libutil/quotafile.c projects/diffused_head/lib/libvgl/bitmap.c projects/diffused_head/lib/libvgl/keyboard.c projects/diffused_head/lib/libvgl/main.c projects/diffused_head/lib/libvgl/mouse.c projects/diffused_head/lib/libvgl/simple.c projects/diffused_head/lib/libvgl/text.c projects/diffused_head/lib/libvgl/vgl.3 projects/diffused_head/lib/libvgl/vgl.h projects/diffused_head/lib/msun/Makefile projects/diffused_head/lib/msun/Symbol.map projects/diffused_head/lib/msun/amd64/Symbol.map projects/diffused_head/lib/msun/amd64/fenv.c projects/diffused_head/lib/msun/amd64/fenv.h projects/diffused_head/lib/msun/arm/Symbol.map projects/diffused_head/lib/msun/arm/fenv.c projects/diffused_head/lib/msun/arm/fenv.h projects/diffused_head/lib/msun/bsdsrc/b_exp.c projects/diffused_head/lib/msun/i387/Symbol.map projects/diffused_head/lib/msun/i387/fenv.c projects/diffused_head/lib/msun/i387/fenv.h projects/diffused_head/lib/msun/ia64/Symbol.map projects/diffused_head/lib/msun/ia64/fenv.c projects/diffused_head/lib/msun/ia64/fenv.h projects/diffused_head/lib/msun/man/complex.3 projects/diffused_head/lib/msun/man/cos.3 projects/diffused_head/lib/msun/man/cosh.3 projects/diffused_head/lib/msun/man/fenv.3 projects/diffused_head/lib/msun/man/ieee.3 projects/diffused_head/lib/msun/man/math.3 projects/diffused_head/lib/msun/man/sin.3 projects/diffused_head/lib/msun/man/sinh.3 projects/diffused_head/lib/msun/man/tan.3 projects/diffused_head/lib/msun/man/tanh.3 projects/diffused_head/lib/msun/mips/Symbol.map projects/diffused_head/lib/msun/mips/fenv.c projects/diffused_head/lib/msun/mips/fenv.h projects/diffused_head/lib/msun/powerpc/Symbol.map projects/diffused_head/lib/msun/powerpc/fenv.c projects/diffused_head/lib/msun/powerpc/fenv.h projects/diffused_head/lib/msun/sparc64/Symbol.map projects/diffused_head/lib/msun/sparc64/fenv.c projects/diffused_head/lib/msun/sparc64/fenv.h projects/diffused_head/lib/msun/src/e_cosh.c projects/diffused_head/lib/msun/src/e_coshf.c projects/diffused_head/lib/msun/src/e_exp.c projects/diffused_head/lib/msun/src/e_expf.c projects/diffused_head/lib/msun/src/e_hypot.c projects/diffused_head/lib/msun/src/e_hypotf.c projects/diffused_head/lib/msun/src/e_hypotl.c projects/diffused_head/lib/msun/src/e_lgamma_r.c projects/diffused_head/lib/msun/src/e_lgammaf_r.c projects/diffused_head/lib/msun/src/e_log10.c projects/diffused_head/lib/msun/src/e_log10f.c projects/diffused_head/lib/msun/src/e_log2.c projects/diffused_head/lib/msun/src/e_log2f.c projects/diffused_head/lib/msun/src/e_pow.c projects/diffused_head/lib/msun/src/e_powf.c projects/diffused_head/lib/msun/src/e_sinh.c projects/diffused_head/lib/msun/src/e_sinhf.c projects/diffused_head/lib/msun/src/k_log.h projects/diffused_head/lib/msun/src/k_logf.h projects/diffused_head/lib/msun/src/math.h projects/diffused_head/lib/msun/src/math_private.h projects/diffused_head/lib/msun/src/s_cexp.c projects/diffused_head/lib/msun/src/s_cexpf.c projects/diffused_head/lib/msun/src/s_expm1.c projects/diffused_head/lib/msun/src/s_expm1f.c projects/diffused_head/lib/msun/src/s_fabsl.c projects/diffused_head/lib/msun/src/s_fma.c projects/diffused_head/lib/msun/src/s_fmaf.c projects/diffused_head/lib/msun/src/s_fmal.c projects/diffused_head/libexec/bootpd/bootpd.c projects/diffused_head/libexec/bootpd/bootpgw/bootpgw.c projects/diffused_head/libexec/bootpd/hash.h projects/diffused_head/libexec/bootpd/tools/bootptest/bootptest.c projects/diffused_head/libexec/bootpd/tools/bootptest/print-bootp.c projects/diffused_head/libexec/comsat/comsat.c projects/diffused_head/libexec/ftpd/ftpcmd.y projects/diffused_head/libexec/ftpd/ftpd.c projects/diffused_head/libexec/ftpd/popen.c projects/diffused_head/libexec/getty/chat.c projects/diffused_head/libexec/getty/init.c projects/diffused_head/libexec/lukemftpd/nbsd_pidfile.h projects/diffused_head/libexec/mail.local/Makefile projects/diffused_head/libexec/mknetid/parse_group.c projects/diffused_head/libexec/pppoed/pppoed.c projects/diffused_head/libexec/rbootd/parseconf.c projects/diffused_head/libexec/rbootd/rbootd.c projects/diffused_head/libexec/rbootd/rmpproto.c projects/diffused_head/libexec/rbootd/utils.c projects/diffused_head/libexec/revnetgroup/parse_netgroup.c projects/diffused_head/libexec/rlogind/rlogind.c projects/diffused_head/libexec/rshd/rshd.8 projects/diffused_head/libexec/rshd/rshd.c projects/diffused_head/libexec/rtld-aout/shlib.c projects/diffused_head/libexec/rtld-elf/Symbol.map projects/diffused_head/libexec/rtld-elf/amd64/reloc.c projects/diffused_head/libexec/rtld-elf/amd64/rtld_start.S projects/diffused_head/libexec/rtld-elf/arm/reloc.c projects/diffused_head/libexec/rtld-elf/i386/reloc.c projects/diffused_head/libexec/rtld-elf/i386/rtld_start.S projects/diffused_head/libexec/rtld-elf/ia64/reloc.c projects/diffused_head/libexec/rtld-elf/mips/reloc.c projects/diffused_head/libexec/rtld-elf/powerpc/reloc.c projects/diffused_head/libexec/rtld-elf/powerpc64/reloc.c projects/diffused_head/libexec/rtld-elf/rtld.c projects/diffused_head/libexec/rtld-elf/rtld.h projects/diffused_head/libexec/rtld-elf/sparc64/reloc.c projects/diffused_head/libexec/smrsh/Makefile projects/diffused_head/libexec/tftpd/tftp-io.c projects/diffused_head/libexec/tftpd/tftp-utils.h projects/diffused_head/libexec/ypxfr/ypxfr_getmap.c projects/diffused_head/libexec/ypxfr/ypxfr_main.c projects/diffused_head/libexec/ypxfr/ypxfr_misc.c projects/diffused_head/release/amd64/make-memstick.sh projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/relnotes/article.sgml projects/diffused_head/release/doc/share/misc/dev.archlist.txt projects/diffused_head/release/generate-release.sh projects/diffused_head/release/i386/make-memstick.sh projects/diffused_head/release/ia64/mkisoimages.sh projects/diffused_head/release/picobsd/build/Makefile.conf projects/diffused_head/release/picobsd/build/picobsd projects/diffused_head/release/picobsd/tinyware/passwd/local_passwd.c projects/diffused_head/release/picobsd/tinyware/passwd/pw_copy.c projects/diffused_head/release/picobsd/tinyware/simple_httpd/README projects/diffused_head/rescue/rescue/Makefile projects/diffused_head/sbin/atacontrol/atacontrol.8 projects/diffused_head/sbin/atacontrol/atacontrol.c projects/diffused_head/sbin/atm/atmconfig/Makefile projects/diffused_head/sbin/atm/atmconfig/atmconfig_device.c projects/diffused_head/sbin/atm/atmconfig/diag.c projects/diffused_head/sbin/atm/atmconfig/main.c projects/diffused_head/sbin/badsect/badsect.c projects/diffused_head/sbin/bsdlabel/bsdlabel.c projects/diffused_head/sbin/camcontrol/Makefile projects/diffused_head/sbin/camcontrol/camcontrol.8 projects/diffused_head/sbin/camcontrol/camcontrol.c projects/diffused_head/sbin/camcontrol/camcontrol.h projects/diffused_head/sbin/camcontrol/modeedit.c projects/diffused_head/sbin/camcontrol/util.c projects/diffused_head/sbin/ccdconfig/ccdconfig.c projects/diffused_head/sbin/devd/devd.cc projects/diffused_head/sbin/devd/devd.conf.5 projects/diffused_head/sbin/devd/devd.hh projects/diffused_head/sbin/devfs/rule.c projects/diffused_head/sbin/dhclient/Makefile projects/diffused_head/sbin/dhclient/clparse.c projects/diffused_head/sbin/dhclient/dhclient-script (contents, props changed) projects/diffused_head/sbin/dhclient/dhclient-script.8 projects/diffused_head/sbin/dhclient/dhclient.8 projects/diffused_head/sbin/dhclient/dhclient.c projects/diffused_head/sbin/dhclient/dhcp-options.5 projects/diffused_head/sbin/dhclient/dhcp.h projects/diffused_head/sbin/dhclient/dhcpd.h projects/diffused_head/sbin/dhclient/errwarn.c projects/diffused_head/sbin/dhclient/options.c projects/diffused_head/sbin/dhclient/parse.c projects/diffused_head/sbin/dhclient/tables.c projects/diffused_head/sbin/dmesg/dmesg.c projects/diffused_head/sbin/dump/dump.h projects/diffused_head/sbin/dump/itime.c projects/diffused_head/sbin/dump/main.c projects/diffused_head/sbin/dumpfs/dumpfs.c projects/diffused_head/sbin/fdisk/fdisk.8 projects/diffused_head/sbin/fdisk/fdisk.c projects/diffused_head/sbin/fdisk_pc98/fdisk.8 projects/diffused_head/sbin/ffsinfo/Makefile projects/diffused_head/sbin/ffsinfo/ffsinfo.c projects/diffused_head/sbin/fsck/fsck.8 projects/diffused_head/sbin/fsck/fsck.c projects/diffused_head/sbin/fsck/preen.c projects/diffused_head/sbin/fsck_ffs/fsck.h projects/diffused_head/sbin/fsck_ffs/fsutil.c projects/diffused_head/sbin/fsck_ffs/gjournal.c projects/diffused_head/sbin/fsck_ffs/pass2.c projects/diffused_head/sbin/fsck_ffs/suj.c projects/diffused_head/sbin/fsck_msdosfs/dir.c projects/diffused_head/sbin/fsdb/Makefile projects/diffused_head/sbin/fsirand/fsirand.c projects/diffused_head/sbin/gbde/Makefile projects/diffused_head/sbin/geom/class/eli/geli.8 projects/diffused_head/sbin/geom/class/eli/geom_eli.c projects/diffused_head/sbin/geom/class/multipath/geom_multipath.c projects/diffused_head/sbin/geom/class/multipath/gmultipath.8 projects/diffused_head/sbin/geom/class/part/geom_part.c projects/diffused_head/sbin/geom/class/part/gpart.8 projects/diffused_head/sbin/geom/class/raid/graid.8 projects/diffused_head/sbin/geom/misc/subr.c projects/diffused_head/sbin/growfs/growfs.c projects/diffused_head/sbin/gvinum/gvinum.c projects/diffused_head/sbin/hastctl/Makefile projects/diffused_head/sbin/hastctl/hastctl.8 projects/diffused_head/sbin/hastctl/hastctl.c projects/diffused_head/sbin/hastd/Makefile projects/diffused_head/sbin/hastd/activemap.c projects/diffused_head/sbin/hastd/control.c projects/diffused_head/sbin/hastd/ebuf.c projects/diffused_head/sbin/hastd/event.c projects/diffused_head/sbin/hastd/hast.conf.5 projects/diffused_head/sbin/hastd/hast.h projects/diffused_head/sbin/hastd/hast_checksum.c projects/diffused_head/sbin/hastd/hast_compression.c projects/diffused_head/sbin/hastd/hast_proto.c projects/diffused_head/sbin/hastd/hastd.c projects/diffused_head/sbin/hastd/hooks.c projects/diffused_head/sbin/hastd/lzf.h projects/diffused_head/sbin/hastd/metadata.c projects/diffused_head/sbin/hastd/nv.c projects/diffused_head/sbin/hastd/parse.y projects/diffused_head/sbin/hastd/pjdlog.h projects/diffused_head/sbin/hastd/primary.c projects/diffused_head/sbin/hastd/proto.c projects/diffused_head/sbin/hastd/proto_common.c projects/diffused_head/sbin/hastd/proto_socketpair.c projects/diffused_head/sbin/hastd/proto_tcp.c projects/diffused_head/sbin/hastd/proto_uds.c projects/diffused_head/sbin/hastd/secondary.c projects/diffused_head/sbin/hastd/subr.c projects/diffused_head/sbin/hastd/subr.h projects/diffused_head/sbin/hastd/token.l projects/diffused_head/sbin/ifconfig/Makefile projects/diffused_head/sbin/ifconfig/af_inet.c projects/diffused_head/sbin/ifconfig/af_inet6.c projects/diffused_head/sbin/ifconfig/ifconfig.8 projects/diffused_head/sbin/ifconfig/ifconfig.c projects/diffused_head/sbin/ifconfig/ifconfig.h projects/diffused_head/sbin/ifconfig/ifieee80211.c projects/diffused_head/sbin/ifconfig/ifvlan.c projects/diffused_head/sbin/init/init.8 projects/diffused_head/sbin/init/init.c projects/diffused_head/sbin/ipf/Makefile.inc projects/diffused_head/sbin/ipfw/ipfw.8 projects/diffused_head/sbin/ipfw/ipfw2.c projects/diffused_head/sbin/ipfw/main.c projects/diffused_head/sbin/ipfw/nat.c projects/diffused_head/sbin/md5/md5.1 projects/diffused_head/sbin/md5/md5.c projects/diffused_head/sbin/mdmfs/mdmfs.c projects/diffused_head/sbin/mount/mount.c projects/diffused_head/sbin/mount/mount_fs.c projects/diffused_head/sbin/mount_cd9660/mount_cd9660.c projects/diffused_head/sbin/mount_nfs/mount_nfs.8 projects/diffused_head/sbin/mount_nfs/mount_nfs.c projects/diffused_head/sbin/mount_nullfs/mount_nullfs.c projects/diffused_head/sbin/mount_udf/mount_udf.c projects/diffused_head/sbin/natd/natd.c projects/diffused_head/sbin/newfs/mkfs.c projects/diffused_head/sbin/newfs/newfs.h projects/diffused_head/sbin/newfs_msdos/newfs_msdos.8 projects/diffused_head/sbin/newfs_msdos/newfs_msdos.c projects/diffused_head/sbin/ping6/ping6.c projects/diffused_head/sbin/rcorder/rcorder.c projects/diffused_head/sbin/reboot/nextboot.8 projects/diffused_head/sbin/reboot/reboot.c projects/diffused_head/sbin/recoverdisk/recoverdisk.1 projects/diffused_head/sbin/recoverdisk/recoverdisk.c projects/diffused_head/sbin/route/route.c projects/diffused_head/sbin/routed/main.c projects/diffused_head/sbin/routed/radix.c projects/diffused_head/sbin/routed/rtquery/Makefile projects/diffused_head/sbin/routed/table.c projects/diffused_head/sbin/shutdown/shutdown.c projects/diffused_head/sbin/swapon/Makefile projects/diffused_head/sbin/swapon/swapon.8 projects/diffused_head/sbin/swapon/swapon.c projects/diffused_head/sbin/sysctl/sysctl.c projects/diffused_head/sbin/tunefs/tunefs.c projects/diffused_head/sbin/umount/umount.c projects/diffused_head/secure/lib/libcrypto/Makefile projects/diffused_head/secure/lib/libcrypto/man/engine.3 projects/diffused_head/secure/usr.bin/openssl/man/ca.1 projects/diffused_head/secure/usr.bin/openssl/man/dgst.1 projects/diffused_head/share/doc/IPv6/IMPLEMENTATION projects/diffused_head/share/doc/psd/03.iosys/iosys projects/diffused_head/share/doc/psd/23.rpc/rpc.prog.ms projects/diffused_head/share/doc/psd/24.xdr/xdr.nts.ms projects/diffused_head/share/doc/psd/27.nfsrpc/nfs.rfc.ms projects/diffused_head/share/examples/diskless/README.TEMPLATING projects/diffused_head/share/examples/drivers/make_device_driver.sh projects/diffused_head/share/examples/ppp/ppp.linkdown.sample projects/diffused_head/share/examples/printing/hpvf projects/diffused_head/share/examples/scsi_target/scsi_cmds.c projects/diffused_head/share/examples/scsi_target/scsi_target.c projects/diffused_head/share/man/man3/Makefile projects/diffused_head/share/man/man3/tgmath.3 projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man4/acpi_wmi.4 projects/diffused_head/share/man/man4/ahci.4 projects/diffused_head/share/man/man4/altq.4 projects/diffused_head/share/man/man4/atrtc.4 projects/diffused_head/share/man/man4/attimer.4 projects/diffused_head/share/man/man4/axe.4 projects/diffused_head/share/man/man4/bce.4 projects/diffused_head/share/man/man4/bge.4 projects/diffused_head/share/man/man4/carp.4 projects/diffused_head/share/man/man4/cpufreq.4 projects/diffused_head/share/man/man4/cxgbe.4 projects/diffused_head/share/man/man4/dc.4 projects/diffused_head/share/man/man4/ddb.4 projects/diffused_head/share/man/man4/em.4 projects/diffused_head/share/man/man4/esp.4 projects/diffused_head/share/man/man4/et.4 projects/diffused_head/share/man/man4/hpet.4 projects/diffused_head/share/man/man4/igb.4 projects/diffused_head/share/man/man4/ip.4 projects/diffused_head/share/man/man4/man4.i386/CPU_ELAN.4 projects/diffused_head/share/man/man4/man4.powerpc/Makefile projects/diffused_head/share/man/man4/man4.powerpc/akbd.4 projects/diffused_head/share/man/man4/mps.4 projects/diffused_head/share/man/man4/mtio.4 projects/diffused_head/share/man/man4/mvs.4 projects/diffused_head/share/man/man4/ng_ksocket.4 projects/diffused_head/share/man/man4/splash.4 projects/diffused_head/share/man/man4/targ.4 projects/diffused_head/share/man/man4/tcp.4 projects/diffused_head/share/man/man4/ti.4 projects/diffused_head/share/man/man4/u3g.4 projects/diffused_head/share/man/man4/uark.4 projects/diffused_head/share/man/man4/ubsa.4 projects/diffused_head/share/man/man4/ubser.4 projects/diffused_head/share/man/man4/uchcom.4 projects/diffused_head/share/man/man4/ucycom.4 projects/diffused_head/share/man/man4/ufoma.4 projects/diffused_head/share/man/man4/uftdi.4 projects/diffused_head/share/man/man4/uipaq.4 projects/diffused_head/share/man/man4/umcs.4 projects/diffused_head/share/man/man4/umct.4 projects/diffused_head/share/man/man4/umodem.4 projects/diffused_head/share/man/man4/uplcom.4 projects/diffused_head/share/man/man4/uslcom.4 projects/diffused_head/share/man/man4/uvisor.4 projects/diffused_head/share/man/man4/uvscom.4 projects/diffused_head/share/man/man4/vlan.4 projects/diffused_head/share/man/man5/ar.5 projects/diffused_head/share/man/man5/make.conf.5 projects/diffused_head/share/man/man5/periodic.conf.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man7/Makefile projects/diffused_head/share/man/man7/build.7 projects/diffused_head/share/man/man7/release.7 projects/diffused_head/share/man/man7/security.7 projects/diffused_head/share/man/man8/yp.8 projects/diffused_head/share/man/man9/Makefile projects/diffused_head/share/man/man9/VOP_VPTOCNP.9 projects/diffused_head/share/man/man9/driver.9 projects/diffused_head/share/man/man9/kobj.9 projects/diffused_head/share/man/man9/kqueue.9 projects/diffused_head/share/man/man9/lock.9 projects/diffused_head/share/man/man9/memguard.9 projects/diffused_head/share/man/man9/mutex.9 projects/diffused_head/share/man/man9/psignal.9 projects/diffused_head/share/man/man9/rmlock.9 projects/diffused_head/share/man/man9/rtalloc.9 projects/diffused_head/share/man/man9/rwlock.9 projects/diffused_head/share/man/man9/sbuf.9 projects/diffused_head/share/man/man9/sleepqueue.9 projects/diffused_head/share/man/man9/stack.9 projects/diffused_head/share/man/man9/sx.9 projects/diffused_head/share/man/man9/taskqueue.9 projects/diffused_head/share/misc/bsd-family-tree projects/diffused_head/share/misc/committers-doc.dot projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/misc/iso3166 projects/diffused_head/share/mk/bsd.crunchgen.mk projects/diffused_head/share/mk/bsd.dep.mk projects/diffused_head/share/mk/bsd.lib.mk projects/diffused_head/share/mk/bsd.libnames.mk projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/share/mk/bsd.port.mk projects/diffused_head/share/mk/bsd.prog.mk projects/diffused_head/share/mk/bsd.sys.mk projects/diffused_head/share/mk/sys.mk projects/diffused_head/share/monetdef/zh_CN.UTF-8.src projects/diffused_head/share/termcap/termcap.src projects/diffused_head/sys/Makefile projects/diffused_head/sys/amd64/amd64/legacy.c projects/diffused_head/sys/amd64/amd64/machdep.c projects/diffused_head/sys/amd64/amd64/mp_machdep.c projects/diffused_head/sys/amd64/amd64/pmap.c projects/diffused_head/sys/amd64/amd64/sys_machdep.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/amd64/uma_machdep.c projects/diffused_head/sys/amd64/conf/DEFAULTS projects/diffused_head/sys/amd64/conf/GENERIC projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/amd64/include/_stdint.h projects/diffused_head/sys/amd64/include/_types.h projects/diffused_head/sys/amd64/include/ieeefp.h projects/diffused_head/sys/amd64/include/proc.h projects/diffused_head/sys/amd64/include/segments.h projects/diffused_head/sys/amd64/include/signal.h projects/diffused_head/sys/amd64/include/trap.h projects/diffused_head/sys/amd64/include/ucontext.h projects/diffused_head/sys/amd64/linux32/linux.h projects/diffused_head/sys/amd64/linux32/linux32_dummy.c projects/diffused_head/sys/amd64/linux32/linux32_proto.h projects/diffused_head/sys/amd64/linux32/linux32_syscall.h projects/diffused_head/sys/amd64/linux32/linux32_syscalls.c projects/diffused_head/sys/amd64/linux32/linux32_sysent.c projects/diffused_head/sys/amd64/linux32/linux32_systrace_args.c projects/diffused_head/sys/amd64/linux32/linux32_sysvec.c projects/diffused_head/sys/amd64/linux32/syscalls.master projects/diffused_head/sys/arm/arm/busdma_machdep.c projects/diffused_head/sys/arm/arm/irq_dispatch.S projects/diffused_head/sys/arm/arm/machdep.c projects/diffused_head/sys/arm/arm/pmap.c projects/diffused_head/sys/arm/arm/sys_machdep.c projects/diffused_head/sys/arm/arm/vm_machdep.c projects/diffused_head/sys/arm/at91/at91.c projects/diffused_head/sys/arm/conf/DB-88F6XXX projects/diffused_head/sys/arm/conf/DEFAULTS projects/diffused_head/sys/arm/conf/GUMSTIX projects/diffused_head/sys/arm/conf/KB920X projects/diffused_head/sys/arm/conf/SHEEVAPLUG projects/diffused_head/sys/arm/econa/econa.c projects/diffused_head/sys/arm/econa/ehci_ebus.c projects/diffused_head/sys/arm/econa/ohci_ec.c projects/diffused_head/sys/arm/include/_types.h projects/diffused_head/sys/arm/include/asmacros.h projects/diffused_head/sys/arm/include/ieeefp.h projects/diffused_head/sys/arm/include/pmap.h projects/diffused_head/sys/arm/include/proc.h projects/diffused_head/sys/arm/include/sysarch.h projects/diffused_head/sys/arm/mv/common.c projects/diffused_head/sys/arm/mv/files.mv projects/diffused_head/sys/arm/mv/mv_machdep.c projects/diffused_head/sys/arm/mv/mv_pci.c projects/diffused_head/sys/arm/xscale/i80321/i80321_pci.c projects/diffused_head/sys/arm/xscale/i80321/iq31244_7seg.c projects/diffused_head/sys/arm/xscale/i80321/iq80321.c projects/diffused_head/sys/arm/xscale/i8134x/i81342.c projects/diffused_head/sys/arm/xscale/i8134x/i81342_pci.c projects/diffused_head/sys/arm/xscale/i8134x/iq81342_7seg.c projects/diffused_head/sys/arm/xscale/ixp425/avila_ata.c projects/diffused_head/sys/arm/xscale/ixp425/cambria_gpio.c projects/diffused_head/sys/arm/xscale/ixp425/if_npe.c projects/diffused_head/sys/arm/xscale/ixp425/ixdp425_pci.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_pci.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425var.h projects/diffused_head/sys/arm/xscale/pxa/pxa_obio.c projects/diffused_head/sys/arm/xscale/pxa/pxa_smi.c projects/diffused_head/sys/arm/xscale/pxa/pxa_space.c projects/diffused_head/sys/boot/arm/at91/boot2/boot2.c projects/diffused_head/sys/boot/arm/at91/libat91/sd-card.c projects/diffused_head/sys/boot/arm/ixp425/boot2/boot2.c projects/diffused_head/sys/boot/common/disk.c projects/diffused_head/sys/boot/common/interp_parse.c projects/diffused_head/sys/boot/common/loader.8 projects/diffused_head/sys/boot/fdt/dts/db88f6281.dts projects/diffused_head/sys/boot/fdt/dts/sheevaplug.dts projects/diffused_head/sys/boot/forth/loader.4th projects/diffused_head/sys/boot/forth/loader.conf projects/diffused_head/sys/boot/forth/menu.4th projects/diffused_head/sys/boot/forth/menu.4th.8 projects/diffused_head/sys/boot/i386/boot0/boot0.S projects/diffused_head/sys/boot/i386/boot2/boot2.c projects/diffused_head/sys/boot/i386/btx/lib/btxv86.h projects/diffused_head/sys/boot/i386/common/cons.c projects/diffused_head/sys/boot/i386/common/drv.c projects/diffused_head/sys/boot/i386/gptboot/gptboot.c projects/diffused_head/sys/boot/i386/libi386/Makefile projects/diffused_head/sys/boot/i386/libi386/bioscd.c projects/diffused_head/sys/boot/i386/libi386/biosdisk.c projects/diffused_head/sys/boot/i386/libi386/biosmem.c projects/diffused_head/sys/boot/i386/libi386/biospci.c projects/diffused_head/sys/boot/i386/libi386/biossmap.c projects/diffused_head/sys/boot/i386/libi386/comconsole.c projects/diffused_head/sys/boot/i386/libi386/libi386.h projects/diffused_head/sys/boot/i386/libi386/time.c projects/diffused_head/sys/boot/i386/libi386/vidconsole.c projects/diffused_head/sys/boot/i386/loader/Makefile projects/diffused_head/sys/boot/i386/zfsboot/zfsboot.c projects/diffused_head/sys/boot/ia64/common/exec.c projects/diffused_head/sys/boot/ofw/Makefile.inc projects/diffused_head/sys/boot/ofw/common/main.c projects/diffused_head/sys/boot/ofw/libofw/ofw_net.c projects/diffused_head/sys/boot/pc98/boot2/boot1.S projects/diffused_head/sys/boot/pc98/boot2/boot2.c projects/diffused_head/sys/boot/pc98/btx/lib/btxv86.h projects/diffused_head/sys/boot/pc98/libpc98/bioscd.c projects/diffused_head/sys/boot/pc98/libpc98/comconsole.c projects/diffused_head/sys/boot/pc98/libpc98/vidconsole.c projects/diffused_head/sys/boot/pc98/loader/main.c projects/diffused_head/sys/boot/powerpc/Makefile.inc projects/diffused_head/sys/boot/powerpc/boot1.chrp/generate-hfs.sh projects/diffused_head/sys/boot/uboot/Makefile.inc projects/diffused_head/sys/boot/userboot/libstand/Makefile projects/diffused_head/sys/boot/zfs/zfsimpl.c projects/diffused_head/sys/cam/ata/ata_da.c projects/diffused_head/sys/cam/ata/ata_pmp.c projects/diffused_head/sys/cam/cam_periph.c projects/diffused_head/sys/cam/cam_periph.h projects/diffused_head/sys/cam/cam_queue.c projects/diffused_head/sys/cam/cam_sim.c projects/diffused_head/sys/cam/cam_sim.h projects/diffused_head/sys/cam/cam_xpt.c projects/diffused_head/sys/cam/scsi/scsi_all.c projects/diffused_head/sys/cam/scsi/scsi_all.h projects/diffused_head/sys/cam/scsi/scsi_cd.c projects/diffused_head/sys/cam/scsi/scsi_ch.c projects/diffused_head/sys/cam/scsi/scsi_ch.h projects/diffused_head/sys/cam/scsi/scsi_da.c projects/diffused_head/sys/cam/scsi/scsi_da.h projects/diffused_head/sys/cam/scsi/scsi_low.c projects/diffused_head/sys/cam/scsi/scsi_sa.c projects/diffused_head/sys/cam/scsi/scsi_ses.c projects/diffused_head/sys/cam/scsi/scsi_sg.c projects/diffused_head/sys/cam/scsi/scsi_targ_bh.c projects/diffused_head/sys/cam/scsi/scsi_target.c projects/diffused_head/sys/cam/scsi/scsi_xpt.c projects/diffused_head/sys/cddl/boot/zfs/zfssubr.c projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.h projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_deleg.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dir.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_replay.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/sysevent/eventdefs.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/intel/dtrace/fasttrap_isa.c projects/diffused_head/sys/cddl/dev/cyclic/cyclic.c projects/diffused_head/sys/cddl/dev/dtrace/dtrace_debug.c projects/diffused_head/sys/cddl/dev/dtrace/i386/dtrace_asm.S projects/diffused_head/sys/cddl/dev/fbt/fbt.c projects/diffused_head/sys/cddl/dev/systrace/systrace.c projects/diffused_head/sys/compat/freebsd32/freebsd32.h projects/diffused_head/sys/compat/freebsd32/freebsd32_misc.c projects/diffused_head/sys/compat/freebsd32/freebsd32_proto.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscall.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscalls.c projects/diffused_head/sys/compat/freebsd32/freebsd32_sysent.c projects/diffused_head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/diffused_head/sys/compat/freebsd32/syscalls.master projects/diffused_head/sys/compat/ia32/ia32_sysvec.c projects/diffused_head/sys/compat/linprocfs/linprocfs.c projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/compat/linux/linux_file.h projects/diffused_head/sys/compat/linux/linux_futex.c projects/diffused_head/sys/compat/linux/linux_ioctl.c projects/diffused_head/sys/compat/linux/linux_mib.c projects/diffused_head/sys/compat/linux/linux_uid16.c projects/diffused_head/sys/compat/ndis/subr_ntoskrnl.c projects/diffused_head/sys/compat/svr4/svr4_fcntl.c projects/diffused_head/sys/compat/svr4/svr4_proto.h projects/diffused_head/sys/compat/svr4/svr4_syscall.h projects/diffused_head/sys/compat/svr4/svr4_syscallnames.c projects/diffused_head/sys/compat/svr4/svr4_sysent.c projects/diffused_head/sys/compat/svr4/syscalls.master projects/diffused_head/sys/compat/x86bios/x86bios.c projects/diffused_head/sys/conf/Makefile.mips projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.arm projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/files.mips projects/diffused_head/sys/conf/files.powerpc projects/diffused_head/sys/conf/files.sparc64 projects/diffused_head/sys/conf/kern.mk projects/diffused_head/sys/conf/kern.post.mk projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/makeLINT.mk projects/diffused_head/sys/conf/newvers.sh projects/diffused_head/sys/conf/options projects/diffused_head/sys/contrib/dev/acpica/acpica_prep.sh projects/diffused_head/sys/contrib/dev/acpica/changes.txt projects/diffused_head/sys/contrib/dev/acpica/common/adfile.c projects/diffused_head/sys/contrib/dev/acpica/common/adisasm.c projects/diffused_head/sys/contrib/dev/acpica/common/adwalk.c projects/diffused_head/sys/contrib/dev/acpica/common/dmextern.c projects/diffused_head/sys/contrib/dev/acpica/common/dmrestag.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtable.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtbdump.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtbinfo.c projects/diffused_head/sys/contrib/dev/acpica/common/getopt.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslanalyze.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslbtypes.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompile.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.l projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.y projects/diffused_head/sys/contrib/dev/acpica/compiler/asldefine.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslerror.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfiles.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfold.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslglobal.h projects/diffused_head/sys/contrib/dev/acpica/compiler/asllength.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asllisting.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslload.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asllookup.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmain.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmap.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmessages.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslopcodes.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asloperands.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslopt.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslpredef.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslresource.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype1.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype1i.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2d.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2e.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2q.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2w.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstartup.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstubs.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asltransform.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asltree.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asltypes.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslutils.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asluuid.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslwalks.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompile.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompiler.h projects/diffused_head/sys/contrib/dev/acpica/compiler/dtexpress.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtfield.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtio.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtparser.l projects/diffused_head/sys/contrib/dev/acpica/compiler/dtparser.y projects/diffused_head/sys/contrib/dev/acpica/compiler/dtsubtable.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dttable.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dttemplate.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dttemplate.h projects/diffused_head/sys/contrib/dev/acpica/compiler/dtutils.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbcmds.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbdisply.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbexec.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbfileio.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbhistry.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbinput.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbmethod.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbnames.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbstats.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbutils.c projects/diffused_head/sys/contrib/dev/acpica/debugger/dbxface.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmbuffer.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmnames.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmobject.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmopcode.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmresrc.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmresrcl.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmresrcs.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmutils.c projects/diffused_head/sys/contrib/dev/acpica/disassembler/dmwalk.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsargs.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dscontrol.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsfield.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsinit.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsmethod.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsmthdat.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsobject.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsopcode.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dsutils.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dswexec.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dswload.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dswload2.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dswscope.c projects/diffused_head/sys/contrib/dev/acpica/dispatcher/dswstate.c projects/diffused_head/sys/contrib/dev/acpica/events/evevent.c projects/diffused_head/sys/contrib/dev/acpica/events/evglock.c projects/diffused_head/sys/contrib/dev/acpica/events/evgpe.c projects/diffused_head/sys/contrib/dev/acpica/events/evgpeblk.c projects/diffused_head/sys/contrib/dev/acpica/events/evgpeinit.c projects/diffused_head/sys/contrib/dev/acpica/events/evgpeutil.c projects/diffused_head/sys/contrib/dev/acpica/events/evmisc.c projects/diffused_head/sys/contrib/dev/acpica/events/evregion.c projects/diffused_head/sys/contrib/dev/acpica/events/evrgnini.c projects/diffused_head/sys/contrib/dev/acpica/events/evsci.c projects/diffused_head/sys/contrib/dev/acpica/events/evxface.c projects/diffused_head/sys/contrib/dev/acpica/events/evxfevnt.c projects/diffused_head/sys/contrib/dev/acpica/events/evxfgpe.c projects/diffused_head/sys/contrib/dev/acpica/events/evxfregn.c projects/diffused_head/sys/contrib/dev/acpica/executer/exconfig.c projects/diffused_head/sys/contrib/dev/acpica/executer/exconvrt.c projects/diffused_head/sys/contrib/dev/acpica/executer/excreate.c projects/diffused_head/sys/contrib/dev/acpica/executer/exdebug.c projects/diffused_head/sys/contrib/dev/acpica/executer/exdump.c projects/diffused_head/sys/contrib/dev/acpica/executer/exfield.c projects/diffused_head/sys/contrib/dev/acpica/executer/exfldio.c projects/diffused_head/sys/contrib/dev/acpica/executer/exmisc.c projects/diffused_head/sys/contrib/dev/acpica/executer/exmutex.c projects/diffused_head/sys/contrib/dev/acpica/executer/exnames.c projects/diffused_head/sys/contrib/dev/acpica/executer/exoparg1.c projects/diffused_head/sys/contrib/dev/acpica/executer/exoparg2.c projects/diffused_head/sys/contrib/dev/acpica/executer/exoparg3.c projects/diffused_head/sys/contrib/dev/acpica/executer/exoparg6.c projects/diffused_head/sys/contrib/dev/acpica/executer/exprep.c projects/diffused_head/sys/contrib/dev/acpica/executer/exregion.c projects/diffused_head/sys/contrib/dev/acpica/executer/exresnte.c projects/diffused_head/sys/contrib/dev/acpica/executer/exresolv.c projects/diffused_head/sys/contrib/dev/acpica/executer/exresop.c projects/diffused_head/sys/contrib/dev/acpica/executer/exstore.c projects/diffused_head/sys/contrib/dev/acpica/executer/exstoren.c projects/diffused_head/sys/contrib/dev/acpica/executer/exstorob.c projects/diffused_head/sys/contrib/dev/acpica/executer/exsystem.c projects/diffused_head/sys/contrib/dev/acpica/executer/exutils.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwacpi.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwgpe.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwpci.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwregs.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwsleep.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwtimer.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwvalid.c projects/diffused_head/sys/contrib/dev/acpica/hardware/hwxface.c projects/diffused_head/sys/contrib/dev/acpica/include/acapps.h projects/diffused_head/sys/contrib/dev/acpica/include/accommon.h projects/diffused_head/sys/contrib/dev/acpica/include/acconfig.h projects/diffused_head/sys/contrib/dev/acpica/include/acdebug.h projects/diffused_head/sys/contrib/dev/acpica/include/acdisasm.h projects/diffused_head/sys/contrib/dev/acpica/include/acdispat.h projects/diffused_head/sys/contrib/dev/acpica/include/acevents.h projects/diffused_head/sys/contrib/dev/acpica/include/acexcep.h projects/diffused_head/sys/contrib/dev/acpica/include/acglobal.h projects/diffused_head/sys/contrib/dev/acpica/include/achware.h projects/diffused_head/sys/contrib/dev/acpica/include/acinterp.h projects/diffused_head/sys/contrib/dev/acpica/include/aclocal.h projects/diffused_head/sys/contrib/dev/acpica/include/acmacros.h projects/diffused_head/sys/contrib/dev/acpica/include/acnames.h projects/diffused_head/sys/contrib/dev/acpica/include/acnamesp.h projects/diffused_head/sys/contrib/dev/acpica/include/acobject.h projects/diffused_head/sys/contrib/dev/acpica/include/acopcode.h projects/diffused_head/sys/contrib/dev/acpica/include/acoutput.h projects/diffused_head/sys/contrib/dev/acpica/include/acparser.h projects/diffused_head/sys/contrib/dev/acpica/include/acpi.h projects/diffused_head/sys/contrib/dev/acpica/include/acpiosxf.h projects/diffused_head/sys/contrib/dev/acpica/include/acpixf.h projects/diffused_head/sys/contrib/dev/acpica/include/acpredef.h projects/diffused_head/sys/contrib/dev/acpica/include/acresrc.h projects/diffused_head/sys/contrib/dev/acpica/include/acrestyp.h projects/diffused_head/sys/contrib/dev/acpica/include/acstruct.h projects/diffused_head/sys/contrib/dev/acpica/include/actables.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl1.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl2.h projects/diffused_head/sys/contrib/dev/acpica/include/actypes.h projects/diffused_head/sys/contrib/dev/acpica/include/acutils.h projects/diffused_head/sys/contrib/dev/acpica/include/amlcode.h projects/diffused_head/sys/contrib/dev/acpica/include/amlresrc.h projects/diffused_head/sys/contrib/dev/acpica/include/platform/acenv.h projects/diffused_head/sys/contrib/dev/acpica/include/platform/acfreebsd.h projects/diffused_head/sys/contrib/dev/acpica/include/platform/acgcc.h projects/diffused_head/sys/contrib/dev/acpica/namespace/nsaccess.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsalloc.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsdump.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsdumpdv.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nseval.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsinit.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsload.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsnames.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsobject.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsparse.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nspredef.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsrepair.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsrepair2.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nssearch.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsutils.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nswalk.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsxfeval.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsxfname.c projects/diffused_head/sys/contrib/dev/acpica/namespace/nsxfobj.c projects/diffused_head/sys/contrib/dev/acpica/parser/psargs.c projects/diffused_head/sys/contrib/dev/acpica/parser/psloop.c projects/diffused_head/sys/contrib/dev/acpica/parser/psopcode.c projects/diffused_head/sys/contrib/dev/acpica/parser/psparse.c projects/diffused_head/sys/contrib/dev/acpica/parser/psscope.c projects/diffused_head/sys/contrib/dev/acpica/parser/pstree.c projects/diffused_head/sys/contrib/dev/acpica/parser/psutils.c projects/diffused_head/sys/contrib/dev/acpica/parser/pswalk.c projects/diffused_head/sys/contrib/dev/acpica/parser/psxface.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsaddr.c projects/diffused_head/sys/contrib/dev/acpica/resources/rscalc.c projects/diffused_head/sys/contrib/dev/acpica/resources/rscreate.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsdump.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsinfo.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsio.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsirq.c projects/diffused_head/sys/contrib/dev/acpica/resources/rslist.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsmemory.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsmisc.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsutils.c projects/diffused_head/sys/contrib/dev/acpica/resources/rsxface.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbfadt.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbfind.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbinstal.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbutils.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbxface.c projects/diffused_head/sys/contrib/dev/acpica/tables/tbxfroot.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utalloc.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utcache.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utcopy.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utdebug.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utdecode.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utdelete.c projects/diffused_head/sys/contrib/dev/acpica/utilities/uteval.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utglobal.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utids.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utinit.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utlock.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utmath.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utmisc.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utmutex.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utobject.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utosi.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utresrc.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utstate.c projects/diffused_head/sys/contrib/dev/acpica/utilities/uttrack.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utxface.c projects/diffused_head/sys/contrib/dev/acpica/utilities/utxferror.c projects/diffused_head/sys/contrib/ipfilter/netinet/ip_compat.h projects/diffused_head/sys/contrib/ipfilter/netinet/ip_proxy.c projects/diffused_head/sys/contrib/ngatm/netnatm/msg/uni_ie.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usb.c projects/diffused_head/sys/contrib/pf/net/if_pflog.c projects/diffused_head/sys/contrib/pf/net/if_pfsync.c projects/diffused_head/sys/contrib/pf/net/pf.c projects/diffused_head/sys/contrib/pf/net/pf_ioctl.c projects/diffused_head/sys/contrib/pf/net/pf_table.c projects/diffused_head/sys/contrib/pf/net/pfvar.h projects/diffused_head/sys/contrib/rdma/ib_addr.h projects/diffused_head/sys/crypto/aesni/aesni_wrap.c projects/diffused_head/sys/ddb/db_command.c projects/diffused_head/sys/ddb/db_input.c projects/diffused_head/sys/ddb/db_ps.c projects/diffused_head/sys/ddb/db_thread.c projects/diffused_head/sys/ddb/ddb.h projects/diffused_head/sys/dev/aac/aac.c projects/diffused_head/sys/dev/aac/aac_cam.c projects/diffused_head/sys/dev/aac/aac_pci.c projects/diffused_head/sys/dev/acpi_support/acpi_wmi.c projects/diffused_head/sys/dev/acpica/Osd/OsdInterrupt.c projects/diffused_head/sys/dev/acpica/Osd/OsdMemory.c projects/diffused_head/sys/dev/acpica/Osd/OsdSchedule.c projects/diffused_head/sys/dev/acpica/Osd/OsdSynch.c projects/diffused_head/sys/dev/acpica/acpi.c projects/diffused_head/sys/dev/acpica/acpi_battery.c projects/diffused_head/sys/dev/acpica/acpi_cmbat.c projects/diffused_head/sys/dev/acpica/acpi_cpu.c projects/diffused_head/sys/dev/acpica/acpi_ec.c projects/diffused_head/sys/dev/acpica/acpi_isab.c projects/diffused_head/sys/dev/acpica/acpi_pci_link.c projects/diffused_head/sys/dev/acpica/acpi_pcib_acpi.c projects/diffused_head/sys/dev/acpica/acpi_perf.c projects/diffused_head/sys/dev/acpica/acpi_powerres.c projects/diffused_head/sys/dev/acpica/acpi_smbat.c projects/diffused_head/sys/dev/acpica/acpi_thermal.c projects/diffused_head/sys/dev/acpica/acpi_video.c projects/diffused_head/sys/dev/acpica/acpivar.h projects/diffused_head/sys/dev/adb/adb_kbd.c projects/diffused_head/sys/dev/ae/if_ae.c projects/diffused_head/sys/dev/age/if_age.c projects/diffused_head/sys/dev/ahci/ahci.c projects/diffused_head/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l projects/diffused_head/sys/dev/aic7xxx/aicasm/aicasm_scan.l projects/diffused_head/sys/dev/alc/if_alc.c projects/diffused_head/sys/dev/ale/if_ale.c projects/diffused_head/sys/dev/amr/amr.c projects/diffused_head/sys/dev/amr/amr_cam.c projects/diffused_head/sys/dev/amr/amr_pci.c projects/diffused_head/sys/dev/an/if_an.c projects/diffused_head/sys/dev/arcmsr/arcmsr.c projects/diffused_head/sys/dev/asr/asr.c projects/diffused_head/sys/dev/ata/ata-all.c projects/diffused_head/sys/dev/ata/ata-disk.c projects/diffused_head/sys/dev/ata/ata-isa.c projects/diffused_head/sys/dev/ata/ata-pci.c projects/diffused_head/sys/dev/ata/ata-pci.h projects/diffused_head/sys/dev/ata/atapi-cam.c projects/diffused_head/sys/dev/ata/chipsets/ata-ati.c projects/diffused_head/sys/dev/ata/chipsets/ata-intel.c projects/diffused_head/sys/dev/ata/chipsets/ata-nvidia.c projects/diffused_head/sys/dev/ata/chipsets/ata-promise.c projects/diffused_head/sys/dev/ata/chipsets/ata-siliconimage.c projects/diffused_head/sys/dev/ath/ah_osdep.c projects/diffused_head/sys/dev/ath/ath_dfs/null/dfs_null.c projects/diffused_head/sys/dev/ath/ath_hal/ah.c projects/diffused_head/sys/dev/ath/ath_hal/ah.h projects/diffused_head/sys/dev/ath/ath_hal/ah_desc.h projects/diffused_head/sys/dev/ath/ath_hal/ah_devid.h projects/diffused_head/sys/dev/ath/ath_hal/ah_internal.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar2133.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416phy.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/diffused_head/sys/dev/ath/ath_rate/amrr/amrr.c projects/diffused_head/sys/dev/ath/ath_rate/onoe/onoe.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.h projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_ath_ahb.c projects/diffused_head/sys/dev/ath/if_ath_debug.c projects/diffused_head/sys/dev/ath/if_ath_debug.h projects/diffused_head/sys/dev/ath/if_ath_keycache.c projects/diffused_head/sys/dev/ath/if_ath_keycache.h projects/diffused_head/sys/dev/ath/if_ath_misc.h projects/diffused_head/sys/dev/ath/if_ath_pci.c projects/diffused_head/sys/dev/ath/if_ath_sysctl.c projects/diffused_head/sys/dev/ath/if_ath_tx.c projects/diffused_head/sys/dev/ath/if_ath_tx.h projects/diffused_head/sys/dev/ath/if_ath_tx_ht.c projects/diffused_head/sys/dev/ath/if_ath_tx_ht.h projects/diffused_head/sys/dev/ath/if_athioctl.h projects/diffused_head/sys/dev/ath/if_athrate.h projects/diffused_head/sys/dev/ath/if_athvar.h projects/diffused_head/sys/dev/atkbdc/psm.c projects/diffused_head/sys/dev/bce/if_bce.c projects/diffused_head/sys/dev/bce/if_bcereg.h projects/diffused_head/sys/dev/bfe/if_bfe.c projects/diffused_head/sys/dev/bge/if_bge.c projects/diffused_head/sys/dev/bge/if_bgereg.h projects/diffused_head/sys/dev/bktr/bktr_os.c projects/diffused_head/sys/dev/bktr/bktr_reg.h projects/diffused_head/sys/dev/bm/if_bm.c projects/diffused_head/sys/dev/bm/if_bmreg.h projects/diffused_head/sys/dev/bm/if_bmvar.h projects/diffused_head/sys/dev/bwi/bwiphy.c projects/diffused_head/sys/dev/bwi/if_bwi.c projects/diffused_head/sys/dev/bwn/if_bwn.c projects/diffused_head/sys/dev/bwn/if_bwnvar.h projects/diffused_head/sys/dev/bxe/bxe_link.c projects/diffused_head/sys/dev/bxe/bxe_reg.h projects/diffused_head/sys/dev/bxe/if_bxe.c projects/diffused_head/sys/dev/cardbus/cardbus.c projects/diffused_head/sys/dev/cas/if_cas.c projects/diffused_head/sys/dev/ce/if_ce.c projects/diffused_head/sys/dev/cfe/cfe_console.c projects/diffused_head/sys/dev/ciss/ciss.c projects/diffused_head/sys/dev/cm/smc90cx6.c projects/diffused_head/sys/dev/cp/if_cp.c projects/diffused_head/sys/dev/cpuctl/cpuctl.c projects/diffused_head/sys/dev/cs/if_cs.c projects/diffused_head/sys/dev/cxgb/common/cxgb_aq100x.c projects/diffused_head/sys/dev/cxgb/cxgb_main.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tom_sysctl.c projects/diffused_head/sys/dev/cxgbe/adapter.h projects/diffused_head/sys/dev/cxgbe/common/common.h projects/diffused_head/sys/dev/cxgbe/common/t4_hw.c projects/diffused_head/sys/dev/cxgbe/common/t4_hw.h projects/diffused_head/sys/dev/cxgbe/offload.h projects/diffused_head/sys/dev/cxgbe/osdep.h projects/diffused_head/sys/dev/cxgbe/t4_ioctl.h projects/diffused_head/sys/dev/cxgbe/t4_l2t.c projects/diffused_head/sys/dev/cxgbe/t4_l2t.h projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/cxgbe/t4_sge.c projects/diffused_head/sys/dev/dc/dcphy.c projects/diffused_head/sys/dev/dc/if_dc.c projects/diffused_head/sys/dev/dc/if_dcreg.h projects/diffused_head/sys/dev/dc/pnphy.c projects/diffused_head/sys/dev/dcons/dcons_os.c projects/diffused_head/sys/dev/de/if_de.c projects/diffused_head/sys/dev/drm/i915_drv.h projects/diffused_head/sys/dev/drm/mga_drv.h projects/diffused_head/sys/dev/drm/radeon_state.c projects/diffused_head/sys/dev/e1000/e1000_80003es2lan.c projects/diffused_head/sys/dev/e1000/e1000_80003es2lan.h projects/diffused_head/sys/dev/e1000/e1000_82540.c projects/diffused_head/sys/dev/e1000/e1000_82541.c projects/diffused_head/sys/dev/e1000/e1000_82543.c projects/diffused_head/sys/dev/e1000/e1000_82571.c projects/diffused_head/sys/dev/e1000/e1000_82575.c projects/diffused_head/sys/dev/e1000/e1000_82575.h projects/diffused_head/sys/dev/e1000/e1000_api.c projects/diffused_head/sys/dev/e1000/e1000_api.h projects/diffused_head/sys/dev/e1000/e1000_defines.h projects/diffused_head/sys/dev/e1000/e1000_hw.h projects/diffused_head/sys/dev/e1000/e1000_ich8lan.c projects/diffused_head/sys/dev/e1000/e1000_ich8lan.h projects/diffused_head/sys/dev/e1000/e1000_mac.c projects/diffused_head/sys/dev/e1000/e1000_nvm.c projects/diffused_head/sys/dev/e1000/e1000_nvm.h projects/diffused_head/sys/dev/e1000/e1000_osdep.h projects/diffused_head/sys/dev/e1000/e1000_phy.c projects/diffused_head/sys/dev/e1000/e1000_phy.h projects/diffused_head/sys/dev/e1000/e1000_regs.h projects/diffused_head/sys/dev/e1000/e1000_vf.c projects/diffused_head/sys/dev/e1000/if_em.c projects/diffused_head/sys/dev/e1000/if_em.h projects/diffused_head/sys/dev/e1000/if_igb.c projects/diffused_head/sys/dev/e1000/if_igb.h projects/diffused_head/sys/dev/e1000/if_lem.c projects/diffused_head/sys/dev/e1000/if_lem.h projects/diffused_head/sys/dev/ed/if_ed.c projects/diffused_head/sys/dev/eisa/eisaconf.c projects/diffused_head/sys/dev/ep/if_ep.c projects/diffused_head/sys/dev/esp/esp_sbus.c projects/diffused_head/sys/dev/esp/ncr53c9x.c projects/diffused_head/sys/dev/esp/ncr53c9xreg.h projects/diffused_head/sys/dev/esp/ncr53c9xvar.h projects/diffused_head/sys/dev/et/if_et.c projects/diffused_head/sys/dev/et/if_etreg.h projects/diffused_head/sys/dev/et/if_etvar.h projects/diffused_head/sys/dev/ex/if_ex.c projects/diffused_head/sys/dev/fb/fb.c projects/diffused_head/sys/dev/fb/vesa.c projects/diffused_head/sys/dev/fdc/fdc.c projects/diffused_head/sys/dev/fdt/fdt_common.c projects/diffused_head/sys/dev/fdt/fdt_pci.c projects/diffused_head/sys/dev/fdt/fdt_powerpc.c projects/diffused_head/sys/dev/fdt/fdtbus.c projects/diffused_head/sys/dev/fdt/simplebus.c projects/diffused_head/sys/dev/firewire/firewire.c projects/diffused_head/sys/dev/firewire/fwmem.c projects/diffused_head/sys/dev/firewire/fwohci_pci.c projects/diffused_head/sys/dev/firewire/if_fwe.c projects/diffused_head/sys/dev/firewire/if_fwip.c projects/diffused_head/sys/dev/firewire/sbp.c projects/diffused_head/sys/dev/firewire/sbp_targ.c projects/diffused_head/sys/dev/flash/mx25l.c projects/diffused_head/sys/dev/fxp/if_fxp.c projects/diffused_head/sys/dev/gem/if_gem_pci.c projects/diffused_head/sys/dev/gem/if_gem_sbus.c projects/diffused_head/sys/dev/gpio/gpiobus.c projects/diffused_head/sys/dev/gpio/gpioc.c projects/diffused_head/sys/dev/gpio/gpioiic.c projects/diffused_head/sys/dev/hifn/hifn7751.c projects/diffused_head/sys/dev/hme/if_hme_pci.c projects/diffused_head/sys/dev/hme/if_hme_sbus.c projects/diffused_head/sys/dev/hptiop/hptiop.c projects/diffused_head/sys/dev/hptmv/entry.c projects/diffused_head/sys/dev/hptrr/hptrr_osm_bsd.c projects/diffused_head/sys/dev/hwpmc/hwpmc_amd.c projects/diffused_head/sys/dev/hwpmc/hwpmc_core.c projects/diffused_head/sys/dev/hwpmc/hwpmc_logging.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mips24k.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mips24k.h projects/diffused_head/sys/dev/hwpmc/hwpmc_mod.c projects/diffused_head/sys/dev/hwpmc/hwpmc_powerpc.c projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.c projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.h projects/diffused_head/sys/dev/hwpmc/pmc_events.h projects/diffused_head/sys/dev/ichsmb/ichsmb_pci.c projects/diffused_head/sys/dev/ichwd/ichwd.c projects/diffused_head/sys/dev/ichwd/ichwd.h projects/diffused_head/sys/dev/ida/ida_pci.c projects/diffused_head/sys/dev/ie/if_ie.c projects/diffused_head/sys/dev/if_ndis/if_ndis.c projects/diffused_head/sys/dev/if_ndis/if_ndis_pccard.c projects/diffused_head/sys/dev/if_ndis/if_ndis_usb.c projects/diffused_head/sys/dev/iicbus/ad7417.c projects/diffused_head/sys/dev/iicbus/iic.c projects/diffused_head/sys/dev/iicbus/iicbb.c projects/diffused_head/sys/dev/iicbus/iicbus.c projects/diffused_head/sys/dev/iicbus/iicbus.h projects/diffused_head/sys/dev/iicbus/iiconf.c projects/diffused_head/sys/dev/iicbus/iicsmb.c projects/diffused_head/sys/dev/iicbus/max6690.c projects/diffused_head/sys/dev/iir/iir.c projects/diffused_head/sys/dev/ipmi/ipmi.c projects/diffused_head/sys/dev/ipw/if_ipw.c projects/diffused_head/sys/dev/iscsi/initiator/isc_subr.c projects/diffused_head/sys/dev/iscsi/initiator/iscsi.c projects/diffused_head/sys/dev/iscsi/initiator/iscsi_subr.c projects/diffused_head/sys/dev/iscsi/initiator/iscsivar.h projects/diffused_head/sys/dev/isp/DriverManual.txt projects/diffused_head/sys/dev/isp/isp.c projects/diffused_head/sys/dev/isp/isp_freebsd.c projects/diffused_head/sys/dev/isp/isp_freebsd.h projects/diffused_head/sys/dev/isp/isp_pci.c projects/diffused_head/sys/dev/iwi/if_iwi.c projects/diffused_head/sys/dev/iwn/if_iwn.c projects/diffused_head/sys/dev/iwn/if_iwnreg.h projects/diffused_head/sys/dev/ixgb/if_ixgb.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe_osdep.h projects/diffused_head/sys/dev/ixgbe/ixv.c projects/diffused_head/sys/dev/kbd/kbd.c projects/diffused_head/sys/dev/ksyms/ksyms.c projects/diffused_head/sys/dev/lge/if_lge.c projects/diffused_head/sys/dev/lge/if_lgereg.h projects/diffused_head/sys/dev/lmc/if_lmc.c projects/diffused_head/sys/dev/malo/if_malo.c projects/diffused_head/sys/dev/malo/if_malo_pci.c projects/diffused_head/sys/dev/mca/mca_bus.c projects/diffused_head/sys/dev/md/md.c projects/diffused_head/sys/dev/mfi/mfi.c projects/diffused_head/sys/dev/mfi/mfi_cam.c projects/diffused_head/sys/dev/mfi/mfi_debug.c projects/diffused_head/sys/dev/mfi/mfi_disk.c projects/diffused_head/sys/dev/mfi/mfi_pci.c projects/diffused_head/sys/dev/mfi/mfivar.h projects/diffused_head/sys/dev/mii/acphy.c projects/diffused_head/sys/dev/mii/amphy.c projects/diffused_head/sys/dev/mii/atphy.c projects/diffused_head/sys/dev/mii/axphy.c projects/diffused_head/sys/dev/mii/bmtphy.c projects/diffused_head/sys/dev/mii/brgphy.c projects/diffused_head/sys/dev/mii/ciphy.c projects/diffused_head/sys/dev/mii/e1000phy.c projects/diffused_head/sys/dev/mii/gentbi.c projects/diffused_head/sys/dev/mii/icsphy.c projects/diffused_head/sys/dev/mii/ip1000phy.c projects/diffused_head/sys/dev/mii/jmphy.c projects/diffused_head/sys/dev/mii/lxtphy.c projects/diffused_head/sys/dev/mii/mii.c projects/diffused_head/sys/dev/mii/miidevs projects/diffused_head/sys/dev/mii/miivar.h projects/diffused_head/sys/dev/mii/mlphy.c projects/diffused_head/sys/dev/mii/nsgphy.c projects/diffused_head/sys/dev/mii/nsphy.c projects/diffused_head/sys/dev/mii/nsphyter.c projects/diffused_head/sys/dev/mii/pnaphy.c projects/diffused_head/sys/dev/mii/qsphy.c projects/diffused_head/sys/dev/mii/rdcphy.c projects/diffused_head/sys/dev/mii/rgephy.c projects/diffused_head/sys/dev/mii/rlphy.c projects/diffused_head/sys/dev/mii/rlswitch.c projects/diffused_head/sys/dev/mii/smcphy.c projects/diffused_head/sys/dev/mii/tdkphy.c projects/diffused_head/sys/dev/mii/tlphy.c projects/diffused_head/sys/dev/mii/truephy.c projects/diffused_head/sys/dev/mii/ukphy.c projects/diffused_head/sys/dev/mii/xmphy.c projects/diffused_head/sys/dev/mlx/mlx_pci.c projects/diffused_head/sys/dev/mmc/mmc.c projects/diffused_head/sys/dev/mps/mps_pci.c projects/diffused_head/sys/dev/mps/mps_sas.c projects/diffused_head/sys/dev/mpt/mpt.c projects/diffused_head/sys/dev/mpt/mpt_cam.c projects/diffused_head/sys/dev/msk/if_msk.c projects/diffused_head/sys/dev/msk/if_mskreg.h projects/diffused_head/sys/dev/mvs/mvs.c projects/diffused_head/sys/dev/mvs/mvs_pci.c projects/diffused_head/sys/dev/mvs/mvs_soc.c projects/diffused_head/sys/dev/mwl/if_mwl.c projects/diffused_head/sys/dev/mwl/mwlhal.c projects/diffused_head/sys/dev/mxge/if_mxge.c projects/diffused_head/sys/dev/my/if_my.c projects/diffused_head/sys/dev/nfe/if_nfe.c projects/diffused_head/sys/dev/nge/if_nge.c projects/diffused_head/sys/dev/nge/if_ngereg.h projects/diffused_head/sys/dev/nmdm/nmdm.c projects/diffused_head/sys/dev/null/null.c projects/diffused_head/sys/dev/nve/if_nve.c projects/diffused_head/sys/dev/ofw/ofw_console.c projects/diffused_head/sys/dev/ofw/ofw_fdt.c projects/diffused_head/sys/dev/ofw/ofw_iicbus.c projects/diffused_head/sys/dev/ofw/openfirm.c projects/diffused_head/sys/dev/pccard/pccard.c projects/diffused_head/sys/dev/pccard/pccardvar.h projects/diffused_head/sys/dev/pccbb/pccbb.c projects/diffused_head/sys/dev/pccbb/pccbb_isa.c projects/diffused_head/sys/dev/pccbb/pccbb_pci.c projects/diffused_head/sys/dev/pci/eisa_pci.c projects/diffused_head/sys/dev/pci/isa_pci.c projects/diffused_head/sys/dev/pci/pci_pci.c projects/diffused_head/sys/dev/pci/pcireg.h projects/diffused_head/sys/dev/pcn/if_pcn.c projects/diffused_head/sys/dev/ppbus/lpbb.c projects/diffused_head/sys/dev/ppbus/lpt.c projects/diffused_head/sys/dev/ppbus/ppb_base.c projects/diffused_head/sys/dev/ppbus/ppb_msq.c projects/diffused_head/sys/dev/ppbus/ppbconf.c projects/diffused_head/sys/dev/ppbus/vpo.c projects/diffused_head/sys/dev/ppc/ppc.c projects/diffused_head/sys/dev/pst/pst-pci.c projects/diffused_head/sys/dev/puc/puc.c projects/diffused_head/sys/dev/puc/puc_pccard.c projects/diffused_head/sys/dev/puc/puc_pci.c projects/diffused_head/sys/dev/puc/pucdata.c projects/diffused_head/sys/dev/quicc/quicc_bfe_fdt.c projects/diffused_head/sys/dev/quicc/quicc_core.c projects/diffused_head/sys/dev/ral/rt2560.c projects/diffused_head/sys/dev/ral/rt2661.c projects/diffused_head/sys/dev/random/probe.c projects/diffused_head/sys/dev/re/if_re.c projects/diffused_head/sys/dev/rndtest/rndtest.c projects/diffused_head/sys/dev/rt/if_rt.c projects/diffused_head/sys/dev/safe/safe.c projects/diffused_head/sys/dev/scc/scc_bfe_ebus.c projects/diffused_head/sys/dev/scc/scc_bfe_macio.c projects/diffused_head/sys/dev/scc/scc_bfe_quicc.c projects/diffused_head/sys/dev/scc/scc_bfe_sbus.c projects/diffused_head/sys/dev/scc/scc_core.c projects/diffused_head/sys/dev/sdhci/sdhci.c projects/diffused_head/sys/dev/sec/sec.c projects/diffused_head/sys/dev/sf/if_sf.c projects/diffused_head/sys/dev/sge/if_sge.c projects/diffused_head/sys/dev/siba/siba.c projects/diffused_head/sys/dev/siba/siba_bwn.c projects/diffused_head/sys/dev/siba/siba_cc.c projects/diffused_head/sys/dev/siba/siba_core.c projects/diffused_head/sys/dev/siba/siba_pcib.c projects/diffused_head/sys/dev/siis/siis.c projects/diffused_head/sys/dev/sio/sio.c projects/diffused_head/sys/dev/sio/sio_pci.c projects/diffused_head/sys/dev/sis/if_sis.c projects/diffused_head/sys/dev/sis/if_sisreg.h projects/diffused_head/sys/dev/sk/if_sk.c projects/diffused_head/sys/dev/smbus/smbus.c projects/diffused_head/sys/dev/smc/if_smc.c projects/diffused_head/sys/dev/sn/if_sn.c projects/diffused_head/sys/dev/snc/dp83932.c projects/diffused_head/sys/dev/sound/isa/gusc.c projects/diffused_head/sys/dev/sound/isa/sbc.c projects/diffused_head/sys/dev/sound/midi/midi.c projects/diffused_head/sys/dev/sound/pci/csa.c projects/diffused_head/sys/dev/sound/pci/emu10k1.c projects/diffused_head/sys/dev/sound/pci/emu10kx-midi.c projects/diffused_head/sys/dev/sound/pci/emu10kx-pcm.c projects/diffused_head/sys/dev/sound/pci/emu10kx.c projects/diffused_head/sys/dev/sound/pci/emu10kx.h projects/diffused_head/sys/dev/sound/pci/envy24.c projects/diffused_head/sys/dev/sound/pci/envy24ht.c projects/diffused_head/sys/dev/sound/pci/fm801.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.c projects/diffused_head/sys/dev/sound/pci/maestro.c projects/diffused_head/sys/dev/sound/pci/spicds.c projects/diffused_head/sys/dev/sound/pcm/ac97.c projects/diffused_head/sys/dev/sound/pcm/feeder.c projects/diffused_head/sys/dev/sound/pcm/mixer.c projects/diffused_head/sys/dev/sound/usb/uaudio.c projects/diffused_head/sys/dev/sound/usb/uaudio.h projects/diffused_head/sys/dev/speaker/spkr.c projects/diffused_head/sys/dev/spibus/spibus.c projects/diffused_head/sys/dev/spibus/spibusvar.h projects/diffused_head/sys/dev/ste/if_ste.c projects/diffused_head/sys/dev/ste/if_stereg.h projects/diffused_head/sys/dev/stge/if_stge.c projects/diffused_head/sys/dev/stge/if_stgereg.h projects/diffused_head/sys/dev/sym/sym_hipd.c projects/diffused_head/sys/dev/syscons/scterm-teken.c projects/diffused_head/sys/dev/syscons/syscons.c projects/diffused_head/sys/dev/syscons/syscons.h projects/diffused_head/sys/dev/tdfx/tdfx_pci.c projects/diffused_head/sys/dev/ti/if_ti.c projects/diffused_head/sys/dev/ti/if_tireg.h projects/diffused_head/sys/dev/tl/if_tl.c projects/diffused_head/sys/dev/tl/if_tlreg.h projects/diffused_head/sys/dev/tsec/if_tsec.c projects/diffused_head/sys/dev/tsec/if_tsec_fdt.c projects/diffused_head/sys/dev/twa/tw_osl.h projects/diffused_head/sys/dev/twa/tw_osl_freebsd.c projects/diffused_head/sys/dev/twe/twe_freebsd.c projects/diffused_head/sys/dev/tws/tws.c projects/diffused_head/sys/dev/tws/tws.h projects/diffused_head/sys/dev/tws/tws_services.c projects/diffused_head/sys/dev/tws/tws_services.h projects/diffused_head/sys/dev/uart/uart_bus_fdt.c projects/diffused_head/sys/dev/uart/uart_bus_pci.c projects/diffused_head/sys/dev/uart/uart_core.c projects/diffused_head/sys/dev/uart/uart_cpu_sparc64.c projects/diffused_head/sys/dev/uart/uart_dev_ns8250.c projects/diffused_head/sys/dev/uart/uart_subr.c projects/diffused_head/sys/dev/uart/uart_tty.c projects/diffused_head/sys/dev/ubsec/ubsec.c projects/diffused_head/sys/dev/usb/controller/at91dci.c projects/diffused_head/sys/dev/usb/controller/at91dci.h projects/diffused_head/sys/dev/usb/controller/at91dci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/atmegadci.c projects/diffused_head/sys/dev/usb/controller/atmegadci.h projects/diffused_head/sys/dev/usb/controller/atmegadci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/avr32dci.c projects/diffused_head/sys/dev/usb/controller/avr32dci.h projects/diffused_head/sys/dev/usb/controller/ehci.c projects/diffused_head/sys/dev/usb/controller/ehci.h projects/diffused_head/sys/dev/usb/controller/ehci_ixp4xx.c projects/diffused_head/sys/dev/usb/controller/ehci_mv.c projects/diffused_head/sys/dev/usb/controller/ehci_pci.c projects/diffused_head/sys/dev/usb/controller/musb_otg.c projects/diffused_head/sys/dev/usb/controller/musb_otg.h projects/diffused_head/sys/dev/usb/controller/musb_otg_atmelarm.c projects/diffused_head/sys/dev/usb/controller/ohci.c projects/diffused_head/sys/dev/usb/controller/ohci.h projects/diffused_head/sys/dev/usb/controller/ohci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/ohci_pci.c projects/diffused_head/sys/dev/usb/controller/ohci_s3c24x0.c projects/diffused_head/sys/dev/usb/controller/uhci.c projects/diffused_head/sys/dev/usb/controller/uhci.h projects/diffused_head/sys/dev/usb/controller/uhci_pci.c projects/diffused_head/sys/dev/usb/controller/usb_controller.c projects/diffused_head/sys/dev/usb/controller/uss820dci.c projects/diffused_head/sys/dev/usb/controller/uss820dci.h projects/diffused_head/sys/dev/usb/controller/uss820dci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/xhci.c projects/diffused_head/sys/dev/usb/controller/xhci.h projects/diffused_head/sys/dev/usb/controller/xhci_pci.c projects/diffused_head/sys/dev/usb/controller/xhcireg.h projects/diffused_head/sys/dev/usb/input/atp.c projects/diffused_head/sys/dev/usb/input/uep.c projects/diffused_head/sys/dev/usb/input/uhid.c projects/diffused_head/sys/dev/usb/input/ukbd.c projects/diffused_head/sys/dev/usb/input/ums.c projects/diffused_head/sys/dev/usb/misc/udbp.c projects/diffused_head/sys/dev/usb/net/if_aue.c projects/diffused_head/sys/dev/usb/net/if_axe.c projects/diffused_head/sys/dev/usb/net/if_axereg.h projects/diffused_head/sys/dev/usb/net/if_cdce.c projects/diffused_head/sys/dev/usb/net/if_cue.c projects/diffused_head/sys/dev/usb/net/if_ipheth.c projects/diffused_head/sys/dev/usb/net/if_kue.c projects/diffused_head/sys/dev/usb/net/if_mos.c projects/diffused_head/sys/dev/usb/net/if_rue.c projects/diffused_head/sys/dev/usb/net/if_udav.c projects/diffused_head/sys/dev/usb/net/if_usie.c projects/diffused_head/sys/dev/usb/net/uhso.c projects/diffused_head/sys/dev/usb/net/usb_ethernet.c projects/diffused_head/sys/dev/usb/net/usb_ethernet.h projects/diffused_head/sys/dev/usb/quirk/usb_quirk.c projects/diffused_head/sys/dev/usb/serial/u3g.c projects/diffused_head/sys/dev/usb/serial/ubsa.c projects/diffused_head/sys/dev/usb/serial/ubser.c projects/diffused_head/sys/dev/usb/serial/uchcom.c projects/diffused_head/sys/dev/usb/serial/ufoma.c projects/diffused_head/sys/dev/usb/serial/uftdi.c projects/diffused_head/sys/dev/usb/serial/ulpt.c projects/diffused_head/sys/dev/usb/serial/umcs.c projects/diffused_head/sys/dev/usb/serial/umodem.c projects/diffused_head/sys/dev/usb/serial/umoscom.c projects/diffused_head/sys/dev/usb/serial/uplcom.c projects/diffused_head/sys/dev/usb/serial/usb_serial.c projects/diffused_head/sys/dev/usb/serial/uslcom.c projects/diffused_head/sys/dev/usb/serial/uvisor.c projects/diffused_head/sys/dev/usb/serial/uvscom.c projects/diffused_head/sys/dev/usb/storage/umass.c projects/diffused_head/sys/dev/usb/storage/urio.c projects/diffused_head/sys/dev/usb/storage/ustorage_fs.c projects/diffused_head/sys/dev/usb/template/usb_template.c projects/diffused_head/sys/dev/usb/template/usb_template_kbd.c projects/diffused_head/sys/dev/usb/template/usb_template_modem.c projects/diffused_head/sys/dev/usb/template/usb_template_mouse.c projects/diffused_head/sys/dev/usb/usb.h projects/diffused_head/sys/dev/usb/usb_bus.h projects/diffused_head/sys/dev/usb/usb_busdma.c projects/diffused_head/sys/dev/usb/usb_compat_linux.c projects/diffused_head/sys/dev/usb/usb_controller.h projects/diffused_head/sys/dev/usb/usb_dev.c projects/diffused_head/sys/dev/usb/usb_device.c projects/diffused_head/sys/dev/usb/usb_generic.c projects/diffused_head/sys/dev/usb/usb_hub.c projects/diffused_head/sys/dev/usb/usb_if.m projects/diffused_head/sys/dev/usb/usb_ioctl.h projects/diffused_head/sys/dev/usb/usb_msctest.c projects/diffused_head/sys/dev/usb/usb_process.c projects/diffused_head/sys/dev/usb/usb_request.c projects/diffused_head/sys/dev/usb/usb_transfer.c projects/diffused_head/sys/dev/usb/usb_transfer.h projects/diffused_head/sys/dev/usb/usb_util.c projects/diffused_head/sys/dev/usb/usb_util.h projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/usb/wlan/if_rum.c projects/diffused_head/sys/dev/usb/wlan/if_run.c projects/diffused_head/sys/dev/usb/wlan/if_uath.c projects/diffused_head/sys/dev/usb/wlan/if_upgt.c projects/diffused_head/sys/dev/usb/wlan/if_ural.c projects/diffused_head/sys/dev/usb/wlan/if_urtw.c projects/diffused_head/sys/dev/usb/wlan/if_zyd.c projects/diffused_head/sys/dev/vge/if_vge.c projects/diffused_head/sys/dev/vkbd/vkbd.c projects/diffused_head/sys/dev/vr/if_vr.c projects/diffused_head/sys/dev/vr/if_vrreg.h projects/diffused_head/sys/dev/vte/if_vte.c projects/diffused_head/sys/dev/vx/if_vx.c projects/diffused_head/sys/dev/vxge/include/vxgehal-config.h projects/diffused_head/sys/dev/vxge/include/vxgehal-ll.h projects/diffused_head/sys/dev/vxge/vxge-osdep.h projects/diffused_head/sys/dev/vxge/vxge.c projects/diffused_head/sys/dev/vxge/vxgehal/vxgehal-ring.c projects/diffused_head/sys/dev/wb/if_wb.c projects/diffused_head/sys/dev/wb/if_wbreg.h projects/diffused_head/sys/dev/wi/if_wi.c projects/diffused_head/sys/dev/wpi/if_wpi.c projects/diffused_head/sys/dev/xe/if_xe.c projects/diffused_head/sys/dev/xen/balloon/balloon.c projects/diffused_head/sys/dev/xen/blkback/blkback.c projects/diffused_head/sys/dev/xen/blkfront/blkfront.c projects/diffused_head/sys/dev/xen/console/console.c projects/diffused_head/sys/dev/xen/netback/netback.c projects/diffused_head/sys/dev/xen/netfront/netfront.c projects/diffused_head/sys/dev/xen/pcifront/pcifront.c projects/diffused_head/sys/dev/xl/if_xl.c projects/diffused_head/sys/dev/xl/if_xlreg.h projects/diffused_head/sys/fs/devfs/devfs_rule.c projects/diffused_head/sys/fs/devfs/devfs_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2_alloc.c projects/diffused_head/sys/fs/ext2fs/ext2_balloc.c projects/diffused_head/sys/fs/ext2fs/ext2_bmap.c projects/diffused_head/sys/fs/ext2fs/ext2_extern.h projects/diffused_head/sys/fs/ext2fs/ext2_inode.c projects/diffused_head/sys/fs/ext2fs/ext2_lookup.c projects/diffused_head/sys/fs/ext2fs/ext2_subr.c projects/diffused_head/sys/fs/ext2fs/ext2_vfsops.c projects/diffused_head/sys/fs/ext2fs/ext2_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2fs.h projects/diffused_head/sys/fs/ext2fs/fs.h projects/diffused_head/sys/fs/fifofs/fifo_vnops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_conv.c projects/diffused_head/sys/fs/msdosfs/msdosfs_denode.c projects/diffused_head/sys/fs/msdosfs/msdosfs_fat.c projects/diffused_head/sys/fs/msdosfs/msdosfs_lookup.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vfsops.c projects/diffused_head/sys/fs/nfs/nfs_commonkrpc.c projects/diffused_head/sys/fs/nfs/nfs_commonport.c projects/diffused_head/sys/fs/nfs/nfs_commonsubs.c projects/diffused_head/sys/fs/nfs/nfs_var.h projects/diffused_head/sys/fs/nfs/nfsclstate.h projects/diffused_head/sys/fs/nfs/nfsport.h projects/diffused_head/sys/fs/nfsclient/nfs_clbio.c projects/diffused_head/sys/fs/nfsclient/nfs_clkrpc.c projects/diffused_head/sys/fs/nfsclient/nfs_clport.c projects/diffused_head/sys/fs/nfsclient/nfs_clrpcops.c projects/diffused_head/sys/fs/nfsclient/nfs_clstate.c projects/diffused_head/sys/fs/nfsclient/nfs_clvfsops.c projects/diffused_head/sys/fs/nfsclient/nfs_clvnops.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdport.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdsubs.c projects/diffused_head/sys/fs/ntfs/ntfs_compr.c projects/diffused_head/sys/fs/ntfs/ntfs_subr.c projects/diffused_head/sys/fs/ntfs/ntfs_subr.h projects/diffused_head/sys/fs/ntfs/ntfs_vnops.c projects/diffused_head/sys/fs/nullfs/null_subr.c projects/diffused_head/sys/fs/nullfs/null_vfsops.c projects/diffused_head/sys/fs/nullfs/null_vnops.c projects/diffused_head/sys/fs/nwfs/nwfs_io.c projects/diffused_head/sys/fs/nwfs/nwfs_mount.h projects/diffused_head/sys/fs/nwfs/nwfs_vfsops.c projects/diffused_head/sys/fs/portalfs/portal_vnops.c projects/diffused_head/sys/fs/procfs/procfs_status.c projects/diffused_head/sys/fs/pseudofs/pseudofs_vncache.c projects/diffused_head/sys/fs/pseudofs/pseudofs_vnops.c projects/diffused_head/sys/fs/smbfs/smbfs.h projects/diffused_head/sys/fs/smbfs/smbfs_io.c projects/diffused_head/sys/fs/smbfs/smbfs_node.c projects/diffused_head/sys/fs/smbfs/smbfs_smb.c projects/diffused_head/sys/fs/smbfs/smbfs_subr.c projects/diffused_head/sys/fs/smbfs/smbfs_vfsops.c projects/diffused_head/sys/fs/smbfs/smbfs_vnops.c projects/diffused_head/sys/fs/tmpfs/tmpfs.h projects/diffused_head/sys/fs/tmpfs/tmpfs_subr.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vfsops.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vnops.c projects/diffused_head/sys/fs/udf/udf_vnops.c projects/diffused_head/sys/fs/unionfs/union_vnops.c projects/diffused_head/sys/gdb/gdb_cons.c projects/diffused_head/sys/geom/cache/g_cache.c projects/diffused_head/sys/geom/concat/g_concat.c projects/diffused_head/sys/geom/concat/g_concat.h projects/diffused_head/sys/geom/eli/g_eli.c projects/diffused_head/sys/geom/eli/g_eli.h projects/diffused_head/sys/geom/gate/g_gate.c projects/diffused_head/sys/geom/geom_disk.c projects/diffused_head/sys/geom/geom_event.c projects/diffused_head/sys/geom/geom_vfs.c projects/diffused_head/sys/geom/journal/g_journal.c projects/diffused_head/sys/geom/mirror/g_mirror.c projects/diffused_head/sys/geom/mountver/g_mountver.c projects/diffused_head/sys/geom/multipath/g_multipath.c projects/diffused_head/sys/geom/multipath/g_multipath.h projects/diffused_head/sys/geom/nop/g_nop.c projects/diffused_head/sys/geom/part/g_part.c projects/diffused_head/sys/geom/part/g_part_apm.c projects/diffused_head/sys/geom/part/g_part_gpt.c projects/diffused_head/sys/geom/part/g_part_vtoc8.c projects/diffused_head/sys/geom/raid/md_intel.c projects/diffused_head/sys/geom/raid/md_nvidia.c projects/diffused_head/sys/geom/raid/md_promise.c projects/diffused_head/sys/geom/raid/tr_raid1.c projects/diffused_head/sys/geom/raid/tr_raid1e.c projects/diffused_head/sys/geom/raid3/g_raid3.c projects/diffused_head/sys/geom/sched/gs_rr.c projects/diffused_head/sys/geom/shsec/g_shsec.c projects/diffused_head/sys/geom/stripe/g_stripe.c projects/diffused_head/sys/geom/uzip/g_uzip.c projects/diffused_head/sys/geom/vinum/geom_vinum.c projects/diffused_head/sys/geom/virstor/g_virstor.c projects/diffused_head/sys/geom/zero/g_zero.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/support/debug.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c projects/diffused_head/sys/gnu/fs/xfs/xfs_vfsops.c projects/diffused_head/sys/i386/conf/DEFAULTS projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/conf/PAE projects/diffused_head/sys/i386/conf/XEN projects/diffused_head/sys/i386/i386/legacy.c projects/diffused_head/sys/i386/i386/locore.s projects/diffused_head/sys/i386/i386/machdep.c projects/diffused_head/sys/i386/i386/mp_machdep.c projects/diffused_head/sys/i386/i386/pmap.c projects/diffused_head/sys/i386/i386/sys_machdep.c projects/diffused_head/sys/i386/i386/trap.c projects/diffused_head/sys/i386/ibcs2/ibcs2_fcntl.c projects/diffused_head/sys/i386/ibcs2/ibcs2_proto.h projects/diffused_head/sys/i386/ibcs2/ibcs2_socksys.c projects/diffused_head/sys/i386/ibcs2/ibcs2_stat.c projects/diffused_head/sys/i386/ibcs2/ibcs2_syscall.h projects/diffused_head/sys/i386/ibcs2/ibcs2_sysent.c projects/diffused_head/sys/i386/ibcs2/syscalls.master projects/diffused_head/sys/i386/include/_types.h projects/diffused_head/sys/i386/include/asm.h projects/diffused_head/sys/i386/include/ieeefp.h projects/diffused_head/sys/i386/include/proc.h projects/diffused_head/sys/i386/include/segments.h projects/diffused_head/sys/i386/include/signal.h projects/diffused_head/sys/i386/include/trap.h projects/diffused_head/sys/i386/include/ucontext.h projects/diffused_head/sys/i386/include/vmparam.h projects/diffused_head/sys/i386/linux/linux.h projects/diffused_head/sys/i386/linux/linux_dummy.c projects/diffused_head/sys/i386/linux/linux_proto.h projects/diffused_head/sys/i386/linux/linux_syscall.h projects/diffused_head/sys/i386/linux/linux_syscalls.c projects/diffused_head/sys/i386/linux/linux_sysent.c projects/diffused_head/sys/i386/linux/linux_systrace_args.c projects/diffused_head/sys/i386/linux/syscalls.master projects/diffused_head/sys/i386/xen/mp_machdep.c projects/diffused_head/sys/i386/xen/pmap.c projects/diffused_head/sys/ia64/conf/DEFAULTS projects/diffused_head/sys/ia64/conf/GENERIC projects/diffused_head/sys/ia64/ia64/busdma_machdep.c projects/diffused_head/sys/ia64/ia64/machdep.c projects/diffused_head/sys/ia64/ia64/mca.c projects/diffused_head/sys/ia64/ia64/pmap.c projects/diffused_head/sys/ia64/ia64/sapic.c projects/diffused_head/sys/ia64/ia64/ssc.c projects/diffused_head/sys/ia64/ia64/sscdisk.c projects/diffused_head/sys/ia64/ia64/uma_machdep.c projects/diffused_head/sys/ia64/ia64/unwind.c projects/diffused_head/sys/ia64/include/_types.h projects/diffused_head/sys/ia64/include/ieeefp.h projects/diffused_head/sys/ia64/include/proc.h projects/diffused_head/sys/isa/vga_isa.c projects/diffused_head/sys/kern/imgact_elf.c projects/diffused_head/sys/kern/init_main.c projects/diffused_head/sys/kern/init_sysent.c projects/diffused_head/sys/kern/kern_clock.c projects/diffused_head/sys/kern/kern_conf.c projects/diffused_head/sys/kern/kern_cons.c projects/diffused_head/sys/kern/kern_cpu.c projects/diffused_head/sys/kern/kern_cpuset.c projects/diffused_head/sys/kern/kern_ctf.c projects/diffused_head/sys/kern/kern_descrip.c projects/diffused_head/sys/kern/kern_dtrace.c projects/diffused_head/sys/kern/kern_et.c projects/diffused_head/sys/kern/kern_fail.c projects/diffused_head/sys/kern/kern_intr.c projects/diffused_head/sys/kern/kern_jail.c projects/diffused_head/sys/kern/kern_ktr.c projects/diffused_head/sys/kern/kern_ktrace.c projects/diffused_head/sys/kern/kern_linker.c projects/diffused_head/sys/kern/kern_lock.c projects/diffused_head/sys/kern/kern_lockf.c projects/diffused_head/sys/kern/kern_malloc.c projects/diffused_head/sys/kern/kern_mutex.c projects/diffused_head/sys/kern/kern_ntptime.c projects/diffused_head/sys/kern/kern_poll.c projects/diffused_head/sys/kern/kern_proc.c projects/diffused_head/sys/kern/kern_prot.c projects/diffused_head/sys/kern/kern_racct.c projects/diffused_head/sys/kern/kern_rctl.c projects/diffused_head/sys/kern/kern_resource.c projects/diffused_head/sys/kern/kern_rmlock.c projects/diffused_head/sys/kern/kern_rwlock.c projects/diffused_head/sys/kern/kern_shutdown.c projects/diffused_head/sys/kern/kern_sig.c projects/diffused_head/sys/kern/kern_switch.c projects/diffused_head/sys/kern/kern_sx.c projects/diffused_head/sys/kern/kern_synch.c projects/diffused_head/sys/kern/kern_tc.c projects/diffused_head/sys/kern/kern_thr.c projects/diffused_head/sys/kern/kern_thread.c projects/diffused_head/sys/kern/kern_timeout.c projects/diffused_head/sys/kern/kern_umtx.c projects/diffused_head/sys/kern/kern_uuid.c projects/diffused_head/sys/kern/makesyscalls.sh projects/diffused_head/sys/kern/sched_4bsd.c projects/diffused_head/sys/kern/sched_ule.c projects/diffused_head/sys/kern/subr_blist.c projects/diffused_head/sys/kern/subr_bus.c projects/diffused_head/sys/kern/subr_devstat.c projects/diffused_head/sys/kern/subr_firmware.c projects/diffused_head/sys/kern/subr_hints.c projects/diffused_head/sys/kern/subr_kdb.c projects/diffused_head/sys/kern/subr_kobj.c projects/diffused_head/sys/kern/subr_lock.c projects/diffused_head/sys/kern/subr_mchain.c projects/diffused_head/sys/kern/subr_pcpu.c projects/diffused_head/sys/kern/subr_prf.c projects/diffused_head/sys/kern/subr_prof.c projects/diffused_head/sys/kern/subr_rman.c projects/diffused_head/sys/kern/subr_rtc.c projects/diffused_head/sys/kern/subr_sleepqueue.c projects/diffused_head/sys/kern/subr_smp.c projects/diffused_head/sys/kern/subr_stack.c projects/diffused_head/sys/kern/subr_turnstile.c projects/diffused_head/sys/kern/subr_uio.c projects/diffused_head/sys/kern/subr_witness.c projects/diffused_head/sys/kern/sys_capability.c projects/diffused_head/sys/kern/sys_generic.c projects/diffused_head/sys/kern/sys_pipe.c projects/diffused_head/sys/kern/syscalls.c projects/diffused_head/sys/kern/syscalls.master projects/diffused_head/sys/kern/systrace_args.c projects/diffused_head/sys/kern/tty_inq.c projects/diffused_head/sys/kern/uipc_mqueue.c projects/diffused_head/sys/kern/uipc_shm.c projects/diffused_head/sys/kern/uipc_sockbuf.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_bio.c projects/diffused_head/sys/kern/vfs_cache.c projects/diffused_head/sys/kern/vfs_default.c projects/diffused_head/sys/kern/vfs_lookup.c projects/diffused_head/sys/kern/vfs_mount.c projects/diffused_head/sys/kern/vfs_mountroot.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/kern/vfs_syscalls.c projects/diffused_head/sys/kern/vfs_vnops.c projects/diffused_head/sys/kern/vnode_if.src projects/diffused_head/sys/kgssapi/krb5/krb5_mech.c projects/diffused_head/sys/libkern/fnmatch.c projects/diffused_head/sys/libkern/iconv.c projects/diffused_head/sys/mips/adm5120/admpci.c projects/diffused_head/sys/mips/adm5120/console.c projects/diffused_head/sys/mips/atheros/apb.c projects/diffused_head/sys/mips/atheros/ar71xx_chip.c projects/diffused_head/sys/mips/atheros/ar71xx_cpudef.h projects/diffused_head/sys/mips/atheros/ar71xx_ehci.c projects/diffused_head/sys/mips/atheros/ar71xx_gpio.c projects/diffused_head/sys/mips/atheros/ar71xx_machdep.c projects/diffused_head/sys/mips/atheros/ar71xx_ohci.c projects/diffused_head/sys/mips/atheros/ar71xx_pci.c projects/diffused_head/sys/mips/atheros/ar724x_chip.c projects/diffused_head/sys/mips/atheros/ar724x_pci.c projects/diffused_head/sys/mips/atheros/ar91xx_chip.c projects/diffused_head/sys/mips/atheros/if_arge.c projects/diffused_head/sys/mips/cavium/cryptocteon/cavium_crypto.c projects/diffused_head/sys/mips/cavium/files.octeon1 projects/diffused_head/sys/mips/cavium/octeon_ds1337.c projects/diffused_head/sys/mips/cavium/octeon_machdep.c projects/diffused_head/sys/mips/cavium/octopci.c projects/diffused_head/sys/mips/cavium/usb/octusb.c projects/diffused_head/sys/mips/cavium/usb/octusb.h projects/diffused_head/sys/mips/cavium/usb/octusb_octeon.c projects/diffused_head/sys/mips/conf/AR91XX_BASE projects/diffused_head/sys/mips/conf/AR91XX_BASE.hints projects/diffused_head/sys/mips/conf/DEFAULTS projects/diffused_head/sys/mips/conf/OCTEON1 projects/diffused_head/sys/mips/conf/PB92 projects/diffused_head/sys/mips/conf/TP-WN1043ND projects/diffused_head/sys/mips/conf/TP-WN1043ND.hints projects/diffused_head/sys/mips/conf/XLP projects/diffused_head/sys/mips/conf/XLP64 projects/diffused_head/sys/mips/conf/XLPN32 projects/diffused_head/sys/mips/idt/idtpci.c projects/diffused_head/sys/mips/idt/if_kr.c projects/diffused_head/sys/mips/include/_stdint.h projects/diffused_head/sys/mips/include/_types.h projects/diffused_head/sys/mips/include/asm.h projects/diffused_head/sys/mips/include/bus.h projects/diffused_head/sys/mips/include/cpufunc.h projects/diffused_head/sys/mips/include/cpuregs.h projects/diffused_head/sys/mips/include/frame.h projects/diffused_head/sys/mips/include/ieeefp.h projects/diffused_head/sys/mips/include/intr_machdep.h projects/diffused_head/sys/mips/include/md_var.h projects/diffused_head/sys/mips/include/proc.h projects/diffused_head/sys/mips/malta/gt.c projects/diffused_head/sys/mips/malta/gt_pci.c projects/diffused_head/sys/mips/mips/busdma_machdep.c projects/diffused_head/sys/mips/mips/cache.c projects/diffused_head/sys/mips/mips/db_disasm.c projects/diffused_head/sys/mips/mips/db_trace.c projects/diffused_head/sys/mips/mips/elf_machdep.c projects/diffused_head/sys/mips/mips/exception.S projects/diffused_head/sys/mips/mips/gdb_machdep.c projects/diffused_head/sys/mips/mips/genassym.c projects/diffused_head/sys/mips/mips/locore.S projects/diffused_head/sys/mips/mips/machdep.c projects/diffused_head/sys/mips/mips/mem.c projects/diffused_head/sys/mips/mips/pm_machdep.c projects/diffused_head/sys/mips/mips/pmap.c projects/diffused_head/sys/mips/mips/swtch.S projects/diffused_head/sys/mips/mips/trap.c projects/diffused_head/sys/mips/mips/vm_machdep.c projects/diffused_head/sys/mips/nlm/bus_space_rmi.c projects/diffused_head/sys/mips/nlm/cms.c projects/diffused_head/sys/mips/nlm/files.xlp projects/diffused_head/sys/mips/nlm/hal/bridge.h projects/diffused_head/sys/mips/nlm/hal/cop2.h projects/diffused_head/sys/mips/nlm/hal/cpucontrol.h projects/diffused_head/sys/mips/nlm/hal/fmn.c projects/diffused_head/sys/mips/nlm/hal/fmn.h projects/diffused_head/sys/mips/nlm/hal/haldefs.h projects/diffused_head/sys/mips/nlm/hal/iomap.h projects/diffused_head/sys/mips/nlm/hal/mips-extns.h projects/diffused_head/sys/mips/nlm/hal/mmu.h projects/diffused_head/sys/mips/nlm/hal/pcibus.h projects/diffused_head/sys/mips/nlm/hal/pic.h projects/diffused_head/sys/mips/nlm/hal/uart.h projects/diffused_head/sys/mips/nlm/mpreset.S projects/diffused_head/sys/mips/nlm/msgring.h projects/diffused_head/sys/mips/nlm/std.xlp projects/diffused_head/sys/mips/nlm/uart_cpu_xlp.c projects/diffused_head/sys/mips/nlm/uart_pci_xlp.c projects/diffused_head/sys/mips/nlm/usb_init.c projects/diffused_head/sys/mips/nlm/xlp.h projects/diffused_head/sys/mips/nlm/xlp_machdep.c projects/diffused_head/sys/mips/nlm/xlp_pci.c projects/diffused_head/sys/mips/rmi/dev/nlge/if_nlge.c projects/diffused_head/sys/mips/rmi/dev/sec/rmisec.c projects/diffused_head/sys/mips/rmi/xlr_pci.c projects/diffused_head/sys/mips/rmi/xls_ehci.c projects/diffused_head/sys/mips/rt305x/rt305x_dotg.c projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/acpi/acpi/Makefile projects/diffused_head/sys/modules/aic7xxx/ahc/ahc_pci/Makefile projects/diffused_head/sys/modules/aic7xxx/ahd/Makefile projects/diffused_head/sys/modules/asr/Makefile projects/diffused_head/sys/modules/ath/Makefile projects/diffused_head/sys/modules/ath_ahb/Makefile projects/diffused_head/sys/modules/ath_pci/Makefile projects/diffused_head/sys/modules/cam/Makefile projects/diffused_head/sys/modules/ce/Makefile projects/diffused_head/sys/modules/cxgbe/Makefile projects/diffused_head/sys/modules/drm/r128/Makefile projects/diffused_head/sys/modules/drm/radeon/Makefile projects/diffused_head/sys/modules/drm/via/Makefile projects/diffused_head/sys/modules/esp/Makefile projects/diffused_head/sys/modules/fxp/Makefile projects/diffused_head/sys/modules/ipfilter/Makefile projects/diffused_head/sys/modules/ipfw/Makefile projects/diffused_head/sys/modules/kgssapi_krb5/Makefile projects/diffused_head/sys/modules/libiconv/Makefile projects/diffused_head/sys/modules/libmchain/Makefile projects/diffused_head/sys/modules/mii/Makefile projects/diffused_head/sys/modules/nve/Makefile projects/diffused_head/sys/modules/nxge/Makefile projects/diffused_head/sys/modules/pfsync/Makefile projects/diffused_head/sys/modules/random/Makefile projects/diffused_head/sys/modules/sound/driver/emu10k1/Makefile projects/diffused_head/sys/modules/sound/driver/emu10kx/Makefile projects/diffused_head/sys/modules/splash/Makefile projects/diffused_head/sys/modules/usb/Makefile projects/diffused_head/sys/modules/usb/rue/Makefile projects/diffused_head/sys/modules/xfs/Makefile projects/diffused_head/sys/modules/xl/Makefile projects/diffused_head/sys/modules/zfs/Makefile projects/diffused_head/sys/net/bpf.c projects/diffused_head/sys/net/flowtable.c projects/diffused_head/sys/net/if.c projects/diffused_head/sys/net/if.h projects/diffused_head/sys/net/if_arcsubr.c projects/diffused_head/sys/net/if_atmsubr.c projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_clone.c projects/diffused_head/sys/net/if_clone.h projects/diffused_head/sys/net/if_enc.c projects/diffused_head/sys/net/if_epair.c projects/diffused_head/sys/net/if_ethersubr.c projects/diffused_head/sys/net/if_fwsubr.c projects/diffused_head/sys/net/if_gif.c projects/diffused_head/sys/net/if_gre.c projects/diffused_head/sys/net/if_iso88025subr.c projects/diffused_head/sys/net/if_lagg.c projects/diffused_head/sys/net/if_llatbl.c projects/diffused_head/sys/net/if_media.h projects/diffused_head/sys/net/if_mib.c projects/diffused_head/sys/net/if_spppfr.c projects/diffused_head/sys/net/if_spppsubr.c projects/diffused_head/sys/net/if_stf.c projects/diffused_head/sys/net/if_tap.c projects/diffused_head/sys/net/if_tun.c projects/diffused_head/sys/net/if_types.h projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/net/if_vlan.c projects/diffused_head/sys/net/netisr.c projects/diffused_head/sys/net/raw_cb.c projects/diffused_head/sys/net/route.c projects/diffused_head/sys/net/rtsock.c projects/diffused_head/sys/net/vnet.c projects/diffused_head/sys/net80211/ieee80211.c projects/diffused_head/sys/net80211/ieee80211.h projects/diffused_head/sys/net80211/ieee80211_acl.c projects/diffused_head/sys/net80211/ieee80211_dfs.c projects/diffused_head/sys/net80211/ieee80211_freebsd.c projects/diffused_head/sys/net80211/ieee80211_hostap.c projects/diffused_head/sys/net80211/ieee80211_ht.c projects/diffused_head/sys/net80211/ieee80211_hwmp.c projects/diffused_head/sys/net80211/ieee80211_input.c projects/diffused_head/sys/net80211/ieee80211_ioctl.c projects/diffused_head/sys/net80211/ieee80211_ioctl.h projects/diffused_head/sys/net80211/ieee80211_mesh.c projects/diffused_head/sys/net80211/ieee80211_output.c projects/diffused_head/sys/net80211/ieee80211_power.c projects/diffused_head/sys/net80211/ieee80211_proto.h projects/diffused_head/sys/net80211/ieee80211_radiotap.c projects/diffused_head/sys/net80211/ieee80211_radiotap.h projects/diffused_head/sys/net80211/ieee80211_scan.h projects/diffused_head/sys/net80211/ieee80211_sta.c projects/diffused_head/sys/net80211/ieee80211_tdma.c projects/diffused_head/sys/net80211/ieee80211_var.h projects/diffused_head/sys/netatalk/aarp.c projects/diffused_head/sys/netatalk/at_control.c projects/diffused_head/sys/netgraph/atm/ng_atm.c projects/diffused_head/sys/netgraph/atm/ngatmbase.c projects/diffused_head/sys/netgraph/atm/uni/ng_uni.c projects/diffused_head/sys/netgraph/bluetooth/socket/ng_btsocket_hci_raw.c projects/diffused_head/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap.c projects/diffused_head/sys/netgraph/bluetooth/socket/ng_btsocket_l2cap_raw.c projects/diffused_head/sys/netgraph/bluetooth/socket/ng_btsocket_rfcomm.c projects/diffused_head/sys/netgraph/bluetooth/socket/ng_btsocket_sco.c projects/diffused_head/sys/netgraph/netgraph.h projects/diffused_head/sys/netgraph/ng_async.c projects/diffused_head/sys/netgraph/ng_atmllc.c projects/diffused_head/sys/netgraph/ng_base.c projects/diffused_head/sys/netgraph/ng_bpf.c projects/diffused_head/sys/netgraph/ng_bridge.c projects/diffused_head/sys/netgraph/ng_cisco.c projects/diffused_head/sys/netgraph/ng_deflate.c projects/diffused_head/sys/netgraph/ng_fec.c projects/diffused_head/sys/netgraph/ng_gif_demux.c projects/diffused_head/sys/netgraph/ng_hub.c projects/diffused_head/sys/netgraph/ng_iface.c projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/sys/netgraph/ng_ksocket.c projects/diffused_head/sys/netgraph/ng_l2tp.c projects/diffused_head/sys/netgraph/ng_mppc.c projects/diffused_head/sys/netgraph/ng_parse.c projects/diffused_head/sys/netgraph/ng_ppp.c projects/diffused_head/sys/netgraph/ng_pppoe.c projects/diffused_head/sys/netgraph/ng_pred1.c projects/diffused_head/sys/netgraph/ng_sample.c projects/diffused_head/sys/netgraph/ng_socket.c projects/diffused_head/sys/netgraph/ng_sppp.c projects/diffused_head/sys/netgraph/ng_tag.c projects/diffused_head/sys/netinet/accf_http.c projects/diffused_head/sys/netinet/if_ether.c projects/diffused_head/sys/netinet/if_ether.h projects/diffused_head/sys/netinet/igmp.c projects/diffused_head/sys/netinet/in.c projects/diffused_head/sys/netinet/in.h projects/diffused_head/sys/netinet/in_debug.c projects/diffused_head/sys/netinet/in_mcast.c projects/diffused_head/sys/netinet/in_pcb.c projects/diffused_head/sys/netinet/in_pcb.h projects/diffused_head/sys/netinet/in_proto.c projects/diffused_head/sys/netinet/in_var.h projects/diffused_head/sys/netinet/ip_carp.c projects/diffused_head/sys/netinet/ip_carp.h projects/diffused_head/sys/netinet/ip_divert.c projects/diffused_head/sys/netinet/ip_icmp.c projects/diffused_head/sys/netinet/ip_input.c projects/diffused_head/sys/netinet/ip_mroute.c projects/diffused_head/sys/netinet/ip_output.c projects/diffused_head/sys/netinet/ip_var.h projects/diffused_head/sys/netinet/ipfw/dn_heap.c projects/diffused_head/sys/netinet/ipfw/dummynet.txt projects/diffused_head/sys/netinet/ipfw/ip_dn_io.c projects/diffused_head/sys/netinet/ipfw/ip_fw2.c projects/diffused_head/sys/netinet/ipfw/ip_fw_dynamic.c projects/diffused_head/sys/netinet/ipfw/ip_fw_log.c projects/diffused_head/sys/netinet/ipfw/ip_fw_pfil.c projects/diffused_head/sys/netinet/ipfw/ip_fw_sockopt.c projects/diffused_head/sys/netinet/ipfw/ip_fw_table.c projects/diffused_head/sys/netinet/libalias/alias_sctp.c projects/diffused_head/sys/netinet/raw_ip.c projects/diffused_head/sys/netinet/sctp.h projects/diffused_head/sys/netinet/sctp_asconf.c projects/diffused_head/sys/netinet/sctp_asconf.h projects/diffused_head/sys/netinet/sctp_auth.c projects/diffused_head/sys/netinet/sctp_auth.h projects/diffused_head/sys/netinet/sctp_bsd_addr.c projects/diffused_head/sys/netinet/sctp_bsd_addr.h projects/diffused_head/sys/netinet/sctp_cc_functions.c projects/diffused_head/sys/netinet/sctp_constants.h projects/diffused_head/sys/netinet/sctp_crc32.h projects/diffused_head/sys/netinet/sctp_dtrace_declare.h projects/diffused_head/sys/netinet/sctp_dtrace_define.h projects/diffused_head/sys/netinet/sctp_header.h projects/diffused_head/sys/netinet/sctp_indata.c projects/diffused_head/sys/netinet/sctp_indata.h projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_input.h projects/diffused_head/sys/netinet/sctp_os.h projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_output.h projects/diffused_head/sys/netinet/sctp_pcb.c projects/diffused_head/sys/netinet/sctp_pcb.h projects/diffused_head/sys/netinet/sctp_peeloff.c projects/diffused_head/sys/netinet/sctp_peeloff.h projects/diffused_head/sys/netinet/sctp_ss_functions.c projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_sysctl.c projects/diffused_head/sys/netinet/sctp_sysctl.h projects/diffused_head/sys/netinet/sctp_timer.c projects/diffused_head/sys/netinet/sctp_timer.h projects/diffused_head/sys/netinet/sctp_uio.h projects/diffused_head/sys/netinet/sctp_usrreq.c projects/diffused_head/sys/netinet/sctp_var.h projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/sctputil.h projects/diffused_head/sys/netinet/tcp.h projects/diffused_head/sys/netinet/tcp_hostcache.c projects/diffused_head/sys/netinet/tcp_input.c projects/diffused_head/sys/netinet/tcp_output.c projects/diffused_head/sys/netinet/tcp_reass.c projects/diffused_head/sys/netinet/tcp_syncache.c projects/diffused_head/sys/netinet/tcp_timer.c projects/diffused_head/sys/netinet/tcp_timewait.c projects/diffused_head/sys/netinet/tcp_usrreq.c projects/diffused_head/sys/netinet/tcp_var.h projects/diffused_head/sys/netinet/udp_var.h projects/diffused_head/sys/netinet6/icmp6.c projects/diffused_head/sys/netinet6/in6.c projects/diffused_head/sys/netinet6/in6_ifattach.c projects/diffused_head/sys/netinet6/in6_mcast.c projects/diffused_head/sys/netinet6/in6_pcb.c projects/diffused_head/sys/netinet6/in6_proto.c projects/diffused_head/sys/netinet6/in6_src.c projects/diffused_head/sys/netinet6/in6_var.h projects/diffused_head/sys/netinet6/ip6_input.c projects/diffused_head/sys/netinet6/ip6_mroute.c projects/diffused_head/sys/netinet6/ip6_output.c projects/diffused_head/sys/netinet6/mld6.c projects/diffused_head/sys/netinet6/nd6.c projects/diffused_head/sys/netinet6/nd6.h projects/diffused_head/sys/netinet6/nd6_nbr.c projects/diffused_head/sys/netinet6/nd6_rtr.c projects/diffused_head/sys/netinet6/scope6_var.h projects/diffused_head/sys/netinet6/sctp6_usrreq.c projects/diffused_head/sys/netinet6/sctp6_var.h projects/diffused_head/sys/netinet6/send.c projects/diffused_head/sys/netipsec/key.c projects/diffused_head/sys/netipsec/xform_ah.c projects/diffused_head/sys/netipsec/xform_esp.c projects/diffused_head/sys/netipx/ipx.c projects/diffused_head/sys/netipx/ipx_proto.c projects/diffused_head/sys/netipx/spx_reass.c projects/diffused_head/sys/netncp/ncp_lib.h projects/diffused_head/sys/netsmb/smb_conn.c projects/diffused_head/sys/netsmb/smb_conn.h projects/diffused_head/sys/netsmb/smb_rq.c projects/diffused_head/sys/netsmb/smb_smb.c projects/diffused_head/sys/netsmb/smb_subr.c projects/diffused_head/sys/nfs/bootp_subr.c projects/diffused_head/sys/nfs/nfs_lock.c projects/diffused_head/sys/nfsclient/nfs_bio.c projects/diffused_head/sys/nfsclient/nfs_krpc.c projects/diffused_head/sys/nfsclient/nfs_vfsops.c projects/diffused_head/sys/nfsserver/nfs_serv.c projects/diffused_head/sys/nlm/nlm_prot_impl.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/sdp/Kconfig projects/diffused_head/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/diffused_head/sys/ofed/include/asm/types.h projects/diffused_head/sys/ofed/include/linux/linux_idr.c projects/diffused_head/sys/ofed/include/linux/linux_radix.c projects/diffused_head/sys/ofed/include/linux/types.h projects/diffused_head/sys/pc98/cbus/scterm-sck.c projects/diffused_head/sys/pc98/cbus/scvtb.c projects/diffused_head/sys/pc98/cbus/sio.c projects/diffused_head/sys/pc98/conf/DEFAULTS projects/diffused_head/sys/pc98/conf/GENERIC projects/diffused_head/sys/pc98/include/md_var.h projects/diffused_head/sys/pc98/pc98/pc98_machdep.h projects/diffused_head/sys/pci/if_rl.c projects/diffused_head/sys/pci/if_rlreg.h projects/diffused_head/sys/pci/intpm.c projects/diffused_head/sys/pci/viapm.c projects/diffused_head/sys/powerpc/aim/locore32.S projects/diffused_head/sys/powerpc/aim/machdep.c projects/diffused_head/sys/powerpc/aim/mmu_oea.c projects/diffused_head/sys/powerpc/aim/mmu_oea64.c projects/diffused_head/sys/powerpc/aim/mp_cpudep.c projects/diffused_head/sys/powerpc/aim/nexus.c projects/diffused_head/sys/powerpc/aim/slb.c projects/diffused_head/sys/powerpc/aim/trap.c projects/diffused_head/sys/powerpc/aim/trap_subr32.S projects/diffused_head/sys/powerpc/aim/trap_subr64.S projects/diffused_head/sys/powerpc/aim/uma_machdep.c projects/diffused_head/sys/powerpc/booke/platform_bare.c projects/diffused_head/sys/powerpc/conf/DEFAULTS projects/diffused_head/sys/powerpc/conf/GENERIC projects/diffused_head/sys/powerpc/conf/GENERIC64 projects/diffused_head/sys/powerpc/fpu/fpu_emu.c projects/diffused_head/sys/powerpc/include/_stdint.h projects/diffused_head/sys/powerpc/include/_types.h projects/diffused_head/sys/powerpc/include/ieeefp.h projects/diffused_head/sys/powerpc/include/pcpu.h projects/diffused_head/sys/powerpc/include/pmap.h projects/diffused_head/sys/powerpc/include/pmc_mdep.h projects/diffused_head/sys/powerpc/include/proc.h projects/diffused_head/sys/powerpc/include/spr.h projects/diffused_head/sys/powerpc/include/vmparam.h projects/diffused_head/sys/powerpc/mambo/mambo.c projects/diffused_head/sys/powerpc/mambo/mambo_console.c projects/diffused_head/sys/powerpc/mpc85xx/nexus.c projects/diffused_head/sys/powerpc/mpc85xx/pci_fdt.c projects/diffused_head/sys/powerpc/ofw/ofw_cpu.c projects/diffused_head/sys/powerpc/ofw/ofw_pcib_pci.c projects/diffused_head/sys/powerpc/ofw/ofw_real.c projects/diffused_head/sys/powerpc/ofw/ofw_syscons.c projects/diffused_head/sys/powerpc/ofw/rtas.c projects/diffused_head/sys/powerpc/powermac/cpcht.c projects/diffused_head/sys/powerpc/powermac/cuda.c projects/diffused_head/sys/powerpc/powermac/dbdma.c projects/diffused_head/sys/powerpc/powermac/fcu.c projects/diffused_head/sys/powerpc/powermac/grackle.c projects/diffused_head/sys/powerpc/powermac/platform_powermac.c projects/diffused_head/sys/powerpc/powermac/pmu.c projects/diffused_head/sys/powerpc/powermac/pmuvar.h projects/diffused_head/sys/powerpc/powermac/powermac_thermal.c projects/diffused_head/sys/powerpc/powermac/smu.c projects/diffused_head/sys/powerpc/powermac/smusat.c projects/diffused_head/sys/powerpc/powermac/uninorthpci.c projects/diffused_head/sys/powerpc/powerpc/bus_machdep.c projects/diffused_head/sys/powerpc/powerpc/busdma_machdep.c projects/diffused_head/sys/powerpc/powerpc/intr_machdep.c projects/diffused_head/sys/powerpc/powerpc/platform.c projects/diffused_head/sys/powerpc/powerpc/pmap_dispatch.c projects/diffused_head/sys/powerpc/ps3/ehci_ps3.c projects/diffused_head/sys/powerpc/ps3/ohci_ps3.c projects/diffused_head/sys/powerpc/ps3/ps3-hv-asm.awk projects/diffused_head/sys/powerpc/ps3/ps3-hvcall.S projects/diffused_head/sys/powerpc/ps3/ps3-hvcall.h projects/diffused_head/sys/powerpc/ps3/ps3-hvcall.master projects/diffused_head/sys/powerpc/ps3/ps3_syscons.c projects/diffused_head/sys/powerpc/ps3/ps3bus.c projects/diffused_head/sys/powerpc/ps3/ps3disk.c projects/diffused_head/sys/powerpc/ps3/ps3pic.c projects/diffused_head/sys/rpc/clnt_dg.c projects/diffused_head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/diffused_head/sys/security/audit/audit.c projects/diffused_head/sys/security/audit/audit_pipe.c projects/diffused_head/sys/security/mac/mac_framework.c projects/diffused_head/sys/security/mac_biba/mac_biba.c projects/diffused_head/sys/security/mac_bsdextended/mac_bsdextended.c projects/diffused_head/sys/security/mac_ifoff/mac_ifoff.c projects/diffused_head/sys/security/mac_lomac/mac_lomac.c projects/diffused_head/sys/security/mac_mls/mac_mls.c projects/diffused_head/sys/security/mac_partition/mac_partition.c projects/diffused_head/sys/security/mac_portacl/mac_portacl.c projects/diffused_head/sys/security/mac_seeotheruids/mac_seeotheruids.c projects/diffused_head/sys/security/mac_stub/mac_stub.c projects/diffused_head/sys/security/mac_test/mac_test.c projects/diffused_head/sys/sparc64/central/central.c projects/diffused_head/sys/sparc64/conf/DEFAULTS projects/diffused_head/sys/sparc64/conf/GENERIC projects/diffused_head/sys/sparc64/ebus/ebus.c projects/diffused_head/sys/sparc64/ebus/epic.c projects/diffused_head/sys/sparc64/fhc/fhc.c projects/diffused_head/sys/sparc64/include/_types.h projects/diffused_head/sys/sparc64/include/atomic.h projects/diffused_head/sys/sparc64/include/ieeefp.h projects/diffused_head/sys/sparc64/include/md_var.h projects/diffused_head/sys/sparc64/include/pcpu.h projects/diffused_head/sys/sparc64/include/proc.h projects/diffused_head/sys/sparc64/pci/apb.c projects/diffused_head/sys/sparc64/pci/fire.c projects/diffused_head/sys/sparc64/pci/ofw_pcib.c projects/diffused_head/sys/sparc64/pci/ofw_pcibus.c projects/diffused_head/sys/sparc64/pci/psycho.c projects/diffused_head/sys/sparc64/pci/sbbc.c projects/diffused_head/sys/sparc64/pci/schizo.c projects/diffused_head/sys/sparc64/sbus/dma_sbus.c projects/diffused_head/sys/sparc64/sbus/lsi64854.c projects/diffused_head/sys/sparc64/sbus/lsi64854var.h projects/diffused_head/sys/sparc64/sbus/sbus.c projects/diffused_head/sys/sparc64/sparc64/ata_machdep.c projects/diffused_head/sys/sparc64/sparc64/eeprom.c projects/diffused_head/sys/sparc64/sparc64/identcpu.c projects/diffused_head/sys/sparc64/sparc64/iommu.c projects/diffused_head/sys/sparc64/sparc64/jbusppm.c projects/diffused_head/sys/sparc64/sparc64/nexus.c projects/diffused_head/sys/sparc64/sparc64/ofw_machdep.c projects/diffused_head/sys/sparc64/sparc64/rtc.c projects/diffused_head/sys/sparc64/sparc64/sc_machdep.c projects/diffused_head/sys/sparc64/sparc64/schppm.c projects/diffused_head/sys/sparc64/sparc64/ssm.c projects/diffused_head/sys/sparc64/sparc64/sys_machdep.c projects/diffused_head/sys/sparc64/sparc64/tick.c projects/diffused_head/sys/sparc64/sparc64/upa.c projects/diffused_head/sys/sparc64/sparc64/vm_machdep.c projects/diffused_head/sys/sys/_null.h projects/diffused_head/sys/sys/bus.h projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/conf.h projects/diffused_head/sys/sys/cons.h projects/diffused_head/sys/sys/copyright.h projects/diffused_head/sys/sys/elf_common.h projects/diffused_head/sys/sys/event.h projects/diffused_head/sys/sys/fcntl.h projects/diffused_head/sys/sys/file.h projects/diffused_head/sys/sys/iconv.h projects/diffused_head/sys/sys/kobj.h projects/diffused_head/sys/sys/ktrace.h projects/diffused_head/sys/sys/libkern.h projects/diffused_head/sys/sys/lock.h projects/diffused_head/sys/sys/lockmgr.h projects/diffused_head/sys/sys/mchain.h projects/diffused_head/sys/sys/mman.h projects/diffused_head/sys/sys/msgbuf.h projects/diffused_head/sys/sys/mutex.h projects/diffused_head/sys/sys/namei.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/pmc.h projects/diffused_head/sys/sys/pmclog.h projects/diffused_head/sys/sys/proc.h projects/diffused_head/sys/sys/resource.h projects/diffused_head/sys/sys/rmlock.h projects/diffused_head/sys/sys/rwlock.h projects/diffused_head/sys/sys/sdt.h projects/diffused_head/sys/sys/sockio.h projects/diffused_head/sys/sys/stack.h projects/diffused_head/sys/sys/stdint.h projects/diffused_head/sys/sys/sx.h projects/diffused_head/sys/sys/syscall.h projects/diffused_head/sys/sys/syscall.mk projects/diffused_head/sys/sys/syscallsubr.h projects/diffused_head/sys/sys/sysctl.h projects/diffused_head/sys/sys/sysent.h projects/diffused_head/sys/sys/sysproto.h projects/diffused_head/sys/sys/systm.h projects/diffused_head/sys/sys/taskqueue.h projects/diffused_head/sys/sys/timepps.h projects/diffused_head/sys/sys/types.h projects/diffused_head/sys/sys/uio.h projects/diffused_head/sys/sys/umtx.h projects/diffused_head/sys/sys/unistd.h projects/diffused_head/sys/sys/user.h projects/diffused_head/sys/sys/vnode.h projects/diffused_head/sys/teken/demo/Makefile projects/diffused_head/sys/teken/libteken/Symbol.map projects/diffused_head/sys/teken/stress/teken_stress.c projects/diffused_head/sys/teken/teken_subr.h projects/diffused_head/sys/tools/makeobjops.awk projects/diffused_head/sys/ufs/ffs/ffs_alloc.c projects/diffused_head/sys/ufs/ffs/ffs_softdep.c projects/diffused_head/sys/ufs/ffs/fs.h projects/diffused_head/sys/ufs/ufs/dinode.h projects/diffused_head/sys/ufs/ufs/extattr.h projects/diffused_head/sys/ufs/ufs/ufs_quota.c projects/diffused_head/sys/ufs/ufs/ufs_vnops.c projects/diffused_head/sys/vm/device_pager.c projects/diffused_head/sys/vm/memguard.c projects/diffused_head/sys/vm/memguard.h projects/diffused_head/sys/vm/redzone.c projects/diffused_head/sys/vm/swap_pager.c projects/diffused_head/sys/vm/uma.h projects/diffused_head/sys/vm/uma_core.c projects/diffused_head/sys/vm/vm_contig.c projects/diffused_head/sys/vm/vm_extern.h projects/diffused_head/sys/vm/vm_glue.c projects/diffused_head/sys/vm/vm_kern.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_meter.c projects/diffused_head/sys/vm/vm_object.c projects/diffused_head/sys/vm/vm_object.h projects/diffused_head/sys/vm/vm_page.c projects/diffused_head/sys/vm/vm_page.h projects/diffused_head/sys/vm/vm_pager.c projects/diffused_head/sys/vm/vm_pager.h projects/diffused_head/sys/vm/vm_phys.c projects/diffused_head/sys/vm/vm_phys.h projects/diffused_head/sys/vm/vm_reserv.c projects/diffused_head/sys/vm/vm_reserv.h projects/diffused_head/sys/vm/vm_unix.c projects/diffused_head/sys/vm/vnode_pager.c projects/diffused_head/sys/x86/acpica/acpi_apm.c projects/diffused_head/sys/x86/acpica/madt.c projects/diffused_head/sys/x86/acpica/srat.c projects/diffused_head/sys/x86/bios/vpd.c projects/diffused_head/sys/x86/pci/pci_bus.c projects/diffused_head/sys/x86/pci/qpi.c projects/diffused_head/sys/x86/x86/busdma_machdep.c projects/diffused_head/sys/x86/x86/io_apic.c projects/diffused_head/sys/x86/x86/mca.c projects/diffused_head/sys/x86/x86/mptable_pci.c projects/diffused_head/sys/xen/evtchn/evtchn_dev.c projects/diffused_head/sys/xen/xenstore/xenstore.c projects/diffused_head/tools/KSE/ksetest/kse_threads_test.c projects/diffused_head/tools/build/mk/OptionalObsoleteFiles.inc projects/diffused_head/tools/debugscripts/gdbinit.i386 projects/diffused_head/tools/debugscripts/kld_deb.py projects/diffused_head/tools/regression/README projects/diffused_head/tools/regression/bin/sh/builtins/cd1.0 projects/diffused_head/tools/regression/bin/sh/builtins/getopts1.0 projects/diffused_head/tools/regression/bin/test/regress.sh projects/diffused_head/tools/regression/doat/doat.c projects/diffused_head/tools/regression/fifo/fifo_io/fifo_io.c projects/diffused_head/tools/regression/fifo/fifo_misc/fifo_misc.c projects/diffused_head/tools/regression/file/dup/dup.c projects/diffused_head/tools/regression/geom_eli/resize.t projects/diffused_head/tools/regression/kthread/kld/kthrdlk.c projects/diffused_head/tools/regression/lib/libc/gen/Makefile projects/diffused_head/tools/regression/lib/libc/nss/README projects/diffused_head/tools/regression/lib/msun/Makefile projects/diffused_head/tools/regression/lib/msun/test-fma.c projects/diffused_head/tools/regression/lib/msun/test-logarithm.c projects/diffused_head/tools/regression/lib/msun/test-nearbyint.c projects/diffused_head/tools/regression/msdosfs/msdosfstest-3.sh projects/diffused_head/tools/regression/msdosfs/msdosfstest-4.sh projects/diffused_head/tools/regression/msdosfs/msdosfstest-5.sh projects/diffused_head/tools/regression/msdosfs/msdosfstest-6.sh projects/diffused_head/tools/regression/nfsmmap/Makefile projects/diffused_head/tools/regression/nfsmmap/README projects/diffused_head/tools/regression/pipe/pipe-fstatbug.c projects/diffused_head/tools/regression/pipe/pipe-reverse.c projects/diffused_head/tools/regression/pipe/pipe-wraparound.c projects/diffused_head/tools/regression/pjdfstest/tests/chown/00.t projects/diffused_head/tools/regression/priv/priv_cred.c projects/diffused_head/tools/regression/pthread/mutex_isowned_np/mutex_isowned_np.c projects/diffused_head/tools/regression/sbin/Makefile projects/diffused_head/tools/regression/security/open_to_operation/open_to_operation.c projects/diffused_head/tools/regression/sockets/unix_passfd/unix_passfd.c projects/diffused_head/tools/regression/usr.bin/env/regress-sb.rb projects/diffused_head/tools/regression/usr.bin/make/README projects/diffused_head/tools/regression/usr.bin/make/variables/modifier_M/Makefile projects/diffused_head/tools/regression/usr.bin/make/variables/modifier_M/expected.stdout.1 projects/diffused_head/tools/regression/usr.bin/sed/math.sed projects/diffused_head/tools/regression/usr.sbin/newsyslog/regress.sh projects/diffused_head/tools/test/posixshm/shm_test.c projects/diffused_head/tools/test/testfloat/systemBugs.txt (contents, props changed) projects/diffused_head/tools/test/testfloat/testfloat-source.txt (contents, props changed) projects/diffused_head/tools/test/testfloat/testfloat.txt (contents, props changed) projects/diffused_head/tools/tools/README projects/diffused_head/tools/tools/ansify/ansify.pl projects/diffused_head/tools/tools/ath/Makefile projects/diffused_head/tools/tools/ath/athstats/athstats.c projects/diffused_head/tools/tools/bus_autoconf/bus_autoconf.c projects/diffused_head/tools/tools/cd2dvd/cd2dvd.sh projects/diffused_head/tools/tools/cxgbetool/cxgbetool.c projects/diffused_head/tools/tools/genericize/genericize.pl projects/diffused_head/tools/tools/hcomp/hcomp.pl projects/diffused_head/tools/tools/mtxstat/mtxstat.pl projects/diffused_head/tools/tools/nanobsd/gateworks/common projects/diffused_head/tools/tools/nanobsd/pcengines/Files/root/.cshrc projects/diffused_head/tools/tools/net80211/wesside/wesside/wesside.c projects/diffused_head/tools/tools/net80211/wlaninject/README projects/diffused_head/tools/tools/netrate/netblast/netblast.c projects/diffused_head/tools/tools/netrate/netreceive/netreceive.c projects/diffused_head/tools/tools/netrate/netsend/netsend.c projects/diffused_head/tools/tools/netrate/tcpp/tcpp_client.c projects/diffused_head/tools/tools/prstats/prstats.pl projects/diffused_head/tools/tools/sysbuild/README projects/diffused_head/tools/tools/sysbuild/sysbuild.sh projects/diffused_head/tools/tools/tinybsd/README projects/diffused_head/tools/tools/whereintheworld/whereintheworld.pl projects/diffused_head/tools/tools/zfsboottest/Makefile projects/diffused_head/tools/tools/zfsboottest/zfsboottest.c projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/ar/ar.1 projects/diffused_head/usr.bin/at/Makefile projects/diffused_head/usr.bin/at/at.c projects/diffused_head/usr.bin/at/parsetime.c projects/diffused_head/usr.bin/banner/banner.c projects/diffused_head/usr.bin/brandelf/brandelf.c projects/diffused_head/usr.bin/bsdiff/bsdiff/bsdiff.c projects/diffused_head/usr.bin/c99/c99.c projects/diffused_head/usr.bin/calendar/Makefile projects/diffused_head/usr.bin/calendar/calendar.1 projects/diffused_head/usr.bin/calendar/calendar.c projects/diffused_head/usr.bin/calendar/calendars/calendar.birthday projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/calendar/calendars/calendar.history projects/diffused_head/usr.bin/calendar/calendars/calendar.music projects/diffused_head/usr.bin/calendar/io.c projects/diffused_head/usr.bin/calendar/parsedata.c projects/diffused_head/usr.bin/cap_mkdb/cap_mkdb.c projects/diffused_head/usr.bin/catman/catman.c projects/diffused_head/usr.bin/checknr/checknr.c projects/diffused_head/usr.bin/chpass/chpass.h projects/diffused_head/usr.bin/chpass/table.c projects/diffused_head/usr.bin/cksum/cksum.c projects/diffused_head/usr.bin/clang/Makefile projects/diffused_head/usr.bin/clang/clang/Makefile projects/diffused_head/usr.bin/clang/clang/clang.1 projects/diffused_head/usr.bin/clang/tblgen/Makefile projects/diffused_head/usr.bin/cmp/extern.h projects/diffused_head/usr.bin/col/col.c projects/diffused_head/usr.bin/colcrt/colcrt.c projects/diffused_head/usr.bin/column/column.c projects/diffused_head/usr.bin/comm/comm.1 projects/diffused_head/usr.bin/comm/comm.c projects/diffused_head/usr.bin/compress/compress.c projects/diffused_head/usr.bin/compress/doc/NOTES projects/diffused_head/usr.bin/cpio/Makefile projects/diffused_head/usr.bin/cpio/test/Makefile projects/diffused_head/usr.bin/cpuset/cpuset.c projects/diffused_head/usr.bin/csplit/csplit.c projects/diffused_head/usr.bin/csup/Makefile projects/diffused_head/usr.bin/csup/auth.c projects/diffused_head/usr.bin/csup/fixups.c projects/diffused_head/usr.bin/csup/misc.c projects/diffused_head/usr.bin/csup/misc.h projects/diffused_head/usr.bin/csup/mux.c projects/diffused_head/usr.bin/csup/proto.c projects/diffused_head/usr.bin/csup/rcsfile.c projects/diffused_head/usr.bin/cut/cut.c projects/diffused_head/usr.bin/dc/Makefile projects/diffused_head/usr.bin/dc/dc.c projects/diffused_head/usr.bin/du/du.1 projects/diffused_head/usr.bin/du/du.c projects/diffused_head/usr.bin/elfdump/elfdump.c projects/diffused_head/usr.bin/enigma/enigma.c projects/diffused_head/usr.bin/expand/expand.c projects/diffused_head/usr.bin/find/main.c projects/diffused_head/usr.bin/finger/Makefile projects/diffused_head/usr.bin/finger/finger.c projects/diffused_head/usr.bin/finger/lprint.c projects/diffused_head/usr.bin/fold/fold.c projects/diffused_head/usr.bin/fstat/fstat.c projects/diffused_head/usr.bin/fstat/fuser.c projects/diffused_head/usr.bin/getent/getent.c projects/diffused_head/usr.bin/gprof/aout.c projects/diffused_head/usr.bin/gprof/arcs.c projects/diffused_head/usr.bin/grep/Makefile projects/diffused_head/usr.bin/grep/file.c projects/diffused_head/usr.bin/grep/grep.c projects/diffused_head/usr.bin/grep/grep.h projects/diffused_head/usr.bin/grep/regex/tre-fastmatch.c projects/diffused_head/usr.bin/grep/util.c projects/diffused_head/usr.bin/gzip/Makefile projects/diffused_head/usr.bin/gzip/gzip.1 projects/diffused_head/usr.bin/gzip/gzip.c projects/diffused_head/usr.bin/hexdump/conv.c projects/diffused_head/usr.bin/hexdump/display.c projects/diffused_head/usr.bin/hexdump/hexdump.c projects/diffused_head/usr.bin/hexdump/hexsyntax.c projects/diffused_head/usr.bin/hexdump/od.1 projects/diffused_head/usr.bin/hexdump/parse.c projects/diffused_head/usr.bin/id/id.c projects/diffused_head/usr.bin/indent/indent.c projects/diffused_head/usr.bin/indent/io.c projects/diffused_head/usr.bin/ipcs/ipc.c projects/diffused_head/usr.bin/ipcs/ipc.h projects/diffused_head/usr.bin/join/join.c projects/diffused_head/usr.bin/kdump/Makefile projects/diffused_head/usr.bin/kdump/kdump.c projects/diffused_head/usr.bin/kdump/mkioctls projects/diffused_head/usr.bin/kdump/mksubr projects/diffused_head/usr.bin/ktrace/Makefile projects/diffused_head/usr.bin/ktrace/ktrace.1 projects/diffused_head/usr.bin/ktrace/ktrace.c projects/diffused_head/usr.bin/ktrace/ktrace.h projects/diffused_head/usr.bin/ktrace/subr.c projects/diffused_head/usr.bin/lam/lam.c projects/diffused_head/usr.bin/last/Makefile projects/diffused_head/usr.bin/last/last.c projects/diffused_head/usr.bin/leave/Makefile projects/diffused_head/usr.bin/lex/NEWS projects/diffused_head/usr.bin/lex/flexdef.h projects/diffused_head/usr.bin/lex/main.c projects/diffused_head/usr.bin/lex/tblcmp.c projects/diffused_head/usr.bin/limits/limits.c projects/diffused_head/usr.bin/locate/locate/fastfind.c projects/diffused_head/usr.bin/locate/locate/locate.c projects/diffused_head/usr.bin/locate/locate/util.c projects/diffused_head/usr.bin/lock/lock.c projects/diffused_head/usr.bin/logger/logger.c projects/diffused_head/usr.bin/login/login_fbtab.c projects/diffused_head/usr.bin/logins/logins.1 projects/diffused_head/usr.bin/logins/logins.c projects/diffused_head/usr.bin/look/Makefile projects/diffused_head/usr.bin/look/look.c projects/diffused_head/usr.bin/lzmainfo/Makefile projects/diffused_head/usr.bin/m4/Makefile projects/diffused_head/usr.bin/m4/eval.c projects/diffused_head/usr.bin/m4/expr.c projects/diffused_head/usr.bin/m4/extern.h projects/diffused_head/usr.bin/m4/gnum4.c projects/diffused_head/usr.bin/m4/look.c projects/diffused_head/usr.bin/m4/m4.1 projects/diffused_head/usr.bin/m4/main.c projects/diffused_head/usr.bin/m4/mdef.h projects/diffused_head/usr.bin/m4/misc.c projects/diffused_head/usr.bin/m4/pathnames.h projects/diffused_head/usr.bin/m4/stdd.h projects/diffused_head/usr.bin/m4/trace.c projects/diffused_head/usr.bin/mail/cmd1.c projects/diffused_head/usr.bin/mail/extern.h projects/diffused_head/usr.bin/mail/head.c projects/diffused_head/usr.bin/mail/lex.c projects/diffused_head/usr.bin/mail/main.c projects/diffused_head/usr.bin/mail/util.c projects/diffused_head/usr.bin/make/GNode.h projects/diffused_head/usr.bin/make/Makefile projects/diffused_head/usr.bin/make/arch.c projects/diffused_head/usr.bin/make/buf.c projects/diffused_head/usr.bin/make/for.c projects/diffused_head/usr.bin/make/globals.h projects/diffused_head/usr.bin/make/job.c projects/diffused_head/usr.bin/make/main.c projects/diffused_head/usr.bin/make/make.1 projects/diffused_head/usr.bin/make/str.c projects/diffused_head/usr.bin/make/var.c projects/diffused_head/usr.bin/man/man.sh projects/diffused_head/usr.bin/ministat/ministat.c projects/diffused_head/usr.bin/mkesdb/Makefile.inc projects/diffused_head/usr.bin/mt/mt.c projects/diffused_head/usr.bin/ncplist/Makefile projects/diffused_head/usr.bin/ncplist/ncplist.c projects/diffused_head/usr.bin/ncplogin/ncplogin.c projects/diffused_head/usr.bin/netstat/Makefile projects/diffused_head/usr.bin/netstat/if.c projects/diffused_head/usr.bin/netstat/inet.c projects/diffused_head/usr.bin/netstat/inet6.c projects/diffused_head/usr.bin/netstat/ipx.c projects/diffused_head/usr.bin/netstat/sctp.c projects/diffused_head/usr.bin/newgrp/newgrp.c projects/diffused_head/usr.bin/nl/Makefile projects/diffused_head/usr.bin/nl/nl.c projects/diffused_head/usr.bin/paste/paste.c projects/diffused_head/usr.bin/pr/extern.h projects/diffused_head/usr.bin/pr/pr.c projects/diffused_head/usr.bin/procstat/Makefile projects/diffused_head/usr.bin/procstat/procstat.1 projects/diffused_head/usr.bin/procstat/procstat.c projects/diffused_head/usr.bin/procstat/procstat.h projects/diffused_head/usr.bin/procstat/procstat_args.c projects/diffused_head/usr.bin/procstat/procstat_vm.c projects/diffused_head/usr.bin/quota/quota.c projects/diffused_head/usr.bin/rctl/rctl.8 projects/diffused_head/usr.bin/rlogin/rlogin.c projects/diffused_head/usr.bin/rpcgen/rpc_main.c projects/diffused_head/usr.bin/rpcgen/rpc_svcout.c projects/diffused_head/usr.bin/rpcinfo/rpcinfo.c projects/diffused_head/usr.bin/rs/rs.c projects/diffused_head/usr.bin/ruptime/Makefile projects/diffused_head/usr.bin/ruptime/ruptime.c projects/diffused_head/usr.bin/rusers/rusers.c projects/diffused_head/usr.bin/rwall/rwall.c projects/diffused_head/usr.bin/rwho/Makefile projects/diffused_head/usr.bin/rwho/rwho.c projects/diffused_head/usr.bin/script/script.c projects/diffused_head/usr.bin/sed/sed.1 projects/diffused_head/usr.bin/seq/seq.c projects/diffused_head/usr.bin/sockstat/sockstat.1 projects/diffused_head/usr.bin/sockstat/sockstat.c projects/diffused_head/usr.bin/split/split.c projects/diffused_head/usr.bin/systat/cmds.c projects/diffused_head/usr.bin/systat/cmdtab.c projects/diffused_head/usr.bin/systat/devs.c projects/diffused_head/usr.bin/systat/fetch.c projects/diffused_head/usr.bin/systat/icmp6.c projects/diffused_head/usr.bin/systat/ifcmds.c projects/diffused_head/usr.bin/systat/ifstat.c projects/diffused_head/usr.bin/systat/keyboard.c projects/diffused_head/usr.bin/systat/mode.c projects/diffused_head/usr.bin/systat/mode.h projects/diffused_head/usr.bin/systat/netcmds.c projects/diffused_head/usr.bin/systat/netstat.c projects/diffused_head/usr.bin/systat/systat.h projects/diffused_head/usr.bin/systat/vmstat.c projects/diffused_head/usr.bin/tail/forward.c projects/diffused_head/usr.bin/tail/tail.c projects/diffused_head/usr.bin/talk/ctl.c projects/diffused_head/usr.bin/talk/ctl_transact.c projects/diffused_head/usr.bin/talk/get_names.c projects/diffused_head/usr.bin/talk/init_disp.c projects/diffused_head/usr.bin/talk/invite.c projects/diffused_head/usr.bin/talk/talk.h projects/diffused_head/usr.bin/tar/Makefile projects/diffused_head/usr.bin/tar/test/Makefile projects/diffused_head/usr.bin/tcopy/tcopy.c projects/diffused_head/usr.bin/tee/tee.c projects/diffused_head/usr.bin/tftp/main.c projects/diffused_head/usr.bin/tip/tip/tip.h projects/diffused_head/usr.bin/top/machine.c projects/diffused_head/usr.bin/tr/Makefile projects/diffused_head/usr.bin/tr/cset.c projects/diffused_head/usr.bin/tr/str.c projects/diffused_head/usr.bin/tr/tr.c projects/diffused_head/usr.bin/truss/Makefile projects/diffused_head/usr.bin/truss/amd64-linux32.c projects/diffused_head/usr.bin/truss/extern.h projects/diffused_head/usr.bin/truss/i386-linux.c projects/diffused_head/usr.bin/truss/main.c projects/diffused_head/usr.bin/truss/setup.c projects/diffused_head/usr.bin/truss/syscalls.c projects/diffused_head/usr.bin/tset/map.c projects/diffused_head/usr.bin/tset/term.c projects/diffused_head/usr.bin/tset/wrterm.c projects/diffused_head/usr.bin/tsort/tsort.c projects/diffused_head/usr.bin/ul/ul.c projects/diffused_head/usr.bin/uname/uname.c projects/diffused_head/usr.bin/unexpand/unexpand.c projects/diffused_head/usr.bin/unifdef/unifdef.c projects/diffused_head/usr.bin/uniq/uniq.c projects/diffused_head/usr.bin/units/units.c projects/diffused_head/usr.bin/unzip/unzip.1 projects/diffused_head/usr.bin/unzip/unzip.c projects/diffused_head/usr.bin/usbhidaction/usbhidaction.c projects/diffused_head/usr.bin/usbhidctl/usbhid.c projects/diffused_head/usr.bin/uuencode/uuencode.c projects/diffused_head/usr.bin/vacation/Makefile projects/diffused_head/usr.bin/vgrind/extern.h projects/diffused_head/usr.bin/vgrind/vfontedpr.c projects/diffused_head/usr.bin/vis/vis.c projects/diffused_head/usr.bin/vmstat/vmstat.c projects/diffused_head/usr.bin/w/w.c projects/diffused_head/usr.bin/wall/wall.c projects/diffused_head/usr.bin/wc/wc.c projects/diffused_head/usr.bin/whereis/pathnames.h projects/diffused_head/usr.bin/whereis/whereis.c projects/diffused_head/usr.bin/which/which.c projects/diffused_head/usr.bin/who/who.1 projects/diffused_head/usr.bin/who/who.c projects/diffused_head/usr.bin/whois/whois.c projects/diffused_head/usr.bin/xinstall/xinstall.c projects/diffused_head/usr.bin/xlint/lint1/decl.c projects/diffused_head/usr.bin/xlint/lint1/emit1.c projects/diffused_head/usr.bin/xlint/lint1/func.c projects/diffused_head/usr.bin/xlint/lint1/mem1.c projects/diffused_head/usr.bin/xlint/lint2/chk.c projects/diffused_head/usr.bin/xlint/lint2/read.c projects/diffused_head/usr.bin/xlint/xlint/xlint.c projects/diffused_head/usr.bin/xstr/xstr.c projects/diffused_head/usr.bin/xzdec/Makefile projects/diffused_head/usr.bin/yacc/NEW_FEATURES projects/diffused_head/usr.bin/yacc/reader.c projects/diffused_head/usr.sbin/IPXrouted/sap_input.c projects/diffused_head/usr.sbin/IPXrouted/sap_tables.c projects/diffused_head/usr.sbin/Makefile projects/diffused_head/usr.sbin/acpi/Makefile.inc projects/diffused_head/usr.sbin/acpi/acpiconf/acpiconf.8 projects/diffused_head/usr.sbin/acpi/acpidb/Makefile projects/diffused_head/usr.sbin/acpi/acpidb/acpidb.c projects/diffused_head/usr.sbin/acpi/iasl/Makefile projects/diffused_head/usr.sbin/adduser/adduser.sh projects/diffused_head/usr.sbin/apm/apm.c projects/diffused_head/usr.sbin/bluetooth/bt3cfw/bt3cfw.c projects/diffused_head/usr.sbin/bluetooth/btpand/event.h projects/diffused_head/usr.sbin/bluetooth/hccontrol/host_controller_baseband.c projects/diffused_head/usr.sbin/bluetooth/sdpd/server.c projects/diffused_head/usr.sbin/boot0cfg/Makefile projects/diffused_head/usr.sbin/boot0cfg/boot0cfg.8 projects/diffused_head/usr.sbin/boot0cfg/boot0cfg.c projects/diffused_head/usr.sbin/bootparamd/bootparamd/README projects/diffused_head/usr.sbin/bootparamd/bootparamd/bootparamd.c projects/diffused_head/usr.sbin/bsdinstall/distextract/distextract.c projects/diffused_head/usr.sbin/bsdinstall/distfetch/distfetch.c projects/diffused_head/usr.sbin/bsdinstall/partedit/gpart_ops.c projects/diffused_head/usr.sbin/bsdinstall/partedit/partedit.c projects/diffused_head/usr.sbin/bsdinstall/scripts/auto projects/diffused_head/usr.sbin/bsdinstall/scripts/netconfig projects/diffused_head/usr.sbin/bsdinstall/scripts/services projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_addrs.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_if.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_port.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_bridge/bridge_sys.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_diskstorage_tbl.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_scalars.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.h projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_wlan/BEGEMOT-WIRELESS-MIB.txt projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.h projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_tree.def projects/diffused_head/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 projects/diffused_head/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.c projects/diffused_head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpmap.c projects/diffused_head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.c projects/diffused_head/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmptools.h projects/diffused_head/usr.sbin/burncd/burncd.8 projects/diffused_head/usr.sbin/burncd/burncd.c projects/diffused_head/usr.sbin/cdcontrol/cdcontrol.c projects/diffused_head/usr.sbin/chkgrp/chkgrp.8 projects/diffused_head/usr.sbin/chkgrp/chkgrp.c projects/diffused_head/usr.sbin/chown/chown.c projects/diffused_head/usr.sbin/chroot/chroot.c projects/diffused_head/usr.sbin/config/main.c projects/diffused_head/usr.sbin/config/mkmakefile.c projects/diffused_head/usr.sbin/cpucontrol/Makefile projects/diffused_head/usr.sbin/cpucontrol/cpucontrol.c projects/diffused_head/usr.sbin/cron/cron/do_command.c projects/diffused_head/usr.sbin/cron/crontab/crontab.5 projects/diffused_head/usr.sbin/cron/doc/CHANGES projects/diffused_head/usr.sbin/cron/doc/MAIL projects/diffused_head/usr.sbin/cron/lib/entry.c projects/diffused_head/usr.sbin/ctm/ctm_dequeue/ctm_dequeue.c projects/diffused_head/usr.sbin/daemon/daemon.c projects/diffused_head/usr.sbin/devinfo/devinfo.c projects/diffused_head/usr.sbin/edquota/edquota.c projects/diffused_head/usr.sbin/fdread/fdread.c projects/diffused_head/usr.sbin/freebsd-update/freebsd-update.sh projects/diffused_head/usr.sbin/fwcontrol/fwcontrol.c projects/diffused_head/usr.sbin/fwcontrol/fwmpegts.c projects/diffused_head/usr.sbin/i2c/i2c.c projects/diffused_head/usr.sbin/ifmcstat/ifmcstat.c projects/diffused_head/usr.sbin/inetd/builtins.c projects/diffused_head/usr.sbin/inetd/inetd.c projects/diffused_head/usr.sbin/iostat/iostat.c projects/diffused_head/usr.sbin/ipfwpcap/ipfwpcap.c projects/diffused_head/usr.sbin/kbdcontrol/kbdcontrol.c projects/diffused_head/usr.sbin/kbdcontrol/lex.h projects/diffused_head/usr.sbin/kbdcontrol/lex.l projects/diffused_head/usr.sbin/kbdmap/kbdmap.c projects/diffused_head/usr.sbin/keyserv/crypt_server.c projects/diffused_head/usr.sbin/keyserv/keyserv.c projects/diffused_head/usr.sbin/kgmon/kgmon.c projects/diffused_head/usr.sbin/kldxref/kldxref.8 projects/diffused_head/usr.sbin/lpr/common_source/rmjob.c projects/diffused_head/usr.sbin/lpr/filters/lpf.c projects/diffused_head/usr.sbin/lpr/lpc/cmds.c projects/diffused_head/usr.sbin/lpr/lpd/printjob.c projects/diffused_head/usr.sbin/lpr/pac/pac.c projects/diffused_head/usr.sbin/makefs/cd9660/cd9660_eltorito.c projects/diffused_head/usr.sbin/makefs/cd9660/cd9660_write.c projects/diffused_head/usr.sbin/makefs/cd9660/iso9660_rrip.c projects/diffused_head/usr.sbin/makefs/ffs.c projects/diffused_head/usr.sbin/makefs/ffs.h projects/diffused_head/usr.sbin/makefs/ffs/ffs_extern.h projects/diffused_head/usr.sbin/makefs/ffs/ffs_subr.c projects/diffused_head/usr.sbin/makefs/ffs/mkfs.c projects/diffused_head/usr.sbin/makefs/makefs.8 projects/diffused_head/usr.sbin/makefs/walk.c projects/diffused_head/usr.sbin/memcontrol/memcontrol.c projects/diffused_head/usr.sbin/mergemaster/mergemaster.8 projects/diffused_head/usr.sbin/mergemaster/mergemaster.sh projects/diffused_head/usr.sbin/mfiutil/mfi_config.c projects/diffused_head/usr.sbin/mfiutil/mfi_evt.c projects/diffused_head/usr.sbin/mixer/mixer.c projects/diffused_head/usr.sbin/mlxcontrol/interface.c projects/diffused_head/usr.sbin/mount_portalfs/cred.c projects/diffused_head/usr.sbin/mount_portalfs/mount_portalfs.c projects/diffused_head/usr.sbin/mount_portalfs/pt_pipe.c projects/diffused_head/usr.sbin/mount_portalfs/pt_tcplisten.c projects/diffused_head/usr.sbin/mountd/mountd.c projects/diffused_head/usr.sbin/moused/moused.c projects/diffused_head/usr.sbin/mptable/mptable.c projects/diffused_head/usr.sbin/mptutil/mpt_config.c projects/diffused_head/usr.sbin/mtree/mtree.5 projects/diffused_head/usr.sbin/mtree/spec.c projects/diffused_head/usr.sbin/ndiscvt/Makefile projects/diffused_head/usr.sbin/ndiscvt/inf-token.l projects/diffused_head/usr.sbin/newsyslog/newsyslog.c projects/diffused_head/usr.sbin/nscd/protocol.h projects/diffused_head/usr.sbin/ntp/doc/ntp.conf.5 projects/diffused_head/usr.sbin/pc-sysinstall/backend-partmanager/delete-part.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend-query/sys-mem.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-disk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-networking.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-parse.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-unmount.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/parseconfig.sh projects/diffused_head/usr.sbin/pciconf/pciconf.c projects/diffused_head/usr.sbin/pkg_install/README projects/diffused_head/usr.sbin/pkg_install/add/add.h projects/diffused_head/usr.sbin/pkg_install/add/extract.c projects/diffused_head/usr.sbin/pkg_install/add/futil.c projects/diffused_head/usr.sbin/pkg_install/add/main.c projects/diffused_head/usr.sbin/pkg_install/add/perform.c projects/diffused_head/usr.sbin/pkg_install/add/pkg_add.1 projects/diffused_head/usr.sbin/pkg_install/create/create.h projects/diffused_head/usr.sbin/pkg_install/create/main.c projects/diffused_head/usr.sbin/pkg_install/create/perform.c projects/diffused_head/usr.sbin/pkg_install/create/pkg_create.1 projects/diffused_head/usr.sbin/pkg_install/create/pl.c projects/diffused_head/usr.sbin/pkg_install/delete/delete.h projects/diffused_head/usr.sbin/pkg_install/delete/main.c projects/diffused_head/usr.sbin/pkg_install/delete/perform.c projects/diffused_head/usr.sbin/pkg_install/delete/pkg_delete.1 projects/diffused_head/usr.sbin/pkg_install/info/info.h projects/diffused_head/usr.sbin/pkg_install/info/main.c projects/diffused_head/usr.sbin/pkg_install/info/perform.c projects/diffused_head/usr.sbin/pkg_install/info/show.c projects/diffused_head/usr.sbin/pkg_install/lib/deps.c projects/diffused_head/usr.sbin/pkg_install/lib/exec.c projects/diffused_head/usr.sbin/pkg_install/lib/file.c projects/diffused_head/usr.sbin/pkg_install/lib/global.c projects/diffused_head/usr.sbin/pkg_install/lib/lib.h projects/diffused_head/usr.sbin/pkg_install/lib/match.c projects/diffused_head/usr.sbin/pkg_install/lib/msg.c projects/diffused_head/usr.sbin/pkg_install/lib/pen.c projects/diffused_head/usr.sbin/pkg_install/lib/plist.c projects/diffused_head/usr.sbin/pkg_install/lib/str.c projects/diffused_head/usr.sbin/pkg_install/lib/url.c projects/diffused_head/usr.sbin/pkg_install/lib/version.c projects/diffused_head/usr.sbin/pkg_install/updating/main.c projects/diffused_head/usr.sbin/pkg_install/updating/pathnames.h projects/diffused_head/usr.sbin/pkg_install/updating/pkg_updating.1 projects/diffused_head/usr.sbin/pkg_install/version/main.c projects/diffused_head/usr.sbin/pkg_install/version/perform.c projects/diffused_head/usr.sbin/pkg_install/version/version.h projects/diffused_head/usr.sbin/pmccontrol/pmccontrol.c projects/diffused_head/usr.sbin/pmcstat/pmcpl_calltree.c projects/diffused_head/usr.sbin/pmcstat/pmcpl_gprof.c projects/diffused_head/usr.sbin/pmcstat/pmcstat.c projects/diffused_head/usr.sbin/pmcstat/pmcstat_log.c projects/diffused_head/usr.sbin/portsnap/portsnap/portsnap.sh projects/diffused_head/usr.sbin/powerd/powerd.c projects/diffused_head/usr.sbin/ppp/cbcp.c projects/diffused_head/usr.sbin/ppp/chat.h projects/diffused_head/usr.sbin/ppp/command.c projects/diffused_head/usr.sbin/ppp/mp.c projects/diffused_head/usr.sbin/ppp/ppp.8.m4 projects/diffused_head/usr.sbin/ppp/vjcomp.c projects/diffused_head/usr.sbin/pw/cpdir.c projects/diffused_head/usr.sbin/pw/pw.8 projects/diffused_head/usr.sbin/pw/pw_user.c projects/diffused_head/usr.sbin/pwd_mkdb/pwd_mkdb.c projects/diffused_head/usr.sbin/quotaon/quotaon.c projects/diffused_head/usr.sbin/rip6query/rip6query.c projects/diffused_head/usr.sbin/rmt/rmt.c projects/diffused_head/usr.sbin/route6d/route6d.c projects/diffused_head/usr.sbin/rpc.lockd/kern.c projects/diffused_head/usr.sbin/rpc.lockd/lockd_lock.c projects/diffused_head/usr.sbin/rpc.ypupdated/yp_dbupdate.c projects/diffused_head/usr.sbin/rpcbind/check_bound.c projects/diffused_head/usr.sbin/rpcbind/rpcbind.c projects/diffused_head/usr.sbin/rtadvd/config.c projects/diffused_head/usr.sbin/rtadvd/rtadvd.c projects/diffused_head/usr.sbin/rtprio/rtprio.c projects/diffused_head/usr.sbin/rtsold/rtsold.8 projects/diffused_head/usr.sbin/rwhod/rwhod.c projects/diffused_head/usr.sbin/sa/db.c projects/diffused_head/usr.sbin/sade/Makefile projects/diffused_head/usr.sbin/sade/devices.c projects/diffused_head/usr.sbin/sade/disks.c projects/diffused_head/usr.sbin/sade/dmenu.c projects/diffused_head/usr.sbin/sade/install.c projects/diffused_head/usr.sbin/sade/label.c projects/diffused_head/usr.sbin/sade/main.c projects/diffused_head/usr.sbin/sade/menus.c projects/diffused_head/usr.sbin/sade/misc.c projects/diffused_head/usr.sbin/sade/msg.c projects/diffused_head/usr.sbin/sade/sade.h projects/diffused_head/usr.sbin/sade/system.c projects/diffused_head/usr.sbin/sade/variable.c projects/diffused_head/usr.sbin/sendmail/Makefile projects/diffused_head/usr.sbin/snapinfo/snapinfo.c projects/diffused_head/usr.sbin/spray/spray.c projects/diffused_head/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/diffused_head/usr.sbin/timed/timed/CHANGES projects/diffused_head/usr.sbin/timed/timed/correct.c projects/diffused_head/usr.sbin/timed/timed/globals.h projects/diffused_head/usr.sbin/timed/timed/networkdelta.c projects/diffused_head/usr.sbin/timed/timed/readmsg.c projects/diffused_head/usr.sbin/timed/timed/timed.c projects/diffused_head/usr.sbin/timed/timedc/cmds.c projects/diffused_head/usr.sbin/tzsetup/Makefile projects/diffused_head/usr.sbin/tzsetup/tzsetup.c projects/diffused_head/usr.sbin/uhsoctl/uhsoctl.c projects/diffused_head/usr.sbin/usbdump/usbdump.c projects/diffused_head/usr.sbin/vidcontrol/decode.c projects/diffused_head/usr.sbin/vidcontrol/vidcontrol.c projects/diffused_head/usr.sbin/wpa/hostapd/driver_freebsd.c projects/diffused_head/usr.sbin/yp_mkdb/yp_mkdb.c projects/diffused_head/usr.sbin/ypbind/ypbind.c projects/diffused_head/usr.sbin/ypserv/yp_access.c projects/diffused_head/usr.sbin/ypserv/yp_main.c Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/contrib/bind9/ (props changed) projects/diffused_head/contrib/binutils/ (props changed) projects/diffused_head/contrib/bzip2/ (props changed) projects/diffused_head/contrib/compiler-rt/ (props changed) projects/diffused_head/contrib/ee/ (props changed) projects/diffused_head/contrib/file/ (props changed) projects/diffused_head/contrib/gcc/ (props changed) projects/diffused_head/contrib/gdtoa/ (props changed) projects/diffused_head/contrib/groff/ (props changed) projects/diffused_head/contrib/less/ (props changed) projects/diffused_head/contrib/libarchive/cpio/ (props changed) projects/diffused_head/contrib/libarchive/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/libarchive_fe/ (props changed) projects/diffused_head/contrib/libarchive/tar/ (props changed) projects/diffused_head/contrib/libstdc++/ (props changed) projects/diffused_head/contrib/llvm/ (props changed) projects/diffused_head/contrib/llvm/tools/clang/ (props changed) projects/diffused_head/contrib/netcat/ (props changed) projects/diffused_head/contrib/openpam/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/contrib/tcpdump/ (props changed) projects/diffused_head/contrib/tzcode/stdtime/ (props changed) projects/diffused_head/contrib/tzcode/zic/ (props changed) projects/diffused_head/contrib/tzdata/ (props changed) projects/diffused_head/crypto/heimdal/ (props changed) projects/diffused_head/crypto/openssh/ (props changed) projects/diffused_head/gnu/lib/ (props changed) projects/diffused_head/gnu/usr.bin/binutils/ (props changed) projects/diffused_head/gnu/usr.bin/cc/cc_tools/ (props changed) projects/diffused_head/gnu/usr.bin/gdb/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libc/stdtime/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/boot/powerpc/boot1.chrp/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/ (props changed) projects/diffused_head/sys/contrib/octeon-sdk/ (props changed) projects/diffused_head/sys/contrib/pf/ (props changed) projects/diffused_head/tools/build/options/WITHOUT_GPIO (props changed) projects/diffused_head/tools/build/options/WITH_OFED (props changed) projects/diffused_head/tools/test/testfloat/testfloat-history.txt (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/csup/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) projects/diffused_head/usr.sbin/ndiscvt/ (props changed) projects/diffused_head/usr.sbin/rtadvd/ (props changed) projects/diffused_head/usr.sbin/rtsold/ (props changed) Modified: projects/diffused_head/COPYRIGHT ============================================================================== --- projects/diffused_head/COPYRIGHT Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/COPYRIGHT Mon Nov 26 04:18:58 2012 (r243543) @@ -4,7 +4,7 @@ The compilation of software known as FreeBSD is distributed under the following terms: -Copyright (c) 1992-2011 The FreeBSD Project. All rights reserved. +Copyright (c) 1992-2012 The FreeBSD Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/Makefile Mon Nov 26 04:18:58 2012 (r243543) @@ -182,10 +182,12 @@ buildworld: upgrade_checks # # In the following, the first 'rm' in a series will usually remove all # files and directories. If it does not, then there are probably some -# files with chflags set, so this unsets them and tries the 'rm' a +# files with file flags set, so this unsets them and tries the 'rm' a # second time. There are situations where this target will be cleaning # some directories via more than one method, but that duplication is -# needed to correctly handle all the possible situations. +# needed to correctly handle all the possible situations. Removing all +# files without file flags set in the first 'rm' instance saves time, +# because 'chflags' will need to operate on fewer files afterwards. # BW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR} cleanworld: Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/Makefile.inc1 Mon Nov 26 04:18:58 2012 (r243543) @@ -15,6 +15,8 @@ # -DNO_WWWUPDATE do not update www in ${MAKE} update # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list +# LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools +# list # TARGET="machine" to crossbuild world for a different machine type # TARGET_ARCH= may be required when a TARGET supports multiple endians @@ -59,8 +61,6 @@ SUBDIR+=games .endif .if ${MK_CDDL} != "no" SUBDIR+=cddl -.else -NO_CTF=1 .endif SUBDIR+=gnu include .if ${MK_KERBEROS} != "no" @@ -106,6 +106,8 @@ CLEANDIR= clean cleandepend CLEANDIR= cleandir .endif +LOCAL_TOOL_DIRS?= + CVS?= cvs CVSFLAGS?= -A -P -d -I! SVN?= svn @@ -239,7 +241,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \ - -DNO_PIC -DWITHOUT_PROFILE -DNO_SHARED \ + -DNO_PIC -DNO_PROFILE -DNO_SHARED \ -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF # build-tools stage @@ -278,7 +280,6 @@ LIB32CPUFLAGS= -march=i686 -mmmx -msse - .else LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} .endif -LIB32CPUFLAGS+= -mfancy-math-387 LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ MACHINE_CPU="i686 mmx sse sse2" \ LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ @@ -291,7 +292,7 @@ LIB32CPUFLAGS= -mcpu=powerpc LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc \ - LD="${LD} -m elf32ppc" + LD="${LD} -m elf32ppc_fbsd" .endif @@ -313,7 +314,8 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ - -DWITHOUT_HTML -DNO_CTF -DNO_LINT DESTDIR=${LIB32TMP} + -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ + DESTDIR=${LIB32TMP} LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS .endif @@ -437,7 +439,7 @@ _libraries: @echo "--------------------------------------------------------------" ${_+_}cd ${.CURDIR}; \ ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ - -DWITHOUT_MAN -DWITHOUT_PROFILE libraries + -DWITHOUT_MAN -DNO_PROFILE libraries _depend: @echo @echo "--------------------------------------------------------------" @@ -1018,7 +1020,8 @@ _yacc= usr.bin/yacc _awk= usr.bin/awk .endif -.if ${BOOTSTRAPPING} < 700018 +.if ${MK_BSNMP} != "no" && \ + (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree)) _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif @@ -1030,7 +1033,9 @@ _crunchgen= usr.sbin/crunch/crunchgen .if ${MK_CLANG} != "no" _clang_tblgen= \ lib/clang/libllvmsupport \ - usr.bin/clang/tblgen + lib/clang/libllvmtablegen \ + usr.bin/clang/tblgen \ + usr.bin/clang/clang-tblgen .endif .if ${MK_CDDL} != "no" && \ @@ -1100,6 +1105,7 @@ build-tools: bin/csh \ bin/sh \ ${_rescue} \ + ${LOCAL_TOOL_DIRS} \ lib/ncurses/ncurses \ lib/ncurses/ncursesw \ ${_share} \ @@ -1214,6 +1220,9 @@ _startup_libs+= lib/csu/${MACHINE_CPUARC _startup_libs+= gnu/lib/libgcc _startup_libs+= lib/libcompiler_rt _startup_libs+= lib/libc +.if ${MK_LIBCPLUSPLUS} != "no" +_startup_libs+= lib/libcxxrt +.endif gnu/lib/libgcc__L: lib/libc__L @@ -1314,8 +1323,8 @@ ${_lib}__PL: .PHONY cd ${.CURDIR}/${_lib}; \ ${MAKE} DIRPRFX=${_lib}/ obj; \ ${MAKE} DIRPRFX=${_lib}/ depend; \ - ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ - ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install + ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ + ${MAKE} -DNO_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install .endif .endfor @@ -1548,7 +1557,7 @@ XDEV_CPUTYPE?=${TARGET_CPUTYPE} .endif NOFUN=-DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ - -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE \ + -DWITHOUT_MAN -DWITHOUT_NLS -DNO_PROFILE \ -DWITHOUT_KERBEROS -DWITHOUT_RESCUE -DNO_WARNS \ TARGET=${XDEV} TARGET_ARCH=${XDEV_ARCH} \ CPUTYPE=${XDEV_CPUTYPE} @@ -1632,4 +1641,7 @@ _xi-links: ln -sf ../../${XDTP}/usr/bin/$$i \ ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \ done +.else +xdev xdev-buil xdev-install: + @echo "*** Error: Both XDEV and XDEV_ARCH must be defined for \"${.TARGET}\" target" .endif Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/ObsoleteFiles.inc Mon Nov 26 04:18:58 2012 (r243543) @@ -38,16 +38,33 @@ # xargs -n1 | sort | uniq -d; # done +# 20111214: eventtimers(7) moved to eventtimers(4) +OLD_FILES+=usr/share/man/man7/eventtimers.7.gz +# 20111125: amd(4) removed +OLD_FILES+=usr/share/man/man4/amd.4.gz +# 20111125: libodialog removed +OLD_FILES+=usr/lib/libodialog.a +OLD_FILES+=usr/lib/libodialog.so +OLD_LIBS+=usr/lib/libodialog.so.7 +OLD_FILES+=usr/lib/libodialog_p.a +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" +OLD_FILES+=usr/lib32/libodialog.a +OLD_FILES+=usr/lib32/libodialog.so +OLD_LIBS+=usr/lib32/libodialog.so.7 +OLD_FILES+=usr/lib32/libodialog_p.a +.endif # 20110930: sysinstall removed OLD_FILES+=usr/sbin/sysinstall OLD_FILES+=usr/share/man/man8/sysinstall.8.gz OLD_FILES+=usr/lib/libftpio.a OLD_FILES+=usr/lib/libftpio.so OLD_LIBS+=usr/lib/libftpio.so.8 +OLD_FILES+=usr/lib/libftpio_p.a .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libftpio.a OLD_FILES+=usr/lib32/libftpio.so OLD_LIBS+=usr/lib32/libftpio.so.8 +OLD_FILES+=usr/lib32/libftpio_p.a .endif OLD_FILES+=usr/include/ftpio.h OLD_FILES+=usr/share/man/man3/ftpio.3.gz @@ -77,11 +94,22 @@ OLD_LIBS+=usr/lib32/libopie.so.6 OLD_LIBS+=usr/lib32/librtld_db.so.1 OLD_LIBS+=usr/lib32/libtacplus.so.4 .endif +# 20110817: no more acd.4, ad.4, afd.4 and ast.4 +OLD_FILES+=usr/share/man/man4/acd.4.gz +OLD_FILES+=usr/share/man/man4/ad.4.gz +OLD_FILES+=usr/share/man/man4/afd.4.gz +OLD_FILES+=usr/share/man/man4/ast.4.gz # 20110718: no longer useful in the age of rc.d OLD_FILES+=usr/sbin/named.reconfig OLD_FILES+=usr/sbin/named.reload +OLD_FILES+=usr/share/man/man8/named.reconfig.8.gz +OLD_FILES+=usr/share/man/man8/named.reload.8.gz # 20110716: bind 9.8.0 import OLD_LIBS+=usr/lib/liblwres.so.50 +OLD_FILES+=usr/share/doc/bind9/KNOWN-DEFECTS +OLD_FILES+=usr/share/doc/bind9/NSEC3-NOTES +OLD_FILES+=usr/share/doc/bind9/README.idnkit +OLD_FILES+=usr/share/doc/bind9/README.pkcs11 # 20110709: vm_map_clean.9 -> vm_map_sync.9 OLD_FILES+=usr/share/man/man9/vm_map_clean.9.gz # 20110709: Catch up with removal of these functions. Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/UPDATING Mon Nov 26 04:18:58 2012 (r243543) @@ -22,6 +22,38 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20120109: + panic(9) now stops other CPUs in the SMP systems, disables interrupts + on the current CPU and prevents other threads from running. + This behavior can be reverted using the kern.stop_scheduler_on_panic + tunable/sysctl. + The new behavior can be incompatible with kern.sync_on_panic. + +20111215: + The carp(4) facility has been changed significantly. Configuration + of the CARP protocol via ifconfig(8) has changed, as well as format + of CARP events submitted to devd(8) has changed. See manual pages + for more information. The arpbalance feature of carp(4) is currently + not supported anymore. + + Size of struct in_aliasreq, struct in6_aliasreq has changed. User + utilities using SIOCAIFADDR, SIOCAIFADDR_IN6, e.g. ifconfig(8), + need to be recompiled. + +20111122: + The acpi_wmi(4) status device /dev/wmistat has been renamed to + /dev/wmistat0. + +20111108: + The option VFS_ALLOW_NONMPSAFE option has been added in order to + explicitely support non-MPSAFE filesystems. + It is on by default for all supported platform at this present + time. + +20111101: + The broken amd(4) driver has been replaced with esp(4) in the amd64, + i386 and pc98 GENERIC kernel configuration files. + 20110930: sysinstall has been removed @@ -462,7 +494,7 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 There's one kernel module for each firmware. Adding "device iwnfw" to the kernel configuration file means including all three firmware images inside the kernel. If you want to include just the one for - your wireless card, use the the devices iwn4965fw, iwn5000fw or + your wireless card, use the devices iwn4965fw, iwn5000fw or iwn5150fw. 20090926: Modified: projects/diffused_head/bin/cat/cat.c ============================================================================== --- projects/diffused_head/bin/cat/cat.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/cat/cat.c Mon Nov 26 04:18:58 2012 (r243543) @@ -64,9 +64,9 @@ __FBSDID("$FreeBSD$"); #include #include -int bflag, eflag, nflag, sflag, tflag, vflag; -int rval; -const char *filename; +static int bflag, eflag, nflag, sflag, tflag, vflag; +static int rval; +static const char *filename; static void usage(void); static void scanfiles(char *argv[], int cooked); Modified: projects/diffused_head/bin/chio/chio.c ============================================================================== --- projects/diffused_head/bin/chio/chio.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/chio/chio.c Mon Nov 26 04:18:58 2012 (r243543) @@ -87,7 +87,7 @@ static int do_voltag(const char *, int, #endif /* Valid changer element types. */ -const struct element_type elements[] = { +static const struct element_type elements[] = { { "drive", CHET_DT }, { "picker", CHET_MT }, { "portal", CHET_IE }, @@ -97,7 +97,7 @@ const struct element_type elements[] = { }; /* Valid commands. */ -const struct changer_command commands[] = { +static const struct changer_command commands[] = { { "exchange", do_exchange }, { "getpicker", do_getpicker }, { "ielem", do_ielem }, @@ -112,7 +112,7 @@ const struct changer_command commands[] }; /* Valid special words. */ -const struct special_word specials[] = { +static const struct special_word specials[] = { { "inv", SW_INVERT }, { "inv1", SW_INVERT1 }, { "inv2", SW_INVERT2 }, Modified: projects/diffused_head/bin/df/df.1 ============================================================================== --- projects/diffused_head/bin/df/df.1 Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/df/df.1 Mon Nov 26 04:18:58 2012 (r243543) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd November 23, 2008 +.Dd October 18, 2011 .Dt DF 1 .Os .Sh NAME @@ -63,6 +63,7 @@ The following options are available: Show all mount points, including those that were mounted with the .Dv MNT_IGNORE flag. +This is implied for file systems specified on the command line. .It Fl b Use 512-byte blocks rather than the default. Note that Modified: projects/diffused_head/bin/df/df.c ============================================================================== --- projects/diffused_head/bin/df/df.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/df/df.c Mon Nov 26 04:18:58 2012 (r243543) @@ -107,7 +107,7 @@ main(int argc, char *argv[]) const char *fstype; char *mntpath, *mntpt; const char **vfslist; - size_t i, mntsize; + int i, mntsize; int ch, rv; fstype = "ufs"; @@ -187,30 +187,21 @@ main(int argc, char *argv[]) argc -= optind; argv += optind; - mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); - bzero(&maxwidths, sizeof(maxwidths)); - for (i = 0; i < mntsize; i++) - update_maxwidths(&maxwidths, &mntbuf[i]); - rv = 0; if (!*argv) { + /* everything (modulo -t) */ + mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); mntsize = regetmntinfo(&mntbuf, mntsize, vfslist); - bzero(&maxwidths, sizeof(maxwidths)); - for (i = 0; i < mntsize; i++) { - if (cflag) - addstat(&totalbuf, &mntbuf[i]); - update_maxwidths(&maxwidths, &mntbuf[i]); - } - if (cflag) - update_maxwidths(&maxwidths, &totalbuf); - for (i = 0; i < mntsize; i++) - if (aflag || (mntbuf[i].f_flags & MNT_IGNORE) == 0) - prtstat(&mntbuf[i], &maxwidths); - if (cflag) - prtstat(&totalbuf, &maxwidths); - exit(rv); + } else { + /* just the filesystems specified on the command line */ + mntbuf = malloc(argc * sizeof(*mntbuf)); + if (mntbuf == 0) + err(1, "malloc()"); + mntsize = 0; + /* continued in for loop below */ } + /* iterate through specified filesystems */ for (; *argv; argv++) { if (stat(*argv, &stbuf) < 0) { if ((mntpt = getmntpt(*argv)) == 0) { @@ -279,14 +270,24 @@ main(int argc, char *argv[]) continue; } - if (argc == 1) { - bzero(&maxwidths, sizeof(maxwidths)); - update_maxwidths(&maxwidths, &statfsbuf); + /* the user asked for it, so ignore the ignore flag */ + statfsbuf.f_flags &= ~MNT_IGNORE; + + /* add to list */ + mntbuf[mntsize++] = statfsbuf; + } + + bzero(&maxwidths, sizeof(maxwidths)); + for (i = 0; i < mntsize; i++) { + if (aflag || (mntbuf[i].f_flags & MNT_IGNORE) == 0) { + update_maxwidths(&maxwidths, &mntbuf[i]); + if (cflag) + addstat(&totalbuf, &mntbuf[i]); } - prtstat(&statfsbuf, &maxwidths); - if (cflag) - addstat(&totalbuf, &statfsbuf); } + for (i = 0; i < mntsize; i++) + if (aflag || (mntbuf[i].f_flags & MNT_IGNORE) == 0) + prtstat(&mntbuf[i], &maxwidths); if (cflag) prtstat(&totalbuf, &maxwidths); return (rv); Modified: projects/diffused_head/bin/ed/io.c ============================================================================== --- projects/diffused_head/bin/ed/io.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ed/io.c Mon Nov 26 04:18:58 2012 (r243543) @@ -53,7 +53,8 @@ read_file(char *fn, long n) errmsg = "cannot close input file"; return ERR; } - fprintf(stdout, !scripted ? "%lu\n" : "", size); + if (!scripted) + fprintf(stdout, "%lu\n", size); return current_addr - n; } @@ -161,7 +162,8 @@ write_file(char *fn, const char *mode, l errmsg = "cannot close output file"; return ERR; } - fprintf(stdout, !scripted ? "%lu\n" : "", size); + if (!scripted) + fprintf(stdout, "%lu\n", size); return n ? m - n + 1 : 0; } Modified: projects/diffused_head/bin/ed/main.c ============================================================================== --- projects/diffused_head/bin/ed/main.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ed/main.c Mon Nov 26 04:18:58 2012 (r243543) @@ -192,9 +192,10 @@ top: fputs("?\n", stderr); errmsg = "warning: file modified"; if (!isatty(0)) { - fprintf(stderr, garrulous ? - "script, line %d: %s\n" : - "", lineno, errmsg); + if (garrulous) + fprintf(stderr, + "script, line %d: %s\n", + lineno, errmsg); quit(2); } clearerr(stdin); @@ -225,27 +226,26 @@ top: fputs("?\n", stderr); /* give warning */ errmsg = "warning: file modified"; if (!isatty(0)) { - fprintf(stderr, garrulous ? - "script, line %d: %s\n" : - "", lineno, errmsg); + if (garrulous) + fprintf(stderr, "script, line %d: %s\n", + lineno, errmsg); quit(2); } break; case FATAL: - if (!isatty(0)) - fprintf(stderr, garrulous ? - "script, line %d: %s\n" : "", - lineno, errmsg); - else - fprintf(stderr, garrulous ? "%s\n" : "", - errmsg); + if (!isatty(0)) { + if (garrulous) + fprintf(stderr, "script, line %d: %s\n", + lineno, errmsg); + } else if (garrulous) + fprintf(stderr, "%s\n", errmsg); quit(3); default: fputs("?\n", stderr); if (!isatty(0)) { - fprintf(stderr, garrulous ? - "script, line %d: %s\n" : "", - lineno, errmsg); + if (garrulous) + fprintf(stderr, "script, line %d: %s\n", + lineno, errmsg); quit(2); } break; Modified: projects/diffused_head/bin/ln/ln.c ============================================================================== --- projects/diffused_head/bin/ln/ln.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ln/ln.c Mon Nov 26 04:18:58 2012 (r243543) @@ -54,16 +54,16 @@ __FBSDID("$FreeBSD$"); #include #include -int fflag; /* Unlink existing files. */ -int Fflag; /* Remove empty directories also. */ -int hflag; /* Check new name for symlink first. */ -int iflag; /* Interactive mode. */ -int Pflag; /* Create hard links to symlinks. */ -int sflag; /* Symbolic, not hard, link. */ -int vflag; /* Verbose output. */ -int wflag; /* Warn if symlink target does not +static int fflag; /* Unlink existing files. */ +static int Fflag; /* Remove empty directories also. */ +static int hflag; /* Check new name for symlink first. */ +static int iflag; /* Interactive mode. */ +static int Pflag; /* Create hard links to symlinks. */ +static int sflag; /* Symbolic, not hard, link. */ +static int vflag; /* Verbose output. */ +static int wflag; /* Warn if symlink target does not * exist, and -f is not enabled. */ -char linkch; +static char linkch; int linkit(const char *, const char *, int); void usage(void); Modified: projects/diffused_head/bin/ls/ls.c ============================================================================== --- projects/diffused_head/bin/ls/ls.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ls/ls.c Mon Nov 26 04:18:58 2012 (r243543) @@ -44,7 +44,7 @@ static char sccsid[] = "@(#)ls.c 8.5 (Be #include __FBSDID("$FreeBSD$"); -#include +#include #include #include #include @@ -414,8 +414,8 @@ main(int argc, char *argv[]) fts_options |= FTS_WHITEOUT; #endif - /* If -l or -s, figure out block size. */ - if (f_longform || f_size) { + /* If -i, -l or -s, figure out block size. */ + if (f_inode || f_longform || f_size) { if (f_kblocks) blocksize = 2; else { @@ -835,7 +835,7 @@ label_out: d.maxlen = maxlen; if (needstats) { d.btotal = btotal; - d.s_block = snprintf(NULL, 0, "%lu", maxblock); + d.s_block = snprintf(NULL, 0, "%lu", howmany(maxblock, blocksize)); d.s_flags = maxflags; d.s_label = maxlabelstr; d.s_group = maxgroup; Modified: projects/diffused_head/bin/mkdir/mkdir.c ============================================================================== --- projects/diffused_head/bin/mkdir/mkdir.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/mkdir/mkdir.c Mon Nov 26 04:18:58 2012 (r243543) @@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$"); static int build(char *, mode_t); static void usage(void); -int vflag; +static int vflag; int main(int argc, char *argv[]) Modified: projects/diffused_head/bin/mv/mv.c ============================================================================== --- projects/diffused_head/bin/mv/mv.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/mv/mv.c Mon Nov 26 04:18:58 2012 (r243543) @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); /* Exit code for a failed exec. */ #define EXEC_FAILED 127 -int fflg, iflg, nflg, vflg; +static int fflg, iflg, nflg, vflg; static int copy(const char *, const char *); static int do_move(const char *, const char *); Modified: projects/diffused_head/bin/ps/print.c ============================================================================== --- projects/diffused_head/bin/ps/print.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ps/print.c Mon Nov 26 04:18:58 2012 (r243543) @@ -362,7 +362,7 @@ tdev(KINFO *k, VARENT *ve) v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV) - str = strdup("??"); + str = strdup("-"); else asprintf(&str, "%#jx", (uintmax_t)dev); @@ -379,7 +379,7 @@ tname(KINFO *k, VARENT *ve) v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL) - str = strdup("?? "); + str = strdup("- "); else { if (strncmp(ttname, "tty", 3) == 0 || strncmp(ttname, "cua", 3) == 0) @@ -403,7 +403,7 @@ longtname(KINFO *k, VARENT *ve) v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL) - ttname = "??"; + ttname = "-"; return (strdup(ttname)); } Modified: projects/diffused_head/bin/ps/ps.1 ============================================================================== --- projects/diffused_head/bin/ps/ps.1 Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ps/ps.1 Mon Nov 26 04:18:58 2012 (r243543) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd October 1, 2011 +.Dd November 22, 2011 .Dt PS 1 .Os .Sh NAME @@ -98,12 +98,6 @@ The default output format includes, for controlling terminal, state, CPU time (including both user and system time) and associated command. .Pp -The process file system (see -.Xr procfs 5 ) -should be mounted when -.Nm -is executed, otherwise not all information will be available. -.Pp The options are as follows: .Bl -tag -width indent .It Fl a @@ -437,6 +431,10 @@ This is followed by a .Ql - if the process can no longer reach that controlling terminal (i.e., it has been revoked). +A +.Ql - +without a preceding two letter abbreviation or pseudo-terminal device number +indicates a process which never had a controlling terminal. The full pathname of the controlling terminal is available via the .Cm tty keyword. @@ -682,9 +680,6 @@ attempts to automatically determine the .Bl -tag -width ".Pa /boot/kernel/kernel" -compact .It Pa /boot/kernel/kernel default system namelist -.It Pa /proc -the mount point of -.Xr procfs 5 .El .Sh SEE ALSO .Xr kill 1 , Modified: projects/diffused_head/bin/ps/ps.c ============================================================================== --- projects/diffused_head/bin/ps/ps.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/ps/ps.c Mon Nov 26 04:18:58 2012 (r243543) @@ -130,7 +130,6 @@ struct listinfo { } l; }; -static int check_procfs(void); static int addelem_gid(struct listinfo *, const char *); static int addelem_pid(struct listinfo *, const char *); static int addelem_tty(struct listinfo *, const char *); @@ -411,14 +410,6 @@ main(int argc, char *argv[]) argv += optind; /* - * If the user specified ps -e then they want a copy of the process - * environment kvm_getenvv(3) attempts to open /proc//mem. - * Check to make sure that procfs is mounted on /proc, otherwise - * print a warning informing the user that output will be incomplete. - */ - if (needenv == 1 && check_procfs() == 0) - warnx("Process environment requires procfs(5)"); - /* * If there arguments after processing all the options, attempt * to treat them as a list of process ids. */ @@ -634,7 +625,7 @@ main(int argc, char *argv[]) ks = STAILQ_FIRST(&kinfo[i].ki_ks); STAILQ_REMOVE_HEAD(&kinfo[i].ki_ks, ks_next); - /* Truncate rightmost column if neccessary. */ + /* Truncate rightmost column if necessary. */ if (STAILQ_NEXT(vent, next_ve) == NULL && termwidth != UNLIMITED && ks->ks_str != NULL) { left = termwidth - linelen; @@ -1360,18 +1351,6 @@ kludge_oldps_options(const char *optlist return (newopts); } -static int -check_procfs(void) -{ - struct statfs mnt; - - if (statfs("/proc", &mnt) < 0) - return (0); - if (strcmp(mnt.f_fstypename, "procfs") != 0) - return (0); - return (1); -} - static void usage(void) { Modified: projects/diffused_head/bin/rm/rm.c ============================================================================== --- projects/diffused_head/bin/rm/rm.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/rm/rm.c Mon Nov 26 04:18:58 2012 (r243543) @@ -57,10 +57,10 @@ __FBSDID("$FreeBSD$"); #include #include -int dflag, eval, fflag, iflag, Pflag, vflag, Wflag, stdin_ok; -int rflag, Iflag; -uid_t uid; -volatile sig_atomic_t info; +static int dflag, eval, fflag, iflag, Pflag, vflag, Wflag, stdin_ok; +static int rflag, Iflag; +static uid_t uid; +static volatile sig_atomic_t info; int check(char *, char *, struct stat *); int check2(char **); Modified: projects/diffused_head/bin/sh/arith_yacc.c ============================================================================== --- projects/diffused_head/bin/sh/arith_yacc.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/sh/arith_yacc.c Mon Nov 26 04:18:58 2012 (r243543) @@ -131,11 +131,11 @@ static arith_t do_binop(int op, arith_t yyerror("divide error"); return op == ARITH_REM ? a % b : a / b; case ARITH_MUL: - return a * b; + return (uintmax_t)a * (uintmax_t)b; case ARITH_ADD: - return a + b; + return (uintmax_t)a + (uintmax_t)b; case ARITH_SUB: - return a - b; + return (uintmax_t)a - (uintmax_t)b; case ARITH_LSHIFT: return a << b; case ARITH_RSHIFT: Modified: projects/diffused_head/bin/sh/eval.c ============================================================================== --- projects/diffused_head/bin/sh/eval.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/sh/eval.c Mon Nov 26 04:18:58 2012 (r243543) @@ -89,7 +89,7 @@ int oexitstatus; /* saved exit status * static void evalloop(union node *, int); static void evalfor(union node *, int); -static void evalcase(union node *, int); +static union node *evalcase(union node *, int); static void evalsubshell(union node *, int); static void evalredir(union node *, int); static void expredir(union node *); @@ -256,7 +256,7 @@ evaltree(union node *n, int flags) evalfor(n, flags & ~EV_EXIT); break; case NCASE: - evalcase(n, flags); + next = evalcase(n, flags); break; case NDEFUN: defun(n->narg.text, n->narg.next); @@ -343,8 +343,6 @@ evalfor(union node *n, int flags) for (argp = n->nfor.args ; argp ; argp = argp->narg.next) { oexitstatus = exitstatus; expandarg(argp, &arglist, EXP_FULL | EXP_TILDE); - if (evalskip) - goto out; } *arglist.lastp = NULL; @@ -364,13 +362,12 @@ evalfor(union node *n, int flags) } } loopnest--; -out: popstackmark(&smark); } -static void +static union node * evalcase(union node *n, int flags) { union node *cp; @@ -383,26 +380,24 @@ evalcase(union node *n, int flags) oexitstatus = exitstatus; exitstatus = 0; expandarg(n->ncase.expr, &arglist, EXP_TILDE); - for (cp = n->ncase.cases ; cp && evalskip == 0 ; cp = cp->nclist.next) { + for (cp = n->ncase.cases ; cp ; cp = cp->nclist.next) { for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) { if (casematch(patp, arglist.list->text)) { + popstackmark(&smark); while (cp->nclist.next && cp->type == NCLISTFALLTHRU) { - if (evalskip != 0) - break; evaltree(cp->nclist.body, flags & ~EV_EXIT); + if (evalskip != 0) + return (NULL); cp = cp->nclist.next; } - if (evalskip == 0) { - evaltree(cp->nclist.body, flags); - } - goto out; + return (cp->nclist.body); } } } -out: popstackmark(&smark); + return (NULL); } @@ -983,7 +978,6 @@ evalcommand(union node *cmd, int flags, memout.nextc = memout.buf; memout.bufsize = 64; mode |= REDIR_BACKQ; - cmdentry.special = 0; } savecmdname = commandname; savetopfile = getcurrentfile(); @@ -1004,7 +998,7 @@ evalcommand(union node *cmd, int flags, * If there is no command word, redirection errors should * not be fatal but assignment errors should. */ - if (argc == 0 && !(flags & EV_BACKCMD)) + if (argc == 0) cmdentry.special = 1; listsetvar(cmdenviron, cmdentry.special ? 0 : VNOSET); if (argc > 0) Modified: projects/diffused_head/bin/sh/exec.c ============================================================================== --- projects/diffused_head/bin/sh/exec.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/sh/exec.c Mon Nov 26 04:18:58 2012 (r243543) @@ -100,6 +100,7 @@ static void tryexec(char *, char **, cha static void printentry(struct tblentry *, int); static struct tblentry *cmdlookup(const char *, int); static void delete_cmd_entry(void); +static void addcmdentry(const char *, struct cmdentry *); @@ -593,7 +594,7 @@ delete_cmd_entry(void) * the same name. */ -void +static void addcmdentry(const char *name, struct cmdentry *entry) { struct tblentry *cmdp; Modified: projects/diffused_head/bin/sh/exec.h ============================================================================== --- projects/diffused_head/bin/sh/exec.h Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/sh/exec.h Mon Nov 26 04:18:58 2012 (r243543) @@ -70,7 +70,6 @@ void find_command(const char *, struct c int find_builtin(const char *, int *); void hashcd(void); void changepath(const char *); -void addcmdentry(const char *, struct cmdentry *); void defun(const char *, union node *); int unsetfunc(const char *); int typecmd_impl(int, char **, int, const char *); Modified: projects/diffused_head/bin/sh/expand.c ============================================================================== --- projects/diffused_head/bin/sh/expand.c Mon Nov 26 04:11:12 2012 (r243542) +++ projects/diffused_head/bin/sh/expand.c Mon Nov 26 04:18:58 2012 (r243543) @@ -113,6 +113,7 @@ static void expmeta(char *, char *); static void addfname(char *); static struct strlist *expsort(struct strlist *); static struct strlist *msort(struct strlist *, int); +static int patmatch(const char *, const char *, int); static char *cvtnum(int, char *); static int collate_range_cmp(wchar_t, wchar_t); @@ -1186,6 +1187,7 @@ expmeta(char *enddir, char *name) int atend; int matchdot; int esc; + int namlen; metaflag = 0; start = name; @@ -1284,17 +1286,22 @@ expmeta(char *enddir, char *name) if (dp->d_name[0] == '.' && ! matchdot) continue; if (patmatch(start, dp->d_name, 0)) { - if (enddir + dp->d_namlen + 1 > expdir_end) + namlen = dp->d_namlen; + if (enddir + namlen + 1 > expdir_end) continue; - memcpy(enddir, dp->d_name, dp->d_namlen + 1); + memcpy(enddir, dp->d_name, namlen + 1); if (atend) addfname(expdir); else { - if (enddir + dp->d_namlen + 2 > expdir_end) + if (dp->d_type != DT_UNKNOWN && + dp->d_type != DT_DIR && + dp->d_type != DT_LNK) continue; - enddir[dp->d_namlen] = '/'; - enddir[dp->d_namlen + 1] = '\0'; - expmeta(enddir + dp->d_namlen + 1, endname); + if (enddir + namlen + 2 > expdir_end) + continue; + enddir[namlen] = '/'; + enddir[namlen + 1] = '\0'; + expmeta(enddir + namlen + 1, endname); } } } @@ -1435,61 +1442,67 @@ match_charclass(const char *p, wchar_t c * Returns true if the pattern matches the string. */ -int +static int patmatch(const char *pattern, const char *string, int squoted) { const char *p, *q, *end; + const char *bt_p, *bt_q; char c; wchar_t wc, wc2; p = pattern; q = string; + bt_p = NULL; + bt_q = NULL; for (;;) { switch (c = *p++) { case '\0': - goto breakloop; + if (*q != '\0') + goto backtrack; + return 1; case CTLESC: if (squoted && *q == CTLESC) q++; if (*q++ != *p++) - return 0; + goto backtrack; break; case CTLQUOTEMARK: continue; case '?': if (squoted && *q == CTLESC) q++; - if (localeisutf8) + if (*q == '\0') + return 0; + if (localeisutf8) { wc = get_wc(&q); - else + /* + * A '?' does not match invalid UTF-8 but a + * '*' does, so backtrack. + */ + if (wc == 0) + goto backtrack; + } else wc = (unsigned char)*q++; - if (wc == '\0') - return 0; break; case '*': c = *p; while (c == CTLQUOTEMARK || c == '*') c = *++p; - if (c != CTLESC && c != CTLQUOTEMARK && - c != '?' && c != '*' && c != '[') { - while (*q != c) { - if (squoted && *q == CTLESC && - q[1] == c) - break; - if (*q == '\0') - return 0; - if (squoted && *q == CTLESC) - q++; - q++; - } - } - do { - if (patmatch(p, q, squoted)) - return 1; - if (squoted && *q == CTLESC) - q++; - } while (*q++ != '\0'); - return 0; + /* + * If the pattern ends here, we know the string + * matches without needing to look at the rest of it. + */ + if (c == '\0') + return 1; + /* + * First try the shortest match for the '*' that + * could work. We can forget any earlier '*' since *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Mon Nov 26 09:03:22 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3D8E3BFC; Mon, 26 Nov 2012 09:03:22 +0000 (UTC) (envelope-from ray@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 1C51C8FC08; Mon, 26 Nov 2012 09:03:22 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAQ93LKQ044901; Mon, 26 Nov 2012 09:03:21 GMT (envelope-from ray@svn.freebsd.org) Received: (from ray@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAQ93L1V044900; Mon, 26 Nov 2012 09:03:21 GMT (envelope-from ray@svn.freebsd.org) Message-Id: <201211260903.qAQ93L1V044900@svn.freebsd.org> From: Aleksandr Rybalko Date: Mon, 26 Nov 2012 09:03:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243559 - projects/efika_mx/sys/arm/freescale/imx X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2012 09:03:22 -0000 Author: ray Date: Mon Nov 26 09:03:21 2012 New Revision: 243559 URL: http://svnweb.freebsd.org/changeset/base/243559 Log: Follow Tim Kientzle with s/Timecouter/Timecounter/ :) Modified: projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c Modified: projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c ============================================================================== --- projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c Mon Nov 26 08:50:00 2012 (r243558) +++ projects/efika_mx/sys/arm/freescale/imx/imx_gpt.c Mon Nov 26 09:03:21 2012 (r243559) @@ -77,7 +77,7 @@ static int imx_gpt_probe(device_t); static int imx_gpt_attach(device_t); static struct timecounter imx_gpt_timecounter = { - .tc_name = "i.MX GPT Timecouter", + .tc_name = "i.MX GPT Timecounter", .tc_get_timecount = imx_gpt_get_timecount, .tc_counter_mask = ~0u, .tc_frequency = 0, From owner-svn-src-projects@FreeBSD.ORG Mon Nov 26 10:11:32 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 91556F0F; Mon, 26 Nov 2012 10:11:32 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from smtp5.clear.net.nz (smtp5.clear.net.nz [203.97.33.68]) by mx1.freebsd.org (Postfix) with ESMTP id 55F738FC12; Mon, 26 Nov 2012 10:11:30 +0000 (UTC) Received: from mxin1-orange.clear.net.nz (lb2-srcnat.clear.net.nz [203.97.32.237]) by smtp5.clear.net.nz (CLEAR Net Mail) with ESMTP id <0ME3006Q8AYYIF40@smtp5.clear.net.nz>; Mon, 26 Nov 2012 23:11:23 +1300 (NZDT) Received: from 202-0-48-19.paradise.net.nz (HELO localhost) ([202.0.48.19]) by smtpin1.paradise.net.nz with ESMTP; Mon, 26 Nov 2012 23:11:23 +1300 Date: Mon, 26 Nov 2012 23:11:07 +1300 From: Andrew Turner Subject: Re: svn commit: r243507 - projects/efika_mx/sys/powerpc/mpc85xx In-reply-to: <201211251211.qAPCB9pe056054@svn.freebsd.org> To: Aleksandr Rybalko Message-id: <20121126231107.58ec2927@fubar.geek.nz> MIME-version: 1.0 X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.6; i386-portbld-freebsd8.1) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7bit X-Pirate: Arrrr References: <201211251211.qAPCB9pe056054@svn.freebsd.org> Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2012 10:11:32 -0000 On Sun, 25 Nov 2012 12:11:09 +0000 (UTC) Aleksandr Rybalko wrote: > Author: ray > Date: Sun Nov 25 12:11:09 2012 > New Revision: 243507 > URL: http://svnweb.freebsd.org/changeset/base/243507 > > Log: > Allow to bind to i.MX i2c controllers. > > Sponsored by: FreeBSD Foundation > > Modified: > projects/efika_mx/sys/powerpc/mpc85xx/i2c.c Should this driver be moved out of the powerpc architecture directory if it is also used by an ARM SoC? Andrew From owner-svn-src-projects@FreeBSD.ORG Mon Nov 26 12:01:26 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7B75E4A; Mon, 26 Nov 2012 12:01:26 +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 5D97A8FC0C; Mon, 26 Nov 2012 12:01:26 +0000 (UTC) Received: from terran (unknown [192.168.10.90]) (Authenticated sender: ray) by smtp.dlink.ua (Postfix) with ESMTPA id 7F75DC4935; Mon, 26 Nov 2012 14:01:19 +0200 (EET) Date: Mon, 26 Nov 2012 14:01:46 +0200 From: Aleksandr Rybalko To: Andrew Turner Subject: Re: svn commit: r243507 - projects/efika_mx/sys/powerpc/mpc85xx Message-Id: <20121126140146.fed145492d571cd546f3deff@freebsd.org> In-Reply-To: <20121126231107.58ec2927@fubar.geek.nz> References: <201211251211.qAPCB9pe056054@svn.freebsd.org> <20121126231107.58ec2927@fubar.geek.nz> 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: svn-src-projects@freebsd.org, Aleksandr Rybalko , src-committers@freebsd.org X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2012 12:01:26 -0000 On Mon, 26 Nov 2012 23:11:07 +1300 Andrew Turner wrote: > On Sun, 25 Nov 2012 12:11:09 +0000 (UTC) > Aleksandr Rybalko wrote: > > > Author: ray > > Date: Sun Nov 25 12:11:09 2012 > > New Revision: 243507 > > URL: http://svnweb.freebsd.org/changeset/base/243507 > > > > Log: > > Allow to bind to i.MX i2c controllers. > > > > Sponsored by: FreeBSD Foundation > > > > Modified: > > projects/efika_mx/sys/powerpc/mpc85xx/i2c.c > > Should this driver be moved out of the powerpc architecture directory > if it is also used by an ARM SoC? > > Andrew Hi Andrew, yes, of course. And not only this one :) I will ask Semihalf guys soon about it. Thanks! WBW -- Aleksandr Rybalko From owner-svn-src-projects@FreeBSD.ORG Mon Nov 26 23:23:38 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 88125912; Mon, 26 Nov 2012 23:23:38 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 64C128FC14; Mon, 26 Nov 2012 23:23:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAQNNcIH002752; Mon, 26 Nov 2012 23:23:38 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAQNNbRk002736; Mon, 26 Nov 2012 23:23:37 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211262323.qAQNNbRk002736@svn.freebsd.org> From: Lawrence Stewart Date: Mon, 26 Nov 2012 23:23:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243574 - in projects/diffused_head: . bin/csh bin/ps bin/sh bin/sh/funcs cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolar... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Nov 2012 23:23:38 -0000 Author: lstewart Date: Mon Nov 26 23:23:36 2012 New Revision: 243574 URL: http://svnweb.freebsd.org/changeset/base/243574 Log: Merge revs 230000:232000 from head. Added: projects/diffused_head/contrib/compiler-rt/lib/sparc64/ - copied from r232000, head/contrib/compiler-rt/lib/sparc64/ projects/diffused_head/contrib/llvm/tools/bugpoint/ - copied from r232000, head/contrib/llvm/tools/bugpoint/ projects/diffused_head/contrib/llvm/tools/llc/ - copied from r232000, head/contrib/llvm/tools/llc/ projects/diffused_head/contrib/llvm/tools/lli/ - copied from r232000, head/contrib/llvm/tools/lli/ projects/diffused_head/contrib/llvm/tools/llvm-ar/ - copied from r232000, head/contrib/llvm/tools/llvm-ar/ projects/diffused_head/contrib/llvm/tools/llvm-as/ - copied from r232000, head/contrib/llvm/tools/llvm-as/ projects/diffused_head/contrib/llvm/tools/llvm-bcanalyzer/ - copied from r232000, head/contrib/llvm/tools/llvm-bcanalyzer/ projects/diffused_head/contrib/llvm/tools/llvm-diff/ - copied from r232000, head/contrib/llvm/tools/llvm-diff/ projects/diffused_head/contrib/llvm/tools/llvm-dis/ - copied from r232000, head/contrib/llvm/tools/llvm-dis/ projects/diffused_head/contrib/llvm/tools/llvm-extract/ - copied from r232000, head/contrib/llvm/tools/llvm-extract/ projects/diffused_head/contrib/llvm/tools/llvm-ld/ - copied from r232000, head/contrib/llvm/tools/llvm-ld/ projects/diffused_head/contrib/llvm/tools/llvm-link/ - copied from r232000, head/contrib/llvm/tools/llvm-link/ projects/diffused_head/contrib/llvm/tools/llvm-mc/ - copied from r232000, head/contrib/llvm/tools/llvm-mc/ projects/diffused_head/contrib/llvm/tools/llvm-nm/ - copied from r232000, head/contrib/llvm/tools/llvm-nm/ projects/diffused_head/contrib/llvm/tools/llvm-objdump/ - copied from r232000, head/contrib/llvm/tools/llvm-objdump/ projects/diffused_head/contrib/llvm/tools/llvm-prof/ - copied from r232000, head/contrib/llvm/tools/llvm-prof/ projects/diffused_head/contrib/llvm/tools/llvm-ranlib/ - copied from r232000, head/contrib/llvm/tools/llvm-ranlib/ projects/diffused_head/contrib/llvm/tools/llvm-rtdyld/ - copied from r232000, head/contrib/llvm/tools/llvm-rtdyld/ projects/diffused_head/contrib/llvm/tools/llvm-stub/ - copied from r232000, head/contrib/llvm/tools/llvm-stub/ projects/diffused_head/contrib/llvm/tools/macho-dump/ - copied from r232000, head/contrib/llvm/tools/macho-dump/ projects/diffused_head/contrib/llvm/tools/opt/ - copied from r232000, head/contrib/llvm/tools/opt/ projects/diffused_head/contrib/tcsh/nls/Makefile.in - copied unchanged from r232000, head/contrib/tcsh/nls/Makefile.in projects/diffused_head/contrib/tcsh/nls/catgen - copied unchanged from r232000, head/contrib/tcsh/nls/catgen projects/diffused_head/contrib/tcsh/svn - copied unchanged from r232000, head/contrib/tcsh/svn projects/diffused_head/etc/rc.d/utx - copied unchanged from r232000, head/etc/rc.d/utx projects/diffused_head/lib/clang/libllvmarchive/ - copied from r232000, head/lib/clang/libllvmarchive/ projects/diffused_head/lib/clang/libllvmdebuginfo/ - copied from r232000, head/lib/clang/libllvmdebuginfo/ projects/diffused_head/lib/clang/libllvmexecutionengine/ - copied from r232000, head/lib/clang/libllvmexecutionengine/ projects/diffused_head/lib/clang/libllvminterpreter/ - copied from r232000, head/lib/clang/libllvminterpreter/ projects/diffused_head/lib/clang/libllvmjit/ - copied from r232000, head/lib/clang/libllvmjit/ projects/diffused_head/lib/clang/libllvmlinker/ - copied from r232000, head/lib/clang/libllvmlinker/ projects/diffused_head/lib/clang/libllvmmcdisassembler/ - copied from r232000, head/lib/clang/libllvmmcdisassembler/ projects/diffused_head/lib/clang/libllvmmcjit/ - copied from r232000, head/lib/clang/libllvmmcjit/ projects/diffused_head/lib/clang/libllvmobject/ - copied from r232000, head/lib/clang/libllvmobject/ projects/diffused_head/lib/clang/libllvmruntimedyld/ - copied from r232000, head/lib/clang/libllvmruntimedyld/ projects/diffused_head/lib/libc/amd64/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/amd64/gen/getcontextx.c projects/diffused_head/lib/libc/arm/gen/__aeabi_read_tp.c - copied unchanged from r232000, head/lib/libc/arm/gen/__aeabi_read_tp.c projects/diffused_head/lib/libc/arm/gen/flt_rounds.c - copied unchanged from r232000, head/lib/libc/arm/gen/flt_rounds.c projects/diffused_head/lib/libc/arm/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/arm/gen/getcontextx.c projects/diffused_head/lib/libc/gen/dl_iterate_phdr.3 - copied unchanged from r232000, head/lib/libc/gen/dl_iterate_phdr.3 projects/diffused_head/lib/libc/i386/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/i386/gen/getcontextx.c projects/diffused_head/lib/libc/ia64/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/ia64/gen/getcontextx.c projects/diffused_head/lib/libc/mips/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/mips/gen/getcontextx.c projects/diffused_head/lib/libc/powerpc/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/powerpc/gen/getcontextx.c projects/diffused_head/lib/libc/powerpc64/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/powerpc64/gen/getcontextx.c projects/diffused_head/lib/libc/softfloat/eqtf2.c - copied unchanged from r232000, head/lib/libc/softfloat/eqtf2.c projects/diffused_head/lib/libc/softfloat/getf2.c - copied unchanged from r232000, head/lib/libc/softfloat/getf2.c projects/diffused_head/lib/libc/softfloat/gexf2.c - copied unchanged from r232000, head/lib/libc/softfloat/gexf2.c projects/diffused_head/lib/libc/softfloat/gttf2.c - copied unchanged from r232000, head/lib/libc/softfloat/gttf2.c projects/diffused_head/lib/libc/softfloat/gtxf2.c - copied unchanged from r232000, head/lib/libc/softfloat/gtxf2.c projects/diffused_head/lib/libc/softfloat/letf2.c - copied unchanged from r232000, head/lib/libc/softfloat/letf2.c projects/diffused_head/lib/libc/softfloat/lttf2.c - copied unchanged from r232000, head/lib/libc/softfloat/lttf2.c projects/diffused_head/lib/libc/softfloat/negtf2.c - copied unchanged from r232000, head/lib/libc/softfloat/negtf2.c projects/diffused_head/lib/libc/softfloat/negxf2.c - copied unchanged from r232000, head/lib/libc/softfloat/negxf2.c projects/diffused_head/lib/libc/softfloat/netf2.c - copied unchanged from r232000, head/lib/libc/softfloat/netf2.c projects/diffused_head/lib/libc/softfloat/nexf2.c - copied unchanged from r232000, head/lib/libc/softfloat/nexf2.c projects/diffused_head/lib/libc/sparc64/gen/getcontextx.c - copied unchanged from r232000, head/lib/libc/sparc64/gen/getcontextx.c projects/diffused_head/lib/msun/src/fenv-softfloat.h - copied unchanged from r232000, head/lib/msun/src/fenv-softfloat.h projects/diffused_head/share/man/man3/offsetof.3 - copied unchanged from r232000, head/share/man/man3/offsetof.3 projects/diffused_head/share/man/man4/isci.4 - copied unchanged from r232000, head/share/man/man4/isci.4 projects/diffused_head/share/man/man4/oce.4 - copied unchanged from r232000, head/share/man/man4/oce.4 projects/diffused_head/share/man/man4/xnb.4 - copied unchanged from r232000, head/share/man/man4/xnb.4 projects/diffused_head/share/man/man9/buf_ring.9 - copied unchanged from r232000, head/share/man/man9/buf_ring.9 projects/diffused_head/share/man/man9/drbr.9 - copied unchanged from r232000, head/share/man/man9/drbr.9 projects/diffused_head/sys/amd64/amd64/ptrace_machdep.c - copied unchanged from r232000, head/sys/amd64/amd64/ptrace_machdep.c projects/diffused_head/sys/conf/WITHOUT_SOURCELESS - copied unchanged from r232000, head/sys/conf/WITHOUT_SOURCELESS projects/diffused_head/sys/conf/WITHOUT_SOURCELESS_HOST - copied unchanged from r232000, head/sys/conf/WITHOUT_SOURCELESS_HOST projects/diffused_head/sys/conf/WITHOUT_SOURCELESS_UCODE - copied unchanged from r232000, head/sys/conf/WITHOUT_SOURCELESS_UCODE projects/diffused_head/sys/contrib/dev/acpica/components/ - copied from r232000, head/sys/contrib/dev/acpica/components/ projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c - copied unchanged from r232000, head/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c projects/diffused_head/sys/dev/isci/ - copied from r232000, head/sys/dev/isci/ projects/diffused_head/sys/dev/ixgbe/ixgbe_82598.h - copied unchanged from r232000, head/sys/dev/ixgbe/ixgbe_82598.h projects/diffused_head/sys/dev/ixgbe/ixgbe_82599.h - copied unchanged from r232000, head/sys/dev/ixgbe/ixgbe_82599.h projects/diffused_head/sys/dev/ixgbe/ixgbe_x540.c - copied unchanged from r232000, head/sys/dev/ixgbe/ixgbe_x540.c projects/diffused_head/sys/dev/ixgbe/ixgbe_x540.h - copied unchanged from r232000, head/sys/dev/ixgbe/ixgbe_x540.h projects/diffused_head/sys/dev/mps/mps_config.c - copied unchanged from r232000, head/sys/dev/mps/mps_config.c projects/diffused_head/sys/dev/mps/mps_mapping.c - copied unchanged from r232000, head/sys/dev/mps/mps_mapping.c projects/diffused_head/sys/dev/mps/mps_mapping.h - copied unchanged from r232000, head/sys/dev/mps/mps_mapping.h projects/diffused_head/sys/dev/mps/mps_sas.h - copied unchanged from r232000, head/sys/dev/mps/mps_sas.h projects/diffused_head/sys/dev/mps/mps_sas_lsi.c - copied unchanged from r232000, head/sys/dev/mps/mps_sas_lsi.c projects/diffused_head/sys/dev/oce/ - copied from r232000, head/sys/dev/oce/ projects/diffused_head/sys/dev/sound/pci/allegro_code.h - copied unchanged from r232000, head/sys/dev/sound/pci/allegro_code.h projects/diffused_head/sys/dev/sound/pci/allegro_reg.h - copied unchanged from r232000, head/sys/dev/sound/pci/allegro_reg.h projects/diffused_head/sys/dev/sound/pci/cs461x_dsp.h - copied unchanged from r232000, head/sys/dev/sound/pci/cs461x_dsp.h projects/diffused_head/sys/dev/sound/pci/hda/hdaa.c - copied unchanged from r232000, head/sys/dev/sound/pci/hda/hdaa.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa.h - copied unchanged from r232000, head/sys/dev/sound/pci/hda/hdaa.h projects/diffused_head/sys/dev/sound/pci/hda/hdaa_patches.c - copied unchanged from r232000, head/sys/dev/sound/pci/hda/hdaa_patches.c projects/diffused_head/sys/dev/sound/pci/hda/hdac_if.m - copied unchanged from r232000, head/sys/dev/sound/pci/hda/hdac_if.m projects/diffused_head/sys/dev/sound/pci/hda/hdacc.c - copied unchanged from r232000, head/sys/dev/sound/pci/hda/hdacc.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.c - copied unchanged from r232000, head/sys/dev/usb/controller/dwc_otg.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.h - copied unchanged from r232000, head/sys/dev/usb/controller/dwc_otg.h projects/diffused_head/sys/dev/usb/controller/dwc_otg_atmelarm.c - copied unchanged from r232000, head/sys/dev/usb/controller/dwc_otg_atmelarm.c projects/diffused_head/sys/dev/xen/netback/netback_unit_tests.c - copied unchanged from r232000, head/sys/dev/xen/netback/netback_unit_tests.c - copied unchanged from r232000, head/sys/i386/conf/XENHVM projects/diffused_head/sys/modules/ar71xx/ - copied from r232000, head/sys/modules/ar71xx/ projects/diffused_head/sys/modules/gpio/ - copied from r232000, head/sys/modules/gpio/ projects/diffused_head/sys/modules/isci/ - copied from r232000, head/sys/modules/isci/ projects/diffused_head/sys/modules/oce/ - copied from r232000, head/sys/modules/oce/ projects/diffused_head/sys/powerpc/ofw/ofw_pci.c - copied unchanged from r232000, head/sys/powerpc/ofw/ofw_pci.c projects/diffused_head/sys/powerpc/ofw/ofw_pci.h - copied unchanged from r232000, head/sys/powerpc/ofw/ofw_pci.h projects/diffused_head/tools/build/options/WITHOUT_SOURCELESS - copied unchanged from r232000, head/tools/build/options/WITHOUT_SOURCELESS projects/diffused_head/tools/build/options/WITHOUT_SOURCELESS_HOST - copied unchanged from r232000, head/tools/build/options/WITHOUT_SOURCELESS_HOST projects/diffused_head/tools/build/options/WITHOUT_SOURCELESS_UCODE - copied unchanged from r232000, head/tools/build/options/WITHOUT_SOURCELESS_UCODE projects/diffused_head/tools/build/options/WITH_CLANG_EXTRAS - copied unchanged from r232000, head/tools/build/options/WITH_CLANG_EXTRAS projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_aac - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_aac projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_acpi_support - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_acpi_support projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_acpica - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_acpica projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_adb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_adb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_adlink - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_adlink projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_advansys - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_advansys projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ae - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ae projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_age - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_age projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_agp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_agp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_aha - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_aha projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ahb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ahb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ahci - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ahci projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_aic - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_aic projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_aic7xxx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_aic7xxx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_alc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_alc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ale - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ale projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_amdsbwd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_amdsbwd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_amdtemp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_amdtemp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_amr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_amr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_an - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_an projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_arcmsr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_arcmsr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_asmc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_asmc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_asr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_asr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ata - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ata projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ath - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ath projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_atkbdc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_atkbdc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_auxio - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_auxio projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bce - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bce projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bfe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bfe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bktr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bktr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_buslogic - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_buslogic projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bwi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bwi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bwn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bwn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_bxe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_bxe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cardbus - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cardbus projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cas - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cas projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ce - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ce projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cesa - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cesa projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cfe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cfe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cfi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cfi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ciss - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ciss projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cmx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cmx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_coretemp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_coretemp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cpuctl - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cpuctl projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cpufreq - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cpufreq projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cs - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cs projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ct - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ct projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ctau - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ctau projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cxgb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cxgb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cxgbe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cxgbe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_cy - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_cy projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_dc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_dc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_dcons - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_dcons projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_de - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_de projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_digi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_digi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_dpms - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_dpms projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_dpt - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_dpt projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_drm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_drm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_e1000 - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_e1000 projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ed - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ed projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_eisa - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_eisa projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_en - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_en projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ep - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ep projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_esp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_esp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_et - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_et projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ex - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ex projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_exca - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_exca projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fatm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fatm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fdc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fdc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fdt - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fdt projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_firewire - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_firewire projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_flash - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_flash projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_fxp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_fxp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_gem - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_gem projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_glxiic - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_glxiic projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_glxsb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_glxsb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_gpio - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_gpio projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hatm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hatm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hifn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hifn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hme - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hme projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hpt27xx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hpt27xx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hptiop - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hptiop projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hptmv - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hptmv projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hptrr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hptrr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_hwpmc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_hwpmc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ic - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ic projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ichsmb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ichsmb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ichwd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ichwd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ida - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ida projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ie - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ie projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ieee488 - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ieee488 projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_if_ndis - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_if_ndis projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_iicbus - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_iicbus projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_iir - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_iir projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_io - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_io projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ipmi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ipmi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ips - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ips projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ipw - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ipw projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_iscsi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_iscsi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_isp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_isp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ispfw - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ispfw projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_iwi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_iwi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_iwn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_iwn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ixgb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ixgb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ixgbe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ixgbe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_jme - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_jme projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_joy - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_joy projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_kbd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_kbd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_kbdmux - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_kbdmux projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ksyms - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ksyms projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_le - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_le projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_led - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_led projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_lge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_lge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_lindev - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_lindev projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_lmc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_lmc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_malo - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_malo projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mc146818 - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mc146818 projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mca - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mca projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mcd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mcd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_md - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_md projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mem - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mem projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mfi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mfi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mii - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mii projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mk48txx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mk48txx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mlx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mlx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mly - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mly projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mmc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mmc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mps - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mps projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mpt - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mpt projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mse - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mse projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_msk - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_msk projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mvs - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mvs projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mwl - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mwl projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_mxge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_mxge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_my - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_my projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ncv - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ncv projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_netmap - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_netmap projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nfe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nfe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nmdm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nmdm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nsp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nsp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_null - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_null projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nve - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nve projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nvram - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nvram projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nvram2env - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nvram2env projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_nxge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_nxge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ofw - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ofw projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_patm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_patm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pbio - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pbio projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pccard - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pccard projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pccbb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pccbb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pcf - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pcf projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pcn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pcn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pdq - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pdq projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_powermac_nvram - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_powermac_nvram projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ppbus - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ppbus projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ppc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ppc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pst - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pst projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pty - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_pty projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_puc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_puc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_qlxgb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_qlxgb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_quicc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_quicc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ral - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ral projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_random - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_random projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_rc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_rc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_re - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_re projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_rndtest - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_rndtest projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_rp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_rp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_rt - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_rt projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_safe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_safe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sbni - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sbni projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_scc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_scc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_scd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_scd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sdhci - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sdhci projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sec - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sec projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sf - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sf projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sfxge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sfxge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_si - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_si projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_siba - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_siba projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_siis - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_siis projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sio - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sio projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sis - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sis projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sk - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sk projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_smbus - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_smbus projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_smc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_smc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sn - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sn projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_snc - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_snc projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_snp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_snp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_speaker - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_speaker projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_spibus - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_spibus projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ste - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ste projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_stg - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_stg projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_stge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_stge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_streams - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_streams projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sym - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_sym projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_syscons - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_syscons projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tdfx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tdfx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ti - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ti projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tl - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tl projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tpm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tpm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_trm - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_trm projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tsec - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tsec projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_twa - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_twa projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_twe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_twe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tws - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tws projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_tx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_tx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_txp - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_txp projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_uart - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_uart projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_ubsec - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_ubsec projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_utopia - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_utopia projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_viawd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_viawd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_virtio - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_virtio projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vkbd - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vkbd projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vr - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vr projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vte - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vte projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vx - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vx projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_vxge - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_vxge projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_watchdog - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_watchdog projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wb - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wb projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wds - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wds projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wl - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wl projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wpi - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wpi projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_wtap - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_wtap projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_xe - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_xe projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_xen - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_xen projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_xl - copied unchanged from r232000, head/tools/kerneldoc/subsys/Doxyfile-dev_xl projects/diffused_head/tools/regression/bin/sh/builtins/case14.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case14.0 projects/diffused_head/tools/regression/bin/sh/builtins/case15.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case15.0 projects/diffused_head/tools/regression/bin/sh/builtins/case16.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case16.0 projects/diffused_head/tools/regression/bin/sh/builtins/case17.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case17.0 projects/diffused_head/tools/regression/bin/sh/builtins/case18.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case18.0 projects/diffused_head/tools/regression/bin/sh/builtins/case19.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/case19.0 projects/diffused_head/tools/regression/bin/sh/builtins/cd8.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/cd8.0 projects/diffused_head/tools/regression/bin/sh/builtins/for2.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/for2.0 projects/diffused_head/tools/regression/bin/sh/builtins/for3.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/for3.0 projects/diffused_head/tools/regression/bin/sh/builtins/hash4.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/hash4.0 projects/diffused_head/tools/regression/bin/sh/builtins/trap10.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/trap10.0 projects/diffused_head/tools/regression/bin/sh/builtins/trap11.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/trap11.0 projects/diffused_head/tools/regression/bin/sh/builtins/trap9.0 - copied unchanged from r232000, head/tools/regression/bin/sh/builtins/trap9.0 projects/diffused_head/tools/regression/bin/sh/expansion/cmdsubst12.0 - copied unchanged from r232000, head/tools/regression/bin/sh/expansion/cmdsubst12.0 projects/diffused_head/tools/regression/bin/sh/expansion/cmdsubst13.0 - copied unchanged from r232000, head/tools/regression/bin/sh/expansion/cmdsubst13.0 projects/diffused_head/tools/regression/lib/libc/gen/test-fmtmsg.c - copied unchanged from r232000, head/tools/regression/lib/libc/gen/test-fmtmsg.c projects/diffused_head/tools/regression/lib/libc/stdio/test-getdelim.t - copied unchanged from r232000, head/tools/regression/lib/libc/stdio/test-getdelim.t projects/diffused_head/tools/regression/lib/libc/stdio/test-print-positional.t - copied unchanged from r232000, head/tools/regression/lib/libc/stdio/test-print-positional.t projects/diffused_head/tools/regression/lib/libc/stdio/test-printbasic.t - copied unchanged from r232000, head/tools/regression/lib/libc/stdio/test-printbasic.t projects/diffused_head/tools/regression/sbin/mdconfig/ - copied from r232000, head/tools/regression/sbin/mdconfig/ projects/diffused_head/tools/regression/sockets/so_setfib/ - copied from r232000, head/tools/regression/sockets/so_setfib/ projects/diffused_head/tools/regression/usr.bin/cc/ - copied from r232000, head/tools/regression/usr.bin/cc/ projects/diffused_head/tools/test/hwpmc/ - copied from r232000, head/tools/test/hwpmc/ projects/diffused_head/tools/test/netfibs/ - copied from r232000, head/tools/test/netfibs/ projects/diffused_head/tools/test/ptrace/ - copied from r232000, head/tools/test/ptrace/ projects/diffused_head/tools/tools/fixwhite/ - copied from r232000, head/tools/tools/fixwhite/ projects/diffused_head/tools/tools/wtap/Makefile - copied unchanged from r232000, head/tools/tools/wtap/Makefile projects/diffused_head/tools/tools/wtap/vis_map/ - copied from r232000, head/tools/tools/wtap/vis_map/ projects/diffused_head/usr.bin/clang/bugpoint/ - copied from r232000, head/usr.bin/clang/bugpoint/ projects/diffused_head/usr.bin/clang/llc/ - copied from r232000, head/usr.bin/clang/llc/ projects/diffused_head/usr.bin/clang/lli/ - copied from r232000, head/usr.bin/clang/lli/ projects/diffused_head/usr.bin/clang/llvm-ar/ - copied from r232000, head/usr.bin/clang/llvm-ar/ projects/diffused_head/usr.bin/clang/llvm-as/ - copied from r232000, head/usr.bin/clang/llvm-as/ projects/diffused_head/usr.bin/clang/llvm-bcanalyzer/ - copied from r232000, head/usr.bin/clang/llvm-bcanalyzer/ projects/diffused_head/usr.bin/clang/llvm-diff/ - copied from r232000, head/usr.bin/clang/llvm-diff/ projects/diffused_head/usr.bin/clang/llvm-dis/ - copied from r232000, head/usr.bin/clang/llvm-dis/ projects/diffused_head/usr.bin/clang/llvm-extract/ - copied from r232000, head/usr.bin/clang/llvm-extract/ projects/diffused_head/usr.bin/clang/llvm-ld/ - copied from r232000, head/usr.bin/clang/llvm-ld/ projects/diffused_head/usr.bin/clang/llvm-link/ - copied from r232000, head/usr.bin/clang/llvm-link/ projects/diffused_head/usr.bin/clang/llvm-mc/ - copied from r232000, head/usr.bin/clang/llvm-mc/ projects/diffused_head/usr.bin/clang/llvm-nm/ - copied from r232000, head/usr.bin/clang/llvm-nm/ projects/diffused_head/usr.bin/clang/llvm-objdump/ - copied from r232000, head/usr.bin/clang/llvm-objdump/ projects/diffused_head/usr.bin/clang/llvm-prof/ - copied from r232000, head/usr.bin/clang/llvm-prof/ projects/diffused_head/usr.bin/clang/llvm-ranlib/ - copied from r232000, head/usr.bin/clang/llvm-ranlib/ projects/diffused_head/usr.bin/clang/llvm-rtdyld/ - copied from r232000, head/usr.bin/clang/llvm-rtdyld/ projects/diffused_head/usr.bin/clang/llvm-stub/ - copied from r232000, head/usr.bin/clang/llvm-stub/ projects/diffused_head/usr.bin/clang/macho-dump/ - copied from r232000, head/usr.bin/clang/macho-dump/ projects/diffused_head/usr.bin/clang/opt/ - copied from r232000, head/usr.bin/clang/opt/ projects/diffused_head/usr.sbin/utx/ - copied from r232000, head/usr.sbin/utx/ Directory Properties: projects/diffused_head/sys/i386/conf/XENHVM (props changed) Deleted: projects/diffused_head/bin/csh/host.defs projects/diffused_head/bin/sh/funcs/kill projects/diffused_head/contrib/tcsh/nls/Makefile projects/diffused_head/sys/contrib/dev/acpica/debugger/ projects/diffused_head/sys/contrib/dev/acpica/disassembler/ projects/diffused_head/sys/contrib/dev/acpica/dispatcher/ projects/diffused_head/sys/contrib/dev/acpica/events/ projects/diffused_head/sys/contrib/dev/acpica/executer/ projects/diffused_head/sys/contrib/dev/acpica/hardware/ projects/diffused_head/sys/contrib/dev/acpica/namespace/ projects/diffused_head/sys/contrib/dev/acpica/parser/ projects/diffused_head/sys/contrib/dev/acpica/resources/ projects/diffused_head/sys/contrib/dev/acpica/tables/ projects/diffused_head/sys/contrib/dev/acpica/utilities/ projects/diffused_head/sys/gnu/dev/ projects/diffused_head/usr.bin/wtmpcvt/ projects/diffused_head/usr.sbin/utxrm/ Modified: projects/diffused_head/MAINTAINERS (contents, props changed) projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/csh/Makefile projects/diffused_head/bin/csh/config.h projects/diffused_head/bin/csh/config_p.h projects/diffused_head/bin/ps/print.c projects/diffused_head/bin/sh/arith_yacc.c projects/diffused_head/bin/sh/arith_yylex.c projects/diffused_head/bin/sh/cd.c projects/diffused_head/bin/sh/eval.c projects/diffused_head/bin/sh/eval.h projects/diffused_head/bin/sh/exec.c projects/diffused_head/bin/sh/histedit.c projects/diffused_head/bin/sh/input.c projects/diffused_head/bin/sh/jobs.c projects/diffused_head/bin/sh/jobs.h projects/diffused_head/bin/sh/trap.c projects/diffused_head/bin/sh/var.c projects/diffused_head/bin/sh/var.h projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_CREATEFAIL.many.exe (contents, props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_iter.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_iter.h projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_impl.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_iter.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/diffused_head/contrib/compiler-rt/lib/int_lib.h projects/diffused_head/contrib/gcc/gcc.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_iso9660.c projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/diffused_head/contrib/netcat/netcat.c projects/diffused_head/contrib/pf/pfctl/parse.y projects/diffused_head/contrib/tcsh/Fixes projects/diffused_head/contrib/tcsh/Imakefile projects/diffused_head/contrib/tcsh/Makefile.in projects/diffused_head/contrib/tcsh/Ported projects/diffused_head/contrib/tcsh/README projects/diffused_head/contrib/tcsh/WishList projects/diffused_head/contrib/tcsh/complete.tcsh projects/diffused_head/contrib/tcsh/config.guess projects/diffused_head/contrib/tcsh/config.h.in projects/diffused_head/contrib/tcsh/config.sub projects/diffused_head/contrib/tcsh/config/bsd4.4 projects/diffused_head/contrib/tcsh/config_f.h projects/diffused_head/contrib/tcsh/configure projects/diffused_head/contrib/tcsh/configure.in projects/diffused_head/contrib/tcsh/ed.chared.c projects/diffused_head/contrib/tcsh/ed.inputl.c projects/diffused_head/contrib/tcsh/ed.refresh.c projects/diffused_head/contrib/tcsh/ed.screen.c projects/diffused_head/contrib/tcsh/ed.term.c projects/diffused_head/contrib/tcsh/gethost.c projects/diffused_head/contrib/tcsh/glob.c projects/diffused_head/contrib/tcsh/glob.h projects/diffused_head/contrib/tcsh/host.defs projects/diffused_head/contrib/tcsh/install-sh projects/diffused_head/contrib/tcsh/nls/C/charset projects/diffused_head/contrib/tcsh/nls/C/set19 projects/diffused_head/contrib/tcsh/nls/et/charset projects/diffused_head/contrib/tcsh/nls/et/set1 projects/diffused_head/contrib/tcsh/nls/et/set10 projects/diffused_head/contrib/tcsh/nls/et/set11 projects/diffused_head/contrib/tcsh/nls/et/set13 projects/diffused_head/contrib/tcsh/nls/et/set14 projects/diffused_head/contrib/tcsh/nls/et/set15 projects/diffused_head/contrib/tcsh/nls/et/set16 projects/diffused_head/contrib/tcsh/nls/et/set17 projects/diffused_head/contrib/tcsh/nls/et/set18 projects/diffused_head/contrib/tcsh/nls/et/set19 projects/diffused_head/contrib/tcsh/nls/et/set2 projects/diffused_head/contrib/tcsh/nls/et/set20 projects/diffused_head/contrib/tcsh/nls/et/set21 projects/diffused_head/contrib/tcsh/nls/et/set22 projects/diffused_head/contrib/tcsh/nls/et/set23 projects/diffused_head/contrib/tcsh/nls/et/set24 projects/diffused_head/contrib/tcsh/nls/et/set25 projects/diffused_head/contrib/tcsh/nls/et/set26 projects/diffused_head/contrib/tcsh/nls/et/set27 projects/diffused_head/contrib/tcsh/nls/et/set3 projects/diffused_head/contrib/tcsh/nls/et/set30 projects/diffused_head/contrib/tcsh/nls/et/set4 projects/diffused_head/contrib/tcsh/nls/et/set5 projects/diffused_head/contrib/tcsh/nls/et/set6 projects/diffused_head/contrib/tcsh/nls/et/set7 projects/diffused_head/contrib/tcsh/nls/et/set8 projects/diffused_head/contrib/tcsh/nls/et/set9 projects/diffused_head/contrib/tcsh/nls/finnish/charset projects/diffused_head/contrib/tcsh/nls/finnish/set1 projects/diffused_head/contrib/tcsh/nls/finnish/set10 projects/diffused_head/contrib/tcsh/nls/finnish/set11 projects/diffused_head/contrib/tcsh/nls/finnish/set12 projects/diffused_head/contrib/tcsh/nls/finnish/set13 projects/diffused_head/contrib/tcsh/nls/finnish/set14 projects/diffused_head/contrib/tcsh/nls/finnish/set16 projects/diffused_head/contrib/tcsh/nls/finnish/set17 projects/diffused_head/contrib/tcsh/nls/finnish/set18 projects/diffused_head/contrib/tcsh/nls/finnish/set19 projects/diffused_head/contrib/tcsh/nls/finnish/set2 projects/diffused_head/contrib/tcsh/nls/finnish/set20 projects/diffused_head/contrib/tcsh/nls/finnish/set22 projects/diffused_head/contrib/tcsh/nls/finnish/set23 projects/diffused_head/contrib/tcsh/nls/finnish/set25 projects/diffused_head/contrib/tcsh/nls/finnish/set26 projects/diffused_head/contrib/tcsh/nls/finnish/set27 projects/diffused_head/contrib/tcsh/nls/finnish/set29 projects/diffused_head/contrib/tcsh/nls/finnish/set3 projects/diffused_head/contrib/tcsh/nls/finnish/set6 projects/diffused_head/contrib/tcsh/nls/finnish/set7 projects/diffused_head/contrib/tcsh/nls/finnish/set9 projects/diffused_head/contrib/tcsh/nls/french/charset projects/diffused_head/contrib/tcsh/nls/french/set1 projects/diffused_head/contrib/tcsh/nls/french/set10 projects/diffused_head/contrib/tcsh/nls/french/set11 projects/diffused_head/contrib/tcsh/nls/french/set12 projects/diffused_head/contrib/tcsh/nls/french/set13 projects/diffused_head/contrib/tcsh/nls/french/set15 projects/diffused_head/contrib/tcsh/nls/french/set16 projects/diffused_head/contrib/tcsh/nls/french/set17 projects/diffused_head/contrib/tcsh/nls/french/set18 projects/diffused_head/contrib/tcsh/nls/french/set19 projects/diffused_head/contrib/tcsh/nls/french/set2 projects/diffused_head/contrib/tcsh/nls/french/set20 projects/diffused_head/contrib/tcsh/nls/french/set21 projects/diffused_head/contrib/tcsh/nls/french/set22 projects/diffused_head/contrib/tcsh/nls/french/set23 projects/diffused_head/contrib/tcsh/nls/french/set25 projects/diffused_head/contrib/tcsh/nls/french/set26 projects/diffused_head/contrib/tcsh/nls/french/set27 projects/diffused_head/contrib/tcsh/nls/french/set3 projects/diffused_head/contrib/tcsh/nls/french/set30 projects/diffused_head/contrib/tcsh/nls/french/set31 projects/diffused_head/contrib/tcsh/nls/french/set4 projects/diffused_head/contrib/tcsh/nls/french/set6 projects/diffused_head/contrib/tcsh/nls/french/set7 projects/diffused_head/contrib/tcsh/nls/french/set8 projects/diffused_head/contrib/tcsh/nls/french/set9 projects/diffused_head/contrib/tcsh/nls/german/charset projects/diffused_head/contrib/tcsh/nls/german/set1 projects/diffused_head/contrib/tcsh/nls/german/set10 projects/diffused_head/contrib/tcsh/nls/german/set13 projects/diffused_head/contrib/tcsh/nls/german/set15 projects/diffused_head/contrib/tcsh/nls/german/set16 projects/diffused_head/contrib/tcsh/nls/german/set17 projects/diffused_head/contrib/tcsh/nls/german/set18 projects/diffused_head/contrib/tcsh/nls/german/set19 projects/diffused_head/contrib/tcsh/nls/german/set2 projects/diffused_head/contrib/tcsh/nls/german/set20 projects/diffused_head/contrib/tcsh/nls/german/set22 projects/diffused_head/contrib/tcsh/nls/german/set23 projects/diffused_head/contrib/tcsh/nls/german/set25 projects/diffused_head/contrib/tcsh/nls/german/set26 projects/diffused_head/contrib/tcsh/nls/german/set27 projects/diffused_head/contrib/tcsh/nls/german/set29 projects/diffused_head/contrib/tcsh/nls/german/set3 projects/diffused_head/contrib/tcsh/nls/german/set30 projects/diffused_head/contrib/tcsh/nls/german/set31 projects/diffused_head/contrib/tcsh/nls/german/set4 projects/diffused_head/contrib/tcsh/nls/german/set5 projects/diffused_head/contrib/tcsh/nls/german/set6 projects/diffused_head/contrib/tcsh/nls/german/set7 projects/diffused_head/contrib/tcsh/nls/german/set8 projects/diffused_head/contrib/tcsh/nls/german/set9 projects/diffused_head/contrib/tcsh/nls/greek/charset projects/diffused_head/contrib/tcsh/nls/greek/set1 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set10 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set11 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set12 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set13 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set14 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set15 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set16 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set17 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set18 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set19 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set2 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set20 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set21 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set22 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set23 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set25 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set26 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set27 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set29 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set3 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set30 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set31 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set4 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set5 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set6 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set7 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set8 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/greek/set9 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/italian/charset projects/diffused_head/contrib/tcsh/nls/italian/set1 projects/diffused_head/contrib/tcsh/nls/italian/set11 projects/diffused_head/contrib/tcsh/nls/italian/set13 projects/diffused_head/contrib/tcsh/nls/italian/set15 projects/diffused_head/contrib/tcsh/nls/italian/set17 projects/diffused_head/contrib/tcsh/nls/italian/set19 projects/diffused_head/contrib/tcsh/nls/italian/set2 projects/diffused_head/contrib/tcsh/nls/italian/set20 projects/diffused_head/contrib/tcsh/nls/italian/set22 projects/diffused_head/contrib/tcsh/nls/italian/set23 projects/diffused_head/contrib/tcsh/nls/italian/set26 projects/diffused_head/contrib/tcsh/nls/italian/set3 projects/diffused_head/contrib/tcsh/nls/italian/set30 projects/diffused_head/contrib/tcsh/nls/italian/set4 projects/diffused_head/contrib/tcsh/nls/italian/set6 projects/diffused_head/contrib/tcsh/nls/italian/set7 projects/diffused_head/contrib/tcsh/nls/ja/charset projects/diffused_head/contrib/tcsh/nls/ja/set1 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set10 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set11 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set12 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set13 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set15 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set16 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set17 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set18 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set2 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set21 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set29 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set3 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set30 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set4 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set5 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set6 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set7 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ja/set8 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/charset projects/diffused_head/contrib/tcsh/nls/russian/set1 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set10 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set11 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set12 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set13 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set14 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set15 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set16 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set17 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set18 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set19 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set2 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set20 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set22 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set23 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set25 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set26 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set27 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set29 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set30 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set31 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set4 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set5 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set6 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set7 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set8 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/russian/set9 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/spanish/charset projects/diffused_head/contrib/tcsh/nls/spanish/set1 projects/diffused_head/contrib/tcsh/nls/spanish/set10 projects/diffused_head/contrib/tcsh/nls/spanish/set13 projects/diffused_head/contrib/tcsh/nls/spanish/set14 projects/diffused_head/contrib/tcsh/nls/spanish/set15 projects/diffused_head/contrib/tcsh/nls/spanish/set16 projects/diffused_head/contrib/tcsh/nls/spanish/set17 projects/diffused_head/contrib/tcsh/nls/spanish/set18 projects/diffused_head/contrib/tcsh/nls/spanish/set19 projects/diffused_head/contrib/tcsh/nls/spanish/set2 projects/diffused_head/contrib/tcsh/nls/spanish/set20 projects/diffused_head/contrib/tcsh/nls/spanish/set22 projects/diffused_head/contrib/tcsh/nls/spanish/set23 projects/diffused_head/contrib/tcsh/nls/spanish/set25 projects/diffused_head/contrib/tcsh/nls/spanish/set26 projects/diffused_head/contrib/tcsh/nls/spanish/set27 projects/diffused_head/contrib/tcsh/nls/spanish/set3 projects/diffused_head/contrib/tcsh/nls/spanish/set30 projects/diffused_head/contrib/tcsh/nls/spanish/set4 projects/diffused_head/contrib/tcsh/nls/spanish/set5 projects/diffused_head/contrib/tcsh/nls/spanish/set6 projects/diffused_head/contrib/tcsh/nls/spanish/set7 projects/diffused_head/contrib/tcsh/nls/spanish/set8 projects/diffused_head/contrib/tcsh/nls/spanish/set9 projects/diffused_head/contrib/tcsh/nls/ukrainian/charset projects/diffused_head/contrib/tcsh/nls/ukrainian/set1 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set10 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set11 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set12 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set13 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set14 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set15 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set16 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set17 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set18 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set19 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set2 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set20 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set22 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set23 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set25 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set26 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set27 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set29 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set30 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set31 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set5 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set6 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set7 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set8 (contents, props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set9 (contents, props changed) projects/diffused_head/contrib/tcsh/patchlevel.h projects/diffused_head/contrib/tcsh/pathnames.h projects/diffused_head/contrib/tcsh/sh.c projects/diffused_head/contrib/tcsh/sh.char.c projects/diffused_head/contrib/tcsh/sh.char.h projects/diffused_head/contrib/tcsh/sh.decls.h projects/diffused_head/contrib/tcsh/sh.dir.c projects/diffused_head/contrib/tcsh/sh.dol.c projects/diffused_head/contrib/tcsh/sh.err.c projects/diffused_head/contrib/tcsh/sh.exec.c projects/diffused_head/contrib/tcsh/sh.exp.c projects/diffused_head/contrib/tcsh/sh.file.c projects/diffused_head/contrib/tcsh/sh.func.c projects/diffused_head/contrib/tcsh/sh.glob.c projects/diffused_head/contrib/tcsh/sh.h projects/diffused_head/contrib/tcsh/sh.hist.c projects/diffused_head/contrib/tcsh/sh.lex.c projects/diffused_head/contrib/tcsh/sh.misc.c projects/diffused_head/contrib/tcsh/sh.parse.c projects/diffused_head/contrib/tcsh/sh.print.c projects/diffused_head/contrib/tcsh/sh.proc.c projects/diffused_head/contrib/tcsh/sh.proc.h projects/diffused_head/contrib/tcsh/sh.sem.c projects/diffused_head/contrib/tcsh/sh.set.c projects/diffused_head/contrib/tcsh/sh.time.c projects/diffused_head/contrib/tcsh/tc.alloc.c projects/diffused_head/contrib/tcsh/tc.const.c projects/diffused_head/contrib/tcsh/tc.decls.h projects/diffused_head/contrib/tcsh/tc.disc.c projects/diffused_head/contrib/tcsh/tc.func.c projects/diffused_head/contrib/tcsh/tc.nls.c projects/diffused_head/contrib/tcsh/tc.nls.h projects/diffused_head/contrib/tcsh/tc.os.c projects/diffused_head/contrib/tcsh/tc.os.h projects/diffused_head/contrib/tcsh/tc.prompt.c projects/diffused_head/contrib/tcsh/tc.sig.c projects/diffused_head/contrib/tcsh/tc.sig.h projects/diffused_head/contrib/tcsh/tc.str.c projects/diffused_head/contrib/tcsh/tc.wait.h projects/diffused_head/contrib/tcsh/tc.who.c projects/diffused_head/contrib/tcsh/tcsh.man projects/diffused_head/contrib/tcsh/tcsh.man2html projects/diffused_head/contrib/tcsh/tw.color.c projects/diffused_head/contrib/tcsh/tw.init.c projects/diffused_head/contrib/tcsh/tw.parse.c projects/diffused_head/contrib/tcsh/vms.termcap.c projects/diffused_head/crypto/openssh/auth2.c projects/diffused_head/crypto/openssh/channels.c projects/diffused_head/crypto/openssh/channels.h projects/diffused_head/crypto/openssh/kex.c projects/diffused_head/crypto/openssh/loginrec.c (contents, props changed) projects/diffused_head/crypto/openssh/readconf.c projects/diffused_head/crypto/openssh/readconf.h projects/diffused_head/crypto/openssh/servconf.c projects/diffused_head/crypto/openssh/sftp.1 projects/diffused_head/crypto/openssh/ssh.c projects/diffused_head/crypto/openssh/sshd.c projects/diffused_head/crypto/openssh/sshd_config.5 projects/diffused_head/crypto/openssh/version.h projects/diffused_head/etc/Makefile projects/diffused_head/etc/defaults/periodic.conf projects/diffused_head/etc/defaults/rc.conf projects/diffused_head/etc/devd/apple.conf projects/diffused_head/etc/devd/usb.conf projects/diffused_head/etc/netstart projects/diffused_head/etc/network.subr projects/diffused_head/etc/periodic/daily/404.status-zfs projects/diffused_head/etc/rc.d/LOGIN projects/diffused_head/etc/rc.d/Makefile projects/diffused_head/etc/rc.d/SERVERS projects/diffused_head/etc/rc.d/accounting projects/diffused_head/etc/rc.d/addswap projects/diffused_head/etc/rc.d/amd projects/diffused_head/etc/rc.d/apm projects/diffused_head/etc/rc.d/apmd projects/diffused_head/etc/rc.d/bootparams projects/diffused_head/etc/rc.d/bsnmpd projects/diffused_head/etc/rc.d/bthidd projects/diffused_head/etc/rc.d/cleanvar projects/diffused_head/etc/rc.d/cleartmp projects/diffused_head/etc/rc.d/cron projects/diffused_head/etc/rc.d/ddb projects/diffused_head/etc/rc.d/devd projects/diffused_head/etc/rc.d/devfs projects/diffused_head/etc/rc.d/dhclient projects/diffused_head/etc/rc.d/dmesg projects/diffused_head/etc/rc.d/ftp-proxy projects/diffused_head/etc/rc.d/ftpd projects/diffused_head/etc/rc.d/gptboot projects/diffused_head/etc/rc.d/hastd projects/diffused_head/etc/rc.d/hcsecd projects/diffused_head/etc/rc.d/hostapd projects/diffused_head/etc/rc.d/inetd projects/diffused_head/etc/rc.d/ip6addrctl projects/diffused_head/etc/rc.d/ipfilter projects/diffused_head/etc/rc.d/ipfs projects/diffused_head/etc/rc.d/ipmon projects/diffused_head/etc/rc.d/ipnat projects/diffused_head/etc/rc.d/ipsec projects/diffused_head/etc/rc.d/ipxrouted projects/diffused_head/etc/rc.d/jail projects/diffused_head/etc/rc.d/keyserv projects/diffused_head/etc/rc.d/lockd projects/diffused_head/etc/rc.d/lpd projects/diffused_head/etc/rc.d/mountd projects/diffused_head/etc/rc.d/moused projects/diffused_head/etc/rc.d/mroute6d projects/diffused_head/etc/rc.d/mrouted projects/diffused_head/etc/rc.d/natd projects/diffused_head/etc/rc.d/netif projects/diffused_head/etc/rc.d/netwait projects/diffused_head/etc/rc.d/newsyslog projects/diffused_head/etc/rc.d/nfscbd projects/diffused_head/etc/rc.d/nfsd projects/diffused_head/etc/rc.d/nfsuserd projects/diffused_head/etc/rc.d/nscd projects/diffused_head/etc/rc.d/ntpd projects/diffused_head/etc/rc.d/ntpdate projects/diffused_head/etc/rc.d/pf projects/diffused_head/etc/rc.d/pflog projects/diffused_head/etc/rc.d/pfsync projects/diffused_head/etc/rc.d/powerd projects/diffused_head/etc/rc.d/ppp projects/diffused_head/etc/rc.d/pppoed projects/diffused_head/etc/rc.d/quota projects/diffused_head/etc/rc.d/rarpd projects/diffused_head/etc/rc.d/rfcomm_pppd_server projects/diffused_head/etc/rc.d/route6d projects/diffused_head/etc/rc.d/routed projects/diffused_head/etc/rc.d/routing projects/diffused_head/etc/rc.d/rpcbind projects/diffused_head/etc/rc.d/rtadvd projects/diffused_head/etc/rc.d/rtsold projects/diffused_head/etc/rc.d/rwho projects/diffused_head/etc/rc.d/sdpd projects/diffused_head/etc/rc.d/sendmail projects/diffused_head/etc/rc.d/sshd projects/diffused_head/etc/rc.d/statd projects/diffused_head/etc/rc.d/syslogd projects/diffused_head/etc/rc.d/timed projects/diffused_head/etc/rc.d/ubthidhci projects/diffused_head/etc/rc.d/var projects/diffused_head/etc/rc.d/virecover projects/diffused_head/etc/rc.d/watchdogd projects/diffused_head/etc/rc.d/ypbind projects/diffused_head/etc/rc.d/yppasswdd projects/diffused_head/etc/rc.d/ypserv projects/diffused_head/etc/rc.d/ypset projects/diffused_head/etc/rc.d/ypupdated projects/diffused_head/etc/rc.d/ypxfrd projects/diffused_head/etc/rc.resume projects/diffused_head/etc/rc.subr projects/diffused_head/etc/rc.suspend projects/diffused_head/games/morse/morse.c projects/diffused_head/games/pom/pom.c projects/diffused_head/gnu/usr.bin/cc/cc_tools/auto-host.h projects/diffused_head/gnu/usr.bin/gdb/kgdb/trgt_amd64.c projects/diffused_head/include/complex.h projects/diffused_head/include/rpc/Makefile projects/diffused_head/include/rpc/svc.h projects/diffused_head/include/rpcsvc/Makefile projects/diffused_head/include/stdatomic.h projects/diffused_head/include/xlocale.h projects/diffused_head/lib/clang/Makefile projects/diffused_head/lib/clang/libllvmanalysis/Makefile projects/diffused_head/lib/clang/libllvmipa/Makefile projects/diffused_head/lib/clang/libllvmipo/Makefile projects/diffused_head/lib/clang/libllvmmc/Makefile projects/diffused_head/lib/clang/libllvmscalaropts/Makefile projects/diffused_head/lib/clang/libllvmsupport/Makefile projects/diffused_head/lib/clang/libllvmtransformutils/Makefile projects/diffused_head/lib/clang/libllvmx86disassembler/Makefile projects/diffused_head/lib/libc/amd64/gen/Makefile.inc projects/diffused_head/lib/libc/arm/_fpmath.h projects/diffused_head/lib/libc/arm/gen/Makefile.inc projects/diffused_head/lib/libc/arm/softfloat/softfloat.h projects/diffused_head/lib/libc/db/man/hash.3 projects/diffused_head/lib/libc/gen/Symbol.map projects/diffused_head/lib/libc/gen/arc4random.3 projects/diffused_head/lib/libc/gen/aux.c projects/diffused_head/lib/libc/gen/directory.3 projects/diffused_head/lib/libc/gen/dlfcn.c projects/diffused_head/lib/libc/gen/fts.c projects/diffused_head/lib/libc/gen/getcontext.3 projects/diffused_head/lib/libc/gen/getgrouplist.3 projects/diffused_head/lib/libc/gen/getutxent.3 projects/diffused_head/lib/libc/gen/getutxent.c projects/diffused_head/lib/libc/gen/sem.c projects/diffused_head/lib/libc/gen/sem_new.c projects/diffused_head/lib/libc/gen/sysctl.3 projects/diffused_head/lib/libc/gen/ucontext.3 projects/diffused_head/lib/libc/i386/gen/Makefile.inc projects/diffused_head/lib/libc/ia64/gen/Makefile.inc projects/diffused_head/lib/libc/include/libc_private.h projects/diffused_head/lib/libc/locale/btowc.3 projects/diffused_head/lib/libc/mips/gen/Makefile.inc projects/diffused_head/lib/libc/mips/softfloat/softfloat.h projects/diffused_head/lib/libc/net/eui64.3 projects/diffused_head/lib/libc/net/getifaddrs.c projects/diffused_head/lib/libc/net/nsdispatch.3 projects/diffused_head/lib/libc/powerpc/SYS.h projects/diffused_head/lib/libc/powerpc/gen/Makefile.inc projects/diffused_head/lib/libc/powerpc/gen/setjmp.S projects/diffused_head/lib/libc/powerpc64/SYS.h projects/diffused_head/lib/libc/powerpc64/gen/Makefile.inc projects/diffused_head/lib/libc/powerpc64/gen/setjmp.S projects/diffused_head/lib/libc/powerpc64/sys/cerror.S projects/diffused_head/lib/libc/rpc/Makefile.inc projects/diffused_head/lib/libc/rpc/rpc.3 projects/diffused_head/lib/libc/rpc/rpc_clnt_create.3 projects/diffused_head/lib/libc/softfloat/Makefile.inc projects/diffused_head/lib/libc/softfloat/Symbol.map projects/diffused_head/lib/libc/softfloat/bits32/softfloat-macros projects/diffused_head/lib/libc/softfloat/bits32/softfloat.c projects/diffused_head/lib/libc/softfloat/bits64/softfloat-macros projects/diffused_head/lib/libc/softfloat/bits64/softfloat.c projects/diffused_head/lib/libc/softfloat/softfloat-for-gcc.h projects/diffused_head/lib/libc/softfloat/softfloat-source.txt projects/diffused_head/lib/libc/softfloat/softfloat-specialize projects/diffused_head/lib/libc/softfloat/softfloat.txt projects/diffused_head/lib/libc/sparc64/fpu/fpu_emu.h projects/diffused_head/lib/libc/sparc64/fpu/fpu_mul.c projects/diffused_head/lib/libc/sparc64/gen/Makefile.inc projects/diffused_head/lib/libc/string/strerror.3 projects/diffused_head/lib/libc/sys/close.2 projects/diffused_head/lib/libc/sys/fcntl.2 projects/diffused_head/lib/libc/sys/getdirentries.2 projects/diffused_head/lib/libc/sys/jail.2 projects/diffused_head/lib/libc/sys/kqueue.2 projects/diffused_head/lib/libc/sys/mmap.2 projects/diffused_head/lib/libc/sys/nfssvc.2 projects/diffused_head/lib/libc/sys/ptrace.2 projects/diffused_head/lib/libc/sys/read.2 projects/diffused_head/lib/libc/sys/setuid.2 projects/diffused_head/lib/libc/sys/write.2 projects/diffused_head/lib/libc/yp/Makefile.inc projects/diffused_head/lib/libcam/cam.3 projects/diffused_head/lib/libcam/cam_cdbparse.3 projects/diffused_head/lib/libdevstat/devstat.3 projects/diffused_head/lib/libdisk/libdisk.h projects/diffused_head/lib/libfetch/common.c projects/diffused_head/lib/libfetch/common.h projects/diffused_head/lib/libfetch/http.c projects/diffused_head/lib/libipsec/pfkey.c projects/diffused_head/lib/libkvm/kvm_proc.c projects/diffused_head/lib/libpam/modules/pam_unix/Makefile projects/diffused_head/lib/libpmc/pmc.3 projects/diffused_head/lib/libpmc/pmc.atom.3 projects/diffused_head/lib/libpmc/pmc.core.3 projects/diffused_head/lib/libpmc/pmc.core2.3 projects/diffused_head/lib/libpmc/pmc.corei7.3 projects/diffused_head/lib/libpmc/pmc.corei7uc.3 projects/diffused_head/lib/libpmc/pmc.iaf.3 projects/diffused_head/lib/libpmc/pmc.k7.3 projects/diffused_head/lib/libpmc/pmc.k8.3 projects/diffused_head/lib/libpmc/pmc.mips.3 projects/diffused_head/lib/libpmc/pmc.p4.3 projects/diffused_head/lib/libpmc/pmc.p5.3 projects/diffused_head/lib/libpmc/pmc.p6.3 projects/diffused_head/lib/libpmc/pmc.tsc.3 projects/diffused_head/lib/libpmc/pmc.ucf.3 projects/diffused_head/lib/libpmc/pmc.westmere.3 projects/diffused_head/lib/libpmc/pmc.westmereuc.3 projects/diffused_head/lib/libpmc/pmc.xscale.3 projects/diffused_head/lib/libpmc/pmc_allocate.3 projects/diffused_head/lib/libpmc/pmc_attach.3 projects/diffused_head/lib/libpmc/pmc_capabilities.3 projects/diffused_head/lib/libpmc/pmc_configure_logfile.3 projects/diffused_head/lib/libpmc/pmc_disable.3 projects/diffused_head/lib/libpmc/pmc_event_names_of_class.3 projects/diffused_head/lib/libpmc/pmc_get_driver_stats.3 projects/diffused_head/lib/libpmc/pmc_get_msr.3 projects/diffused_head/lib/libpmc/pmc_init.3 projects/diffused_head/lib/libpmc/pmc_name_of_capability.3 projects/diffused_head/lib/libpmc/pmc_read.3 projects/diffused_head/lib/libpmc/pmc_set.3 projects/diffused_head/lib/libpmc/pmc_start.3 projects/diffused_head/lib/libpmc/pmclog.3 projects/diffused_head/lib/libprocstat/common_kvm.c projects/diffused_head/lib/libradius/libradius.3 projects/diffused_head/lib/librpcsvc/Makefile projects/diffused_head/lib/libthr/arch/arm/arm/pthread_md.c projects/diffused_head/lib/libthr/arch/arm/include/pthread_md.h projects/diffused_head/lib/libthr/arch/mips/include/pthread_md.h projects/diffused_head/lib/libthr/arch/mips/mips/pthread_md.c projects/diffused_head/lib/libthr/thread/thr_list.c projects/diffused_head/lib/libthr/thread/thr_private.h projects/diffused_head/lib/libthr/thread/thr_sig.c projects/diffused_head/lib/libthr/thread/thr_umtx.c projects/diffused_head/lib/libutil/Makefile projects/diffused_head/lib/libutil/libutil.h projects/diffused_head/lib/libutil/login_class.c projects/diffused_head/lib/libutil/pidfile.3 projects/diffused_head/lib/libutil/pidfile.c projects/diffused_head/lib/libutil/property.3 projects/diffused_head/lib/libutil/pw_util.c projects/diffused_head/lib/libutil/realhostname.3 projects/diffused_head/lib/libypclnt/Makefile projects/diffused_head/lib/msun/Makefile projects/diffused_head/lib/msun/arm/Symbol.map projects/diffused_head/lib/msun/arm/fenv.c projects/diffused_head/lib/msun/arm/fenv.h projects/diffused_head/lib/msun/src/k_expf.c projects/diffused_head/libexec/rtld-elf/amd64/reloc.c projects/diffused_head/libexec/rtld-elf/arm/reloc.c projects/diffused_head/libexec/rtld-elf/arm/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/i386/reloc.c projects/diffused_head/libexec/rtld-elf/map_object.c projects/diffused_head/libexec/rtld-elf/mips/reloc.c projects/diffused_head/libexec/rtld-elf/mips/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/rtld.c projects/diffused_head/libexec/rtld-elf/rtld.h projects/diffused_head/libexec/tftpd/tftp-io.c projects/diffused_head/libexec/ypxfr/Makefile projects/diffused_head/release/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/diffused_head/release/doc/share/misc/dev.archlist.txt projects/diffused_head/release/doc/share/misc/man2hwnotes.pl projects/diffused_head/release/generate-release.sh projects/diffused_head/release/picobsd/tinyware/passwd/Makefile projects/diffused_head/release/rc.local projects/diffused_head/rescue/rescue/Makefile projects/diffused_head/sbin/bsdlabel/bsdlabel.8 projects/diffused_head/sbin/camcontrol/Makefile projects/diffused_head/sbin/camcontrol/camcontrol.c projects/diffused_head/sbin/fsck_ffs/fsck_ffs.8 projects/diffused_head/sbin/fsck_ffs/setup.c projects/diffused_head/sbin/fsdb/fsdbutil.c projects/diffused_head/sbin/geom/class/part/gpart.8 projects/diffused_head/sbin/geom/class/sched/gsched.8 projects/diffused_head/sbin/growfs/growfs.c projects/diffused_head/sbin/hastd/hast.conf.5 projects/diffused_head/sbin/hastd/hastd.c projects/diffused_head/sbin/hastd/parse.y projects/diffused_head/sbin/hastd/primary.c projects/diffused_head/sbin/hastd/rangelock.c projects/diffused_head/sbin/hastd/secondary.c projects/diffused_head/sbin/hastd/token.l projects/diffused_head/sbin/ifconfig/Makefile projects/diffused_head/sbin/ifconfig/ifconfig.c projects/diffused_head/sbin/init/init.8 projects/diffused_head/sbin/init/init.c projects/diffused_head/sbin/ipfw/ipfw.8 projects/diffused_head/sbin/ipfw/ipfw2.c projects/diffused_head/sbin/mdconfig/mdconfig.c projects/diffused_head/sbin/mount/getmntopts.c projects/diffused_head/sbin/mount/mntopts.h projects/diffused_head/sbin/mount/mount.c projects/diffused_head/sbin/mount/mount_fs.c projects/diffused_head/sbin/mount_cd9660/mount_cd9660.c projects/diffused_head/sbin/mount_ext2fs/mount_ext2fs.c projects/diffused_head/sbin/mount_msdosfs/mount_msdosfs.c projects/diffused_head/sbin/mount_nfs/mount_nfs.8 projects/diffused_head/sbin/mount_nfs/mount_nfs.c projects/diffused_head/sbin/mount_ntfs/mount_ntfs.c projects/diffused_head/sbin/mount_nullfs/mount_nullfs.c projects/diffused_head/sbin/mount_reiserfs/mount_reiserfs.c projects/diffused_head/sbin/mount_std/mount_std.c projects/diffused_head/sbin/mount_udf/mount_udf.c projects/diffused_head/sbin/mount_unionfs/mount_unionfs.c projects/diffused_head/sbin/newfs_msdos/newfs_msdos.8 projects/diffused_head/sbin/reboot/nextboot.8 projects/diffused_head/sbin/reboot/nextboot.sh projects/diffused_head/sbin/route/route.c projects/diffused_head/sbin/routed/parms.c projects/diffused_head/secure/lib/libcrypt/crypt-blowfish.c projects/diffused_head/share/examples/etc/make.conf projects/diffused_head/share/man/man3/Makefile projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man4/ada.4 projects/diffused_head/share/man/man4/agp.4 projects/diffused_head/share/man/man4/bge.4 projects/diffused_head/share/man/man4/carp.4 projects/diffused_head/share/man/man4/cd.4 projects/diffused_head/share/man/man4/ciss.4 projects/diffused_head/share/man/man4/da.4 projects/diffused_head/share/man/man4/ed.4 projects/diffused_head/share/man/man4/faith.4 projects/diffused_head/share/man/man4/h_ertt.4 projects/diffused_head/share/man/man4/icmp6.4 projects/diffused_head/share/man/man4/inet.4 projects/diffused_head/share/man/man4/inet6.4 projects/diffused_head/share/man/man4/ip6.4 projects/diffused_head/share/man/man4/lmc.4 projects/diffused_head/share/man/man4/lo.4 projects/diffused_head/share/man/man4/mem.4 projects/diffused_head/share/man/man4/mps.4 projects/diffused_head/share/man/man4/mtio.4 projects/diffused_head/share/man/man4/natm.4 projects/diffused_head/share/man/man4/net80211.4 projects/diffused_head/share/man/man4/netintro.4 projects/diffused_head/share/man/man4/ng_async.4 projects/diffused_head/share/man/man4/ng_bridge.4 projects/diffused_head/share/man/man4/ng_btsocket.4 projects/diffused_head/share/man/man4/ng_car.4 projects/diffused_head/share/man/man4/ng_ccatm.4 projects/diffused_head/share/man/man4/ng_cisco.4 projects/diffused_head/share/man/man4/ng_etf.4 projects/diffused_head/share/man/man4/ng_hci.4 projects/diffused_head/share/man/man4/ng_l2cap.4 projects/diffused_head/share/man/man4/ng_l2tp.4 projects/diffused_head/share/man/man4/ng_mppc.4 projects/diffused_head/share/man/man4/ng_netflow.4 projects/diffused_head/share/man/man4/ng_one2many.4 projects/diffused_head/share/man/man4/ng_ppp.4 projects/diffused_head/share/man/man4/ng_pppoe.4 projects/diffused_head/share/man/man4/ng_pptpgre.4 projects/diffused_head/share/man/man4/pcm.4 projects/diffused_head/share/man/man4/ppi.4 projects/diffused_head/share/man/man4/sbp.4 projects/diffused_head/share/man/man4/sdhci.4 projects/diffused_head/share/man/man4/sfxge.4 projects/diffused_head/share/man/man4/snd_hda.4 projects/diffused_head/share/man/man4/tap.4 projects/diffused_head/share/man/man4/tcp.4 projects/diffused_head/share/man/man4/txp.4 projects/diffused_head/share/man/man4/u3g.4 projects/diffused_head/share/man/man4/umass.4 projects/diffused_head/share/man/man4/usb_quirk.4 projects/diffused_head/share/man/man4/virtio.4 projects/diffused_head/share/man/man4/virtio_balloon.4 projects/diffused_head/share/man/man4/virtio_blk.4 projects/diffused_head/share/man/man4/vtnet.4 projects/diffused_head/share/man/man5/Makefile projects/diffused_head/share/man/man5/devfs.5 projects/diffused_head/share/man/man5/fs.5 projects/diffused_head/share/man/man5/periodic.conf.5 projects/diffused_head/share/man/man5/portindex.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man7/hier.7 projects/diffused_head/share/man/man7/ports.7 projects/diffused_head/share/man/man7/release.7 projects/diffused_head/share/man/man7/security.7 projects/diffused_head/share/man/man8/rc.8 projects/diffused_head/share/man/man8/rc.subr.8 projects/diffused_head/share/man/man9/DEVICE_PROBE.9 projects/diffused_head/share/man/man9/DEV_MODULE.9 projects/diffused_head/share/man/man9/MD5.9 projects/diffused_head/share/man/man9/Makefile projects/diffused_head/share/man/man9/bios.9 projects/diffused_head/share/man/man9/bus_space.9 projects/diffused_head/share/man/man9/crypto.9 projects/diffused_head/share/man/man9/device_set_flags.9 projects/diffused_head/share/man/man9/devstat.9 projects/diffused_head/share/man/man9/devtoname.9 projects/diffused_head/share/man/man9/eventtimers.9 projects/diffused_head/share/man/man9/get_cyclecount.9 projects/diffused_head/share/man/man9/ifnet.9 projects/diffused_head/share/man/man9/malloc.9 projects/diffused_head/share/man/man9/mbchain.9 projects/diffused_head/share/man/man9/mbuf_tags.9 projects/diffused_head/share/man/man9/mdchain.9 projects/diffused_head/share/man/man9/namei.9 projects/diffused_head/share/man/man9/netisr.9 projects/diffused_head/share/man/man9/physio.9 projects/diffused_head/share/man/man9/random.9 projects/diffused_head/share/man/man9/rijndael.9 projects/diffused_head/share/man/man9/uio.9 projects/diffused_head/share/man/man9/vcount.9 projects/diffused_head/share/man/man9/vm_page_alloc.9 projects/diffused_head/share/man/man9/vnode.9 projects/diffused_head/share/man/man9/zone.9 projects/diffused_head/share/misc/bsd-family-tree projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/mk/bsd.kmod.mk projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/sys/amd64/acpica/acpi_switch.S projects/diffused_head/sys/amd64/acpica/acpi_wakecode.S projects/diffused_head/sys/amd64/acpica/acpi_wakeup.c projects/diffused_head/sys/amd64/amd64/apic_vector.S projects/diffused_head/sys/amd64/amd64/cpu_switch.S projects/diffused_head/sys/amd64/amd64/fpu.c projects/diffused_head/sys/amd64/amd64/genassym.c projects/diffused_head/sys/amd64/amd64/initcpu.c projects/diffused_head/sys/amd64/amd64/machdep.c projects/diffused_head/sys/amd64/amd64/minidump_machdep.c projects/diffused_head/sys/amd64/amd64/mp_machdep.c projects/diffused_head/sys/amd64/amd64/sys_machdep.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/amd64/uma_machdep.c projects/diffused_head/sys/amd64/amd64/vm_machdep.c projects/diffused_head/sys/amd64/conf/GENERIC projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/amd64/ia32/ia32_reg.c projects/diffused_head/sys/amd64/ia32/ia32_signal.c projects/diffused_head/sys/amd64/include/float.h projects/diffused_head/sys/amd64/include/fpu.h projects/diffused_head/sys/amd64/include/frame.h projects/diffused_head/sys/amd64/include/md_var.h projects/diffused_head/sys/amd64/include/pcb.h projects/diffused_head/sys/amd64/include/pcpu.h projects/diffused_head/sys/amd64/include/ptrace.h projects/diffused_head/sys/amd64/include/signal.h projects/diffused_head/sys/amd64/include/specialreg.h projects/diffused_head/sys/amd64/include/sysarch.h projects/diffused_head/sys/amd64/include/ucontext.h projects/diffused_head/sys/amd64/linux32/linux.h projects/diffused_head/sys/amd64/linux32/linux32_dummy.c projects/diffused_head/sys/amd64/linux32/linux32_sysvec.c projects/diffused_head/sys/arm/arm/machdep.c projects/diffused_head/sys/arm/at91/at91_st.c projects/diffused_head/sys/arm/include/_types.h projects/diffused_head/sys/arm/include/float.h projects/diffused_head/sys/arm/sa11x0/sa11x0_ost.c projects/diffused_head/sys/boot/ficl/fileaccess.c projects/diffused_head/sys/boot/ficl/i386/sysdep.h projects/diffused_head/sys/boot/forth/loader.conf projects/diffused_head/sys/boot/forth/menu.rc projects/diffused_head/sys/boot/i386/libi386/pxe.c projects/diffused_head/sys/boot/pc98/loader/Makefile projects/diffused_head/sys/boot/powerpc/boot1.chrp/Makefile projects/diffused_head/sys/boot/powerpc/boot1.chrp/boot1.c projects/diffused_head/sys/boot/powerpc/ps3/ps3mmu.c projects/diffused_head/sys/cam/ata/ata_da.c projects/diffused_head/sys/cam/ata/ata_xpt.c projects/diffused_head/sys/cam/cam_ccb.h projects/diffused_head/sys/cam/cam_periph.c projects/diffused_head/sys/cam/cam_xpt.c projects/diffused_head/sys/cam/cam_xpt_internal.h projects/diffused_head/sys/cam/ctl/ctl.c projects/diffused_head/sys/cam/ctl/ctl_backend_block.c projects/diffused_head/sys/cam/ctl/ctl_backend_ramdisk.c projects/diffused_head/sys/cam/ctl/ctl_error.c projects/diffused_head/sys/cam/ctl/ctl_error.h projects/diffused_head/sys/cam/ctl/ctl_frontend_cam_sim.c projects/diffused_head/sys/cam/ctl/scsi_ctl.c projects/diffused_head/sys/cam/scsi/scsi_all.c projects/diffused_head/sys/cam/scsi/scsi_all.h projects/diffused_head/sys/cam/scsi/scsi_da.c projects/diffused_head/sys/cam/scsi/scsi_xpt.c projects/diffused_head/sys/cddl/compat/opensolaris/sys/kmem.h projects/diffused_head/sys/cddl/compat/opensolaris/sys/sid.h projects/diffused_head/sys/cddl/compat/opensolaris/sys/vnode.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_fm.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/diffused_head/sys/compat/freebsd32/freebsd32_misc.c projects/diffused_head/sys/compat/freebsd32/freebsd32_signal.h projects/diffused_head/sys/compat/ia32/ia32_signal.h projects/diffused_head/sys/compat/linprocfs/linprocfs.c projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/compat/linux/linux_ioctl.c projects/diffused_head/sys/compat/linux/linux_ipc.c projects/diffused_head/sys/compat/linux/linux_misc.c projects/diffused_head/sys/compat/linux/linux_signal.c projects/diffused_head/sys/compat/linux/linux_socket.c projects/diffused_head/sys/compat/linux/linux_stats.c projects/diffused_head/sys/compat/linux/linux_util.c projects/diffused_head/sys/compat/linux/linux_util.h projects/diffused_head/sys/compat/ndis/subr_ndis.c projects/diffused_head/sys/compat/svr4/imgact_svr4.c projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/files.powerpc projects/diffused_head/sys/conf/kern.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/ldscript.powerpc64 projects/diffused_head/sys/conf/newvers.sh projects/diffused_head/sys/conf/options projects/diffused_head/sys/conf/options.amd64 projects/diffused_head/sys/conf/options.i386 projects/diffused_head/sys/contrib/dev/acpica/acpica_prep.sh projects/diffused_head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2s.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstubs.c projects/diffused_head/sys/contrib/dev/acpica/include/acconfig.h projects/diffused_head/sys/contrib/dev/acpica/include/acdebug.h projects/diffused_head/sys/contrib/dev/acpica/include/acevents.h projects/diffused_head/sys/contrib/dev/acpica/include/acexcep.h projects/diffused_head/sys/contrib/dev/acpica/include/acglobal.h projects/diffused_head/sys/contrib/dev/acpica/include/achware.h projects/diffused_head/sys/contrib/dev/acpica/include/acmacros.h projects/diffused_head/sys/contrib/dev/acpica/include/acpiosxf.h projects/diffused_head/sys/contrib/dev/acpica/include/acpixf.h projects/diffused_head/sys/contrib/dev/acpica/include/actables.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl.h projects/diffused_head/sys/contrib/dev/acpica/include/actypes.h projects/diffused_head/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c projects/diffused_head/sys/contrib/dev/npe/LICENSE projects/diffused_head/sys/contrib/dev/nve/amd64/nvenetlib.README projects/diffused_head/sys/contrib/dev/nve/i386/nvenetlib.README projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcie.c projects/diffused_head/sys/contrib/pf/net/if_pfsync.c projects/diffused_head/sys/contrib/pf/net/pf.c projects/diffused_head/sys/contrib/pf/net/pf_ioctl.c projects/diffused_head/sys/contrib/pf/net/pf_lb.c projects/diffused_head/sys/contrib/pf/net/pf_norm.c projects/diffused_head/sys/contrib/pf/net/pf_table.c projects/diffused_head/sys/contrib/pf/net/pfvar.h projects/diffused_head/sys/crypto/aesni/aesni.c projects/diffused_head/sys/crypto/aesni/aesni.h projects/diffused_head/sys/crypto/aesni/aesni_wrap.c projects/diffused_head/sys/crypto/via/padlock.c projects/diffused_head/sys/crypto/via/padlock.h projects/diffused_head/sys/crypto/via/padlock_cipher.c projects/diffused_head/sys/crypto/via/padlock_hash.c projects/diffused_head/sys/dev/aac/aac.c projects/diffused_head/sys/dev/acpica/Osd/OsdMemory.c projects/diffused_head/sys/dev/acpica/Osd/OsdSynch.c projects/diffused_head/sys/dev/acpica/Osd/OsdTable.c projects/diffused_head/sys/dev/acpica/acpi.c projects/diffused_head/sys/dev/acpica/acpi_ec.c projects/diffused_head/sys/dev/acpica/acpi_hpet.c projects/diffused_head/sys/dev/acpica/acpi_timer.c projects/diffused_head/sys/dev/acpica/acpivar.h projects/diffused_head/sys/dev/ahci/ahci.h projects/diffused_head/sys/dev/arcmsr/arcmsr.c projects/diffused_head/sys/dev/ata/ata-all.c projects/diffused_head/sys/dev/ata/ata-all.h projects/diffused_head/sys/dev/ata/ata-card.c projects/diffused_head/sys/dev/ata/ata-cbus.c projects/diffused_head/sys/dev/ata/ata-disk.c projects/diffused_head/sys/dev/ata/ata-disk.h projects/diffused_head/sys/dev/ata/ata-dma.c projects/diffused_head/sys/dev/ata/ata-isa.c projects/diffused_head/sys/dev/ata/ata-lowlevel.c projects/diffused_head/sys/dev/ata/ata-pci.c projects/diffused_head/sys/dev/ata/ata-pci.h projects/diffused_head/sys/dev/ata/ata-queue.c projects/diffused_head/sys/dev/ata/ata-raid.c projects/diffused_head/sys/dev/ata/ata-raid.h projects/diffused_head/sys/dev/ata/ata-sata.c projects/diffused_head/sys/dev/ata/ata_if.m projects/diffused_head/sys/dev/ata/atapi-cd.c projects/diffused_head/sys/dev/ata/atapi-cd.h projects/diffused_head/sys/dev/ata/atapi-fd.c projects/diffused_head/sys/dev/ata/atapi-fd.h projects/diffused_head/sys/dev/ata/atapi-tape.c projects/diffused_head/sys/dev/ata/atapi-tape.h projects/diffused_head/sys/dev/ata/chipsets/ata-acard.c projects/diffused_head/sys/dev/ata/chipsets/ata-acerlabs.c projects/diffused_head/sys/dev/ata/chipsets/ata-adaptec.c projects/diffused_head/sys/dev/ata/chipsets/ata-ahci.c projects/diffused_head/sys/dev/ata/chipsets/ata-amd.c projects/diffused_head/sys/dev/ata/chipsets/ata-ati.c projects/diffused_head/sys/dev/ata/chipsets/ata-cenatek.c projects/diffused_head/sys/dev/ata/chipsets/ata-cypress.c projects/diffused_head/sys/dev/ata/chipsets/ata-cyrix.c projects/diffused_head/sys/dev/ata/chipsets/ata-highpoint.c projects/diffused_head/sys/dev/ata/chipsets/ata-intel.c projects/diffused_head/sys/dev/ata/chipsets/ata-ite.c projects/diffused_head/sys/dev/ata/chipsets/ata-jmicron.c projects/diffused_head/sys/dev/ata/chipsets/ata-marvell.c projects/diffused_head/sys/dev/ata/chipsets/ata-micron.c projects/diffused_head/sys/dev/ata/chipsets/ata-national.c projects/diffused_head/sys/dev/ata/chipsets/ata-netcell.c projects/diffused_head/sys/dev/ata/chipsets/ata-nvidia.c projects/diffused_head/sys/dev/ata/chipsets/ata-promise.c projects/diffused_head/sys/dev/ata/chipsets/ata-serverworks.c projects/diffused_head/sys/dev/ata/chipsets/ata-siliconimage.c projects/diffused_head/sys/dev/ata/chipsets/ata-sis.c projects/diffused_head/sys/dev/ata/chipsets/ata-via.c projects/diffused_head/sys/dev/ath/ath_dfs/null/dfs_null.c projects/diffused_head/sys/dev/ath/ath_hal/ah.c projects/diffused_head/sys/dev/ath/ath_hal/ah.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_athdfs.h projects/diffused_head/sys/dev/ath/if_athvar.h projects/diffused_head/sys/dev/bge/if_bge.c projects/diffused_head/sys/dev/bge/if_bgereg.h projects/diffused_head/sys/dev/bxe/bxe_hsi.h projects/diffused_head/sys/dev/ciss/ciss.c projects/diffused_head/sys/dev/cxgb/cxgb_adapter.h projects/diffused_head/sys/dev/cxgb/cxgb_main.c projects/diffused_head/sys/dev/cxgb/cxgb_sge.c projects/diffused_head/sys/dev/cxgbe/adapter.h projects/diffused_head/sys/dev/cxgbe/common/t4_hw.c projects/diffused_head/sys/dev/cxgbe/t4_l2t.c projects/diffused_head/sys/dev/cxgbe/t4_l2t.h projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/e1000/README projects/diffused_head/sys/dev/e1000/if_em.c projects/diffused_head/sys/dev/e1000/if_igb.c projects/diffused_head/sys/dev/e1000/if_lem.c projects/diffused_head/sys/dev/ex/if_ex.c projects/diffused_head/sys/dev/ex/if_exreg.h projects/diffused_head/sys/dev/fb/boot_font.c projects/diffused_head/sys/dev/fb/splash_pcx.c projects/diffused_head/sys/dev/fb/vesa.c projects/diffused_head/sys/dev/fb/vesa.h projects/diffused_head/sys/dev/fb/vga.c projects/diffused_head/sys/dev/fe/if_fe.c projects/diffused_head/sys/dev/firewire/sbp_targ.c projects/diffused_head/sys/dev/fxp/if_fxp.c projects/diffused_head/sys/dev/hpt27xx/README projects/diffused_head/sys/dev/hptmv/readme.txt projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.c projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.h projects/diffused_head/sys/dev/hwpmc/hwpmc_x86.c projects/diffused_head/sys/dev/ie/if_ie.c projects/diffused_head/sys/dev/ieee488/ibfoo.c projects/diffused_head/sys/dev/ieee488/pcii.c projects/diffused_head/sys/dev/ieee488/upd7210.c projects/diffused_head/sys/dev/ieee488/upd7210.h projects/diffused_head/sys/dev/iscsi/initiator/isc_sm.c projects/diffused_head/sys/dev/isp/isp_freebsd.h projects/diffused_head/sys/dev/iwn/if_iwn.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe.h projects/diffused_head/sys/dev/ixgbe/ixgbe_82598.c projects/diffused_head/sys/dev/ixgbe/ixgbe_82599.c projects/diffused_head/sys/dev/ixgbe/ixgbe_api.c projects/diffused_head/sys/dev/ixgbe/ixgbe_api.h projects/diffused_head/sys/dev/ixgbe/ixgbe_common.c projects/diffused_head/sys/dev/ixgbe/ixgbe_common.h projects/diffused_head/sys/dev/ixgbe/ixgbe_mbx.c projects/diffused_head/sys/dev/ixgbe/ixgbe_mbx.h projects/diffused_head/sys/dev/ixgbe/ixgbe_osdep.h projects/diffused_head/sys/dev/ixgbe/ixgbe_phy.c projects/diffused_head/sys/dev/ixgbe/ixgbe_phy.h projects/diffused_head/sys/dev/ixgbe/ixgbe_type.h projects/diffused_head/sys/dev/ixgbe/ixgbe_vf.c projects/diffused_head/sys/dev/ixgbe/ixgbe_vf.h projects/diffused_head/sys/dev/ixgbe/ixv.c projects/diffused_head/sys/dev/ixgbe/ixv.h projects/diffused_head/sys/dev/mii/brgphy.c projects/diffused_head/sys/dev/mii/miidevs projects/diffused_head/sys/dev/mii/nsphyter.c projects/diffused_head/sys/dev/mps/mpi/mpi2.h projects/diffused_head/sys/dev/mps/mpi/mpi2_cnfg.h projects/diffused_head/sys/dev/mps/mpi/mpi2_hbd.h projects/diffused_head/sys/dev/mps/mpi/mpi2_history.txt projects/diffused_head/sys/dev/mps/mpi/mpi2_init.h projects/diffused_head/sys/dev/mps/mpi/mpi2_ioc.h projects/diffused_head/sys/dev/mps/mpi/mpi2_ra.h projects/diffused_head/sys/dev/mps/mpi/mpi2_raid.h projects/diffused_head/sys/dev/mps/mpi/mpi2_sas.h projects/diffused_head/sys/dev/mps/mpi/mpi2_targ.h projects/diffused_head/sys/dev/mps/mpi/mpi2_tool.h projects/diffused_head/sys/dev/mps/mpi/mpi2_type.h projects/diffused_head/sys/dev/mps/mps.c projects/diffused_head/sys/dev/mps/mps_ioctl.h projects/diffused_head/sys/dev/mps/mps_pci.c projects/diffused_head/sys/dev/mps/mps_sas.c projects/diffused_head/sys/dev/mps/mps_table.c projects/diffused_head/sys/dev/mps/mps_user.c projects/diffused_head/sys/dev/mps/mpsvar.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_type.h projects/diffused_head/sys/dev/mpt/mpt.c projects/diffused_head/sys/dev/mpt/mpt.h projects/diffused_head/sys/dev/mpt/mpt_cam.c projects/diffused_head/sys/dev/mpt/mpt_pci.c projects/diffused_head/sys/dev/mpt/mpt_reg.h projects/diffused_head/sys/dev/mvs/mvs.h projects/diffused_head/sys/dev/mvs/mvs_soc.c projects/diffused_head/sys/dev/netmap/if_em_netmap.h projects/diffused_head/sys/dev/netmap/if_igb_netmap.h projects/diffused_head/sys/dev/netmap/if_lem_netmap.h projects/diffused_head/sys/dev/netmap/if_re_netmap.h projects/diffused_head/sys/dev/netmap/ixgbe_netmap.h projects/diffused_head/sys/dev/netmap/netmap.c projects/diffused_head/sys/dev/netmap/netmap_kern.h projects/diffused_head/sys/dev/nxge/include/xgehal-channel.h projects/diffused_head/sys/dev/nxge/include/xgehal-config.h projects/diffused_head/sys/dev/nxge/xgehal/xgehal-fifo-fp.c projects/diffused_head/sys/dev/ofw/openfirm.c projects/diffused_head/sys/dev/pccbb/pccbb.c projects/diffused_head/sys/dev/pci/pci.c projects/diffused_head/sys/dev/pci/pcireg.h projects/diffused_head/sys/dev/pst/pst-iop.c projects/diffused_head/sys/dev/pst/pst-iop.h projects/diffused_head/sys/dev/pst/pst-pci.c projects/diffused_head/sys/dev/pst/pst-raid.c projects/diffused_head/sys/dev/random/harvest.c projects/diffused_head/sys/dev/random/nehemiah.c projects/diffused_head/sys/dev/re/if_re.c projects/diffused_head/sys/dev/sdhci/sdhci.c projects/diffused_head/sys/dev/sdhci/sdhci.h projects/diffused_head/sys/dev/sound/pci/csa.c projects/diffused_head/sys/dev/sound/pci/csareg.h projects/diffused_head/sys/dev/sound/pci/ds1-fw.h projects/diffused_head/sys/dev/sound/pci/emu10kx.c projects/diffused_head/sys/dev/sound/pci/hda/hda_reg.h projects/diffused_head/sys/dev/sound/pci/hda/hdac.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.h projects/diffused_head/sys/dev/sound/pci/hda/hdac_private.h projects/diffused_head/sys/dev/sound/pci/hda/hdac_reg.h projects/diffused_head/sys/dev/sound/pci/maestro3.c projects/diffused_head/sys/dev/sound/pcm/buffer.c projects/diffused_head/sys/dev/sound/pcm/buffer.h projects/diffused_head/sys/dev/sound/pcm/channel.c projects/diffused_head/sys/dev/sound/pcm/mixer.c projects/diffused_head/sys/dev/sound/pcm/sound.c projects/diffused_head/sys/dev/syscons/blank/blank_saver.c projects/diffused_head/sys/dev/syscons/fade/fade_saver.c projects/diffused_head/sys/dev/syscons/green/green_saver.c projects/diffused_head/sys/dev/syscons/logo/logo_saver.c projects/diffused_head/sys/dev/syscons/rain/rain_saver.c projects/diffused_head/sys/dev/syscons/schistory.c projects/diffused_head/sys/dev/syscons/snake/snake_saver.c projects/diffused_head/sys/dev/syscons/star/star_saver.c projects/diffused_head/sys/dev/syscons/syscons.c projects/diffused_head/sys/dev/syscons/syscons.h projects/diffused_head/sys/dev/syscons/warp/warp_saver.c projects/diffused_head/sys/dev/tws/tws.c projects/diffused_head/sys/dev/uart/uart_bus_pci.c projects/diffused_head/sys/dev/usb/controller/xhci.c projects/diffused_head/sys/dev/usb/quirk/usb_quirk.c projects/diffused_head/sys/dev/usb/serial/u3g.c projects/diffused_head/sys/dev/usb/serial/ucycom.c projects/diffused_head/sys/dev/usb/serial/uftdi.c projects/diffused_head/sys/dev/usb/serial/usb_serial.c projects/diffused_head/sys/dev/usb/serial/usb_serial.h projects/diffused_head/sys/dev/usb/usb.h projects/diffused_head/sys/dev/usb/usb_dev.c projects/diffused_head/sys/dev/usb/usb_hub.c projects/diffused_head/sys/dev/usb/usb_request.c projects/diffused_head/sys/dev/usb/usb_request.h projects/diffused_head/sys/dev/usb/usb_transfer.c projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/usb/wlan/if_run.c projects/diffused_head/sys/dev/vge/if_vge.c projects/diffused_head/sys/dev/vxge/include/vxgehal-ll.h projects/diffused_head/sys/dev/wi/if_wi.c projects/diffused_head/sys/dev/wtap/if_wtap.c projects/diffused_head/sys/dev/wtap/if_wtap_module.c projects/diffused_head/sys/dev/xen/blkback/blkback.c projects/diffused_head/sys/dev/xen/blkfront/blkfront.c projects/diffused_head/sys/dev/xen/blkfront/block.h projects/diffused_head/sys/dev/xen/netback/netback.c projects/diffused_head/sys/dev/xen/xenpci/evtchn.c projects/diffused_head/sys/fs/cd9660/cd9660_vfsops.c projects/diffused_head/sys/fs/cd9660/cd9660_vnops.c projects/diffused_head/sys/fs/devfs/devfs.h projects/diffused_head/sys/fs/devfs/devfs_devs.c projects/diffused_head/sys/fs/devfs/devfs_rule.c projects/diffused_head/sys/fs/devfs/devfs_vfsops.c projects/diffused_head/sys/fs/devfs/devfs_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2_dinode.h projects/diffused_head/sys/fs/ext2fs/ext2_lookup.c projects/diffused_head/sys/fs/ext2fs/ext2fs.h projects/diffused_head/sys/fs/ext2fs/inode.h projects/diffused_head/sys/fs/fdescfs/fdesc_vfsops.c projects/diffused_head/sys/fs/hpfs/hpfs_vfsops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_denode.c projects/diffused_head/sys/fs/msdosfs/msdosfs_lookup.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vfsops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vnops.c projects/diffused_head/sys/fs/nfs/nfs_commonkrpc.c projects/diffused_head/sys/fs/nfs/nfs_commonport.c projects/diffused_head/sys/fs/nfsclient/nfs_clbio.c projects/diffused_head/sys/fs/nfsclient/nfs_clnode.c projects/diffused_head/sys/fs/nfsclient/nfs_clport.c projects/diffused_head/sys/fs/nfsclient/nfs_clrpcops.c projects/diffused_head/sys/fs/nfsclient/nfs_clstate.c projects/diffused_head/sys/fs/nfsclient/nfs_clvfsops.c projects/diffused_head/sys/fs/nfsclient/nfs_clvnops.c projects/diffused_head/sys/fs/nfsclient/nfsmount.h projects/diffused_head/sys/fs/nfsclient/nfsnode.h projects/diffused_head/sys/fs/nfsserver/nfs_nfsdport.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdstate.c projects/diffused_head/sys/fs/ntfs/ntfs_vfsops.c projects/diffused_head/sys/fs/nullfs/null_subr.c projects/diffused_head/sys/fs/nullfs/null_vfsops.c projects/diffused_head/sys/fs/nwfs/nwfs_vfsops.c projects/diffused_head/sys/fs/nwfs/nwfs_vnops.c projects/diffused_head/sys/fs/portalfs/portal_vfsops.c projects/diffused_head/sys/fs/procfs/procfs.c projects/diffused_head/sys/fs/procfs/procfs_ioctl.c projects/diffused_head/sys/fs/procfs/procfs_status.c projects/diffused_head/sys/fs/pseudofs/pseudofs.c projects/diffused_head/sys/fs/pseudofs/pseudofs.h projects/diffused_head/sys/fs/pseudofs/pseudofs_fileno.c projects/diffused_head/sys/fs/pseudofs/pseudofs_internal.h projects/diffused_head/sys/fs/pseudofs/pseudofs_vncache.c projects/diffused_head/sys/fs/pseudofs/pseudofs_vnops.c projects/diffused_head/sys/fs/smbfs/smbfs_vfsops.c projects/diffused_head/sys/fs/smbfs/smbfs_vnops.c projects/diffused_head/sys/fs/tmpfs/tmpfs.h projects/diffused_head/sys/fs/tmpfs/tmpfs_subr.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vfsops.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vnops.c projects/diffused_head/sys/fs/udf/udf_vnops.c projects/diffused_head/sys/geom/geom_bsd.c projects/diffused_head/sys/geom/geom_mbr.c projects/diffused_head/sys/geom/geom_pc98.c projects/diffused_head/sys/geom/journal/g_journal.c projects/diffused_head/sys/geom/mountver/g_mountver.c projects/diffused_head/sys/geom/part/g_part.c projects/diffused_head/sys/geom/part/g_part_apm.c projects/diffused_head/sys/geom/part/g_part_ebr.c projects/diffused_head/sys/geom/part/g_part_mbr.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_fs.h projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_fs_i.h projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_fs_sb.h projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_hashes.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_item_ops.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_mount.h projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_namei.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_prints.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_stree.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_vnops.c projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/i386/initcpu.c projects/diffused_head/sys/i386/i386/machdep.c projects/diffused_head/sys/i386/ibcs2/coff.h projects/diffused_head/sys/i386/ibcs2/ibcs2_isc.c projects/diffused_head/sys/i386/ibcs2/ibcs2_sysi86.c projects/diffused_head/sys/i386/ibcs2/ibcs2_xenix.c projects/diffused_head/sys/i386/ibcs2/imgact_coff.c projects/diffused_head/sys/i386/include/float.h projects/diffused_head/sys/i386/include/npx.h projects/diffused_head/sys/i386/include/pcaudioio.h projects/diffused_head/sys/i386/include/ptrace.h projects/diffused_head/sys/i386/include/signal.h projects/diffused_head/sys/i386/include/specialreg.h projects/diffused_head/sys/i386/include/sysarch.h projects/diffused_head/sys/i386/include/ucontext.h projects/diffused_head/sys/i386/include/xen/xenpmap.h projects/diffused_head/sys/i386/include/xen/xenvar.h projects/diffused_head/sys/i386/isa/npx.c projects/diffused_head/sys/i386/linux/imgact_linux.c projects/diffused_head/sys/i386/linux/linux.h projects/diffused_head/sys/i386/linux/linux_dummy.c projects/diffused_head/sys/i386/linux/linux_sysvec.c projects/diffused_head/sys/ia64/ia64/vm_machdep.c projects/diffused_head/sys/ia64/include/float.h projects/diffused_head/sys/kern/imgact_elf.c projects/diffused_head/sys/kern/imgact_gzip.c projects/diffused_head/sys/kern/init_main.c projects/diffused_head/sys/kern/kern_conf.c projects/diffused_head/sys/kern/kern_ctf.c projects/diffused_head/sys/kern/kern_exec.c projects/diffused_head/sys/kern/kern_fork.c projects/diffused_head/sys/kern/kern_gzio.c projects/diffused_head/sys/kern/kern_intr.c projects/diffused_head/sys/kern/kern_jail.c projects/diffused_head/sys/kern/kern_kthread.c projects/diffused_head/sys/kern/kern_ktrace.c projects/diffused_head/sys/kern/kern_linker.c projects/diffused_head/sys/kern/kern_proc.c projects/diffused_head/sys/kern/kern_resource.c projects/diffused_head/sys/kern/kern_shutdown.c projects/diffused_head/sys/kern/kern_tc.c projects/diffused_head/sys/kern/kern_umtx.c projects/diffused_head/sys/kern/link_elf.c projects/diffused_head/sys/kern/link_elf_obj.c projects/diffused_head/sys/kern/subr_bus.c projects/diffused_head/sys/kern/subr_hash.c projects/diffused_head/sys/kern/subr_log.c projects/diffused_head/sys/kern/subr_mchain.c projects/diffused_head/sys/kern/subr_msgbuf.c projects/diffused_head/sys/kern/subr_scanf.c projects/diffused_head/sys/kern/subr_syscall.c projects/diffused_head/sys/kern/subr_uio.c projects/diffused_head/sys/kern/sys_generic.c projects/diffused_head/sys/kern/sys_pipe.c projects/diffused_head/sys/kern/sys_process.c projects/diffused_head/sys/kern/sysv_shm.c projects/diffused_head/sys/kern/tty.c projects/diffused_head/sys/kern/tty_info.c projects/diffused_head/sys/kern/tty_ttydisc.c projects/diffused_head/sys/kern/uipc_mbuf.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_syscalls.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_aio.c projects/diffused_head/sys/kern/vfs_cache.c projects/diffused_head/sys/kern/vfs_cluster.c projects/diffused_head/sys/kern/vfs_extattr.c projects/diffused_head/sys/kern/vfs_mount.c projects/diffused_head/sys/kern/vfs_mountroot.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/kern/vfs_syscalls.c projects/diffused_head/sys/kern/vfs_vnops.c projects/diffused_head/sys/mips/atheros/ar71xx_machdep.c projects/diffused_head/sys/mips/atheros/ar71xx_pci.c projects/diffused_head/sys/mips/cavium/files.octeon1 projects/diffused_head/sys/mips/cavium/if_octm.c projects/diffused_head/sys/mips/cavium/octe/ethernet-common.c projects/diffused_head/sys/mips/cavium/octe/ethernet-common.h projects/diffused_head/sys/mips/cavium/octe/ethernet-rgmii.c projects/diffused_head/sys/mips/cavium/octe/ethernet-sgmii.c projects/diffused_head/sys/mips/cavium/octe/ethernet-spi.c projects/diffused_head/sys/mips/cavium/octe/ethernet-xaui.c projects/diffused_head/sys/mips/cavium/octe/ethernet.c projects/diffused_head/sys/mips/cavium/usb/octusb.c projects/diffused_head/sys/mips/cavium/usb/octusb.h projects/diffused_head/sys/mips/conf/AR71XX_BASE projects/diffused_head/sys/mips/include/_types.h projects/diffused_head/sys/mips/include/db_machdep.h projects/diffused_head/sys/mips/include/elf.h projects/diffused_head/sys/mips/include/float.h projects/diffused_head/sys/mips/include/mips_opcode.h projects/diffused_head/sys/mips/mips/db_trace.c projects/diffused_head/sys/mips/mips/elf_machdep.c projects/diffused_head/sys/mips/mips/locore.S projects/diffused_head/sys/mips/mips/support.S projects/diffused_head/sys/mips/mips/trap.c projects/diffused_head/sys/mips/mips/vm_machdep.c projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/acpi/acpi/Makefile projects/diffused_head/sys/modules/ath/Makefile projects/diffused_head/sys/modules/drm/Makefile projects/diffused_head/sys/modules/hpt27xx/Makefile projects/diffused_head/sys/modules/ipdivert/Makefile projects/diffused_head/sys/modules/ixgbe/Makefile projects/diffused_head/sys/modules/kgssapi/Makefile projects/diffused_head/sys/modules/kgssapi_krb5/Makefile projects/diffused_head/sys/modules/mps/Makefile projects/diffused_head/sys/modules/sound/driver/Makefile projects/diffused_head/sys/modules/sound/driver/emu10k1/Makefile projects/diffused_head/sys/modules/sound/driver/emu10kx/Makefile projects/diffused_head/sys/modules/sound/driver/hda/Makefile projects/diffused_head/sys/modules/usb/Makefile projects/diffused_head/sys/modules/wi/Makefile projects/diffused_head/sys/modules/wlan/Makefile projects/diffused_head/sys/modules/wtap/Makefile projects/diffused_head/sys/net/bpf_buffer.c projects/diffused_head/sys/net/bpf_buffer.h projects/diffused_head/sys/net/bpf_zerocopy.c projects/diffused_head/sys/net/bpf_zerocopy.h projects/diffused_head/sys/net/flowtable.c projects/diffused_head/sys/net/if.c projects/diffused_head/sys/net/if.h projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_faith.c projects/diffused_head/sys/net/if_llatbl.c projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/net/if_vlan.c projects/diffused_head/sys/net/if_vlan_var.h projects/diffused_head/sys/net/netmap.h projects/diffused_head/sys/net/netmap_user.h projects/diffused_head/sys/net/route.c projects/diffused_head/sys/net/route.h projects/diffused_head/sys/net/rtsock.c projects/diffused_head/sys/net/zlib.h projects/diffused_head/sys/net80211/ieee80211.c projects/diffused_head/sys/net80211/ieee80211.h projects/diffused_head/sys/net80211/ieee80211_dfs.c projects/diffused_head/sys/net80211/ieee80211_dfs.h projects/diffused_head/sys/net80211/ieee80211_hwmp.c projects/diffused_head/sys/net80211/ieee80211_mesh.c projects/diffused_head/sys/net80211/ieee80211_mesh.h projects/diffused_head/sys/net80211/ieee80211_node.h projects/diffused_head/sys/net80211/ieee80211_tdma.c projects/diffused_head/sys/netgraph/netgraph.h projects/diffused_head/sys/netgraph/ng_base.c projects/diffused_head/sys/netgraph/ng_cisco.c projects/diffused_head/sys/netgraph/ng_cisco.h projects/diffused_head/sys/netgraph/ng_device.c projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/sys/netgraph/ng_socket.c projects/diffused_head/sys/netgraph/ng_socketvar.h projects/diffused_head/sys/netgraph/ng_tag.c projects/diffused_head/sys/netinet/if_ether.c projects/diffused_head/sys/netinet/in.c projects/diffused_head/sys/netinet/in_mcast.c projects/diffused_head/sys/netinet/in_pcb.c projects/diffused_head/sys/netinet/ip_carp.c projects/diffused_head/sys/netinet/ip_divert.c projects/diffused_head/sys/netinet/ip_gre.c projects/diffused_head/sys/netinet/ip_ipsec.c projects/diffused_head/sys/netinet/ipfw/dn_sched_qfq.c projects/diffused_head/sys/netinet/ipfw/ip_fw2.c projects/diffused_head/sys/netinet/ipfw/ip_fw_nat.c projects/diffused_head/sys/netinet/ipfw/ip_fw_sockopt.c projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_os_bsd.h projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_usrreq.c projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/tcp.h projects/diffused_head/sys/netinet/tcp_input.c projects/diffused_head/sys/netinet/tcp_output.c projects/diffused_head/sys/netinet/tcp_seq.h projects/diffused_head/sys/netinet/tcp_subr.c projects/diffused_head/sys/netinet/tcp_syncache.c projects/diffused_head/sys/netinet/tcp_timer.c projects/diffused_head/sys/netinet/tcp_timer.h projects/diffused_head/sys/netinet/tcp_timewait.c projects/diffused_head/sys/netinet/tcp_usrreq.c projects/diffused_head/sys/netinet/tcp_var.h projects/diffused_head/sys/netinet6/icmp6.c projects/diffused_head/sys/netinet6/in6.c projects/diffused_head/sys/netinet6/in6.h projects/diffused_head/sys/netinet6/in6_gif.c projects/diffused_head/sys/netinet6/in6_ifattach.c projects/diffused_head/sys/netinet6/in6_mcast.c projects/diffused_head/sys/netinet6/in6_rmx.c projects/diffused_head/sys/netinet6/in6_src.c projects/diffused_head/sys/netinet6/in6_var.h projects/diffused_head/sys/netinet6/ip6_forward.c projects/diffused_head/sys/netinet6/ip6_input.c projects/diffused_head/sys/netinet6/ip6_ipsec.c projects/diffused_head/sys/netinet6/ip6_output.c projects/diffused_head/sys/netinet6/ip6_var.h projects/diffused_head/sys/netinet6/nd6.c projects/diffused_head/sys/netinet6/nd6_nbr.c projects/diffused_head/sys/netinet6/nd6_rtr.c projects/diffused_head/sys/netinet6/raw_ip6.c projects/diffused_head/sys/netinet6/sctp6_usrreq.c projects/diffused_head/sys/netinet6/sctp6_var.h projects/diffused_head/sys/netipsec/ipsec_output.c projects/diffused_head/sys/netipsec/xform_ipip.c projects/diffused_head/sys/nfs/bootp_subr.c projects/diffused_head/sys/nfsclient/nfs_bio.c projects/diffused_head/sys/nfsclient/nfs_subs.c projects/diffused_head/sys/nfsclient/nfs_vfsops.c projects/diffused_head/sys/nfsclient/nfs_vnops.c projects/diffused_head/sys/nfsclient/nfsm_subs.h projects/diffused_head/sys/nfsclient/nfsmount.h projects/diffused_head/sys/nfsclient/nfsnode.h projects/diffused_head/sys/nlm/nlm_prot_impl.c projects/diffused_head/sys/ofed/drivers/infiniband/core/local_sa.c projects/diffused_head/sys/ofed/drivers/infiniband/core/notice.c projects/diffused_head/sys/pc98/conf/GENERIC projects/diffused_head/sys/pc98/pc98/machdep.c projects/diffused_head/sys/powerpc/aim/locore64.S projects/diffused_head/sys/powerpc/aim/machdep.c projects/diffused_head/sys/powerpc/aim/mmu_oea64.c projects/diffused_head/sys/powerpc/aim/slb.c projects/diffused_head/sys/powerpc/aim/swtch64.S projects/diffused_head/sys/powerpc/aim/trap.c projects/diffused_head/sys/powerpc/aim/trap_subr64.S projects/diffused_head/sys/powerpc/booke/machdep.c projects/diffused_head/sys/powerpc/conf/DEFAULTS projects/diffused_head/sys/powerpc/include/_types.h projects/diffused_head/sys/powerpc/include/asm.h projects/diffused_head/sys/powerpc/include/float.h projects/diffused_head/sys/powerpc/include/pcpu.h projects/diffused_head/sys/powerpc/include/profile.h projects/diffused_head/sys/powerpc/ofw/ofw_machdep.c projects/diffused_head/sys/powerpc/ofw/ofw_pcib_pci.c projects/diffused_head/sys/powerpc/ofw/ofw_syscons.c projects/diffused_head/sys/powerpc/ofw/ofwcall64.S projects/diffused_head/sys/powerpc/powermac/cpcht.c projects/diffused_head/sys/powerpc/powermac/grackle.c projects/diffused_head/sys/powerpc/powermac/gracklevar.h projects/diffused_head/sys/powerpc/powermac/macio.c projects/diffused_head/sys/powerpc/powermac/smusat.c projects/diffused_head/sys/powerpc/powermac/uninorthpci.c projects/diffused_head/sys/powerpc/powermac/uninorthvar.h projects/diffused_head/sys/powerpc/powermac/windtunnel.c projects/diffused_head/sys/powerpc/powerpc/atomic.S projects/diffused_head/sys/powerpc/powerpc/genassym.c projects/diffused_head/sys/powerpc/powerpc/setjmp.S projects/diffused_head/sys/powerpc/ps3/platform_ps3.c projects/diffused_head/sys/powerpc/ps3/ps3_syscons.c projects/diffused_head/sys/powerpc/ps3/ps3pic.c projects/diffused_head/sys/security/mac_biba/mac_biba.c projects/diffused_head/sys/security/mac_lomac/mac_lomac.c projects/diffused_head/sys/security/mac_mls/mac_mls.c projects/diffused_head/sys/sparc64/include/clock.h projects/diffused_head/sys/sparc64/include/cpu.h projects/diffused_head/sys/sparc64/include/float.h projects/diffused_head/sys/sparc64/include/ofw_machdep.h projects/diffused_head/sys/sparc64/include/vmparam.h projects/diffused_head/sys/sparc64/pci/schizo.c projects/diffused_head/sys/sparc64/pci/schizovar.h projects/diffused_head/sys/sparc64/sparc64/cache.c projects/diffused_head/sys/sparc64/sparc64/clock.c projects/diffused_head/sys/sparc64/sparc64/machdep.c projects/diffused_head/sys/sparc64/sparc64/ofw_machdep.c projects/diffused_head/sys/sparc64/sparc64/pmap.c projects/diffused_head/sys/sparc64/sparc64/support.S projects/diffused_head/sys/sys/ata.h projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/cdrio.h projects/diffused_head/sys/sys/conf.h projects/diffused_head/sys/sys/consio.h projects/diffused_head/sys/sys/diskmbr.h projects/diffused_head/sys/sys/dvdio.h projects/diffused_head/sys/sys/elf_common.h projects/diffused_head/sys/sys/imgact_elf.h projects/diffused_head/sys/sys/jail.h projects/diffused_head/sys/sys/malloc.h projects/diffused_head/sys/sys/mbuf.h projects/diffused_head/sys/sys/mdioctl.h projects/diffused_head/sys/sys/mount.h projects/diffused_head/sys/sys/msgbuf.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/proc.h projects/diffused_head/sys/sys/ptrace.h projects/diffused_head/sys/sys/resourcevar.h projects/diffused_head/sys/sys/signal.h projects/diffused_head/sys/sys/socket.h projects/diffused_head/sys/sys/systm.h projects/diffused_head/sys/sys/ttycom.h projects/diffused_head/sys/sys/ttydefaults.h projects/diffused_head/sys/sys/types.h projects/diffused_head/sys/sys/ucontext.h projects/diffused_head/sys/sys/umtx.h projects/diffused_head/sys/sys/vnode.h projects/diffused_head/sys/tools/vnode_if.awk projects/diffused_head/sys/ufs/ffs/ffs_snapshot.c projects/diffused_head/sys/ufs/ffs/ffs_softdep.c projects/diffused_head/sys/ufs/ffs/ffs_vfsops.c projects/diffused_head/sys/ufs/ffs/ffs_vnops.c projects/diffused_head/sys/ufs/ufs/inode.h projects/diffused_head/sys/ufs/ufs/ufs_acl.c projects/diffused_head/sys/ufs/ufs/ufs_dirhash.c projects/diffused_head/sys/ufs/ufs/ufs_lookup.c projects/diffused_head/sys/ufs/ufs/ufs_vnops.c projects/diffused_head/sys/vm/swap_pager.c projects/diffused_head/sys/vm/uma.h projects/diffused_head/sys/vm/uma_core.c projects/diffused_head/sys/vm/vm_contig.c projects/diffused_head/sys/vm/vm_kern.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_map.h projects/diffused_head/sys/vm/vm_mmap.c projects/diffused_head/sys/vm/vm_page.c projects/diffused_head/sys/vm/vm_page.h projects/diffused_head/sys/vm/vm_pageout.c projects/diffused_head/sys/xen/interface/io/blkif.h projects/diffused_head/sys/xen/interface/io/netif.h projects/diffused_head/sys/xen/xenbus/xenbusvar.h projects/diffused_head/tools/build/mk/OptionalObsoleteFiles.inc projects/diffused_head/tools/build/options/WITHOUT_UTMPX projects/diffused_head/tools/kerneldoc/subsys/common-Doxyfile projects/diffused_head/tools/regression/lib/libc/gen/Makefile projects/diffused_head/tools/regression/lib/libc/stdio/test-printfloat.c projects/diffused_head/tools/regression/lib/msun/test-next.c projects/diffused_head/tools/regression/usr.bin/make/execution/joberr/expected.stdout.1 projects/diffused_head/tools/test/README projects/diffused_head/tools/tools/ath/athradar/athradar.c projects/diffused_head/tools/tools/ath/athstats/statfoo.c projects/diffused_head/tools/tools/ath/athstats/statfoo.h projects/diffused_head/tools/tools/netmap/pkt-gen.c projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/bc/bc.1 projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/chkey/chkey.c projects/diffused_head/usr.bin/chpass/util.c projects/diffused_head/usr.bin/clang/Makefile projects/diffused_head/usr.bin/ctlstat/ctlstat.c projects/diffused_head/usr.bin/elfdump/elfdump.c projects/diffused_head/usr.bin/enigma/enigma.c projects/diffused_head/usr.bin/fetch/fetch.c projects/diffused_head/usr.bin/fstat/fstat.c projects/diffused_head/usr.bin/gencat/gencat.c projects/diffused_head/usr.bin/grep/grep.c projects/diffused_head/usr.bin/hexdump/parse.c projects/diffused_head/usr.bin/last/last.1 projects/diffused_head/usr.bin/last/last.c projects/diffused_head/usr.bin/limits/limits.1 projects/diffused_head/usr.bin/limits/limits.c projects/diffused_head/usr.bin/lock/lock.c projects/diffused_head/usr.bin/login/login_fbtab.c projects/diffused_head/usr.bin/m4/lib/ohash_interval.3 projects/diffused_head/usr.bin/mail/edit.c projects/diffused_head/usr.bin/make/job.c projects/diffused_head/usr.bin/make/main.c projects/diffused_head/usr.bin/netstat/netgraph.c projects/diffused_head/usr.bin/netstat/route.c projects/diffused_head/usr.bin/netstat/sctp.c projects/diffused_head/usr.bin/newgrp/newgrp.c projects/diffused_head/usr.bin/printf/printf.c projects/diffused_head/usr.bin/procstat/procstat_auxv.c projects/diffused_head/usr.bin/procstat/procstat_rlimit.c projects/diffused_head/usr.bin/rpcgen/rpc_main.c projects/diffused_head/usr.bin/rpcgen/rpcgen.1 projects/diffused_head/usr.bin/sockstat/sockstat.1 projects/diffused_head/usr.bin/sockstat/sockstat.c projects/diffused_head/usr.bin/systat/icmp.c projects/diffused_head/usr.bin/systat/ifstat.c projects/diffused_head/usr.bin/systat/iostat.c projects/diffused_head/usr.bin/systat/ip.c projects/diffused_head/usr.bin/systat/netcmds.c projects/diffused_head/usr.bin/systat/netstat.c projects/diffused_head/usr.bin/systat/pigs.c projects/diffused_head/usr.bin/systat/tcp.c projects/diffused_head/usr.bin/tftp/main.c projects/diffused_head/usr.bin/tip/tip/tip.c projects/diffused_head/usr.bin/tip/tip/tipout.c projects/diffused_head/usr.bin/touch/touch.1 projects/diffused_head/usr.bin/touch/touch.c projects/diffused_head/usr.bin/unzip/unzip.c projects/diffused_head/usr.bin/who/who.1 projects/diffused_head/usr.bin/who/who.c projects/diffused_head/usr.bin/write/write.1 projects/diffused_head/usr.bin/write/write.c projects/diffused_head/usr.sbin/IPXrouted/tables.c projects/diffused_head/usr.sbin/Makefile projects/diffused_head/usr.sbin/acpi/Makefile.inc projects/diffused_head/usr.sbin/acpi/acpidb/Makefile projects/diffused_head/usr.sbin/acpi/iasl/Makefile projects/diffused_head/usr.sbin/amd/Makefile.inc projects/diffused_head/usr.sbin/boot0cfg/boot0cfg.8 projects/diffused_head/usr.sbin/bootparamd/bootparamd/Makefile projects/diffused_head/usr.sbin/bootparamd/callbootd/Makefile projects/diffused_head/usr.sbin/bootparamd/callbootd/callbootd.c projects/diffused_head/usr.sbin/bsdinstall/partedit/partedit.c projects/diffused_head/usr.sbin/bsdinstall/partedit/partedit_powerpc.c projects/diffused_head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 projects/diffused_head/usr.sbin/config/mkmakefile.c projects/diffused_head/usr.sbin/cpucontrol/via.c projects/diffused_head/usr.sbin/cron/crontab/crontab.5 projects/diffused_head/usr.sbin/daemon/daemon.8 projects/diffused_head/usr.sbin/daemon/daemon.c projects/diffused_head/usr.sbin/faithd/prefix.c projects/diffused_head/usr.sbin/gssd/Makefile projects/diffused_head/usr.sbin/i2c/i2c.c projects/diffused_head/usr.sbin/ifmcstat/ifmcstat.c projects/diffused_head/usr.sbin/jail/jail.8 projects/diffused_head/usr.sbin/jail/jail.c projects/diffused_head/usr.sbin/keyserv/Makefile projects/diffused_head/usr.sbin/lpr/lpc/cmds.c projects/diffused_head/usr.sbin/lpr/lpc/lpc.c projects/diffused_head/usr.sbin/makefs/cd9660.c projects/diffused_head/usr.sbin/makefs/cd9660.h projects/diffused_head/usr.sbin/makefs/cd9660/cd9660_write.c projects/diffused_head/usr.sbin/makefs/ffs.c projects/diffused_head/usr.sbin/makefs/makefs.8 projects/diffused_head/usr.sbin/makefs/makefs.c projects/diffused_head/usr.sbin/makefs/makefs.h projects/diffused_head/usr.sbin/makefs/walk.c projects/diffused_head/usr.sbin/mixer/mixer.c projects/diffused_head/usr.sbin/mount_portalfs/mount_portalfs.c projects/diffused_head/usr.sbin/mountd/mountd.c projects/diffused_head/usr.sbin/moused/moused.c projects/diffused_head/usr.sbin/mptutil/mpt_cam.c projects/diffused_head/usr.sbin/periodic/periodic.sh projects/diffused_head/usr.sbin/pkg_install/create/perform.c projects/diffused_head/usr.sbin/pmcstat/pmcstat.c projects/diffused_head/usr.sbin/ppp/auth.c projects/diffused_head/usr.sbin/ppp/iface.c projects/diffused_head/usr.sbin/ppp/lqr.c projects/diffused_head/usr.sbin/ppp/physical.c projects/diffused_head/usr.sbin/pw/cpdir.c projects/diffused_head/usr.sbin/pw/pw_user.c projects/diffused_head/usr.sbin/rarpd/rarpd.c projects/diffused_head/usr.sbin/rpc.lockd/Makefile projects/diffused_head/usr.sbin/rpc.statd/Makefile projects/diffused_head/usr.sbin/rpc.yppasswdd/Makefile projects/diffused_head/usr.sbin/rpc.yppasswdd/yppasswdd_server.c projects/diffused_head/usr.sbin/rpc.ypupdated/Makefile projects/diffused_head/usr.sbin/rpc.ypxfrd/Makefile projects/diffused_head/usr.sbin/rtsold/rtsold.c projects/diffused_head/usr.sbin/sade/devices.c projects/diffused_head/usr.sbin/timed/timedc/timedc.c projects/diffused_head/usr.sbin/tzsetup/tzsetup.c projects/diffused_head/usr.sbin/usbdump/usbdump.8 projects/diffused_head/usr.sbin/usbdump/usbdump.c projects/diffused_head/usr.sbin/vipw/vipw.8 projects/diffused_head/usr.sbin/wpa/hostapd/hostapd.8 projects/diffused_head/usr.sbin/wpa/wpa_supplicant/Makefile projects/diffused_head/usr.sbin/yppush/Makefile projects/diffused_head/usr.sbin/ypserv/Makefile projects/diffused_head/usr.sbin/ypserv/yp_main.c Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PDESC_ZERO.badlib.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_FUNC.badfunc.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_LIB.libdash.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.alldash.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.badname.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_NAME.globdash.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/err.D_PROC_OFF.toobig.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.coverage.exe (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pid/tst.emptystack.exe (props changed) projects/diffused_head/contrib/compiler-rt/ (props changed) projects/diffused_head/contrib/gcc/ (props changed) projects/diffused_head/contrib/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/libarchive/ (props changed) projects/diffused_head/contrib/llvm/ (props changed) projects/diffused_head/contrib/netcat/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/contrib/tcsh/ (props changed) projects/diffused_head/contrib/tcsh/nls/greek/set24 (props changed) projects/diffused_head/contrib/tcsh/nls/ja/set24 (props changed) projects/diffused_head/contrib/tcsh/nls/russian/set21 (props changed) projects/diffused_head/contrib/tcsh/nls/russian/set24 (props changed) projects/diffused_head/contrib/tcsh/nls/russian/set3 (props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set21 (props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set24 (props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set3 (props changed) projects/diffused_head/contrib/tcsh/nls/ukrainian/set4 (props changed) projects/diffused_head/crypto/openssh/ (props changed) projects/diffused_head/gnu/usr.bin/cc/cc_tools/ (props changed) projects/diffused_head/gnu/usr.bin/gdb/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/boot/powerpc/boot1.chrp/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/common/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/os_specific/ (props changed) projects/diffused_head/sys/contrib/octeon-sdk/ (props changed) projects/diffused_head/sys/contrib/pf/ (props changed) projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_pci (props changed) projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_sound (props changed) projects/diffused_head/tools/kerneldoc/subsys/Doxyfile-dev_usb (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) projects/diffused_head/usr.sbin/rtsold/ (props changed) Modified: projects/diffused_head/MAINTAINERS ============================================================================== --- projects/diffused_head/MAINTAINERS Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/MAINTAINERS Mon Nov 26 23:23:36 2012 (r243574) @@ -124,6 +124,7 @@ usr.sbin/zic edwin Heads-up appreciat lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com +isci(4) jimharris Pre-commit review requested. Following are the entries from the Makefiles, and a few other sources. Please remove stale entries from both their origin, and this file. Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/Makefile Mon Nov 26 23:23:36 2012 (r243574) @@ -24,7 +24,7 @@ # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. # check-old-libs - List obsolete libraries. -# delete-old - Delete obsolete directories/files/libraries. +# delete-old - Delete obsolete directories/files. # delete-old-dirs - Delete obsolete directories. # delete-old-files - Delete obsolete files. # delete-old-libs - Delete obsolete libraries. Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/Makefile.inc1 Mon Nov 26 23:23:36 2012 (r243574) @@ -19,6 +19,7 @@ # list # TARGET="machine" to crossbuild world for a different machine type # TARGET_ARCH= may be required when a TARGET supports multiple endians +# BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh) # # The intended user-driven targets are: @@ -108,6 +109,8 @@ CLEANDIR= cleandir LOCAL_TOOL_DIRS?= +BUILDENV_SHELL?=/bin/sh + CVS?= cvs CVSFLAGS?= -A -P -d -I! SVN?= svn @@ -558,7 +561,7 @@ buildenvvars: buildenv: @echo Entering world for ${TARGET_ARCH}:${TARGET} - @cd ${.CURDIR} && env ${WMAKEENV} sh || true + @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} toolchain: ${TOOLCHAIN_TGTS} @@ -832,6 +835,7 @@ buildkernel: @echo ">>> stage 2.3: build tools" @echo "--------------------------------------------------------------" cd ${KRNLOBJDIR}/${_kernel}; \ + PATH=${BPATH}:${PATH} \ MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \ -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile @@ -839,6 +843,7 @@ buildkernel: .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules) .for target in obj depend all cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \ + PATH=${BPATH}:${PATH} \ MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \ ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target} .endfor @@ -887,10 +892,21 @@ distributekernel distributekernel.debug: ${CROSSENV} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ DESTDIR=${DESTDIR}/${DISTDIR}/kernel \ ${.TARGET:S/distributekernel/install/} +.for _kernel in ${BUILDKERNELS:S/${INSTALLKERNEL}//} + cd ${KRNLOBJDIR}/${_kernel}; \ + ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ + KERNEL=${INSTKERNNAME}.${_kernel} \ + DESTDIR=${DESTDIR}/${DISTDIR}/kernel.${_kernel} \ + ${.TARGET:S/distributekernel/install/} +.endfor packagekernel: - ${_+_}cd ${DESTDIR}/${DISTDIR}/kernel; \ + 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 # # doxygen Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/ObsoleteFiles.inc Mon Nov 26 23:23:36 2012 (r243574) @@ -38,6 +38,9 @@ # xargs -n1 | sort | uniq -d; # done +# 20120113: removal of wtmpcvt(1) +OLD_FILES+=usr/bin/wtmpcvt +OLD_FILES+=usr/share/man/man1/wtmpcvt.1.gz # 20111214: eventtimers(7) moved to eventtimers(4) OLD_FILES+=usr/share/man/man7/eventtimers.7.gz # 20111125: amd(4) removed Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/UPDATING Mon Nov 26 23:23:36 2012 (r243574) @@ -22,6 +22,22 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20120211: + The getifaddrs upgrade path broken with 20111215 has been restored. + If you have upgraded in between 20111215 and 20120209 you need to + recompile libc again with your kernel. You still need to recompile + world to be able to configure CARP but this restriction already + comes from 20111215. + +20120114: + The set_rcvar() function has been removed from /etc/rc.subr. All + base and ports rc.d scripts have been updated, so if you have a + port installed with a script in /usr/local/etc/rc.d you can either + hand-edit the rcvar= line, or reinstall the port. + + An easy way to handle the mass-update of /etc/rc.d: + rm /etc/rc.d/* && mergemaster -i + 20120109: panic(9) now stops other CPUs in the SMP systems, disables interrupts on the current CPU and prevents other threads from running. Modified: projects/diffused_head/bin/csh/Makefile ============================================================================== --- projects/diffused_head/bin/csh/Makefile Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/csh/Makefile Mon Nov 26 23:23:36 2012 (r243574) @@ -18,7 +18,7 @@ DFLAGS= -D_PATH_TCSHELL='"/rescue/${PROG DFLAGS= -D_PATH_TCSHELL='"/bin/${PROG}"' .endif CFLAGS+= -I. -I${.CURDIR} -I${TCSHDIR} ${DFLAGS} -WARNS?= 0 +WARNS?= 1 SRCS= sh.c sh.dir.c sh.dol.c sh.err.c sh.exec.c sh.char.c \ sh.exp.c sh.file.c sh.func.c sh.glob.c sh.hist.c sh.init.c \ sh.lex.c sh.misc.c sh.parse.c sh.print.c sh.proc.c sh.sem.c \ @@ -116,10 +116,10 @@ gethost: gethost.c sh.err.h tc.const.h s ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \ ${TCSHDIR}/gethost.c -tc.defs.c: gethost ${.CURDIR}/host.defs +tc.defs.c: gethost ${TCSHDIR}/host.defs @rm -f ${.TARGET} @echo "/* Do not edit this file, make creates it */" > ${.TARGET} - ./gethost ${.CURDIR}/host.defs >> ${.TARGET} + ./gethost ${TCSHDIR}/host.defs >> ${.TARGET} ed.defns.h: ed.defns.c @rm -f ${.TARGET} Modified: projects/diffused_head/bin/csh/config.h ============================================================================== --- projects/diffused_head/bin/csh/config.h Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/csh/config.h Mon Nov 26 23:23:36 2012 (r243574) @@ -1,5 +1,5 @@ /* $FreeBSD$ */ -/* config.h. Generated by configure. */ +/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* Define to the type of elements in the array set by `getgroups'. Usually @@ -12,9 +12,6 @@ /* Define to 1 if you have the header file. */ /* #undef HAVE_AUTH_H */ -/* Define to 1 if you have the `catgets' function. */ -#define HAVE_CATGETS 1 - /* Define to 1 if you have the header file. */ /* #undef HAVE_CRYPT_H */ @@ -41,6 +38,9 @@ /* Define to 1 if you have the `dup2' function. */ #define HAVE_DUP2 1 +/* Define to 1 if you have the header file. */ +/* #undef HAVE_FEATURES_H */ + /* Define to 1 if you have the `getauthid' function. */ /* #undef HAVE_GETAUTHID */ @@ -54,9 +54,12 @@ #define HAVE_GETPWENT 1 /* Define to 1 if you have the `getutent' function. */ -#define HAVE_GETUTENT 1 +/* #undef HAVE_GETUTENT */ -/* Define if you have the iconv() function. */ +/* Define to 1 if you have the `getutxent' function. */ +#define HAVE_GETUTXENT 1 + +/* Define if you have the iconv() function and it works. */ /* #undef HAVE_ICONV */ /* Define to 1 if you have the header file. */ @@ -65,6 +68,9 @@ /* Define to 1 if the system has the type `long long'. */ #define HAVE_LONG_LONG 1 +/* Define to 1 if you have the `mallinfo' function. */ +/* #undef HAVE_MALLINFO */ + /* Define to 1 if mbrtowc and mbstate_t are properly declared. */ #define HAVE_MBRTOWC 1 @@ -77,6 +83,9 @@ /* Define to 1 if you have the `memset' function. */ #define HAVE_MEMSET 1 +/* Define to 1 if you have the `mkstemp' function. */ +#define HAVE_MKSTEMP 1 + /* Define to 1 if you have the header file, and it defines `DIR'. */ /* #undef HAVE_NDIR_H */ @@ -86,6 +95,9 @@ /* Define to 1 if you have the `nl_langinfo' function. */ #define HAVE_NL_LANGINFO 1 +/* Define to 1 if you have the header file. */ +#define HAVE_PATHS_H 1 + /* Define to 1 if you have the `sbrk' function. */ #define HAVE_SBRK 1 @@ -120,22 +132,34 @@ /* Define to 1 if you have the `strstr' function. */ #define HAVE_STRSTR 1 -/* Define to 1 if `d_ino' is member of `struct dirent'. */ +/* Define to 1 if `d_ino' is a member of `struct dirent'. */ #define HAVE_STRUCT_DIRENT_D_INO 1 -/* Define to 1 if `ss_family' is member of `struct sockaddr_storage'. */ +/* Define to 1 if `ss_family' is a member of `struct sockaddr_storage'. */ #define HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY 1 -/* Define to 1 if `ut_host' is member of `struct utmp'. */ +/* Define to 1 if `ut_host' is a member of `struct utmpx'. */ +#define HAVE_STRUCT_UTMPX_UT_HOST 1 + +/* Define to 1 if `ut_tv' is a member of `struct utmpx'. */ +#define HAVE_STRUCT_UTMPX_UT_TV 1 + +/* Define to 1 if `ut_user' is a member of `struct utmpx'. */ +#define HAVE_STRUCT_UTMPX_UT_USER 1 + +/* Define to 1 if `ut_xtime' is a member of `struct utmpx'. */ +/* #undef HAVE_STRUCT_UTMPX_UT_XTIME */ + +/* Define to 1 if `ut_host' is a member of `struct utmp'. */ #define HAVE_STRUCT_UTMP_UT_HOST 1 -/* Define to 1 if `ut_tv' is member of `struct utmp'. */ +/* Define to 1 if `ut_tv' is a member of `struct utmp'. */ #define HAVE_STRUCT_UTMP_UT_TV 1 -/* Define to 1 if `ut_user' is member of `struct utmp'. */ +/* Define to 1 if `ut_user' is a member of `struct utmp'. */ #define HAVE_STRUCT_UTMP_UT_USER 1 -/* Define to 1 if `ut_xtime' is member of `struct utmp'. */ +/* Define to 1 if `ut_xtime' is a member of `struct utmp'. */ /* #undef HAVE_STRUCT_UTMP_UT_XTIME */ /* Define to 1 if you have the `sysconf' function. */ @@ -179,25 +203,31 @@ /* Support NLS. */ #define NLS 1 +/* Support NLS catalogs. */ +#define NLS_CATALOGS 1 + /* Define to the address where bug reports for this package should be sent. */ -#define PACKAGE_BUGREPORT "" +#define PACKAGE_BUGREPORT "http://bugs.gw.com/" /* Define to the full name of this package. */ -#define PACKAGE_NAME "" +#define PACKAGE_NAME "tcsh" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "" +#define PACKAGE_STRING "tcsh 6.18.01" /* Define to the one symbol short name of this package. */ -#define PACKAGE_TARNAME "" +#define PACKAGE_TARNAME "tcsh" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "" /* Define to the version of this package. */ -#define PACKAGE_VERSION "" +#define PACKAGE_VERSION "6.18.01" /* Define to 1 if the `setpgrp' function takes no argument. */ /* #undef SETPGRP_VOID */ -/* The size of a `wchar_t', as computed by sizeof. */ +/* The size of `wchar_t', as computed by sizeof. */ #define SIZEOF_WCHAR_T 4 /* Define to 1 if the `S_IS*' macros in do not work properly. */ @@ -206,6 +236,11 @@ /* Define to 1 if you have the ANSI C header files. */ #define STDC_HEADERS 1 +/* Define for Solaris 2.5.1 so the uint32_t typedef from , + , or is not used. If the typedef were allowed, the + #define below would cause a syntax error. */ +/* #undef _UINT32_T */ + /* Define to empty if `const' does not conform to ANSI C. */ /* #undef const */ @@ -215,7 +250,7 @@ /* Define to `int' if does not define. */ /* #undef mode_t */ -/* Define to `unsigned' if does not define. */ +/* Define to `unsigned int' if does not define. */ /* #undef size_t */ /* Define to `int' if neither nor define. */ @@ -227,6 +262,10 @@ /* Define to `int' if doesn't define. */ /* #undef uid_t */ +/* Define to the type of an unsigned integer type of width exactly 32 bits if + such a type exists and the standard includes do not define it. */ +/* #undef uint32_t */ + /* Define to empty if the keyword `volatile' does not work. Warning: valid code using `volatile' can become incorrect without. Disable with care. */ /* #undef volatile */ @@ -234,9 +273,5 @@ #include "config_p.h" #include "config_f.h" -#ifndef NO_NLS_CATALOGS -#define NLS_CATALOGS -#endif - /* Work around a vendor issue where config_f.h is #undef'ing this setting */ #define SYSMALLOC Modified: projects/diffused_head/bin/csh/config_p.h ============================================================================== --- projects/diffused_head/bin/csh/config_p.h Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/csh/config_p.h Mon Nov 26 23:23:36 2012 (r243574) @@ -106,9 +106,6 @@ #elif defined(__APPLE__) # define SYSMALLOC - -#else -# define NLS_CATALOGS #endif #endif /* _h_config */ Modified: projects/diffused_head/bin/ps/print.c ============================================================================== --- projects/diffused_head/bin/ps/print.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/ps/print.c Mon Nov 26 23:23:36 2012 (r243574) @@ -99,10 +99,8 @@ printheader(void) char * arguments(KINFO *k, VARENT *ve) { - VAR *v; char *vis_args; - v = ve->var; if ((vis_args = malloc(strlen(k->ki_args) * 4 + 1)) == NULL) errx(1, "malloc failed"); strvis(vis_args, k->ki_args, VIS_TAB | VIS_NL | VIS_NOSLASH); @@ -116,10 +114,8 @@ arguments(KINFO *k, VARENT *ve) char * command(KINFO *k, VARENT *ve) { - VAR *v; char *vis_args, *vis_env, *str; - v = ve->var; if (cflag) { /* If it is the last field, then don't pad */ if (STAILQ_NEXT(ve, next_ve) == NULL) { @@ -172,10 +168,8 @@ command(KINFO *k, VARENT *ve) char * ucomm(KINFO *k, VARENT *ve) { - VAR *v; char *str; - v = ve->var; if (STAILQ_NEXT(ve, next_ve) == NULL) { /* last field, don't pad */ asprintf(&str, "%s%s%s%s", k->ki_d.prefix ? k->ki_d.prefix : "", @@ -192,12 +186,10 @@ ucomm(KINFO *k, VARENT *ve) } char * -tdnam(KINFO *k, VARENT *ve) +tdnam(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; if (showthreads && k->ki_p->ki_numthreads > 1) str = strdup(k->ki_p->ki_tdname); else @@ -207,28 +199,24 @@ tdnam(KINFO *k, VARENT *ve) } char * -logname(KINFO *k, VARENT *ve) +logname(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; if (*k->ki_p->ki_login == '\0') return (NULL); return (strdup(k->ki_p->ki_login)); } char * -state(KINFO *k, VARENT *ve) +state(KINFO *k, VARENT *ve __unused) { int flag, tdflags; char *cp, *buf; - VAR *v; buf = malloc(16); if (buf == NULL) errx(1, "malloc failed"); - v = ve->var; flag = k->ki_p->ki_flag; tdflags = k->ki_p->ki_tdflags; /* XXXKSE */ cp = buf; @@ -294,72 +282,58 @@ state(KINFO *k, VARENT *ve) #define scalepri(x) ((x) - PZERO) char * -pri(KINFO *k, VARENT *ve) +pri(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%d", scalepri(k->ki_p->ki_pri.pri_level)); return (str); } char * -upr(KINFO *k, VARENT *ve) +upr(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%d", scalepri(k->ki_p->ki_pri.pri_user)); return (str); } #undef scalepri char * -uname(KINFO *k, VARENT *ve) +uname(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; return (strdup(user_from_uid(k->ki_p->ki_uid, 0))); } char * -egroupname(KINFO *k, VARENT *ve) +egroupname(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; return (strdup(group_from_gid(k->ki_p->ki_groups[0], 0))); } char * -rgroupname(KINFO *k, VARENT *ve) +rgroupname(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; return (strdup(group_from_gid(k->ki_p->ki_rgid, 0))); } char * -runame(KINFO *k, VARENT *ve) +runame(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; return (strdup(user_from_uid(k->ki_p->ki_ruid, 0))); } char * -tdev(KINFO *k, VARENT *ve) +tdev(KINFO *k, VARENT *ve __unused) { - VAR *v; dev_t dev; char *str; - v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV) str = strdup("-"); @@ -370,13 +344,11 @@ tdev(KINFO *k, VARENT *ve) } char * -tname(KINFO *k, VARENT *ve) +tname(KINFO *k, VARENT *ve __unused) { - VAR *v; dev_t dev; char *ttname, *str; - v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL) str = strdup("- "); @@ -394,13 +366,11 @@ tname(KINFO *k, VARENT *ve) } char * -longtname(KINFO *k, VARENT *ve) +longtname(KINFO *k, VARENT *ve __unused) { - VAR *v; dev_t dev; const char *ttname; - v = ve->var; dev = k->ki_p->ki_tdev; if (dev == NODEV || (ttname = devname(dev, S_IFCHR)) == NULL) ttname = "-"; @@ -409,9 +379,8 @@ longtname(KINFO *k, VARENT *ve) } char * -started(KINFO *k, VARENT *ve) +started(KINFO *k, VARENT *ve __unused) { - VAR *v; time_t then; struct tm *tp; static int use_ampm = -1; @@ -422,7 +391,6 @@ started(KINFO *k, VARENT *ve) if (buf == NULL) errx(1, "malloc failed"); - v = ve->var; if (!k->ki_valid) return (NULL); if (use_ampm < 0) @@ -441,9 +409,8 @@ started(KINFO *k, VARENT *ve) } char * -lstarted(KINFO *k, VARENT *ve) +lstarted(KINFO *k, VARENT *ve __unused) { - VAR *v; time_t then; char *buf; size_t buflen = 100; @@ -452,7 +419,6 @@ lstarted(KINFO *k, VARENT *ve) if (buf == NULL) errx(1, "malloc failed"); - v = ve->var; if (!k->ki_valid) return (NULL); then = k->ki_p->ki_start.tv_sec; @@ -461,12 +427,10 @@ lstarted(KINFO *k, VARENT *ve) } char * -lockname(KINFO *k, VARENT *ve) +lockname(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; if (k->ki_p->ki_kiflag & KI_LOCKBLOCK) { if (k->ki_p->ki_lockname[0] != 0) str = strdup(k->ki_p->ki_lockname); @@ -479,12 +443,10 @@ lockname(KINFO *k, VARENT *ve) } char * -wchan(KINFO *k, VARENT *ve) +wchan(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; if (k->ki_p->ki_wchan) { if (k->ki_p->ki_wmesg[0] != 0) str = strdup(k->ki_p->ki_wmesg); @@ -497,12 +459,10 @@ wchan(KINFO *k, VARENT *ve) } char * -nwchan(KINFO *k, VARENT *ve) +nwchan(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; if (k->ki_p->ki_wchan) asprintf(&str, "%0lx", (long)k->ki_p->ki_wchan); else @@ -512,12 +472,10 @@ nwchan(KINFO *k, VARENT *ve) } char * -mwchan(KINFO *k, VARENT *ve) +mwchan(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; if (k->ki_p->ki_wchan) { if (k->ki_p->ki_wmesg[0] != 0) str = strdup(k->ki_p->ki_wmesg); @@ -535,27 +493,23 @@ mwchan(KINFO *k, VARENT *ve) } char * -vsize(KINFO *k, VARENT *ve) +vsize(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%lu", (u_long)(k->ki_p->ki_size / 1024)); return (str); } static char * -printtime(KINFO *k, VARENT *ve, long secs, long psecs) +printtime(KINFO *k, VARENT *ve __unused, long secs, long psecs) /* psecs is "parts" of a second. first micro, then centi */ { - VAR *v; static char decimal_point; char *str; if (decimal_point == '\0') decimal_point = localeconv()->decimal_point[0]; - v = ve->var; if (!k->ki_valid) { secs = 0; psecs = 0; @@ -618,14 +572,12 @@ usertime(KINFO *k, VARENT *ve) } char * -elapsed(KINFO *k, VARENT *ve) +elapsed(KINFO *k, VARENT *ve __unused) { - VAR *v; time_t val; int days, hours, mins, secs; char *str; - v = ve->var; if (!k->ki_valid) return (NULL); val = now - k->ki_p->ki_start.tv_sec; @@ -646,13 +598,11 @@ elapsed(KINFO *k, VARENT *ve) } char * -elapseds(KINFO *k, VARENT *ve) +elapseds(KINFO *k, VARENT *ve __unused) { - VAR *v; time_t val; char *str; - v = ve->var; if (!k->ki_valid) return (NULL); val = now - k->ki_p->ki_start.tv_sec; @@ -682,12 +632,10 @@ getpcpu(const KINFO *k) } char * -pcpu(KINFO *k, VARENT *ve) +pcpu(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%.1f", getpcpu(k)); return (str); } @@ -712,47 +660,39 @@ getpmem(KINFO *k) } char * -pmem(KINFO *k, VARENT *ve) +pmem(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%.1f", getpmem(k)); return (str); } char * -pagein(KINFO *k, VARENT *ve) +pagein(KINFO *k, VARENT *ve __unused) { - VAR *v; char *str; - v = ve->var; asprintf(&str, "%ld", k->ki_valid ? k->ki_p->ki_rusage.ru_majflt : 0); return (str); } /* ARGSUSED */ char * -maxrss(KINFO *k __unused, VARENT *ve) +maxrss(KINFO *k __unused, VARENT *ve __unused) { - VAR *v; - v = ve->var; /* XXX not yet */ return (NULL); } char * -priorityr(KINFO *k, VARENT *ve) +priorityr(KINFO *k, VARENT *ve __unused) { - VAR *v; struct priority *lpri; char *str; unsigned class, level; - v = ve->var; lpri = &k->ki_p->ki_pri; class = lpri->pri_class; level = lpri->pri_level; @@ -852,25 +792,21 @@ rvar(KINFO *k, VARENT *ve) } char * -emulname(KINFO *k, VARENT *ve) +emulname(KINFO *k, VARENT *ve __unused) { - VAR *v; - v = ve->var; if (k->ki_p->ki_emul == NULL) return (NULL); return (strdup(k->ki_p->ki_emul)); } char * -label(KINFO *k, VARENT *ve) +label(KINFO *k, VARENT *ve __unused) { char *string; - VAR *v; mac_t proclabel; int error; - v = ve->var; string = NULL; if (mac_prepare_process_label(&proclabel) == -1) { warn("mac_prepare_process_label"); @@ -887,12 +823,10 @@ out: } char * -loginclass(KINFO *k, VARENT *ve) +loginclass(KINFO *k, VARENT *ve __unused) { - VAR *v; char *s; - v = ve->var; /* * Don't display login class for system processes; * login classes are used for resource limits, Modified: projects/diffused_head/bin/sh/arith_yacc.c ============================================================================== --- projects/diffused_head/bin/sh/arith_yacc.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/arith_yacc.c Mon Nov 26 23:23:36 2012 (r243574) @@ -84,6 +84,8 @@ static const char prec[ARITH_BINOP_MAX - #define ARITH_MAX_PREC 8 +int letcmd(int, char **); + static __dead2 void yyerror(const char *s) { error("arithmetic expression: %s: \"%s\"", s, arith_startbuf); @@ -377,4 +379,3 @@ letcmd(int argc, char **argv) out1fmt(ARITH_FORMAT_STR "\n", i); return !i; } - Modified: projects/diffused_head/bin/sh/arith_yylex.c ============================================================================== --- projects/diffused_head/bin/sh/arith_yylex.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/arith_yylex.c Mon Nov 26 23:23:36 2012 (r243574) @@ -53,7 +53,7 @@ __FBSDID("$FreeBSD$"); extern const char *arith_buf; int -yylex() +yylex(void) { int value; const char *buf = arith_buf; Modified: projects/diffused_head/bin/sh/cd.c ============================================================================== --- projects/diffused_head/bin/sh/cd.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/cd.c Mon Nov 26 23:23:36 2012 (r243574) @@ -130,7 +130,12 @@ cdcmd(int argc, char **argv) (path = bltinlookup("CDPATH", 1)) == NULL) path = nullstr; while ((p = padvance(&path, dest)) != NULL) { - if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) { + if (stat(p, &statb) < 0) { + if (errno != ENOENT) + errno1 = errno; + } else if (!S_ISDIR(statb.st_mode)) + errno1 = ENOTDIR; + else { if (!print) { /* * XXX - rethink Modified: projects/diffused_head/bin/sh/eval.c ============================================================================== --- projects/diffused_head/bin/sh/eval.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/eval.c Mon Nov 26 23:23:36 2012 (r243574) @@ -75,7 +75,7 @@ __FBSDID("$FreeBSD$"); int evalskip; /* set if we are skipping commands */ -static int skipcount; /* number of levels to skip */ +int skipcount; /* number of levels to skip */ MKINIT int loopnest; /* current loop nesting level */ int funcnest; /* depth of function calls */ static int builtin_flags; /* evalcommand flags for builtins */ @@ -89,7 +89,7 @@ int oexitstatus; /* saved exit status * static void evalloop(union node *, int); static void evalfor(union node *, int); -static union node *evalcase(union node *, int); +static union node *evalcase(union node *); static void evalsubshell(union node *, int); static void evalredir(union node *, int); static void expredir(union node *); @@ -256,7 +256,18 @@ evaltree(union node *n, int flags) evalfor(n, flags & ~EV_EXIT); break; case NCASE: - next = evalcase(n, flags); + next = evalcase(n); + break; + case NCLIST: + next = n->nclist.body; + break; + case NCLISTFALLTHRU: + if (n->nclist.body) { + evaltree(n->nclist.body, flags & ~EV_EXIT); + if (evalskip) + goto out; + } + next = n->nclist.next; break; case NDEFUN: defun(n->narg.text, n->narg.next); @@ -337,6 +348,7 @@ evalfor(union node *n, int flags) union node *argp; struct strlist *sp; struct stackmark smark; + int status; setstackmark(&smark); arglist.lastp = &arglist.list; @@ -346,11 +358,12 @@ evalfor(union node *n, int flags) } *arglist.lastp = NULL; - exitstatus = 0; loopnest++; + status = 0; for (sp = arglist.list ; sp ; sp = sp->next) { setvar(n->nfor.var, sp->text, 0); evaltree(n->nfor.body, flags); + status = exitstatus; if (evalskip) { if (evalskip == SKIPCONT && --skipcount <= 0) { evalskip = 0; @@ -363,12 +376,18 @@ evalfor(union node *n, int flags) } loopnest--; popstackmark(&smark); + exitstatus = status; } +/* + * Evaluate a case statement, returning the selected tree. + * + * The exit status needs care to get right. + */ static union node * -evalcase(union node *n, int flags) +evalcase(union node *n) { union node *cp; union node *patp; @@ -378,25 +397,26 @@ evalcase(union node *n, int flags) setstackmark(&smark); arglist.lastp = &arglist.list; oexitstatus = exitstatus; - exitstatus = 0; expandarg(n->ncase.expr, &arglist, EXP_TILDE); for (cp = n->ncase.cases ; cp ; cp = cp->nclist.next) { for (patp = cp->nclist.pattern ; patp ; patp = patp->narg.next) { if (casematch(patp, arglist.list->text)) { popstackmark(&smark); while (cp->nclist.next && - cp->type == NCLISTFALLTHRU) { - evaltree(cp->nclist.body, - flags & ~EV_EXIT); - if (evalskip != 0) - return (NULL); + cp->type == NCLISTFALLTHRU && + cp->nclist.body == NULL) cp = cp->nclist.next; - } + if (cp->nclist.next && + cp->type == NCLISTFALLTHRU) + return (cp); + if (cp->nclist.body == NULL) + exitstatus = 0; return (cp->nclist.body); } } } popstackmark(&smark); + exitstatus = 0; return (NULL); } @@ -901,6 +921,15 @@ evalcommand(union node *cmd, int flags, if (pipe(pip) < 0) error("Pipe call failed: %s", strerror(errno)); } + if (cmdentry.cmdtype == CMDNORMAL && + cmd->ncmd.redirect == NULL && + varlist.list == NULL && + (mode == FORK_FG || mode == FORK_NOJOB) && + !disvforkset() && !iflag && !mflag) { + vforkexecshell(jp, argv, environment(), path, + cmdentry.u.index, flags & EV_BACKCMD ? pip : NULL); + goto parent; + } if (forkshell(jp, cmd, mode) != 0) goto parent; /* at end of routine */ if (flags & EV_BACKCMD) { Modified: projects/diffused_head/bin/sh/eval.h ============================================================================== --- projects/diffused_head/bin/sh/eval.h Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/eval.h Mon Nov 26 23:23:36 2012 (r243574) @@ -60,6 +60,7 @@ void evalbackcmd(union node *, struct ba #define in_function() funcnest extern int funcnest; extern int evalskip; +extern int skipcount; /* reasons for skipping commands (see comment on breakcmd routine) */ #define SKIPBREAK 1 Modified: projects/diffused_head/bin/sh/exec.c ============================================================================== --- projects/diffused_head/bin/sh/exec.c Mon Nov 26 21:55:15 2012 (r243573) +++ projects/diffused_head/bin/sh/exec.c Mon Nov 26 23:23:36 2012 (r243574) @@ -231,7 +231,9 @@ hashcmd(int argc __unused, char **argv _ int verbose; struct cmdentry entry; char *name; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 00:42:35 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 85C06FDF; Tue, 27 Nov 2012 00:42:35 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 59F608FC13; Tue, 27 Nov 2012 00:42:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAR0gZ5M023099; Tue, 27 Nov 2012 00:42:35 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAR0gYBg023081; Tue, 27 Nov 2012 00:42:34 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211270042.qAR0gYBg023081@svn.freebsd.org> From: Lawrence Stewart Date: Tue, 27 Nov 2012 00:42:34 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243577 - in projects/diffused_head: . bin/df bin/expr bin/kenv bin/ps bin/pwait bin/setfacl bin/sh bin/stty cddl/compat/opensolaris/include cddl/contrib/opensolaris/cmd/zfs cddl/contri... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 00:42:35 -0000 Author: lstewart Date: Tue Nov 27 00:42:30 2012 New Revision: 243577 URL: http://svnweb.freebsd.org/changeset/base/243577 Log: Merge revs 232000:235000 from head. Added: projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/mips/ - copied from r235000, head/cddl/contrib/opensolaris/lib/libdtrace/mips/ projects/diffused_head/contrib/file/Magdir/assembler - copied unchanged from r235000, head/contrib/file/Magdir/assembler projects/diffused_head/contrib/file/Magdir/blcr - copied unchanged from r235000, head/contrib/file/Magdir/blcr projects/diffused_head/contrib/file/Magdir/bsi - copied unchanged from r235000, head/contrib/file/Magdir/bsi projects/diffused_head/contrib/file/Magdir/cups - copied unchanged from r235000, head/contrib/file/Magdir/cups projects/diffused_head/contrib/file/Magdir/ebml - copied unchanged from r235000, head/contrib/file/Magdir/ebml projects/diffused_head/contrib/file/Magdir/fusecompress - copied unchanged from r235000, head/contrib/file/Magdir/fusecompress projects/diffused_head/contrib/file/Magdir/geo - copied unchanged from r235000, head/contrib/file/Magdir/geo projects/diffused_head/contrib/file/Magdir/guile - copied unchanged from r235000, head/contrib/file/Magdir/guile projects/diffused_head/contrib/file/Magdir/isz - copied unchanged from r235000, head/contrib/file/Magdir/isz projects/diffused_head/contrib/file/Magdir/m4 - copied unchanged from r235000, head/contrib/file/Magdir/m4 projects/diffused_head/contrib/file/Magdir/make - copied unchanged from r235000, head/contrib/file/Magdir/make projects/diffused_head/contrib/file/Magdir/marc21 - copied unchanged from r235000, head/contrib/file/Magdir/marc21 projects/diffused_head/contrib/file/Magdir/metastore - copied unchanged from r235000, head/contrib/file/Magdir/metastore projects/diffused_head/contrib/file/Magdir/msooxml - copied unchanged from r235000, head/contrib/file/Magdir/msooxml projects/diffused_head/contrib/file/Magdir/music - copied unchanged from r235000, head/contrib/file/Magdir/music projects/diffused_head/contrib/file/Magdir/oasis - copied unchanged from r235000, head/contrib/file/Magdir/oasis projects/diffused_head/contrib/file/Magdir/parrot - copied unchanged from r235000, head/contrib/file/Magdir/parrot projects/diffused_head/contrib/file/Magdir/pascal - copied unchanged from r235000, head/contrib/file/Magdir/pascal projects/diffused_head/contrib/file/Magdir/rinex - copied unchanged from r235000, head/contrib/file/Magdir/rinex projects/diffused_head/contrib/file/Magdir/selinux - copied unchanged from r235000, head/contrib/file/Magdir/selinux projects/diffused_head/contrib/file/Magdir/sisu - copied unchanged from r235000, head/contrib/file/Magdir/sisu projects/diffused_head/contrib/file/Magdir/smile - copied unchanged from r235000, head/contrib/file/Magdir/smile projects/diffused_head/contrib/file/Magdir/ssh - copied unchanged from r235000, head/contrib/file/Magdir/ssh projects/diffused_head/contrib/file/Magdir/ssl - copied unchanged from r235000, head/contrib/file/Magdir/ssl projects/diffused_head/contrib/file/Magdir/tcl - copied unchanged from r235000, head/contrib/file/Magdir/tcl projects/diffused_head/contrib/file/Magdir/virtual - copied unchanged from r235000, head/contrib/file/Magdir/virtual projects/diffused_head/contrib/file/Magdir/wsdl - copied unchanged from r235000, head/contrib/file/Magdir/wsdl projects/diffused_head/contrib/file/Magdir/zfs - copied unchanged from r235000, head/contrib/file/Magdir/zfs projects/diffused_head/contrib/file/getline.c - copied unchanged from r235000, head/contrib/file/getline.c projects/diffused_head/contrib/jemalloc/ - copied from r235000, head/contrib/jemalloc/ projects/diffused_head/contrib/libarchive/cpio/test/test_option_0.c - copied unchanged from r235000, head/contrib/libarchive/cpio/test/test_option_0.c projects/diffused_head/contrib/libarchive/libarchive/archive_acl.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_acl.c projects/diffused_head/contrib/libarchive/libarchive/archive_acl_private.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_acl_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_crypto.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_crypto.c projects/diffused_head/contrib/libarchive/libarchive/archive_crypto_private.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_crypto_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry_acl.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_acl.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_linkify.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_linkify.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_locale.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_locale.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry_paths.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_paths.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_perms.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_perms.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_sparse.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_sparse.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry_stat.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_stat.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_time.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_entry_time.3 projects/diffused_head/contrib/libarchive/libarchive/archive_options.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_options.c projects/diffused_head/contrib/libarchive/libarchive/archive_options_private.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_options_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_ppmd7.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_ppmd7.c projects/diffused_head/contrib/libarchive/libarchive/archive_ppmd7_private.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_ppmd7_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_ppmd_private.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_ppmd_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_rb.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_rb.c projects/diffused_head/contrib/libarchive/libarchive/archive_rb.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_rb.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_data.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_data.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_posix.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_disk_posix.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_extract.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_extract.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_filter.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_filter.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_format.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_format.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_free.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_free.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_header.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_header.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_new.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_new.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_open.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_open.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_set_options.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_set_options.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_set_options.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_set_options.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_all.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_all.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_bzip2.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_compress.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_compress.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_gzip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_gzip.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_none.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_none.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_program.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_program.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_rpm.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_rpm.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_uu.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_uu.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_xz.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_filter_xz.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_7zip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_by_code.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_format_by_code.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_cab.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_format_cab.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_lha.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_format_lha.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_rar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_read_support_format_rar.c projects/diffused_head/contrib/libarchive/libarchive/archive_string_composition.h - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_string_composition.h projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_bzip2.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_compress.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_compress.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_gzip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_gzip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_none.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_none.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_program.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_program.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_xz.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_add_filter_xz.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_blocksize.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_blocksize.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_data.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_data.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_posix.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_disk_posix.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_filter.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_filter.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_finish_entry.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_finish_entry.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_format.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_format.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_free.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_free.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_header.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_header.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_new.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_new.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_open.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_open.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_7zip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_gnutar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_format_gnutar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_iso9660.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_format_iso9660.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_xar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_options.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_options.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_options.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/archive_write_set_options.c projects/diffused_head/contrib/libarchive/libarchive/libarchive_changes.3 - copied unchanged from r235000, head/contrib/libarchive/libarchive/libarchive_changes.3 projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_nfs4.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_acl_nfs4.c projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_pax.tar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_acl_pax.tar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_posix1e.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_acl_posix1e.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_clear_error.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_clear_error.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_crypto.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_crypto.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_close_twice.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_close_twice.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_fd.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_fd.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_close_twice_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_next_header_empty.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_next_header_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_next_header_raw.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_next_header_raw.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_open2.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_open2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_set_filter_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_set_filter_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_set_format_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_set_format_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_set_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_set_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_set_options.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_set_options.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_read_support.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_read_support.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_set_error.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_set_error.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_string.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_string.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_string_conversion.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_string_conversion.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_string_conversion.txt.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_string_conversion.txt.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_write_set_filter_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_write_set_filter_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_write_set_format_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_write_set_format_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_write_set_option.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_write_set_option.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_write_set_options.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_archive_write_set_options.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_lzip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_lzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_lzip_1.tlz.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_lzip_1.tlz.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_lzip_2.tlz.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_lzip_2.tlz.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_mac-1.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_mac-1.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_mac-2.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_mac-2.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_mac.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_mac.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_pax_libarchive_2x.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_pax_libarchive_2x.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_pax_libarchive_2x.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_pax_libarchive_2x.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse_1.pax.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse_1.pax.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse_2.pax.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_solaris_pax_sparse_2.pax.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_3.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_zip_3.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_4.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_zip_4.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_5.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_zip_5.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_6.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_zip_6.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_7.xps.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_compat_zip_7.xps.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_filter_count.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_filter_count.c projects/diffused_head/contrib/libarchive/libarchive/test/test_fuzz.cab.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_fuzz.cab.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_fuzz.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_fuzz.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_gnutar_filename_encoding.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_gnutar_filename_encoding.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_disk_directory_traversals.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_disk_directory_traversals.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_bzip2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_bzip2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_lzma.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_copy_lzma.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_deflate.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_deflate.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma1_1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma1_1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma1_2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma1_2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma2_1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma2_1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma2_2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj2_lzma2_2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_bzip2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_bzip2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_copy.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_copy.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_deflate.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_deflate.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_lzma1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_lzma1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_lzma2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bcj_lzma2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_bzip2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_bzip2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_copy.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_copy.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_copy_2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_copy_2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_deflate.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_deflate.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_delta_lzma1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_delta_lzma1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_delta_lzma2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_delta_lzma2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_empty_archive.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_empty_archive.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_empty_file.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_empty_file.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1_2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1_2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1_lzma2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma1_lzma2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma2.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_lzma2.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_ppmd.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_ppmd.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip_symbolic_name.7z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_7zip_symbolic_name.7z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab_1.cab.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab_1.cab.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab_2.cab.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab_2.cab.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab_3.cab.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab_3.cab.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab_filename_cp932.cab.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cab_filename_cp932.cab.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_afio.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_afio.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_lzip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_lzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_cp866.cpio.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_cp866.cpio.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_eucjp.cpio.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_eucjp.cpio.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_koi8r.cpio.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_koi8r.cpio.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_utf8_jp.cpio.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_utf8_jp.cpio.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_utf8_ru.cpio.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_cpio_filename_utf8_ru.cpio.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_cp866.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_cp866.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_eucjp.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_eucjp.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_koi8r.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_gtar_filename_koi8r.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_iso_joliet_by_nero.iso.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_iso_joliet_by_nero.iso.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.iso.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.iso.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isojoliet_versioned.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_isojoliet_versioned.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_filename_cp932.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_filename_cp932.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_header0.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_header0.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_header1.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_header1.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_header2.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_header2.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_header3.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_header3.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_lh0.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_lh0.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_lh6.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_lh6.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_lh7.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_lh7.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_lha_withjunk.lzh.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_lha_withjunk.lzh.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic.mtree.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_mtree_nomagic.mtree.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_binary_data.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_binary_data.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_compress_best.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_compress_best.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_compress_normal.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_compress_normal.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_multi_lzss_blocks.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_multi_lzss_blocks.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_noeof.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_noeof.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_ppmd_lzss_conversion.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_ppmd_lzss_conversion.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_sfx.exe.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_sfx.exe.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_subblock.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_subblock.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_unicode.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_unicode.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_windows.rar.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_rar_windows.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tar_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_tar_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tar_filename_koi8r.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_tar_filename_koi8r.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_cp866.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_cp866.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_eucjp.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_eucjp.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_koi8r.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_ustar_filename_koi8r.tar.Z.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_cp866.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_cp866.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_cp932.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_cp932.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_koi8r.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_koi8r.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_jp.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_jp.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_ru.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_ru.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_ru2.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_filename_utf8_ru2.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_length_at_end.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_length_at_end.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_symlink.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_symlink.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip_ux.zip.uu - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_format_zip_ux.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_truncated_filter.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_read_truncated_filter.c projects/diffused_head/contrib/libarchive/libarchive/test/test_sparse_basic.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_sparse_basic.c projects/diffused_head/contrib/libarchive/libarchive/test/test_ustar_filename_encoding.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_ustar_filename_encoding.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_lzip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_compress_lzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_lookup.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_disk_lookup.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_7zip.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_gnutar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_gnutar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_iso9660.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_iso9660.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_iso9660_boot.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_iso9660_boot.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_iso9660_empty.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_iso9660_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_iso9660_filename.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_iso9660_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_iso9660_zisofs.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_iso9660_zisofs.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_mtree_fflags.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_mtree_fflags.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_tar_sparse.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_tar_sparse.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_xar.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_xar_empty.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_write_format_xar_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_zip_filename_encoding.c - copied unchanged from r235000, head/contrib/libarchive/libarchive/test/test_zip_filename_encoding.c projects/diffused_head/contrib/libarchive/tar/test/test_option_C_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_C_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_H_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_H_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_L_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_L_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_O_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_O_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_U_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_U_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_X_upper.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_X_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_b.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_b.c projects/diffused_head/contrib/libarchive/tar/test/test_option_exclude.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_exclude.c projects/diffused_head/contrib/libarchive/tar/test/test_option_gid_gname.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_gid_gname.c projects/diffused_head/contrib/libarchive/tar/test/test_option_k.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_k.c projects/diffused_head/contrib/libarchive/tar/test/test_option_keep_newer_files.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_keep_newer_files.c projects/diffused_head/contrib/libarchive/tar/test/test_option_keep_newer_files.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_keep_newer_files.tar.Z.uu projects/diffused_head/contrib/libarchive/tar/test/test_option_n.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_n.c projects/diffused_head/contrib/libarchive/tar/test/test_option_newer_than.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_newer_than.c projects/diffused_head/contrib/libarchive/tar/test/test_option_s.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_s.tar.Z.uu projects/diffused_head/contrib/libarchive/tar/test/test_option_uid_uname.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_option_uid_uname.c projects/diffused_head/contrib/libarchive/tar/test/test_print_longpath.c - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_print_longpath.c projects/diffused_head/contrib/libarchive/tar/test/test_print_longpath.tar.Z.uu - copied unchanged from r235000, head/contrib/libarchive/tar/test/test_print_longpath.tar.Z.uu projects/diffused_head/contrib/libc++/include/__undef_min_max - copied unchanged from r235000, head/contrib/libc++/include/__undef_min_max projects/diffused_head/contrib/llvm/include/llvm-c/TargetMachine.h - copied unchanged from r235000, head/contrib/llvm/include/llvm-c/TargetMachine.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/Vectorize.h - copied unchanged from r235000, head/contrib/llvm/include/llvm-c/Transforms/Vectorize.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Hashing.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ADT/Hashing.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SparseSet.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ADT/SparseSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/VariadicFunction.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ADT/VariadicFunction.h projects/diffused_head/contrib/llvm/include/llvm/ADT/edit_distance.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ADT/edit_distance.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ExecutionEngine/IntelJITEventsWrapper.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsHexagon.td - copied unchanged from r235000, head/contrib/llvm/include/llvm/IntrinsicsHexagon.td projects/diffused_head/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/Object/ELF.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Object/ELF.h projects/diffused_head/contrib/llvm/include/llvm/Support/DataStream.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/DataStream.h projects/diffused_head/contrib/llvm/include/llvm/Support/Locale.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/Locale.h projects/diffused_head/contrib/llvm/include/llvm/Support/LockFileManager.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/LockFileManager.h projects/diffused_head/contrib/llvm/include/llvm/Support/MDBuilder.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/MDBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/SaveAndRestore.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/SaveAndRestore.h projects/diffused_head/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/StreamableMemoryObject.h projects/diffused_head/contrib/llvm/include/llvm/Support/YAMLParser.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Support/YAMLParser.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Transforms/Utils/CmpInstAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Transforms/Utils/ModuleUtils.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Vectorize.h - copied unchanged from r235000, head/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/diffused_head/contrib/llvm/lib/Analysis/CodeMetrics.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfAccelTable.h projects/diffused_head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/JITCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/MachineCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp - copied unchanged from r235000, head/contrib/llvm/lib/CodeGen/TargetOptionsImpl.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ - copied from r235000, head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/ projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ - copied from r235000, head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/ projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/GDBRegistrar.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/JITRegistrar.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h - copied unchanged from r235000, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp - copied unchanged from r235000, head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp projects/diffused_head/contrib/llvm/lib/Support/DataStream.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/DataStream.cpp projects/diffused_head/contrib/llvm/lib/Support/Hashing.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/Hashing.cpp projects/diffused_head/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/IntrusiveRefCntPtr.cpp projects/diffused_head/contrib/llvm/lib/Support/Locale.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/Locale.cpp projects/diffused_head/contrib/llvm/lib/Support/LocaleGeneric.inc - copied unchanged from r235000, head/contrib/llvm/lib/Support/LocaleGeneric.inc projects/diffused_head/contrib/llvm/lib/Support/LocaleWindows.inc - copied unchanged from r235000, head/contrib/llvm/lib/Support/LocaleWindows.inc projects/diffused_head/contrib/llvm/lib/Support/LocaleXlocale.inc - copied unchanged from r235000, head/contrib/llvm/lib/Support/LocaleXlocale.inc projects/diffused_head/contrib/llvm/lib/Support/LockFileManager.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/LockFileManager.cpp projects/diffused_head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/diffused_head/contrib/llvm/lib/Support/YAMLParser.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Support/YAMLParser.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TableGenAction.cpp - copied unchanged from r235000, head/contrib/llvm/lib/TableGen/TableGenAction.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/ - copied from r235000, head/contrib/llvm/lib/Target/Hexagon/ projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/AsmParser/ - copied from r235000, head/contrib/llvm/lib/Target/Mips/AsmParser/ projects/diffused_head/contrib/llvm/lib/Target/Mips/Disassembler/ - copied from r235000, head/contrib/llvm/lib/Target/Mips/Disassembler/ projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h - copied unchanged from r235000, head/contrib/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCondMov.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/Mips/MipsCondMov.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetJITInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/TargetJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetMachineC.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/TargetMachineC.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSVM.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/X86InstrSVM.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrXOP.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Schedule.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/X86Schedule.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td - copied unchanged from r235000, head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Instrumentation/FunctionBlackList.h projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Utils/CmpInstAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp - copied unchanged from r235000, head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Vectorize/ - copied from r235000, head/contrib/llvm/lib/Transforms/Vectorize/ projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/AST/BuiltinTypes.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/AST/LambdaMangleContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Module.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Edit/ - copied from r235000, head/contrib/llvm/tools/clang/include/clang/Edit/ projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedIncludesSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CommonBugCategories.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/ - copied from r235000, head/contrib/llvm/tools/clang/include/clang/Tooling/ projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Analysis/Dominators.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Module.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Basic/Module.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Driver/WindowsToolChain.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Edit/ - copied from r235000, head/contrib/llvm/tools/clang/lib/Edit/ projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/bmi2intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/cpuid.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/cpuid.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/fma4intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/lzcntintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/module.map - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/module.map projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/popcntintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/unwind.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Headers/unwind.h projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Lex/ModuleMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Lex/PPCallbacks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Sema/SemaConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CommonBugCategories.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp - copied unchanged from r235000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/ - copied from r235000, head/contrib/llvm/tools/clang/lib/Tooling/ projects/diffused_head/contrib/llvm/tools/llvm-readobj/ - copied from r235000, head/contrib/llvm/tools/llvm-readobj/ projects/diffused_head/contrib/llvm/tools/llvm-stress/ - copied from r235000, head/contrib/llvm/tools/llvm-stress/ projects/diffused_head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp - copied unchanged from r235000, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h - copied unchanged from r235000, head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h - copied unchanged from r235000, head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/diffused_head/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp - copied unchanged from r235000, head/contrib/llvm/utils/TableGen/X86ModRMFilters.cpp projects/diffused_head/crypto/heimdal/admin/destroy.c - copied unchanged from r235000, head/crypto/heimdal/admin/destroy.c projects/diffused_head/crypto/heimdal/appl/login/login-protos.h - copied unchanged from r235000, head/crypto/heimdal/appl/login/login-protos.h projects/diffused_head/crypto/heimdal/base/ - copied from r235000, head/crypto/heimdal/base/ projects/diffused_head/crypto/heimdal/doc/copyright.texi - copied unchanged from r235000, head/crypto/heimdal/doc/copyright.texi projects/diffused_head/crypto/heimdal/doc/doxyout/ - copied from r235000, head/crypto/heimdal/doc/doxyout/ projects/diffused_head/crypto/heimdal/doc/gssapi.din - copied unchanged from r235000, head/crypto/heimdal/doc/gssapi.din projects/diffused_head/crypto/heimdal/doc/header.html - copied unchanged from r235000, head/crypto/heimdal/doc/header.html projects/diffused_head/crypto/heimdal/doc/wind.din - copied unchanged from r235000, head/crypto/heimdal/doc/wind.din projects/diffused_head/crypto/heimdal/include/crypto-headers.h - copied unchanged from r235000, head/crypto/heimdal/include/crypto-headers.h projects/diffused_head/crypto/heimdal/include/heim_threads.h - copied unchanged from r235000, head/crypto/heimdal/include/heim_threads.h projects/diffused_head/crypto/heimdal/include/krb5-types.cross - copied unchanged from r235000, head/crypto/heimdal/include/krb5-types.cross projects/diffused_head/crypto/heimdal/kadmin/rpc.c - copied unchanged from r235000, head/crypto/heimdal/kadmin/rpc.c projects/diffused_head/crypto/heimdal/kcm/kcm-protos.h - copied unchanged from r235000, head/crypto/heimdal/kcm/kcm-protos.h projects/diffused_head/crypto/heimdal/kcm/sessions.c - copied unchanged from r235000, head/crypto/heimdal/kcm/sessions.c projects/diffused_head/crypto/heimdal/kdc/announce.c - copied unchanged from r235000, head/crypto/heimdal/kdc/announce.c projects/diffused_head/crypto/heimdal/kdc/digest-service.c - copied unchanged from r235000, head/crypto/heimdal/kdc/digest-service.c projects/diffused_head/crypto/heimdal/kuser/kcc-commands.in - copied unchanged from r235000, head/crypto/heimdal/kuser/kcc-commands.in projects/diffused_head/crypto/heimdal/kuser/kcc.c - copied unchanged from r235000, head/crypto/heimdal/kuser/kcc.c projects/diffused_head/crypto/heimdal/kuser/kdigest.8 - copied unchanged from r235000, head/crypto/heimdal/kuser/kdigest.8 projects/diffused_head/crypto/heimdal/kuser/kimpersonate.8 - copied unchanged from r235000, head/crypto/heimdal/kuser/kimpersonate.8 projects/diffused_head/crypto/heimdal/kuser/kswitch.1 - copied unchanged from r235000, head/crypto/heimdal/kuser/kswitch.1 projects/diffused_head/crypto/heimdal/kuser/kswitch.c - copied unchanged from r235000, head/crypto/heimdal/kuser/kswitch.c projects/diffused_head/crypto/heimdal/lib/asn1/asn1-template.h - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/asn1-template.h projects/diffused_head/crypto/heimdal/lib/asn1/asn1parse.c - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/asn1parse.c projects/diffused_head/crypto/heimdal/lib/asn1/asn1parse.h - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/asn1parse.h projects/diffused_head/crypto/heimdal/lib/asn1/asn1parse.y - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/asn1parse.y projects/diffused_head/crypto/heimdal/lib/asn1/cms.asn1 - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/cms.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/cms.opt - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/cms.opt projects/diffused_head/crypto/heimdal/lib/asn1/der-private.h - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/der-private.h projects/diffused_head/crypto/heimdal/lib/asn1/gen_template.c - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/gen_template.c projects/diffused_head/crypto/heimdal/lib/asn1/krb5.asn1 - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/krb5.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/krb5.opt - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/krb5.opt projects/diffused_head/crypto/heimdal/lib/asn1/template.c - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/template.c projects/diffused_head/crypto/heimdal/lib/asn1/version-script.map - copied unchanged from r235000, head/crypto/heimdal/lib/asn1/version-script.map projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi/gssapi_ntlm.h - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/gssapi/gssapi_ntlm.h projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi/gssapi_oid.h - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/gssapi/gssapi_oid.h projects/diffused_head/crypto/heimdal/lib/gssapi/gsstool.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/gsstool.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/aeap.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/krb5/aeap.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/authorize_localname.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/krb5/authorize_localname.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/creds.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/krb5/creds.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/pname_to_uid.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/krb5/pname_to_uid.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/store_cred.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/krb5/store_cred.c projects/diffused_head/crypto/heimdal/lib/gssapi/mech/ - copied from r235000, head/crypto/heimdal/lib/gssapi/mech/ projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/creds.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/ntlm/creds.c projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_sec_context_by_oid.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/ntlm/inquire_sec_context_by_oid.c projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/iter_cred.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/ntlm/iter_cred.c projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/kdc.c - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/ntlm/kdc.c projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/spnego.opt - copied unchanged from r235000, head/crypto/heimdal/lib/gssapi/spnego/spnego.opt projects/diffused_head/crypto/heimdal/lib/hdb/hdb-keytab.c - copied unchanged from r235000, head/crypto/heimdal/lib/hdb/hdb-keytab.c projects/diffused_head/crypto/heimdal/lib/hdb/hdb-mitdb.c - copied unchanged from r235000, head/crypto/heimdal/lib/hdb/hdb-mitdb.c projects/diffused_head/crypto/heimdal/lib/hdb/hdb-sqlite.c - copied unchanged from r235000, head/crypto/heimdal/lib/hdb/hdb-sqlite.c projects/diffused_head/crypto/heimdal/lib/hdb/version-script.map - copied unchanged from r235000, head/crypto/heimdal/lib/hdb/version-script.map projects/diffused_head/crypto/heimdal/lib/heimdal/ - copied from r235000, head/crypto/heimdal/lib/heimdal/ projects/diffused_head/crypto/heimdal/lib/hx509/char_map.h - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/char_map.h projects/diffused_head/crypto/heimdal/lib/hx509/ocsp.opt - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/ocsp.opt projects/diffused_head/crypto/heimdal/lib/hx509/pkcs10.opt - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/pkcs10.opt projects/diffused_head/crypto/heimdal/lib/hx509/quote.py - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/quote.py projects/diffused_head/crypto/heimdal/lib/hx509/sel-gram.y - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/sel-gram.y projects/diffused_head/crypto/heimdal/lib/hx509/sel-lex.l - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/sel-lex.l projects/diffused_head/crypto/heimdal/lib/hx509/sel.c - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/sel.c projects/diffused_head/crypto/heimdal/lib/hx509/sel.h - copied unchanged from r235000, head/crypto/heimdal/lib/hx509/sel.h projects/diffused_head/crypto/heimdal/lib/ipc/ - copied from r235000, head/crypto/heimdal/lib/ipc/ projects/diffused_head/crypto/heimdal/lib/krb5/ccache_plugin.h - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/ccache_plugin.h projects/diffused_head/crypto/heimdal/lib/krb5/crypto-aes.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-aes.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-algs.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-algs.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-arcfour.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-arcfour.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-des-common.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-des-common.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-des.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-des.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-des3.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-des3.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-evp.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-evp.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-null.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-null.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-pk.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-pk.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-rand.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-rand.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto-stubs.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto-stubs.c projects/diffused_head/crypto/heimdal/lib/krb5/crypto.h - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/crypto.h projects/diffused_head/crypto/heimdal/lib/krb5/deprecated.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/deprecated.c projects/diffused_head/crypto/heimdal/lib/krb5/expand_path.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/expand_path.c projects/diffused_head/crypto/heimdal/lib/krb5/pcache.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/pcache.c projects/diffused_head/crypto/heimdal/lib/krb5/salt-aes.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/salt-aes.c projects/diffused_head/crypto/heimdal/lib/krb5/salt-arcfour.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/salt-arcfour.c projects/diffused_head/crypto/heimdal/lib/krb5/salt-des.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/salt-des.c projects/diffused_head/crypto/heimdal/lib/krb5/salt-des3.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/salt-des3.c projects/diffused_head/crypto/heimdal/lib/krb5/salt.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/salt.c projects/diffused_head/crypto/heimdal/lib/krb5/scache.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/scache.c projects/diffused_head/crypto/heimdal/lib/krb5/send_to_kdc_plugin.h - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/send_to_kdc_plugin.h projects/diffused_head/crypto/heimdal/lib/krb5/store-int.c - copied unchanged from r235000, head/crypto/heimdal/lib/krb5/store-int.c projects/diffused_head/crypto/heimdal/lib/ntlm/ntlm_err.et - copied unchanged from r235000, head/crypto/heimdal/lib/ntlm/ntlm_err.et projects/diffused_head/crypto/heimdal/lib/roken/cloexec.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/cloexec.c projects/diffused_head/crypto/heimdal/lib/roken/ct.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/ct.c projects/diffused_head/crypto/heimdal/lib/roken/doxygen.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/doxygen.c projects/diffused_head/crypto/heimdal/lib/roken/qsort.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/qsort.c projects/diffused_head/crypto/heimdal/lib/roken/rand.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/rand.c projects/diffused_head/crypto/heimdal/lib/roken/rkpty.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/rkpty.c projects/diffused_head/crypto/heimdal/lib/roken/search.hin - copied unchanged from r235000, head/crypto/heimdal/lib/roken/search.hin projects/diffused_head/crypto/heimdal/lib/roken/strerror_r.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/strerror_r.c projects/diffused_head/crypto/heimdal/lib/roken/tsearch.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/tsearch.c projects/diffused_head/crypto/heimdal/lib/roken/version-script.map - copied unchanged from r235000, head/crypto/heimdal/lib/roken/version-script.map projects/diffused_head/crypto/heimdal/lib/roken/xfree.c - copied unchanged from r235000, head/crypto/heimdal/lib/roken/xfree.c projects/diffused_head/crypto/heimdal/lib/sqlite/ - copied from r235000, head/crypto/heimdal/lib/sqlite/ projects/diffused_head/crypto/heimdal/lib/wind/ - copied from r235000, head/crypto/heimdal/lib/wind/ projects/diffused_head/etc/rc.d/kfd - copied unchanged from r235000, head/etc/rc.d/kfd projects/diffused_head/gnu/lib/libsupc++/Version.map - copied unchanged from r235000, head/gnu/lib/libsupc++/Version.map projects/diffused_head/gnu/usr.bin/cc/cpp/gcpp.1 - copied unchanged from r235000, head/gnu/usr.bin/cc/cpp/gcpp.1 projects/diffused_head/include/xlocale/ - copied from r235000, head/include/xlocale/ projects/diffused_head/kerberos5/lib/libasn1/version.map - copied unchanged from r235000, head/kerberos5/lib/libasn1/version.map projects/diffused_head/kerberos5/lib/libgssapi_krb5/gss_oid.c - copied unchanged from r235000, head/kerberos5/lib/libgssapi_krb5/gss_oid.c projects/diffused_head/kerberos5/lib/libgssapi_spnego/freebsd_compat.c - copied unchanged from r235000, head/kerberos5/lib/libgssapi_spnego/freebsd_compat.c projects/diffused_head/kerberos5/lib/libheimbase/ - copied from r235000, head/kerberos5/lib/libheimbase/ projects/diffused_head/kerberos5/lib/libheimipcc/ - copied from r235000, head/kerberos5/lib/libheimipcc/ projects/diffused_head/kerberos5/lib/libheimipcs/ - copied from r235000, head/kerberos5/lib/libheimipcs/ projects/diffused_head/kerberos5/lib/libheimsqlite/ - copied from r235000, head/kerberos5/lib/libheimsqlite/ projects/diffused_head/kerberos5/lib/libkafs5/version.map - copied unchanged from r235000, head/kerberos5/lib/libkafs5/version.map projects/diffused_head/kerberos5/lib/libkdc/ - copied from r235000, head/kerberos5/lib/libkdc/ projects/diffused_head/kerberos5/lib/libwind/ - copied from r235000, head/kerberos5/lib/libwind/ projects/diffused_head/kerberos5/libexec/digest-service/ - copied from r235000, head/kerberos5/libexec/digest-service/ projects/diffused_head/kerberos5/libexec/kdigest/ - copied from r235000, head/kerberos5/libexec/kdigest/ projects/diffused_head/kerberos5/libexec/kfd/ - copied from r235000, head/kerberos5/libexec/kfd/ projects/diffused_head/kerberos5/libexec/kimpersonate/ - copied from r235000, head/kerberos5/libexec/kimpersonate/ projects/diffused_head/kerberos5/usr.bin/hxtool/ - copied from r235000, head/kerberos5/usr.bin/hxtool/ projects/diffused_head/kerberos5/usr.bin/kcc/ - copied from r235000, head/kerberos5/usr.bin/kcc/ projects/diffused_head/kerberos5/usr.bin/kf/ - copied from r235000, head/kerberos5/usr.bin/kf/ projects/diffused_head/kerberos5/usr.bin/kgetcred/ - copied from r235000, head/kerberos5/usr.bin/kgetcred/ projects/diffused_head/kerberos5/usr.bin/string2key/ - copied from r235000, head/kerberos5/usr.bin/string2key/ projects/diffused_head/kerberos5/usr.sbin/iprop-log/ - copied from r235000, head/kerberos5/usr.sbin/iprop-log/ projects/diffused_head/lib/clang/include/MipsGenMCCodeEmitter.inc - copied unchanged from r235000, head/lib/clang/include/MipsGenMCCodeEmitter.inc projects/diffused_head/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc - copied unchanged from r235000, head/lib/clang/include/clang/Basic/DiagnosticSerializationKinds.inc projects/diffused_head/lib/clang/include/clang/Config/ - copied from r235000, head/lib/clang/include/clang/Config/ projects/diffused_head/lib/clang/include/clang/Sema/ - copied from r235000, head/lib/clang/include/clang/Sema/ projects/diffused_head/lib/clang/libclangedit/ - copied from r235000, head/lib/clang/libclangedit/ projects/diffused_head/lib/clang/libllvmmipsasmparser/ - copied from r235000, head/lib/clang/libllvmmipsasmparser/ projects/diffused_head/lib/clang/libllvmvectorize/ - copied from r235000, head/lib/clang/libllvmvectorize/ projects/diffused_head/lib/csu/common/ignore_init.c - copied unchanged from r235000, head/lib/csu/common/ignore_init.c projects/diffused_head/lib/csu/common/notes.h - copied unchanged from r235000, head/lib/csu/common/notes.h projects/diffused_head/lib/libc/arm/gen/__aeabi_read_tp.S - copied unchanged from r235000, head/lib/libc/arm/gen/__aeabi_read_tp.S projects/diffused_head/lib/libc/locale/ctype_l.3 - copied unchanged from r235000, head/lib/libc/locale/ctype_l.3 projects/diffused_head/lib/libc/stdlib/jemalloc/ - copied from r235000, head/lib/libc/stdlib/jemalloc/ projects/diffused_head/lib/libc/stdlib/reallocf.3 - copied unchanged from r235000, head/lib/libc/stdlib/reallocf.3 projects/diffused_head/lib/libcxxrt/Version.map - copied unchanged from r235000, head/lib/libcxxrt/Version.map projects/diffused_head/lib/libedit/edit/readline/tilde.h - copied unchanged from r235000, head/lib/libedit/edit/readline/tilde.h projects/diffused_head/lib/libpmc/pmc.mips24k.3 - copied unchanged from r235000, head/lib/libpmc/pmc.mips24k.3 projects/diffused_head/lib/libpmc/pmc.octeon.3 - copied unchanged from r235000, head/lib/libpmc/pmc.octeon.3 projects/diffused_head/lib/libpmc/pmc.sandybridge.3 - copied unchanged from r235000, head/lib/libpmc/pmc.sandybridge.3 projects/diffused_head/lib/libpmc/pmc.sandybridgeuc.3 - copied unchanged from r235000, head/lib/libpmc/pmc.sandybridgeuc.3 projects/diffused_head/lib/libpmc/pmc.soft.3 - copied unchanged from r235000, head/lib/libpmc/pmc.soft.3 projects/diffused_head/lib/libstdbuf/ - copied from r235000, head/lib/libstdbuf/ projects/diffused_head/share/examples/csh/ - copied from r235000, head/share/examples/csh/ projects/diffused_head/share/man/man4/snd_hdspe.4 - copied unchanged from r235000, head/share/man/man4/snd_hdspe.4 projects/diffused_head/share/man/man4/wbwd.4 - copied unchanged from r235000, head/share/man/man4/wbwd.4 projects/diffused_head/sys/amd64/include/npx.h - copied unchanged from r235000, head/sys/amd64/include/npx.h projects/diffused_head/sys/arm/conf/GUMSTIX-QEMU - copied unchanged from r235000, head/sys/arm/conf/GUMSTIX-QEMU projects/diffused_head/sys/boot/sparc64/zfsboot/ - copied from r235000, head/sys/boot/sparc64/zfsboot/ projects/diffused_head/sys/boot/sparc64/zfsloader/ - copied from r235000, head/sys/boot/sparc64/zfsloader/ projects/diffused_head/sys/cddl/contrib/opensolaris/uts/mips/ - copied from r235000, head/sys/cddl/contrib/opensolaris/uts/mips/ projects/diffused_head/sys/cddl/dev/dtrace/mips/ - copied from r235000, head/sys/cddl/dev/dtrace/mips/ projects/diffused_head/sys/contrib/dev/acpica/compiler/aslsupport.l - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/aslsupport.l projects/diffused_head/sys/contrib/dev/acpica/compiler/preprocess.h - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/preprocess.h projects/diffused_head/sys/contrib/dev/acpica/compiler/prexpress.c - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prexpress.c projects/diffused_head/sys/contrib/dev/acpica/compiler/prmacros.c - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prmacros.c projects/diffused_head/sys/contrib/dev/acpica/compiler/prparser.l - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prparser.l projects/diffused_head/sys/contrib/dev/acpica/compiler/prparser.y - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prparser.y projects/diffused_head/sys/contrib/dev/acpica/compiler/prscan.c - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prscan.c projects/diffused_head/sys/contrib/dev/acpica/compiler/prutils.c - copied unchanged from r235000, head/sys/contrib/dev/acpica/compiler/prutils.c projects/diffused_head/sys/contrib/dev/ral/microcode.h - copied unchanged from r235000, head/sys/contrib/dev/ral/microcode.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ciu2-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-ciu2-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-endor-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-endor-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-eoi-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-eoi-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-cfg.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-helper-cfg.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-cfg.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-helper-cfg.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-ilk.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-helper-ilk.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-ilk.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-helper-ilk.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-hfa.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-hfa.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-hfa.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-hfa.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ilk-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-ilk-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ilk.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-ilk.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ilk.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-ilk.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-iob1-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-iob1-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ipd.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-ipd.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-malloc/ - copied from r235000, head/sys/contrib/octeon-sdk/cvmx-malloc/ projects/diffused_head/sys/contrib/octeon-sdk/cvmx-profiler.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-profiler.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-profiler.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-profiler.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-qlm-tables.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-qlm-tables.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-qlm.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-qlm.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-qlm.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-qlm.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-resources.config - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-resources.config projects/diffused_head/sys/contrib/octeon-sdk/cvmx-shared-linux-n32.ld - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-shared-linux-n32.ld projects/diffused_head/sys/contrib/octeon-sdk/cvmx-shared-linux-o32.ld - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-shared-linux-o32.ld projects/diffused_head/sys/contrib/octeon-sdk/cvmx-shared-linux.ld - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-shared-linux.ld projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sso-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-sso-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-trax-defs.h - copied unchanged from r235000, head/sys/contrib/octeon-sdk/cvmx-trax-defs.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-feature.c - copied unchanged from r235000, head/sys/contrib/octeon-sdk/octeon-feature.c projects/diffused_head/sys/dev/etherswitch/ - copied from r235000, head/sys/dev/etherswitch/ projects/diffused_head/sys/dev/gxemul/ - copied from r235000, head/sys/dev/gxemul/ projects/diffused_head/sys/dev/hwpmc/hwpmc_octeon.c - copied unchanged from r235000, head/sys/dev/hwpmc/hwpmc_octeon.c projects/diffused_head/sys/dev/hwpmc/hwpmc_soft.c - copied unchanged from r235000, head/sys/dev/hwpmc/hwpmc_soft.c projects/diffused_head/sys/dev/hwpmc/hwpmc_soft.h - copied unchanged from r235000, head/sys/dev/hwpmc/hwpmc_soft.h projects/diffused_head/sys/dev/iicbus/ds1374.c - copied unchanged from r235000, head/sys/dev/iicbus/ds1374.c projects/diffused_head/sys/dev/iicbus/iicoc.c - copied unchanged from r235000, head/sys/dev/iicbus/iicoc.c projects/diffused_head/sys/dev/iicbus/iicoc.h - copied unchanged from r235000, head/sys/dev/iicbus/iicoc.h projects/diffused_head/sys/dev/iicbus/pcf8563.c - copied unchanged from r235000, head/sys/dev/iicbus/pcf8563.c projects/diffused_head/sys/dev/iicbus/pcf8563reg.h - copied unchanged from r235000, head/sys/dev/iicbus/pcf8563reg.h projects/diffused_head/sys/dev/mfi/mfi_syspd.c - copied unchanged from r235000, head/sys/dev/mfi/mfi_syspd.c projects/diffused_head/sys/dev/mfi/mfi_tbolt.c - copied unchanged from r235000, head/sys/dev/mfi/mfi_tbolt.c projects/diffused_head/sys/dev/mpt/mpilib/mpi_log_fc.h - copied unchanged from r235000, head/sys/dev/mpt/mpilib/mpi_log_fc.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_log_sas.h - copied unchanged from r235000, head/sys/dev/mpt/mpilib/mpi_log_sas.h projects/diffused_head/sys/dev/netmap/netmap_mem1.c - copied unchanged from r235000, head/sys/dev/netmap/netmap_mem1.c projects/diffused_head/sys/dev/netmap/netmap_mem2.c - copied unchanged from r235000, head/sys/dev/netmap/netmap_mem2.c projects/diffused_head/sys/dev/sound/pci/hdspe-pcm.c - copied unchanged from r235000, head/sys/dev/sound/pci/hdspe-pcm.c projects/diffused_head/sys/dev/sound/pci/hdspe.c - copied unchanged from r235000, head/sys/dev/sound/pci/hdspe.c projects/diffused_head/sys/dev/sound/pci/hdspe.h - copied unchanged from r235000, head/sys/dev/sound/pci/hdspe.h projects/diffused_head/sys/dev/uart/uart_cpu_x86.c - copied unchanged from r235000, head/sys/dev/uart/uart_cpu_x86.c projects/diffused_head/sys/dev/wbwd/ - copied from r235000, head/sys/dev/wbwd/ projects/diffused_head/sys/geom/part/g_part_ldm.c - copied unchanged from r235000, head/sys/geom/part/g_part_ldm.c projects/diffused_head/sys/geom/raid/md_ddf.c - copied unchanged from r235000, head/sys/geom/raid/md_ddf.c projects/diffused_head/sys/geom/raid/md_ddf.h - copied unchanged from r235000, head/sys/geom/raid/md_ddf.h projects/diffused_head/sys/geom/raid/tr_raid5.c - copied unchanged from r235000, head/sys/geom/raid/tr_raid5.c projects/diffused_head/sys/mips/atheros/ar71xx_fixup.c - copied unchanged from r235000, head/sys/mips/atheros/ar71xx_fixup.c projects/diffused_head/sys/mips/atheros/ar71xx_fixup.h - copied unchanged from r235000, head/sys/mips/atheros/ar71xx_fixup.h projects/diffused_head/sys/mips/cavium/octeon_irq.h - copied unchanged from r235000, head/sys/mips/cavium/octeon_irq.h projects/diffused_head/sys/mips/cavium/octeon_pmc.c - copied unchanged from r235000, head/sys/mips/cavium/octeon_pmc.c projects/diffused_head/sys/mips/conf/AP94 - copied unchanged from r235000, head/sys/mips/conf/AP94 projects/diffused_head/sys/mips/conf/AP94.hints - copied unchanged from r235000, head/sys/mips/conf/AP94.hints projects/diffused_head/sys/mips/conf/AP96 - copied unchanged from r235000, head/sys/mips/conf/AP96 projects/diffused_head/sys/mips/conf/AP96.hints - copied unchanged from r235000, head/sys/mips/conf/AP96.hints projects/diffused_head/sys/mips/conf/GXEMUL - copied unchanged from r235000, head/sys/mips/conf/GXEMUL projects/diffused_head/sys/mips/conf/GXEMUL.hints - copied unchanged from r235000, head/sys/mips/conf/GXEMUL.hints projects/diffused_head/sys/mips/conf/XLP.hints - copied unchanged from r235000, head/sys/mips/conf/XLP.hints projects/diffused_head/sys/mips/gxemul/ - copied from r235000, head/sys/mips/gxemul/ projects/diffused_head/sys/mips/include/tls.h - copied unchanged from r235000, head/sys/mips/include/tls.h projects/diffused_head/sys/mips/mips/freebsd32_machdep.c - copied unchanged from r235000, head/sys/mips/mips/freebsd32_machdep.c projects/diffused_head/sys/mips/mips/libkern_machdep.c - copied unchanged from r235000, head/sys/mips/mips/libkern_machdep.c projects/diffused_head/sys/mips/nlm/board_cpld.c - copied unchanged from r235000, head/sys/mips/nlm/board_cpld.c projects/diffused_head/sys/mips/nlm/board_eeprom.c - copied unchanged from r235000, head/sys/mips/nlm/board_eeprom.c projects/diffused_head/sys/mips/nlm/dev/ - copied from r235000, head/sys/mips/nlm/dev/ projects/diffused_head/sys/mips/nlm/hal/gbu.h - copied unchanged from r235000, head/sys/mips/nlm/hal/gbu.h projects/diffused_head/sys/mips/nlm/hal/interlaken.h - copied unchanged from r235000, head/sys/mips/nlm/hal/interlaken.h projects/diffused_head/sys/mips/nlm/hal/mdio.h - copied unchanged from r235000, head/sys/mips/nlm/hal/mdio.h projects/diffused_head/sys/mips/nlm/hal/nae.h - copied unchanged from r235000, head/sys/mips/nlm/hal/nae.h projects/diffused_head/sys/mips/nlm/hal/nlmsaelib.h - copied unchanged from r235000, head/sys/mips/nlm/hal/nlmsaelib.h projects/diffused_head/sys/mips/nlm/hal/poe.h - copied unchanged from r235000, head/sys/mips/nlm/hal/poe.h projects/diffused_head/sys/mips/nlm/hal/sgmii.h - copied unchanged from r235000, head/sys/mips/nlm/hal/sgmii.h projects/diffused_head/sys/mips/nlm/hal/ucore_loader.h - copied unchanged from r235000, head/sys/mips/nlm/hal/ucore_loader.h projects/diffused_head/sys/mips/nlm/hal/xaui.h - copied unchanged from r235000, head/sys/mips/nlm/hal/xaui.h projects/diffused_head/sys/modules/acl_nfs4/ - copied from r235000, head/sys/modules/acl_nfs4/ projects/diffused_head/sys/modules/acl_posix1e/ - copied from r235000, head/sys/modules/acl_posix1e/ projects/diffused_head/sys/modules/geom/geom_part/geom_part_ldm/ - copied from r235000, head/sys/modules/geom/geom_part/geom_part_ldm/ projects/diffused_head/sys/modules/ralfw/rt2860/ - copied from r235000, head/sys/modules/ralfw/rt2860/ projects/diffused_head/sys/modules/sound/driver/hdspe/ - copied from r235000, head/sys/modules/sound/driver/hdspe/ projects/diffused_head/sys/modules/usb/dwc_otg/ - copied from r235000, head/sys/modules/usb/dwc_otg/ projects/diffused_head/sys/modules/wbwd/ - copied from r235000, head/sys/modules/wbwd/ projects/diffused_head/sys/powerpc/powermac/atibl.c - copied unchanged from r235000, head/sys/powerpc/powermac/atibl.c projects/diffused_head/sys/x86/include/_limits.h - copied unchanged from r235000, head/sys/x86/include/_limits.h projects/diffused_head/sys/x86/include/_stdint.h - copied unchanged from r235000, head/sys/x86/include/_stdint.h projects/diffused_head/sys/x86/include/_types.h - copied unchanged from r235000, head/sys/x86/include/_types.h projects/diffused_head/sys/x86/include/endian.h - copied unchanged from r235000, head/sys/x86/include/endian.h projects/diffused_head/sys/x86/include/float.h - copied unchanged from r235000, head/sys/x86/include/float.h projects/diffused_head/sys/x86/include/fpu.h - copied unchanged from r235000, head/sys/x86/include/fpu.h projects/diffused_head/sys/x86/include/legacyvar.h - copied unchanged from r235000, head/sys/x86/include/legacyvar.h projects/diffused_head/sys/x86/include/psl.h - copied unchanged from r235000, head/sys/x86/include/psl.h projects/diffused_head/sys/x86/include/ptrace.h - copied unchanged from r235000, head/sys/x86/include/ptrace.h projects/diffused_head/sys/x86/include/reg.h - copied unchanged from r235000, head/sys/x86/include/reg.h projects/diffused_head/sys/x86/include/segments.h - copied unchanged from r235000, head/sys/x86/include/segments.h projects/diffused_head/sys/x86/include/setjmp.h - copied unchanged from r235000, head/sys/x86/include/setjmp.h projects/diffused_head/sys/x86/include/specialreg.h - copied unchanged from r235000, head/sys/x86/include/specialreg.h projects/diffused_head/sys/x86/include/stdarg.h - copied unchanged from r235000, head/sys/x86/include/stdarg.h projects/diffused_head/sys/x86/include/sysarch.h - copied unchanged from r235000, head/sys/x86/include/sysarch.h projects/diffused_head/sys/x86/include/trap.h - copied unchanged from r235000, head/sys/x86/include/trap.h projects/diffused_head/sys/x86/x86/intr_machdep.c - copied unchanged from r235000, head/sys/x86/x86/intr_machdep.c projects/diffused_head/sys/x86/x86/legacy.c - copied unchanged from r235000, head/sys/x86/x86/legacy.c projects/diffused_head/tools/build/options/WITH_CLANG_IS_CC - copied unchanged from r235000, head/tools/build/options/WITH_CLANG_IS_CC projects/diffused_head/tools/build/options/WITH_SHARED_TOOLCHAIN - copied unchanged from r235000, head/tools/build/options/WITH_SHARED_TOOLCHAIN projects/diffused_head/tools/regression/bin/sh/expansion/arith12.0 - copied unchanged from r235000, head/tools/regression/bin/sh/expansion/arith12.0 projects/diffused_head/tools/regression/usb/ - copied from r235000, head/tools/regression/usb/ projects/diffused_head/tools/regression/usr.bin/m4/args.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/args.m4 projects/diffused_head/tools/regression/usr.bin/m4/args2.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/args2.m4 projects/diffused_head/tools/regression/usr.bin/m4/comments.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/comments.m4 projects/diffused_head/tools/regression/usr.bin/m4/esyscmd.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/esyscmd.m4 projects/diffused_head/tools/regression/usr.bin/m4/eval.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/eval.m4 projects/diffused_head/tools/regression/usr.bin/m4/ff_after_dnl.m4.uu - copied unchanged from r235000, head/tools/regression/usr.bin/m4/ff_after_dnl.m4.uu projects/diffused_head/tools/regression/usr.bin/m4/gnueval.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnueval.m4 projects/diffused_head/tools/regression/usr.bin/m4/gnuformat.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnuformat.m4 projects/diffused_head/tools/regression/usr.bin/m4/gnupatterns.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnupatterns.m4 projects/diffused_head/tools/regression/usr.bin/m4/gnupatterns2.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnupatterns2.m4 projects/diffused_head/tools/regression/usr.bin/m4/gnuprefix.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnuprefix.m4 projects/diffused_head/tools/regression/usr.bin/m4/gnusofterror.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/gnusofterror.m4 projects/diffused_head/tools/regression/usr.bin/m4/includes.aux - copied unchanged from r235000, head/tools/regression/usr.bin/m4/includes.aux projects/diffused_head/tools/regression/usr.bin/m4/includes.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/includes.m4 projects/diffused_head/tools/regression/usr.bin/m4/m4wrap3.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/m4wrap3.m4 projects/diffused_head/tools/regression/usr.bin/m4/patterns.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/patterns.m4 projects/diffused_head/tools/regression/usr.bin/m4/quotes.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/quotes.m4 projects/diffused_head/tools/regression/usr.bin/m4/redef.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/redef.m4 projects/diffused_head/tools/regression/usr.bin/m4/regress.args.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.args.out projects/diffused_head/tools/regression/usr.bin/m4/regress.args2.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.args2.out projects/diffused_head/tools/regression/usr.bin/m4/regress.comments.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.comments.out projects/diffused_head/tools/regression/usr.bin/m4/regress.esyscmd.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.esyscmd.out projects/diffused_head/tools/regression/usr.bin/m4/regress.eval.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.eval.out projects/diffused_head/tools/regression/usr.bin/m4/regress.ff_after_dnl.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.ff_after_dnl.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnueval.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnueval.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnuformat.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnuformat.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnupatterns.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnupatterns.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnupatterns2.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnupatterns2.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnuprefix.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnuprefix.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnusofterror.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnusofterror.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gnutranslit2.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.gnutranslit2.out projects/diffused_head/tools/regression/usr.bin/m4/regress.includes.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.includes.out projects/diffused_head/tools/regression/usr.bin/m4/regress.m4wrap3.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.m4wrap3.out projects/diffused_head/tools/regression/usr.bin/m4/regress.patterns.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.patterns.out projects/diffused_head/tools/regression/usr.bin/m4/regress.quotes.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.quotes.out projects/diffused_head/tools/regression/usr.bin/m4/regress.redef.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.redef.out projects/diffused_head/tools/regression/usr.bin/m4/regress.strangequotes.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.strangequotes.out projects/diffused_head/tools/regression/usr.bin/m4/regress.translit.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.translit.out projects/diffused_head/tools/regression/usr.bin/m4/regress.translit2.out - copied unchanged from r235000, head/tools/regression/usr.bin/m4/regress.translit2.out projects/diffused_head/tools/regression/usr.bin/m4/strangequotes.m4.uu - copied unchanged from r235000, head/tools/regression/usr.bin/m4/strangequotes.m4.uu projects/diffused_head/tools/regression/usr.bin/m4/translit.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/translit.m4 projects/diffused_head/tools/regression/usr.bin/m4/translit2.m4 - copied unchanged from r235000, head/tools/regression/usr.bin/m4/translit2.m4 projects/diffused_head/tools/tools/ath/athsurvey/ - copied from r235000, head/tools/tools/ath/athsurvey/ projects/diffused_head/usr.bin/stdbuf/ - copied from r235000, head/usr.bin/stdbuf/ projects/diffused_head/usr.sbin/jail/command.c - copied unchanged from r235000, head/usr.sbin/jail/command.c projects/diffused_head/usr.sbin/jail/config.c - copied unchanged from r235000, head/usr.sbin/jail/config.c projects/diffused_head/usr.sbin/jail/jail.conf.5 - copied unchanged from r235000, head/usr.sbin/jail/jail.conf.5 projects/diffused_head/usr.sbin/jail/jaillex.l - copied unchanged from r235000, head/usr.sbin/jail/jaillex.l projects/diffused_head/usr.sbin/jail/jailp.h - copied unchanged from r235000, head/usr.sbin/jail/jailp.h projects/diffused_head/usr.sbin/jail/jailparse.y - copied unchanged from r235000, head/usr.sbin/jail/jailparse.y projects/diffused_head/usr.sbin/jail/state.c - copied unchanged from r235000, head/usr.sbin/jail/state.c projects/diffused_head/usr.sbin/pkg/ - copied from r235000, head/usr.sbin/pkg/ projects/diffused_head/usr.sbin/wpa/Makefile.crypto - copied unchanged from r235000, head/usr.sbin/wpa/Makefile.crypto Replaced: projects/diffused_head/contrib/com_err/ChangeLog - copied unchanged from r235000, head/contrib/com_err/ChangeLog Deleted: projects/diffused_head/Makefile.mips projects/diffused_head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.html projects/diffused_head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.pdf projects/diffused_head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.txt projects/diffused_head/contrib/bind9/bin/rndc/unix/ projects/diffused_head/contrib/bind9/release-notes.css projects/diffused_head/contrib/com_err/Makefile.am projects/diffused_head/contrib/com_err/Makefile.in projects/diffused_head/contrib/com_err/getarg.c projects/diffused_head/contrib/com_err/getarg.h projects/diffused_head/contrib/com_err/lex.c projects/diffused_head/contrib/com_err/parse.c projects/diffused_head/contrib/com_err/parse.h projects/diffused_head/contrib/file/Magdir/alpha projects/diffused_head/contrib/file/Magdir/psion projects/diffused_head/contrib/file/patchlevel.h projects/diffused_head/contrib/libarchive/libarchive/archive_hash.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_all.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_compress.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_gzip.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_none.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_program.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_rpm.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_uu.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_compression_xz.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_compress.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_gzip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_none.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_program.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_compression_xz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_basic.c projects/diffused_head/contrib/libcxxrt/typeinfo projects/diffused_head/contrib/llvm/include/llvm/ADT/VectorExtras.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/BinaryObject.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ObjectCodeEmitter.h projects/diffused_head/contrib/llvm/include/llvm/DebugInfoProbe.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsAlpha.td projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BasicInliner.h projects/diffused_head/contrib/llvm/lib/CodeGen/ELF.h projects/diffused_head/contrib/llvm/lib/CodeGen/ELFCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ELFCodeEmitter.h projects/diffused_head/contrib/llvm/lib/CodeGen/ELFWriter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ELFWriter.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeEdit.h projects/diffused_head/contrib/llvm/lib/CodeGen/ObjectCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocLinearScan.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGEmit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Splitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Splitter.h projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegRewriter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegRewriter.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/Intercept.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp projects/diffused_head/contrib/llvm/lib/MC/ELFObjectWriter.h projects/diffused_head/contrib/llvm/lib/MC/MCELFStreamer.h projects/diffused_head/contrib/llvm/lib/MC/MCLoggingStreamer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMGlobalMerge.cpp projects/diffused_head/contrib/llvm/lib/Target/Alpha/ projects/diffused_head/contrib/llvm/lib/Target/Blackfin/ projects/diffused_head/contrib/llvm/lib/Target/CBackend/ projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h projects/diffused_head/contrib/llvm/lib/Target/SystemZ/ projects/diffused_head/contrib/llvm/lib/Target/TargetFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BasicInliner.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/bugpoint/Makefile projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/UsuallyTinyPtrVector.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Support/SaveAndRestore.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DelayedCleanupPool.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/HostInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Index/ projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/MultiInitializer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngineBuilders.h projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGException.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGTemporaries.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Index/ projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/MultiInitializer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AggExprVisitor.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/Makefile projects/diffused_head/contrib/llvm/tools/llc/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llc/Makefile projects/diffused_head/contrib/llvm/tools/lli/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/lli/Makefile projects/diffused_head/contrib/llvm/tools/llvm-ar/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-ar/Makefile projects/diffused_head/contrib/llvm/tools/llvm-as/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-as/Makefile projects/diffused_head/contrib/llvm/tools/llvm-bcanalyzer/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-bcanalyzer/Makefile projects/diffused_head/contrib/llvm/tools/llvm-diff/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-diff/Makefile projects/diffused_head/contrib/llvm/tools/llvm-dis/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-dis/Makefile projects/diffused_head/contrib/llvm/tools/llvm-extract/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-extract/Makefile projects/diffused_head/contrib/llvm/tools/llvm-ld/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-ld/Makefile projects/diffused_head/contrib/llvm/tools/llvm-link/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-link/Makefile projects/diffused_head/contrib/llvm/tools/llvm-mc/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-mc/Makefile projects/diffused_head/contrib/llvm/tools/llvm-nm/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-nm/Makefile projects/diffused_head/contrib/llvm/tools/llvm-objdump/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-objdump/Makefile projects/diffused_head/contrib/llvm/tools/llvm-prof/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-prof/Makefile projects/diffused_head/contrib/llvm/tools/llvm-ranlib/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-ranlib/Makefile projects/diffused_head/contrib/llvm/tools/llvm-rtdyld/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-rtdyld/Makefile projects/diffused_head/contrib/llvm/tools/llvm-stub/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/llvm-stub/Makefile projects/diffused_head/contrib/llvm/tools/macho-dump/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/macho-dump/Makefile projects/diffused_head/contrib/llvm/tools/opt/CMakeLists.txt projects/diffused_head/contrib/llvm/tools/opt/Makefile projects/diffused_head/contrib/llvm/utils/TableGen/ARMDecoderEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/ARMDecoderEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/InstrEnumEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/InstrEnumEmitter.h projects/diffused_head/crypto/heimdal/appl/ftp/ftp/krb4.c projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/krb4.c projects/diffused_head/crypto/heimdal/appl/login/login_protos.h projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/kerberos.c projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/krb4encpwd.c projects/diffused_head/crypto/heimdal/cf/ projects/diffused_head/crypto/heimdal/configure.in projects/diffused_head/crypto/heimdal/include/make_crypto.c projects/diffused_head/crypto/heimdal/kcm/cursor.c projects/diffused_head/crypto/heimdal/kcm/kcm_protos.h projects/diffused_head/crypto/heimdal/kdc/524.c projects/diffused_head/crypto/heimdal/kdc/kadb.h projects/diffused_head/crypto/heimdal/kdc/kaserver.c projects/diffused_head/crypto/heimdal/kdc/kerberos4.c projects/diffused_head/crypto/heimdal/kdc/v4_dump.c projects/diffused_head/crypto/heimdal/kuser/kimpersonate.1 projects/diffused_head/crypto/heimdal/lib/45/ projects/diffused_head/crypto/heimdal/lib/asn1/CMS.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/k5.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/parse.c projects/diffused_head/crypto/heimdal/lib/asn1/parse.h projects/diffused_head/crypto/heimdal/lib/asn1/parse.y projects/diffused_head/crypto/heimdal/lib/auth/ projects/diffused_head/crypto/heimdal/lib/gssapi/gss.c projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/v1.c projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/digest.c projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_cred.c projects/diffused_head/crypto/heimdal/lib/hx509/data/ projects/diffused_head/crypto/heimdal/lib/kafs/README.dlfcn projects/diffused_head/crypto/heimdal/lib/kafs/afskrb.c projects/diffused_head/crypto/heimdal/lib/kafs/dlfcn.c projects/diffused_head/crypto/heimdal/lib/kafs/dlfcn.h projects/diffused_head/crypto/heimdal/lib/krb5/config_file_netinfo.c projects/diffused_head/crypto/heimdal/lib/krb5/get_in_tkt_pw.c projects/diffused_head/crypto/heimdal/lib/krb5/get_in_tkt_with_keytab.c projects/diffused_head/crypto/heimdal/lib/krb5/get_in_tkt_with_skey.c projects/diffused_head/crypto/heimdal/lib/krb5/heim_threads.h projects/diffused_head/crypto/heimdal/lib/krb5/keytab_krb4.c projects/diffused_head/crypto/heimdal/lib/krb5/krb5.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_address.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_ccache.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_compare_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_config.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_context.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_crypto_init.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_data.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_expand_hostname.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_keyblock.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_keytab.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_kuserok.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_storage.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_ticket.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_unparse_name.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_warn.3 projects/diffused_head/crypto/heimdal/lib/krb5/name-45-test.c projects/diffused_head/crypto/heimdal/lib/krb5/v4_glue.c projects/diffused_head/crypto/heimdal/lib/roken/snprintf-test.h projects/diffused_head/crypto/heimdal/lib/roken/vis.h projects/diffused_head/crypto/heimdal/lib/sl/lex.c projects/diffused_head/crypto/heimdal/lib/sl/lex.l projects/diffused_head/crypto/heimdal/lib/sl/make_cmds.c projects/diffused_head/crypto/heimdal/lib/sl/make_cmds.h projects/diffused_head/crypto/heimdal/lib/sl/parse.c projects/diffused_head/crypto/heimdal/lib/sl/parse.h projects/diffused_head/crypto/heimdal/lib/sl/parse.y projects/diffused_head/crypto/heimdal/lib/sl/ss.c projects/diffused_head/crypto/heimdal/lib/sl/ss.h projects/diffused_head/crypto/heimdal/lib/vers/make-print-version.c projects/diffused_head/crypto/heimdal/packages/ projects/diffused_head/crypto/heimdal/tests/ projects/diffused_head/crypto/heimdal/tools/heimdal-build.sh projects/diffused_head/include/_xlocale_ctype.h projects/diffused_head/kerberos5/lib/libgssapi_spnego/prefix.c projects/diffused_head/kerberos5/tools/make-print-version/ projects/diffused_head/kerberos5/usr.bin/klist/ projects/diffused_head/lib/clang/libclangindex/ projects/diffused_head/lib/libc/arm/gen/__aeabi_read_tp.c projects/diffused_head/lib/libc/stdlib/aligned_alloc.3 projects/diffused_head/lib/libc/stdlib/malloc.3 projects/diffused_head/lib/libc/stdlib/malloc.c projects/diffused_head/lib/libc/stdlib/ql.h projects/diffused_head/lib/libc/stdlib/qr.h projects/diffused_head/lib/libc/stdlib/rb.h projects/diffused_head/lib/libmd/md2.copyright projects/diffused_head/lib/libmd/md2.h projects/diffused_head/lib/libmd/md2c.c projects/diffused_head/lib/libpmc/pmc.mips.3 projects/diffused_head/sys/amd64/amd64/intr_machdep.c projects/diffused_head/sys/amd64/amd64/legacy.c projects/diffused_head/sys/amd64/include/legacyvar.h projects/diffused_head/sys/compat/ia32/ia32_reg.h projects/diffused_head/sys/contrib/dev/ral/rt2661_ucode.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr-db-support.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr-db.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr-db.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-custom.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-custom.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn30xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn31xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn38xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn38xxp2.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn50xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn52xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn52xxp1.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn56xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn56xxp1.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn58xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn58xxp1.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn63xx.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error-init-cn63xxp1.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-error.h projects/diffused_head/sys/dev/hwpmc/hwpmc_mips24k.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_inb.h projects/diffused_head/sys/dev/uart/uart_cpu_amd64.c projects/diffused_head/sys/dev/uart/uart_cpu_i386.c projects/diffused_head/sys/fs/fifofs/fifo.h projects/diffused_head/sys/i386/i386/intr_machdep.c projects/diffused_head/sys/i386/i386/legacy.c projects/diffused_head/sys/i386/include/legacyvar.h projects/diffused_head/sys/mips/include/bswap.h projects/diffused_head/sys/mips/include/clockvar.h projects/diffused_head/sys/mips/include/cputypes.h projects/diffused_head/sys/mips/include/iodev.h projects/diffused_head/sys/mips/include/mp_watchdog.h projects/diffused_head/sys/mips/include/pci_cfgreg.h projects/diffused_head/sys/mips/include/ppireg.h projects/diffused_head/sys/mips/include/timerreg.h projects/diffused_head/sys/mips/mips/elf64_machdep.c projects/diffused_head/sys/mips/mips/mainbus.c projects/diffused_head/sys/mips/nlm/intern_dev.c projects/diffused_head/sys/mips/nlm/uart_pci_xlp.c projects/diffused_head/sys/pc98/include/legacyvar.h projects/diffused_head/sys/powerpc/powerpc/atomic.S projects/diffused_head/tools/regression/usr.bin/m4/regress.changecom.in projects/diffused_head/tools/regression/usr.bin/m4/regress.changecom.out projects/diffused_head/tools/regression/usr.bin/m4/regress.gchangecom.out projects/diffused_head/usr.bin/cpio/config_freebsd.h projects/diffused_head/usr.bin/tar/config_freebsd.h Modified: projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/df/df.1 projects/diffused_head/bin/expr/expr.1 projects/diffused_head/bin/expr/expr.y projects/diffused_head/bin/kenv/kenv.1 projects/diffused_head/bin/ps/ps.1 projects/diffused_head/bin/pwait/pwait.1 projects/diffused_head/bin/setfacl/setfacl.1 projects/diffused_head/bin/sh/jobs.c projects/diffused_head/bin/sh/sh.1 projects/diffused_head/bin/stty/stty.1 projects/diffused_head/cddl/compat/opensolaris/include/stdlib.h projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c projects/diffused_head/cddl/contrib/opensolaris/tools/ctf/cvt/ctf.c projects/diffused_head/cddl/contrib/opensolaris/tools/ctf/cvt/ctfmerge.c projects/diffused_head/cddl/contrib/opensolaris/tools/ctf/cvt/ctftools.h projects/diffused_head/cddl/contrib/opensolaris/tools/ctf/cvt/output.c projects/diffused_head/cddl/lib/Makefile projects/diffused_head/cddl/lib/libdtrace/Makefile projects/diffused_head/cddl/usr.sbin/Makefile projects/diffused_head/contrib/bind9/CHANGES projects/diffused_head/contrib/bind9/COPYRIGHT projects/diffused_head/contrib/bind9/FAQ.xml projects/diffused_head/contrib/bind9/Makefile.in projects/diffused_head/contrib/bind9/README projects/diffused_head/contrib/bind9/acconfig.h projects/diffused_head/contrib/bind9/bin/Makefile.in projects/diffused_head/contrib/bind9/bin/check/Makefile.in projects/diffused_head/contrib/bind9/bin/check/check-tool.c projects/diffused_head/contrib/bind9/bin/check/check-tool.h projects/diffused_head/contrib/bind9/bin/check/named-checkconf.8 projects/diffused_head/contrib/bind9/bin/check/named-checkconf.c projects/diffused_head/contrib/bind9/bin/check/named-checkconf.docbook projects/diffused_head/contrib/bind9/bin/check/named-checkconf.html projects/diffused_head/contrib/bind9/bin/check/named-checkzone.8 projects/diffused_head/contrib/bind9/bin/check/named-checkzone.c projects/diffused_head/contrib/bind9/bin/check/named-checkzone.docbook projects/diffused_head/contrib/bind9/bin/check/named-checkzone.html projects/diffused_head/contrib/bind9/bin/confgen/Makefile.in projects/diffused_head/contrib/bind9/bin/confgen/ddns-confgen.8 projects/diffused_head/contrib/bind9/bin/confgen/ddns-confgen.c projects/diffused_head/contrib/bind9/bin/confgen/ddns-confgen.docbook projects/diffused_head/contrib/bind9/bin/confgen/ddns-confgen.html projects/diffused_head/contrib/bind9/bin/confgen/include/confgen/os.h projects/diffused_head/contrib/bind9/bin/confgen/keygen.c projects/diffused_head/contrib/bind9/bin/confgen/keygen.h projects/diffused_head/contrib/bind9/bin/confgen/rndc-confgen.8 projects/diffused_head/contrib/bind9/bin/confgen/rndc-confgen.c projects/diffused_head/contrib/bind9/bin/confgen/rndc-confgen.docbook projects/diffused_head/contrib/bind9/bin/confgen/rndc-confgen.html projects/diffused_head/contrib/bind9/bin/confgen/unix/Makefile.in projects/diffused_head/contrib/bind9/bin/confgen/unix/os.c projects/diffused_head/contrib/bind9/bin/confgen/util.c projects/diffused_head/contrib/bind9/bin/confgen/util.h projects/diffused_head/contrib/bind9/bin/dig/Makefile.in projects/diffused_head/contrib/bind9/bin/dig/dig.1 projects/diffused_head/contrib/bind9/bin/dig/dig.c projects/diffused_head/contrib/bind9/bin/dig/dig.docbook projects/diffused_head/contrib/bind9/bin/dig/dig.html projects/diffused_head/contrib/bind9/bin/dig/dighost.c projects/diffused_head/contrib/bind9/bin/dig/host.1 projects/diffused_head/contrib/bind9/bin/dig/host.c projects/diffused_head/contrib/bind9/bin/dig/host.docbook projects/diffused_head/contrib/bind9/bin/dig/host.html projects/diffused_head/contrib/bind9/bin/dig/include/dig/dig.h projects/diffused_head/contrib/bind9/bin/dig/nslookup.1 projects/diffused_head/contrib/bind9/bin/dig/nslookup.c projects/diffused_head/contrib/bind9/bin/dig/nslookup.docbook projects/diffused_head/contrib/bind9/bin/dig/nslookup.html projects/diffused_head/contrib/bind9/bin/dnssec/Makefile.in projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keygen.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keygen.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keygen.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-keygen.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-revoke.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-revoke.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-revoke.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-revoke.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-settime.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-settime.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-settime.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-settime.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-signzone.8 projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-signzone.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-signzone.docbook projects/diffused_head/contrib/bind9/bin/dnssec/dnssec-signzone.html projects/diffused_head/contrib/bind9/bin/dnssec/dnssectool.c projects/diffused_head/contrib/bind9/bin/dnssec/dnssectool.h projects/diffused_head/contrib/bind9/bin/named/Makefile.in projects/diffused_head/contrib/bind9/bin/named/bind.keys.h projects/diffused_head/contrib/bind9/bin/named/bind9.xsl projects/diffused_head/contrib/bind9/bin/named/bind9.xsl.h projects/diffused_head/contrib/bind9/bin/named/builtin.c projects/diffused_head/contrib/bind9/bin/named/client.c projects/diffused_head/contrib/bind9/bin/named/config.c projects/diffused_head/contrib/bind9/bin/named/control.c projects/diffused_head/contrib/bind9/bin/named/controlconf.c projects/diffused_head/contrib/bind9/bin/named/convertxsl.pl projects/diffused_head/contrib/bind9/bin/named/include/dlz/dlz_dlopen_driver.h projects/diffused_head/contrib/bind9/bin/named/include/named/builtin.h projects/diffused_head/contrib/bind9/bin/named/include/named/client.h projects/diffused_head/contrib/bind9/bin/named/include/named/config.h projects/diffused_head/contrib/bind9/bin/named/include/named/control.h projects/diffused_head/contrib/bind9/bin/named/include/named/globals.h projects/diffused_head/contrib/bind9/bin/named/include/named/interfacemgr.h projects/diffused_head/contrib/bind9/bin/named/include/named/listenlist.h projects/diffused_head/contrib/bind9/bin/named/include/named/log.h projects/diffused_head/contrib/bind9/bin/named/include/named/logconf.h projects/diffused_head/contrib/bind9/bin/named/include/named/lwaddr.h projects/diffused_head/contrib/bind9/bin/named/include/named/lwdclient.h projects/diffused_head/contrib/bind9/bin/named/include/named/lwresd.h projects/diffused_head/contrib/bind9/bin/named/include/named/lwsearch.h projects/diffused_head/contrib/bind9/bin/named/include/named/main.h projects/diffused_head/contrib/bind9/bin/named/include/named/notify.h projects/diffused_head/contrib/bind9/bin/named/include/named/ns_smf_globals.h projects/diffused_head/contrib/bind9/bin/named/include/named/query.h projects/diffused_head/contrib/bind9/bin/named/include/named/server.h projects/diffused_head/contrib/bind9/bin/named/include/named/sortlist.h projects/diffused_head/contrib/bind9/bin/named/include/named/statschannel.h projects/diffused_head/contrib/bind9/bin/named/include/named/tkeyconf.h projects/diffused_head/contrib/bind9/bin/named/include/named/tsigconf.h projects/diffused_head/contrib/bind9/bin/named/include/named/types.h projects/diffused_head/contrib/bind9/bin/named/include/named/update.h projects/diffused_head/contrib/bind9/bin/named/include/named/xfrout.h projects/diffused_head/contrib/bind9/bin/named/include/named/zoneconf.h projects/diffused_head/contrib/bind9/bin/named/interfacemgr.c projects/diffused_head/contrib/bind9/bin/named/listenlist.c projects/diffused_head/contrib/bind9/bin/named/log.c projects/diffused_head/contrib/bind9/bin/named/logconf.c projects/diffused_head/contrib/bind9/bin/named/lwaddr.c projects/diffused_head/contrib/bind9/bin/named/lwdclient.c projects/diffused_head/contrib/bind9/bin/named/lwderror.c projects/diffused_head/contrib/bind9/bin/named/lwdgabn.c projects/diffused_head/contrib/bind9/bin/named/lwdgnba.c projects/diffused_head/contrib/bind9/bin/named/lwdgrbn.c projects/diffused_head/contrib/bind9/bin/named/lwdnoop.c projects/diffused_head/contrib/bind9/bin/named/lwresd.8 projects/diffused_head/contrib/bind9/bin/named/lwresd.c projects/diffused_head/contrib/bind9/bin/named/lwresd.docbook projects/diffused_head/contrib/bind9/bin/named/lwresd.html projects/diffused_head/contrib/bind9/bin/named/lwsearch.c projects/diffused_head/contrib/bind9/bin/named/main.c projects/diffused_head/contrib/bind9/bin/named/named.8 projects/diffused_head/contrib/bind9/bin/named/named.conf.5 projects/diffused_head/contrib/bind9/bin/named/named.conf.docbook projects/diffused_head/contrib/bind9/bin/named/named.conf.html projects/diffused_head/contrib/bind9/bin/named/named.docbook projects/diffused_head/contrib/bind9/bin/named/named.html projects/diffused_head/contrib/bind9/bin/named/notify.c projects/diffused_head/contrib/bind9/bin/named/query.c projects/diffused_head/contrib/bind9/bin/named/server.c projects/diffused_head/contrib/bind9/bin/named/sortlist.c projects/diffused_head/contrib/bind9/bin/named/statschannel.c projects/diffused_head/contrib/bind9/bin/named/tkeyconf.c projects/diffused_head/contrib/bind9/bin/named/tsigconf.c projects/diffused_head/contrib/bind9/bin/named/unix/Makefile.in projects/diffused_head/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c projects/diffused_head/contrib/bind9/bin/named/unix/include/named/os.h projects/diffused_head/contrib/bind9/bin/named/unix/os.c projects/diffused_head/contrib/bind9/bin/named/update.c projects/diffused_head/contrib/bind9/bin/named/xfrout.c projects/diffused_head/contrib/bind9/bin/named/zoneconf.c projects/diffused_head/contrib/bind9/bin/nsupdate/Makefile.in projects/diffused_head/contrib/bind9/bin/nsupdate/nsupdate.1 projects/diffused_head/contrib/bind9/bin/nsupdate/nsupdate.c projects/diffused_head/contrib/bind9/bin/nsupdate/nsupdate.docbook projects/diffused_head/contrib/bind9/bin/nsupdate/nsupdate.html projects/diffused_head/contrib/bind9/bin/rndc/Makefile.in projects/diffused_head/contrib/bind9/bin/rndc/include/rndc/os.h projects/diffused_head/contrib/bind9/bin/rndc/rndc.8 projects/diffused_head/contrib/bind9/bin/rndc/rndc.c projects/diffused_head/contrib/bind9/bin/rndc/rndc.conf projects/diffused_head/contrib/bind9/bin/rndc/rndc.conf.5 projects/diffused_head/contrib/bind9/bin/rndc/rndc.conf.docbook projects/diffused_head/contrib/bind9/bin/rndc/rndc.conf.html projects/diffused_head/contrib/bind9/bin/rndc/rndc.docbook projects/diffused_head/contrib/bind9/bin/rndc/rndc.html projects/diffused_head/contrib/bind9/bin/rndc/util.c projects/diffused_head/contrib/bind9/bin/rndc/util.h projects/diffused_head/contrib/bind9/bin/tools/Makefile.in projects/diffused_head/contrib/bind9/bin/tools/arpaname.1 projects/diffused_head/contrib/bind9/bin/tools/arpaname.c projects/diffused_head/contrib/bind9/bin/tools/arpaname.docbook projects/diffused_head/contrib/bind9/bin/tools/arpaname.html projects/diffused_head/contrib/bind9/bin/tools/genrandom.8 projects/diffused_head/contrib/bind9/bin/tools/genrandom.c projects/diffused_head/contrib/bind9/bin/tools/genrandom.docbook projects/diffused_head/contrib/bind9/bin/tools/genrandom.html projects/diffused_head/contrib/bind9/bin/tools/isc-hmac-fixup.8 projects/diffused_head/contrib/bind9/bin/tools/isc-hmac-fixup.c projects/diffused_head/contrib/bind9/bin/tools/isc-hmac-fixup.docbook projects/diffused_head/contrib/bind9/bin/tools/isc-hmac-fixup.html projects/diffused_head/contrib/bind9/bin/tools/named-journalprint.8 projects/diffused_head/contrib/bind9/bin/tools/named-journalprint.c projects/diffused_head/contrib/bind9/bin/tools/named-journalprint.docbook projects/diffused_head/contrib/bind9/bin/tools/named-journalprint.html projects/diffused_head/contrib/bind9/bin/tools/nsec3hash.8 projects/diffused_head/contrib/bind9/bin/tools/nsec3hash.c projects/diffused_head/contrib/bind9/bin/tools/nsec3hash.docbook projects/diffused_head/contrib/bind9/bin/tools/nsec3hash.html projects/diffused_head/contrib/bind9/config.h.in projects/diffused_head/contrib/bind9/config.threads.in projects/diffused_head/contrib/bind9/configure.in projects/diffused_head/contrib/bind9/doc/Makefile.in projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM-book.xml projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch01.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch02.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch03.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch04.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch05.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch06.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch07.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch08.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch09.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.ch10.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.html projects/diffused_head/contrib/bind9/doc/arm/Bv9ARM.pdf projects/diffused_head/contrib/bind9/doc/arm/Makefile.in projects/diffused_head/contrib/bind9/doc/arm/README-SGML projects/diffused_head/contrib/bind9/doc/arm/dnssec.xml projects/diffused_head/contrib/bind9/doc/arm/libdns.xml projects/diffused_head/contrib/bind9/doc/arm/man.arpaname.html projects/diffused_head/contrib/bind9/doc/arm/man.ddns-confgen.html projects/diffused_head/contrib/bind9/doc/arm/man.dig.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-keygen.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-revoke.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-settime.html projects/diffused_head/contrib/bind9/doc/arm/man.dnssec-signzone.html projects/diffused_head/contrib/bind9/doc/arm/man.genrandom.html projects/diffused_head/contrib/bind9/doc/arm/man.host.html projects/diffused_head/contrib/bind9/doc/arm/man.isc-hmac-fixup.html projects/diffused_head/contrib/bind9/doc/arm/man.named-checkconf.html projects/diffused_head/contrib/bind9/doc/arm/man.named-checkzone.html projects/diffused_head/contrib/bind9/doc/arm/man.named-journalprint.html projects/diffused_head/contrib/bind9/doc/arm/man.named.html projects/diffused_head/contrib/bind9/doc/arm/man.nsec3hash.html projects/diffused_head/contrib/bind9/doc/arm/man.nsupdate.html projects/diffused_head/contrib/bind9/doc/arm/man.rndc-confgen.html projects/diffused_head/contrib/bind9/doc/arm/man.rndc.conf.html projects/diffused_head/contrib/bind9/doc/arm/man.rndc.html projects/diffused_head/contrib/bind9/doc/arm/managed-keys.xml projects/diffused_head/contrib/bind9/doc/arm/pkcs11.xml projects/diffused_head/contrib/bind9/doc/misc/Makefile.in projects/diffused_head/contrib/bind9/doc/misc/dnssec projects/diffused_head/contrib/bind9/doc/misc/format-options.pl projects/diffused_head/contrib/bind9/doc/misc/ipv6 projects/diffused_head/contrib/bind9/doc/misc/migration projects/diffused_head/contrib/bind9/doc/misc/migration-4to9 projects/diffused_head/contrib/bind9/doc/misc/options projects/diffused_head/contrib/bind9/doc/misc/rfc-compliance projects/diffused_head/contrib/bind9/doc/misc/roadmap projects/diffused_head/contrib/bind9/doc/misc/sdb projects/diffused_head/contrib/bind9/doc/misc/sort-options.pl projects/diffused_head/contrib/bind9/isc-config.sh.in projects/diffused_head/contrib/bind9/lib/Makefile.in projects/diffused_head/contrib/bind9/lib/bind9/Makefile.in projects/diffused_head/contrib/bind9/lib/bind9/api projects/diffused_head/contrib/bind9/lib/bind9/check.c projects/diffused_head/contrib/bind9/lib/bind9/getaddresses.c projects/diffused_head/contrib/bind9/lib/bind9/include/Makefile.in projects/diffused_head/contrib/bind9/lib/bind9/include/bind9/Makefile.in projects/diffused_head/contrib/bind9/lib/bind9/include/bind9/check.h projects/diffused_head/contrib/bind9/lib/bind9/include/bind9/getaddresses.h projects/diffused_head/contrib/bind9/lib/bind9/include/bind9/version.h projects/diffused_head/contrib/bind9/lib/bind9/version.c projects/diffused_head/contrib/bind9/lib/dns/Makefile.in projects/diffused_head/contrib/bind9/lib/dns/acache.c projects/diffused_head/contrib/bind9/lib/dns/acl.c projects/diffused_head/contrib/bind9/lib/dns/adb.c projects/diffused_head/contrib/bind9/lib/dns/api projects/diffused_head/contrib/bind9/lib/dns/byaddr.c projects/diffused_head/contrib/bind9/lib/dns/cache.c projects/diffused_head/contrib/bind9/lib/dns/callbacks.c projects/diffused_head/contrib/bind9/lib/dns/client.c projects/diffused_head/contrib/bind9/lib/dns/compress.c projects/diffused_head/contrib/bind9/lib/dns/db.c projects/diffused_head/contrib/bind9/lib/dns/dbiterator.c projects/diffused_head/contrib/bind9/lib/dns/dbtable.c projects/diffused_head/contrib/bind9/lib/dns/diff.c projects/diffused_head/contrib/bind9/lib/dns/dispatch.c projects/diffused_head/contrib/bind9/lib/dns/dlz.c projects/diffused_head/contrib/bind9/lib/dns/dns64.c projects/diffused_head/contrib/bind9/lib/dns/dnssec.c projects/diffused_head/contrib/bind9/lib/dns/ds.c projects/diffused_head/contrib/bind9/lib/dns/dst_api.c projects/diffused_head/contrib/bind9/lib/dns/dst_internal.h projects/diffused_head/contrib/bind9/lib/dns/dst_lib.c projects/diffused_head/contrib/bind9/lib/dns/dst_openssl.h projects/diffused_head/contrib/bind9/lib/dns/dst_parse.c projects/diffused_head/contrib/bind9/lib/dns/dst_parse.h projects/diffused_head/contrib/bind9/lib/dns/dst_result.c projects/diffused_head/contrib/bind9/lib/dns/ecdb.c projects/diffused_head/contrib/bind9/lib/dns/forward.c projects/diffused_head/contrib/bind9/lib/dns/gen-unix.h projects/diffused_head/contrib/bind9/lib/dns/gen.c projects/diffused_head/contrib/bind9/lib/dns/gssapi_link.c projects/diffused_head/contrib/bind9/lib/dns/gssapictx.c projects/diffused_head/contrib/bind9/lib/dns/hmac_link.c projects/diffused_head/contrib/bind9/lib/dns/include/Makefile.in projects/diffused_head/contrib/bind9/lib/dns/include/dns/Makefile.in projects/diffused_head/contrib/bind9/lib/dns/include/dns/acache.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/acl.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/adb.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/bit.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/byaddr.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/cache.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/callbacks.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/cert.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/client.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/compress.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/db.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dbiterator.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dbtable.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/diff.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dispatch.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dlz.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dns64.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/dnssec.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/ds.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/ecdb.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/events.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/fixedname.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/forward.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/iptable.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/journal.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/keydata.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/keyflags.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/keytable.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/keyvalues.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/lib.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/log.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/lookup.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/master.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/masterdump.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/message.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/name.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/ncache.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/nsec.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/nsec3.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/opcode.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/order.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/peer.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/portlist.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/private.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rbt.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rcode.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdata.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdataclass.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdatalist.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdataset.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdatasetiter.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdataslab.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdatatype.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/request.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/resolver.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/result.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rootns.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rpz.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rriterator.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/sdb.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/sdlz.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/secalg.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/secproto.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/soa.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/ssu.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/stats.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/tcpmsg.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/time.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/timer.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/tkey.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/tsec.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/tsig.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/ttl.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/types.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/validator.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/version.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/view.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/xfrin.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/zone.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/zonekey.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/zt.h projects/diffused_head/contrib/bind9/lib/dns/include/dst/Makefile.in projects/diffused_head/contrib/bind9/lib/dns/include/dst/dst.h projects/diffused_head/contrib/bind9/lib/dns/include/dst/gssapi.h projects/diffused_head/contrib/bind9/lib/dns/include/dst/lib.h projects/diffused_head/contrib/bind9/lib/dns/include/dst/result.h projects/diffused_head/contrib/bind9/lib/dns/iptable.c projects/diffused_head/contrib/bind9/lib/dns/journal.c projects/diffused_head/contrib/bind9/lib/dns/key.c projects/diffused_head/contrib/bind9/lib/dns/keydata.c projects/diffused_head/contrib/bind9/lib/dns/keytable.c projects/diffused_head/contrib/bind9/lib/dns/lib.c projects/diffused_head/contrib/bind9/lib/dns/log.c projects/diffused_head/contrib/bind9/lib/dns/lookup.c projects/diffused_head/contrib/bind9/lib/dns/master.c projects/diffused_head/contrib/bind9/lib/dns/masterdump.c projects/diffused_head/contrib/bind9/lib/dns/message.c projects/diffused_head/contrib/bind9/lib/dns/name.c projects/diffused_head/contrib/bind9/lib/dns/ncache.c projects/diffused_head/contrib/bind9/lib/dns/nsec.c projects/diffused_head/contrib/bind9/lib/dns/nsec3.c projects/diffused_head/contrib/bind9/lib/dns/openssl_link.c projects/diffused_head/contrib/bind9/lib/dns/openssldh_link.c projects/diffused_head/contrib/bind9/lib/dns/openssldsa_link.c projects/diffused_head/contrib/bind9/lib/dns/opensslgost_link.c projects/diffused_head/contrib/bind9/lib/dns/opensslrsa_link.c projects/diffused_head/contrib/bind9/lib/dns/order.c projects/diffused_head/contrib/bind9/lib/dns/peer.c projects/diffused_head/contrib/bind9/lib/dns/portlist.c projects/diffused_head/contrib/bind9/lib/dns/private.c projects/diffused_head/contrib/bind9/lib/dns/rbt.c projects/diffused_head/contrib/bind9/lib/dns/rbtdb.c projects/diffused_head/contrib/bind9/lib/dns/rbtdb.h projects/diffused_head/contrib/bind9/lib/dns/rbtdb64.c projects/diffused_head/contrib/bind9/lib/dns/rbtdb64.h projects/diffused_head/contrib/bind9/lib/dns/rcode.c projects/diffused_head/contrib/bind9/lib/dns/rdata.c projects/diffused_head/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c projects/diffused_head/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h projects/diffused_head/contrib/bind9/lib/dns/rdata/ch_3/a_1.c projects/diffused_head/contrib/bind9/lib/dns/rdata/ch_3/a_1.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/cert_37.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/cert_37.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/cname_5.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/cname_5.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dname_39.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dname_39.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ds_43.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ds_43.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/gpos_27.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/gpos_27.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/hip_55.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/hip_55.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/isdn_20.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/isdn_20.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/key_25.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/key_25.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/keydata_65533.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/loc_29.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/loc_29.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mb_7.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mb_7.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/md_3.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/md_3.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mf_4.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mf_4.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mg_8.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mg_8.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/minfo_14.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/minfo_14.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mr_9.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mr_9.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mx_15.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/mx_15.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ns_2.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ns_2.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec_47.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nsec_47.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/null_10.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/null_10.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nxt_30.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/nxt_30.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/opt_41.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/opt_41.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/proforma.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/proforma.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ptr_12.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/ptr_12.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rp_17.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rp_17.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rt_21.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/rt_21.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/sig_24.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/sig_24.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/soa_6.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/soa_6.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/spf_99.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/spf_99.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/tkey_249.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/tkey_249.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/txt_16.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/txt_16.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/unspec_103.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/unspec_103.h projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/x25_19.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/x25_19.h projects/diffused_head/contrib/bind9/lib/dns/rdata/hs_4/a_1.c projects/diffused_head/contrib/bind9/lib/dns/rdata/hs_4/a_1.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/a6_38.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/a6_38.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/a_1.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/a_1.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/apl_42.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/apl_42.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/kx_36.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/kx_36.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/px_26.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/px_26.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/srv_33.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/srv_33.h projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/wks_11.c projects/diffused_head/contrib/bind9/lib/dns/rdata/in_1/wks_11.h projects/diffused_head/contrib/bind9/lib/dns/rdata/rdatastructpre.h projects/diffused_head/contrib/bind9/lib/dns/rdata/rdatastructsuf.h projects/diffused_head/contrib/bind9/lib/dns/rdatalist.c projects/diffused_head/contrib/bind9/lib/dns/rdatalist_p.h projects/diffused_head/contrib/bind9/lib/dns/rdataset.c projects/diffused_head/contrib/bind9/lib/dns/rdatasetiter.c projects/diffused_head/contrib/bind9/lib/dns/rdataslab.c projects/diffused_head/contrib/bind9/lib/dns/request.c projects/diffused_head/contrib/bind9/lib/dns/resolver.c projects/diffused_head/contrib/bind9/lib/dns/result.c projects/diffused_head/contrib/bind9/lib/dns/rootns.c projects/diffused_head/contrib/bind9/lib/dns/rpz.c projects/diffused_head/contrib/bind9/lib/dns/rriterator.c projects/diffused_head/contrib/bind9/lib/dns/sdb.c projects/diffused_head/contrib/bind9/lib/dns/sdlz.c projects/diffused_head/contrib/bind9/lib/dns/soa.c projects/diffused_head/contrib/bind9/lib/dns/spnego.asn1 projects/diffused_head/contrib/bind9/lib/dns/spnego.c projects/diffused_head/contrib/bind9/lib/dns/spnego.h projects/diffused_head/contrib/bind9/lib/dns/spnego_asn1.c projects/diffused_head/contrib/bind9/lib/dns/spnego_asn1.pl projects/diffused_head/contrib/bind9/lib/dns/ssu.c projects/diffused_head/contrib/bind9/lib/dns/ssu_external.c projects/diffused_head/contrib/bind9/lib/dns/stats.c projects/diffused_head/contrib/bind9/lib/dns/tcpmsg.c projects/diffused_head/contrib/bind9/lib/dns/time.c projects/diffused_head/contrib/bind9/lib/dns/timer.c projects/diffused_head/contrib/bind9/lib/dns/tkey.c projects/diffused_head/contrib/bind9/lib/dns/tsec.c projects/diffused_head/contrib/bind9/lib/dns/tsig.c projects/diffused_head/contrib/bind9/lib/dns/ttl.c projects/diffused_head/contrib/bind9/lib/dns/validator.c projects/diffused_head/contrib/bind9/lib/dns/version.c projects/diffused_head/contrib/bind9/lib/dns/view.c projects/diffused_head/contrib/bind9/lib/dns/xfrin.c projects/diffused_head/contrib/bind9/lib/dns/zone.c projects/diffused_head/contrib/bind9/lib/dns/zonekey.c projects/diffused_head/contrib/bind9/lib/dns/zt.c projects/diffused_head/contrib/bind9/lib/export/Makefile.in projects/diffused_head/contrib/bind9/lib/export/dns/Makefile.in projects/diffused_head/contrib/bind9/lib/export/dns/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/dns/include/dns/Makefile.in projects/diffused_head/contrib/bind9/lib/export/dns/include/dst/Makefile.in projects/diffused_head/contrib/bind9/lib/export/irs/Makefile.in projects/diffused_head/contrib/bind9/lib/export/irs/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/irs/include/irs/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/include/isc/bind9.h projects/diffused_head/contrib/bind9/lib/export/isc/nls/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/nothreads/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/nothreads/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/nothreads/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/pthreads/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/pthreads/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/pthreads/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/unix/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/unix/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isc/unix/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isccfg/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isccfg/include/Makefile.in projects/diffused_head/contrib/bind9/lib/export/isccfg/include/isccfg/Makefile.in projects/diffused_head/contrib/bind9/lib/export/samples/Makefile-postinstall.in projects/diffused_head/contrib/bind9/lib/export/samples/Makefile.in projects/diffused_head/contrib/bind9/lib/export/samples/nsprobe.c projects/diffused_head/contrib/bind9/lib/export/samples/sample-async.c projects/diffused_head/contrib/bind9/lib/export/samples/sample-gai.c projects/diffused_head/contrib/bind9/lib/export/samples/sample-request.c projects/diffused_head/contrib/bind9/lib/export/samples/sample-update.c projects/diffused_head/contrib/bind9/lib/export/samples/sample.c projects/diffused_head/contrib/bind9/lib/irs/Makefile.in projects/diffused_head/contrib/bind9/lib/irs/api projects/diffused_head/contrib/bind9/lib/irs/context.c projects/diffused_head/contrib/bind9/lib/irs/dnsconf.c projects/diffused_head/contrib/bind9/lib/irs/gai_strerror.c projects/diffused_head/contrib/bind9/lib/irs/getaddrinfo.c projects/diffused_head/contrib/bind9/lib/irs/getnameinfo.c projects/diffused_head/contrib/bind9/lib/irs/include/Makefile.in projects/diffused_head/contrib/bind9/lib/irs/include/irs/Makefile.in projects/diffused_head/contrib/bind9/lib/irs/include/irs/context.h projects/diffused_head/contrib/bind9/lib/irs/include/irs/dnsconf.h projects/diffused_head/contrib/bind9/lib/irs/include/irs/netdb.h.in projects/diffused_head/contrib/bind9/lib/irs/include/irs/platform.h.in projects/diffused_head/contrib/bind9/lib/irs/include/irs/resconf.h projects/diffused_head/contrib/bind9/lib/irs/include/irs/types.h projects/diffused_head/contrib/bind9/lib/irs/include/irs/version.h projects/diffused_head/contrib/bind9/lib/irs/resconf.c projects/diffused_head/contrib/bind9/lib/irs/version.c projects/diffused_head/contrib/bind9/lib/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/alpha/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/alpha/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/alpha/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/api projects/diffused_head/contrib/bind9/lib/isc/app_api.c projects/diffused_head/contrib/bind9/lib/isc/assertions.c projects/diffused_head/contrib/bind9/lib/isc/backtrace-emptytbl.c projects/diffused_head/contrib/bind9/lib/isc/backtrace.c projects/diffused_head/contrib/bind9/lib/isc/base32.c projects/diffused_head/contrib/bind9/lib/isc/base64.c projects/diffused_head/contrib/bind9/lib/isc/bitstring.c projects/diffused_head/contrib/bind9/lib/isc/buffer.c projects/diffused_head/contrib/bind9/lib/isc/bufferlist.c projects/diffused_head/contrib/bind9/lib/isc/commandline.c projects/diffused_head/contrib/bind9/lib/isc/entropy.c projects/diffused_head/contrib/bind9/lib/isc/error.c projects/diffused_head/contrib/bind9/lib/isc/event.c projects/diffused_head/contrib/bind9/lib/isc/fsaccess.c projects/diffused_head/contrib/bind9/lib/isc/hash.c projects/diffused_head/contrib/bind9/lib/isc/heap.c projects/diffused_head/contrib/bind9/lib/isc/hex.c projects/diffused_head/contrib/bind9/lib/isc/hmacmd5.c projects/diffused_head/contrib/bind9/lib/isc/hmacsha.c projects/diffused_head/contrib/bind9/lib/isc/httpd.c projects/diffused_head/contrib/bind9/lib/isc/ia64/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/ia64/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/ia64/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/include/isc/app.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/assertions.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/backtrace.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/base32.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/base64.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/bind9.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/bitstring.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/boolean.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/buffer.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/bufferlist.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/commandline.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/entropy.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/error.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/event.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/eventclass.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/file.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/formatcheck.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/fsaccess.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/hash.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/heap.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/hex.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/hmacmd5.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/hmacsha.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/httpd.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/interfaceiter.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/ipv6.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/iterated_hash.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/lang.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/lex.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/lfsr.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/lib.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/list.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/log.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/magic.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/md5.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/mem.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/msgcat.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/msgs.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/mutexblock.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/namespace.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/netaddr.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/netscope.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/ondestroy.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/os.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/parseint.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/platform.h.in projects/diffused_head/contrib/bind9/lib/isc/include/isc/portset.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/print.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/quota.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/radix.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/random.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/ratelimiter.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/refcount.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/region.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/resource.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/result.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/resultclass.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/rwlock.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/serial.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/sha1.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/sha2.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/sockaddr.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/socket.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/stats.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/stdio.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/stdlib.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/string.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/symtab.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/task.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/taskpool.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/timer.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/types.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/util.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/version.h projects/diffused_head/contrib/bind9/lib/isc/include/isc/xml.h projects/diffused_head/contrib/bind9/lib/isc/inet_aton.c projects/diffused_head/contrib/bind9/lib/isc/inet_ntop.c projects/diffused_head/contrib/bind9/lib/isc/inet_pton.c projects/diffused_head/contrib/bind9/lib/isc/iterated_hash.c projects/diffused_head/contrib/bind9/lib/isc/lex.c projects/diffused_head/contrib/bind9/lib/isc/lfsr.c projects/diffused_head/contrib/bind9/lib/isc/lib.c projects/diffused_head/contrib/bind9/lib/isc/log.c projects/diffused_head/contrib/bind9/lib/isc/md5.c projects/diffused_head/contrib/bind9/lib/isc/mem.c projects/diffused_head/contrib/bind9/lib/isc/mem_api.c projects/diffused_head/contrib/bind9/lib/isc/mips/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/mips/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/mips/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/mips/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/mutexblock.c projects/diffused_head/contrib/bind9/lib/isc/netaddr.c projects/diffused_head/contrib/bind9/lib/isc/netscope.c projects/diffused_head/contrib/bind9/lib/isc/nls/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/nls/msgcat.c projects/diffused_head/contrib/bind9/lib/isc/noatomic/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/noatomic/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/nothreads/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/nothreads/condition.c projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/isc/condition.h projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/isc/mutex.h projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/isc/once.h projects/diffused_head/contrib/bind9/lib/isc/nothreads/include/isc/thread.h projects/diffused_head/contrib/bind9/lib/isc/nothreads/mutex.c projects/diffused_head/contrib/bind9/lib/isc/nothreads/thread.c projects/diffused_head/contrib/bind9/lib/isc/ondestroy.c projects/diffused_head/contrib/bind9/lib/isc/parseint.c projects/diffused_head/contrib/bind9/lib/isc/portset.c projects/diffused_head/contrib/bind9/lib/isc/powerpc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/powerpc/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/powerpc/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/print.c projects/diffused_head/contrib/bind9/lib/isc/pthreads/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/pthreads/condition.c projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/isc/condition.h projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/isc/mutex.h projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/isc/once.h projects/diffused_head/contrib/bind9/lib/isc/pthreads/include/isc/thread.h projects/diffused_head/contrib/bind9/lib/isc/pthreads/mutex.c projects/diffused_head/contrib/bind9/lib/isc/pthreads/thread.c projects/diffused_head/contrib/bind9/lib/isc/quota.c projects/diffused_head/contrib/bind9/lib/isc/radix.c projects/diffused_head/contrib/bind9/lib/isc/random.c projects/diffused_head/contrib/bind9/lib/isc/ratelimiter.c projects/diffused_head/contrib/bind9/lib/isc/refcount.c projects/diffused_head/contrib/bind9/lib/isc/region.c projects/diffused_head/contrib/bind9/lib/isc/result.c projects/diffused_head/contrib/bind9/lib/isc/rwlock.c projects/diffused_head/contrib/bind9/lib/isc/serial.c projects/diffused_head/contrib/bind9/lib/isc/sha1.c projects/diffused_head/contrib/bind9/lib/isc/sha2.c projects/diffused_head/contrib/bind9/lib/isc/sockaddr.c projects/diffused_head/contrib/bind9/lib/isc/socket_api.c projects/diffused_head/contrib/bind9/lib/isc/sparc64/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/sparc64/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/sparc64/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/stats.c projects/diffused_head/contrib/bind9/lib/isc/string.c projects/diffused_head/contrib/bind9/lib/isc/strtoul.c projects/diffused_head/contrib/bind9/lib/isc/symtab.c projects/diffused_head/contrib/bind9/lib/isc/task.c projects/diffused_head/contrib/bind9/lib/isc/task_api.c projects/diffused_head/contrib/bind9/lib/isc/task_p.h projects/diffused_head/contrib/bind9/lib/isc/taskpool.c projects/diffused_head/contrib/bind9/lib/isc/timer.c projects/diffused_head/contrib/bind9/lib/isc/timer_api.c projects/diffused_head/contrib/bind9/lib/isc/timer_p.h projects/diffused_head/contrib/bind9/lib/isc/unix/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/unix/app.c projects/diffused_head/contrib/bind9/lib/isc/unix/dir.c projects/diffused_head/contrib/bind9/lib/isc/unix/entropy.c projects/diffused_head/contrib/bind9/lib/isc/unix/errno2result.c projects/diffused_head/contrib/bind9/lib/isc/unix/errno2result.h projects/diffused_head/contrib/bind9/lib/isc/unix/file.c projects/diffused_head/contrib/bind9/lib/isc/unix/fsaccess.c projects/diffused_head/contrib/bind9/lib/isc/unix/ifiter_getifaddrs.c projects/diffused_head/contrib/bind9/lib/isc/unix/ifiter_ioctl.c projects/diffused_head/contrib/bind9/lib/isc/unix/ifiter_sysctl.c projects/diffused_head/contrib/bind9/lib/isc/unix/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/dir.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/int.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/keyboard.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/net.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/netdb.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/offset.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/stat.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/stdtime.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/strerror.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/syslog.h projects/diffused_head/contrib/bind9/lib/isc/unix/include/isc/time.h projects/diffused_head/contrib/bind9/lib/isc/unix/interfaceiter.c projects/diffused_head/contrib/bind9/lib/isc/unix/ipv6.c projects/diffused_head/contrib/bind9/lib/isc/unix/keyboard.c projects/diffused_head/contrib/bind9/lib/isc/unix/net.c projects/diffused_head/contrib/bind9/lib/isc/unix/os.c projects/diffused_head/contrib/bind9/lib/isc/unix/resource.c projects/diffused_head/contrib/bind9/lib/isc/unix/socket.c projects/diffused_head/contrib/bind9/lib/isc/unix/socket_p.h projects/diffused_head/contrib/bind9/lib/isc/unix/stdio.c projects/diffused_head/contrib/bind9/lib/isc/unix/stdtime.c projects/diffused_head/contrib/bind9/lib/isc/unix/strerror.c projects/diffused_head/contrib/bind9/lib/isc/unix/syslog.c projects/diffused_head/contrib/bind9/lib/isc/unix/time.c projects/diffused_head/contrib/bind9/lib/isc/version.c projects/diffused_head/contrib/bind9/lib/isc/x86_32/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_32/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_32/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isc/x86_64/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_64/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in projects/diffused_head/contrib/bind9/lib/isc/x86_64/include/isc/atomic.h projects/diffused_head/contrib/bind9/lib/isccc/Makefile.in projects/diffused_head/contrib/bind9/lib/isccc/alist.c projects/diffused_head/contrib/bind9/lib/isccc/api projects/diffused_head/contrib/bind9/lib/isccc/base64.c projects/diffused_head/contrib/bind9/lib/isccc/cc.c projects/diffused_head/contrib/bind9/lib/isccc/ccmsg.c projects/diffused_head/contrib/bind9/lib/isccc/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/Makefile.in projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/alist.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/base64.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/cc.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/ccmsg.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/events.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/lib.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/result.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/sexpr.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/symtab.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/symtype.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/types.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/util.h projects/diffused_head/contrib/bind9/lib/isccc/include/isccc/version.h projects/diffused_head/contrib/bind9/lib/isccc/lib.c projects/diffused_head/contrib/bind9/lib/isccc/result.c projects/diffused_head/contrib/bind9/lib/isccc/sexpr.c projects/diffused_head/contrib/bind9/lib/isccc/symtab.c projects/diffused_head/contrib/bind9/lib/isccc/version.c projects/diffused_head/contrib/bind9/lib/isccfg/Makefile.in projects/diffused_head/contrib/bind9/lib/isccfg/aclconf.c projects/diffused_head/contrib/bind9/lib/isccfg/api projects/diffused_head/contrib/bind9/lib/isccfg/dnsconf.c projects/diffused_head/contrib/bind9/lib/isccfg/include/Makefile.in projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/aclconf.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/cfg.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/dnsconf.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/grammar.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/log.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/namedconf.h projects/diffused_head/contrib/bind9/lib/isccfg/include/isccfg/version.h projects/diffused_head/contrib/bind9/lib/isccfg/log.c projects/diffused_head/contrib/bind9/lib/isccfg/namedconf.c projects/diffused_head/contrib/bind9/lib/isccfg/parser.c projects/diffused_head/contrib/bind9/lib/isccfg/version.c projects/diffused_head/contrib/bind9/lib/lwres/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/api projects/diffused_head/contrib/bind9/lib/lwres/assert_p.h projects/diffused_head/contrib/bind9/lib/lwres/context.c projects/diffused_head/contrib/bind9/lib/lwres/context_p.h projects/diffused_head/contrib/bind9/lib/lwres/gai_strerror.c projects/diffused_head/contrib/bind9/lib/lwres/getaddrinfo.c projects/diffused_head/contrib/bind9/lib/lwres/gethost.c projects/diffused_head/contrib/bind9/lib/lwres/getipnode.c projects/diffused_head/contrib/bind9/lib/lwres/getnameinfo.c projects/diffused_head/contrib/bind9/lib/lwres/getrrset.c projects/diffused_head/contrib/bind9/lib/lwres/herror.c projects/diffused_head/contrib/bind9/lib/lwres/include/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/context.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/int.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/ipv6.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/lang.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/list.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/lwbuffer.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/lwpacket.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/lwres.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/netdb.h.in projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/platform.h.in projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/result.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/stdlib.h projects/diffused_head/contrib/bind9/lib/lwres/include/lwres/version.h projects/diffused_head/contrib/bind9/lib/lwres/lwbuffer.c projects/diffused_head/contrib/bind9/lib/lwres/lwconfig.c projects/diffused_head/contrib/bind9/lib/lwres/lwinetaton.c projects/diffused_head/contrib/bind9/lib/lwres/lwinetntop.c projects/diffused_head/contrib/bind9/lib/lwres/lwinetpton.c projects/diffused_head/contrib/bind9/lib/lwres/lwpacket.c projects/diffused_head/contrib/bind9/lib/lwres/lwres_gabn.c projects/diffused_head/contrib/bind9/lib/lwres/lwres_gnba.c projects/diffused_head/contrib/bind9/lib/lwres/lwres_grbn.c projects/diffused_head/contrib/bind9/lib/lwres/lwres_noop.c projects/diffused_head/contrib/bind9/lib/lwres/lwresutil.c projects/diffused_head/contrib/bind9/lib/lwres/man/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/man/lwres.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_buffer.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_buffer.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_buffer.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_config.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_config.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_config.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_context.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_context.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_context.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gabn.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gabn.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gabn.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gethostent.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gethostent.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getipnode.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getipnode.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gnba.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gnba.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_gnba.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_hstrerror.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_inetntop.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_inetntop.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_noop.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_noop.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_noop.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_packet.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_packet.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_packet.html projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_resutil.3 projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_resutil.docbook projects/diffused_head/contrib/bind9/lib/lwres/man/lwres_resutil.html projects/diffused_head/contrib/bind9/lib/lwres/print.c projects/diffused_head/contrib/bind9/lib/lwres/print_p.h projects/diffused_head/contrib/bind9/lib/lwres/strtoul.c projects/diffused_head/contrib/bind9/lib/lwres/unix/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/unix/include/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in projects/diffused_head/contrib/bind9/lib/lwres/unix/include/lwres/net.h projects/diffused_head/contrib/bind9/lib/lwres/version.c projects/diffused_head/contrib/bind9/make/Makefile.in projects/diffused_head/contrib/bind9/make/includes.in projects/diffused_head/contrib/bind9/make/mkdep.in projects/diffused_head/contrib/bind9/make/rules.in projects/diffused_head/contrib/bind9/mkinstalldirs projects/diffused_head/contrib/bind9/version projects/diffused_head/contrib/bsnmp/snmpd/main.c projects/diffused_head/contrib/com_err/com_err.3 projects/diffused_head/contrib/com_err/com_err.c (contents, props changed) projects/diffused_head/contrib/com_err/com_err.h (contents, props changed) projects/diffused_head/contrib/com_err/com_right.h (contents, props changed) projects/diffused_head/contrib/com_err/compile_et.c (contents, props changed) projects/diffused_head/contrib/com_err/compile_et.h (contents, props changed) projects/diffused_head/contrib/com_err/error.c (contents, props changed) projects/diffused_head/contrib/com_err/lex.h (contents, props changed) projects/diffused_head/contrib/com_err/lex.l projects/diffused_head/contrib/com_err/parse.y projects/diffused_head/contrib/com_err/roken_rename.h (contents, props changed) projects/diffused_head/contrib/com_err/version-script.map projects/diffused_head/contrib/file/ChangeLog projects/diffused_head/contrib/file/Header projects/diffused_head/contrib/file/INSTALL projects/diffused_head/contrib/file/Magdir/acorn projects/diffused_head/contrib/file/Magdir/adi projects/diffused_head/contrib/file/Magdir/adventure projects/diffused_head/contrib/file/Magdir/allegro projects/diffused_head/contrib/file/Magdir/alliant projects/diffused_head/contrib/file/Magdir/amanda projects/diffused_head/contrib/file/Magdir/amigaos projects/diffused_head/contrib/file/Magdir/animation projects/diffused_head/contrib/file/Magdir/apl projects/diffused_head/contrib/file/Magdir/apple projects/diffused_head/contrib/file/Magdir/applix projects/diffused_head/contrib/file/Magdir/archive projects/diffused_head/contrib/file/Magdir/asterix projects/diffused_head/contrib/file/Magdir/att3b projects/diffused_head/contrib/file/Magdir/audio projects/diffused_head/contrib/file/Magdir/basis projects/diffused_head/contrib/file/Magdir/bflt projects/diffused_head/contrib/file/Magdir/blender projects/diffused_head/contrib/file/Magdir/blit projects/diffused_head/contrib/file/Magdir/bout projects/diffused_head/contrib/file/Magdir/bsdi projects/diffused_head/contrib/file/Magdir/btsnoop projects/diffused_head/contrib/file/Magdir/c-lang projects/diffused_head/contrib/file/Magdir/c64 projects/diffused_head/contrib/file/Magdir/cad projects/diffused_head/contrib/file/Magdir/cafebabe projects/diffused_head/contrib/file/Magdir/cddb projects/diffused_head/contrib/file/Magdir/chord projects/diffused_head/contrib/file/Magdir/cisco projects/diffused_head/contrib/file/Magdir/citrus projects/diffused_head/contrib/file/Magdir/clarion projects/diffused_head/contrib/file/Magdir/claris projects/diffused_head/contrib/file/Magdir/clipper projects/diffused_head/contrib/file/Magdir/commands projects/diffused_head/contrib/file/Magdir/communications projects/diffused_head/contrib/file/Magdir/compress projects/diffused_head/contrib/file/Magdir/console projects/diffused_head/contrib/file/Magdir/convex projects/diffused_head/contrib/file/Magdir/cracklib projects/diffused_head/contrib/file/Magdir/ctags projects/diffused_head/contrib/file/Magdir/dact projects/diffused_head/contrib/file/Magdir/database projects/diffused_head/contrib/file/Magdir/diamond projects/diffused_head/contrib/file/Magdir/diff projects/diffused_head/contrib/file/Magdir/digital projects/diffused_head/contrib/file/Magdir/dolby projects/diffused_head/contrib/file/Magdir/dump projects/diffused_head/contrib/file/Magdir/dyadic projects/diffused_head/contrib/file/Magdir/editors projects/diffused_head/contrib/file/Magdir/efi projects/diffused_head/contrib/file/Magdir/elf projects/diffused_head/contrib/file/Magdir/encore projects/diffused_head/contrib/file/Magdir/epoc projects/diffused_head/contrib/file/Magdir/erlang projects/diffused_head/contrib/file/Magdir/esri projects/diffused_head/contrib/file/Magdir/fcs projects/diffused_head/contrib/file/Magdir/filesystems projects/diffused_head/contrib/file/Magdir/flash projects/diffused_head/contrib/file/Magdir/fonts projects/diffused_head/contrib/file/Magdir/fortran projects/diffused_head/contrib/file/Magdir/frame projects/diffused_head/contrib/file/Magdir/freebsd projects/diffused_head/contrib/file/Magdir/fsav projects/diffused_head/contrib/file/Magdir/games projects/diffused_head/contrib/file/Magdir/gcc projects/diffused_head/contrib/file/Magdir/geos projects/diffused_head/contrib/file/Magdir/gimp projects/diffused_head/contrib/file/Magdir/gnome-keyring projects/diffused_head/contrib/file/Magdir/gnu projects/diffused_head/contrib/file/Magdir/gnumeric projects/diffused_head/contrib/file/Magdir/grace projects/diffused_head/contrib/file/Magdir/graphviz projects/diffused_head/contrib/file/Magdir/gringotts projects/diffused_head/contrib/file/Magdir/hitachi-sh projects/diffused_head/contrib/file/Magdir/hp projects/diffused_head/contrib/file/Magdir/human68k projects/diffused_head/contrib/file/Magdir/ibm370 projects/diffused_head/contrib/file/Magdir/ibm6000 projects/diffused_head/contrib/file/Magdir/iff projects/diffused_head/contrib/file/Magdir/images projects/diffused_head/contrib/file/Magdir/inform projects/diffused_head/contrib/file/Magdir/intel projects/diffused_head/contrib/file/Magdir/interleaf projects/diffused_head/contrib/file/Magdir/island projects/diffused_head/contrib/file/Magdir/ispell projects/diffused_head/contrib/file/Magdir/java projects/diffused_head/contrib/file/Magdir/jpeg projects/diffused_head/contrib/file/Magdir/karma projects/diffused_head/contrib/file/Magdir/kde projects/diffused_head/contrib/file/Magdir/kml projects/diffused_head/contrib/file/Magdir/lecter projects/diffused_head/contrib/file/Magdir/lex projects/diffused_head/contrib/file/Magdir/lif projects/diffused_head/contrib/file/Magdir/linux projects/diffused_head/contrib/file/Magdir/lisp projects/diffused_head/contrib/file/Magdir/llvm projects/diffused_head/contrib/file/Magdir/lua projects/diffused_head/contrib/file/Magdir/luks projects/diffused_head/contrib/file/Magdir/mach projects/diffused_head/contrib/file/Magdir/macintosh projects/diffused_head/contrib/file/Magdir/magic projects/diffused_head/contrib/file/Magdir/mail.news projects/diffused_head/contrib/file/Magdir/maple projects/diffused_head/contrib/file/Magdir/mathcad projects/diffused_head/contrib/file/Magdir/mathematica projects/diffused_head/contrib/file/Magdir/matroska projects/diffused_head/contrib/file/Magdir/mcrypt projects/diffused_head/contrib/file/Magdir/mercurial projects/diffused_head/contrib/file/Magdir/mime projects/diffused_head/contrib/file/Magdir/mips projects/diffused_head/contrib/file/Magdir/mirage projects/diffused_head/contrib/file/Magdir/misctools projects/diffused_head/contrib/file/Magdir/mkid projects/diffused_head/contrib/file/Magdir/mlssa projects/diffused_head/contrib/file/Magdir/mmdf projects/diffused_head/contrib/file/Magdir/modem projects/diffused_head/contrib/file/Magdir/motorola projects/diffused_head/contrib/file/Magdir/mozilla projects/diffused_head/contrib/file/Magdir/msdos projects/diffused_head/contrib/file/Magdir/msvc projects/diffused_head/contrib/file/Magdir/mup projects/diffused_head/contrib/file/Magdir/natinst projects/diffused_head/contrib/file/Magdir/ncr projects/diffused_head/contrib/file/Magdir/netbsd projects/diffused_head/contrib/file/Magdir/netscape projects/diffused_head/contrib/file/Magdir/netware projects/diffused_head/contrib/file/Magdir/news projects/diffused_head/contrib/file/Magdir/nitpicker projects/diffused_head/contrib/file/Magdir/ocaml projects/diffused_head/contrib/file/Magdir/octave projects/diffused_head/contrib/file/Magdir/ole2compounddocs projects/diffused_head/contrib/file/Magdir/olf projects/diffused_head/contrib/file/Magdir/os2 projects/diffused_head/contrib/file/Magdir/os400 projects/diffused_head/contrib/file/Magdir/os9 projects/diffused_head/contrib/file/Magdir/osf1 projects/diffused_head/contrib/file/Magdir/palm projects/diffused_head/contrib/file/Magdir/parix projects/diffused_head/contrib/file/Magdir/pbm projects/diffused_head/contrib/file/Magdir/pdf projects/diffused_head/contrib/file/Magdir/pdp projects/diffused_head/contrib/file/Magdir/perl projects/diffused_head/contrib/file/Magdir/pgp projects/diffused_head/contrib/file/Magdir/pkgadd projects/diffused_head/contrib/file/Magdir/plan9 projects/diffused_head/contrib/file/Magdir/plus5 projects/diffused_head/contrib/file/Magdir/printer projects/diffused_head/contrib/file/Magdir/project projects/diffused_head/contrib/file/Magdir/psdbms projects/diffused_head/contrib/file/Magdir/pulsar projects/diffused_head/contrib/file/Magdir/pyramid projects/diffused_head/contrib/file/Magdir/python projects/diffused_head/contrib/file/Magdir/revision projects/diffused_head/contrib/file/Magdir/riff projects/diffused_head/contrib/file/Magdir/rpm projects/diffused_head/contrib/file/Magdir/rtf projects/diffused_head/contrib/file/Magdir/ruby projects/diffused_head/contrib/file/Magdir/sc projects/diffused_head/contrib/file/Magdir/sccs projects/diffused_head/contrib/file/Magdir/scientific projects/diffused_head/contrib/file/Magdir/securitycerts projects/diffused_head/contrib/file/Magdir/sendmail projects/diffused_head/contrib/file/Magdir/sequent projects/diffused_head/contrib/file/Magdir/sgi projects/diffused_head/contrib/file/Magdir/sgml projects/diffused_head/contrib/file/Magdir/sharc projects/diffused_head/contrib/file/Magdir/sinclair projects/diffused_head/contrib/file/Magdir/sketch projects/diffused_head/contrib/file/Magdir/smalltalk projects/diffused_head/contrib/file/Magdir/sniffer projects/diffused_head/contrib/file/Magdir/softquad projects/diffused_head/contrib/file/Magdir/spec projects/diffused_head/contrib/file/Magdir/spectrum projects/diffused_head/contrib/file/Magdir/sql projects/diffused_head/contrib/file/Magdir/sun projects/diffused_head/contrib/file/Magdir/sysex projects/diffused_head/contrib/file/Magdir/teapot projects/diffused_head/contrib/file/Magdir/terminfo projects/diffused_head/contrib/file/Magdir/tex projects/diffused_head/contrib/file/Magdir/tgif projects/diffused_head/contrib/file/Magdir/ti-8x projects/diffused_head/contrib/file/Magdir/timezone projects/diffused_head/contrib/file/Magdir/troff projects/diffused_head/contrib/file/Magdir/tuxedo projects/diffused_head/contrib/file/Magdir/typeset projects/diffused_head/contrib/file/Magdir/unicode projects/diffused_head/contrib/file/Magdir/unknown projects/diffused_head/contrib/file/Magdir/uuencode projects/diffused_head/contrib/file/Magdir/varied.out projects/diffused_head/contrib/file/Magdir/varied.script projects/diffused_head/contrib/file/Magdir/vax projects/diffused_head/contrib/file/Magdir/vicar projects/diffused_head/contrib/file/Magdir/virtutech projects/diffused_head/contrib/file/Magdir/visx projects/diffused_head/contrib/file/Magdir/vms projects/diffused_head/contrib/file/Magdir/vmware projects/diffused_head/contrib/file/Magdir/vorbis projects/diffused_head/contrib/file/Magdir/vxl projects/diffused_head/contrib/file/Magdir/warc projects/diffused_head/contrib/file/Magdir/weak projects/diffused_head/contrib/file/Magdir/windows projects/diffused_head/contrib/file/Magdir/wireless projects/diffused_head/contrib/file/Magdir/wordprocessors projects/diffused_head/contrib/file/Magdir/xdelta projects/diffused_head/contrib/file/Magdir/xenix projects/diffused_head/contrib/file/Magdir/xilinx projects/diffused_head/contrib/file/Magdir/xo65 projects/diffused_head/contrib/file/Magdir/xwindows projects/diffused_head/contrib/file/Magdir/zilog projects/diffused_head/contrib/file/Magdir/zyxel projects/diffused_head/contrib/file/Makefile.am projects/diffused_head/contrib/file/Makefile.am-src projects/diffused_head/contrib/file/Makefile.in projects/diffused_head/contrib/file/README projects/diffused_head/contrib/file/TODO projects/diffused_head/contrib/file/acinclude.m4 projects/diffused_head/contrib/file/aclocal.m4 projects/diffused_head/contrib/file/apprentice.c projects/diffused_head/contrib/file/apptype.c projects/diffused_head/contrib/file/ascmagic.c projects/diffused_head/contrib/file/asprintf.c projects/diffused_head/contrib/file/cdf.c projects/diffused_head/contrib/file/cdf.h projects/diffused_head/contrib/file/cdf_time.c projects/diffused_head/contrib/file/compile projects/diffused_head/contrib/file/compress.c projects/diffused_head/contrib/file/config.h.in projects/diffused_head/contrib/file/configure projects/diffused_head/contrib/file/configure.ac projects/diffused_head/contrib/file/elfclass.h projects/diffused_head/contrib/file/encoding.c projects/diffused_head/contrib/file/file.c projects/diffused_head/contrib/file/file.h projects/diffused_head/contrib/file/file.man projects/diffused_head/contrib/file/file_opts.h projects/diffused_head/contrib/file/fsmagic.c projects/diffused_head/contrib/file/funcs.c projects/diffused_head/contrib/file/install-sh projects/diffused_head/contrib/file/is_tar.c projects/diffused_head/contrib/file/libmagic.man projects/diffused_head/contrib/file/magic.c projects/diffused_head/contrib/file/magic.h projects/diffused_head/contrib/file/magic.man projects/diffused_head/contrib/file/print.c projects/diffused_head/contrib/file/readcdf.c projects/diffused_head/contrib/file/readelf.c projects/diffused_head/contrib/file/readelf.h projects/diffused_head/contrib/file/softmagic.c projects/diffused_head/contrib/file/tar.h projects/diffused_head/contrib/file/tests/Makefile.am projects/diffused_head/contrib/file/tests/Makefile.in projects/diffused_head/contrib/file/vasprintf.c projects/diffused_head/contrib/gcc/ChangeLog.gcc43 projects/diffused_head/contrib/gcc/builtins.c projects/diffused_head/contrib/gcc/config/mips/freebsd.h projects/diffused_head/contrib/gcc/config/mips/mips.c projects/diffused_head/contrib/gdb/gdb/mips-tdep.c projects/diffused_head/contrib/gdb/gdb/mipsfbsd-tdep.c projects/diffused_head/contrib/gdb/gdb/target.c projects/diffused_head/contrib/libarchive/COPYING projects/diffused_head/contrib/libarchive/FREEBSD-Xlist projects/diffused_head/contrib/libarchive/NEWS projects/diffused_head/contrib/libarchive/README projects/diffused_head/contrib/libarchive/cpio/bsdcpio.1 projects/diffused_head/contrib/libarchive/cpio/cmdline.c projects/diffused_head/contrib/libarchive/cpio/cpio.c projects/diffused_head/contrib/libarchive/cpio/cpio.h projects/diffused_head/contrib/libarchive/cpio/test/main.c projects/diffused_head/contrib/libarchive/cpio/test/test.h projects/diffused_head/contrib/libarchive/cpio/test/test_0.c projects/diffused_head/contrib/libarchive/cpio/test/test_basic.c projects/diffused_head/contrib/libarchive/cpio/test/test_format_newc.c projects/diffused_head/contrib/libarchive/cpio/test/test_option_c.c projects/diffused_head/contrib/libarchive/cpio/test/test_option_t.c projects/diffused_head/contrib/libarchive/cpio/test/test_option_u.c projects/diffused_head/contrib/libarchive/cpio/test/test_owner_parse.c projects/diffused_head/contrib/libarchive/libarchive/archive.h projects/diffused_head/contrib/libarchive/libarchive/archive_check_magic.c projects/diffused_head/contrib/libarchive/libarchive/archive_crc32.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry_copy_stat.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry_link_resolver.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry_stat.c projects/diffused_head/contrib/libarchive/libarchive/archive_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_data_into_fd.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_entry_from_file.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_set_standard_lookup.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_extract.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_fd.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_file.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_memory.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_all.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_ar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_cpio.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_empty.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_iso9660.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_raw.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_tar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_string.c projects/diffused_head/contrib/libarchive/libarchive/archive_string.h projects/diffused_head/contrib/libarchive/libarchive/archive_string_sprintf.c projects/diffused_head/contrib/libarchive/libarchive/archive_util.3 projects/diffused_head/contrib/libarchive/libarchive/archive_util.c projects/diffused_head/contrib/libarchive/libarchive/archive_virtual.c projects/diffused_head/contrib/libarchive/libarchive/archive_write.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_set_standard_lookup.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_open_memory.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_ar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_by_name.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_cpio.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_cpio_newc.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_pax.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_shar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_ustar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/libarchive-formats.5 projects/diffused_head/contrib/libarchive/libarchive/libarchive.3 projects/diffused_head/contrib/libarchive/libarchive/libarchive_internals.3 projects/diffused_head/contrib/libarchive/libarchive/tar.5 projects/diffused_head/contrib/libarchive/libarchive/test/main.c projects/diffused_head/contrib/libarchive/libarchive/test/read_open_memory.c projects/diffused_head/contrib/libarchive/libarchive/test/test.h projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_freebsd.c projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_pax.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_api_feature.c projects/diffused_head/contrib/libarchive/libarchive/test/test_bad_fd.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_cpio.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_gtar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_gzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_lzma.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_solaris_tar_acl.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_tar_hardlink.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_xz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip_2.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_empty_write.c projects/diffused_head/contrib/libarchive/libarchive/test/test_entry.c projects/diffused_head/contrib/libarchive/libarchive/test/test_extattr_freebsd.c projects/diffused_head/contrib/libarchive/libarchive/test/test_fuzz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_open_failure.c projects/diffused_head/contrib/libarchive/libarchive/test/test_open_fd.c projects/diffused_head/contrib/libarchive/libarchive/test/test_open_file.c projects/diffused_head/contrib/libarchive/libarchive/test/test_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_pax_filename_encoding.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_compress_program.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_data_large.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_disk.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_disk_entry_from_file.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_extract.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_file_nonexistent.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_ar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_Z.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_be.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_gz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_lzma.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_bin_xz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_odc.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4c_Z.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_gz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_lzma.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_iso_Z.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_iso_multi_extent.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isojoliet_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isojoliet_long.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isojoliet_rr.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isorr_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isorr_ce.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isorr_new_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isorr_rr_moved.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_isozisofs_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_mtree.mtree.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_pax_bz2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_raw.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tar_empty_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tbz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tgz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tlz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_txz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_zip.zip.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_large.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_pax_truncated.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_position.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_truncated.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_uu.c projects/diffused_head/contrib/libarchive/libarchive/test/test_tar_filenames.c projects/diffused_head/contrib/libarchive/libarchive/test/test_tar_large.c projects/diffused_head/contrib/libarchive/libarchive/test/test_ustar_filenames.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_gzip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_lzma.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_program.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_compress_xz.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_failures.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_hardlink.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_perms.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_secure.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_sparse.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_symlink.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_disk_times.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_ar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_cpio.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_cpio_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_cpio_newc.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_cpio_odc.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_pax.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_shar_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_tar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_tar_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_tar_ustar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_zip_empty.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_zip_no_compression.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_open_memory.c projects/diffused_head/contrib/libarchive/libarchive_fe/line_reader.c projects/diffused_head/contrib/libarchive/libarchive_fe/matching.c projects/diffused_head/contrib/libarchive/libarchive_fe/pathmatch.c projects/diffused_head/contrib/libarchive/tar/bsdtar.1 projects/diffused_head/contrib/libarchive/tar/bsdtar.c projects/diffused_head/contrib/libarchive/tar/bsdtar.h projects/diffused_head/contrib/libarchive/tar/bsdtar_platform.h projects/diffused_head/contrib/libarchive/tar/cmdline.c projects/diffused_head/contrib/libarchive/tar/getdate.c projects/diffused_head/contrib/libarchive/tar/read.c projects/diffused_head/contrib/libarchive/tar/subst.c projects/diffused_head/contrib/libarchive/tar/test/main.c projects/diffused_head/contrib/libarchive/tar/test/test.h projects/diffused_head/contrib/libarchive/tar/test/test_0.c projects/diffused_head/contrib/libarchive/tar/test/test_basic.c projects/diffused_head/contrib/libarchive/tar/test/test_option_T_upper.c projects/diffused_head/contrib/libarchive/tar/test/test_option_q.c projects/diffused_head/contrib/libarchive/tar/test/test_option_r.c projects/diffused_head/contrib/libarchive/tar/test/test_option_s.c projects/diffused_head/contrib/libarchive/tar/test/test_patterns.c projects/diffused_head/contrib/libarchive/tar/test/test_strip_components.c projects/diffused_head/contrib/libarchive/tar/test/test_symlink_dir.c projects/diffused_head/contrib/libarchive/tar/tree.c projects/diffused_head/contrib/libarchive/tar/util.c projects/diffused_head/contrib/libarchive/tar/write.c projects/diffused_head/contrib/libc++/include/__bit_reference projects/diffused_head/contrib/libc++/include/__config projects/diffused_head/contrib/libc++/include/__debug projects/diffused_head/contrib/libc++/include/__functional_03 projects/diffused_head/contrib/libc++/include/__functional_base projects/diffused_head/contrib/libc++/include/__functional_base_03 projects/diffused_head/contrib/libc++/include/__hash_table projects/diffused_head/contrib/libc++/include/__locale projects/diffused_head/contrib/libc++/include/__mutex_base projects/diffused_head/contrib/libc++/include/__split_buffer projects/diffused_head/contrib/libc++/include/__sso_allocator projects/diffused_head/contrib/libc++/include/__std_stream projects/diffused_head/contrib/libc++/include/__tree projects/diffused_head/contrib/libc++/include/__tuple projects/diffused_head/contrib/libc++/include/algorithm projects/diffused_head/contrib/libc++/include/atomic projects/diffused_head/contrib/libc++/include/bitset projects/diffused_head/contrib/libc++/include/chrono projects/diffused_head/contrib/libc++/include/cmath projects/diffused_head/contrib/libc++/include/complex projects/diffused_head/contrib/libc++/include/cstddef projects/diffused_head/contrib/libc++/include/cstdlib projects/diffused_head/contrib/libc++/include/cstring projects/diffused_head/contrib/libc++/include/deque projects/diffused_head/contrib/libc++/include/exception projects/diffused_head/contrib/libc++/include/ext/hash_map projects/diffused_head/contrib/libc++/include/forward_list projects/diffused_head/contrib/libc++/include/fstream projects/diffused_head/contrib/libc++/include/functional projects/diffused_head/contrib/libc++/include/future projects/diffused_head/contrib/libc++/include/initializer_list projects/diffused_head/contrib/libc++/include/iomanip projects/diffused_head/contrib/libc++/include/ios projects/diffused_head/contrib/libc++/include/istream projects/diffused_head/contrib/libc++/include/iterator projects/diffused_head/contrib/libc++/include/limits projects/diffused_head/contrib/libc++/include/list projects/diffused_head/contrib/libc++/include/locale projects/diffused_head/contrib/libc++/include/map projects/diffused_head/contrib/libc++/include/memory projects/diffused_head/contrib/libc++/include/mutex projects/diffused_head/contrib/libc++/include/ostream projects/diffused_head/contrib/libc++/include/random projects/diffused_head/contrib/libc++/include/ratio projects/diffused_head/contrib/libc++/include/regex projects/diffused_head/contrib/libc++/include/sstream projects/diffused_head/contrib/libc++/include/streambuf projects/diffused_head/contrib/libc++/include/string projects/diffused_head/contrib/libc++/include/system_error projects/diffused_head/contrib/libc++/include/thread projects/diffused_head/contrib/libc++/include/tuple projects/diffused_head/contrib/libc++/include/type_traits projects/diffused_head/contrib/libc++/include/unordered_map projects/diffused_head/contrib/libc++/include/utility projects/diffused_head/contrib/libc++/include/valarray projects/diffused_head/contrib/libc++/include/vector projects/diffused_head/contrib/libc++/src/chrono.cpp projects/diffused_head/contrib/libc++/src/condition_variable.cpp projects/diffused_head/contrib/libc++/src/debug.cpp projects/diffused_head/contrib/libc++/src/exception.cpp projects/diffused_head/contrib/libc++/src/future.cpp projects/diffused_head/contrib/libc++/src/hash.cpp projects/diffused_head/contrib/libc++/src/iostream.cpp projects/diffused_head/contrib/libc++/src/locale.cpp projects/diffused_head/contrib/libc++/src/memory.cpp projects/diffused_head/contrib/libc++/src/mutex.cpp projects/diffused_head/contrib/libc++/src/new.cpp projects/diffused_head/contrib/libc++/src/random.cpp projects/diffused_head/contrib/libc++/src/regex.cpp projects/diffused_head/contrib/libc++/src/stdexcept.cpp projects/diffused_head/contrib/libc++/src/string.cpp projects/diffused_head/contrib/libc++/src/strstream.cpp projects/diffused_head/contrib/libc++/src/thread.cpp projects/diffused_head/contrib/libc++/src/typeinfo.cpp projects/diffused_head/contrib/libc++/src/utility.cpp projects/diffused_head/contrib/libcxxrt/auxhelper.cc projects/diffused_head/contrib/libcxxrt/cxxabi.h projects/diffused_head/contrib/libcxxrt/dwarf_eh.h projects/diffused_head/contrib/libcxxrt/dynamic_cast.cc projects/diffused_head/contrib/libcxxrt/exception.cc projects/diffused_head/contrib/libcxxrt/guard.cc projects/diffused_head/contrib/libcxxrt/memory.cc projects/diffused_head/contrib/libcxxrt/stdexcept.cc projects/diffused_head/contrib/libcxxrt/stdexcept.h projects/diffused_head/contrib/libcxxrt/terminate.cc projects/diffused_head/contrib/libcxxrt/typeinfo.cc projects/diffused_head/contrib/libcxxrt/typeinfo.h projects/diffused_head/contrib/libcxxrt/unwind-arm.h projects/diffused_head/contrib/libcxxrt/unwind.h projects/diffused_head/contrib/libstdc++/include/bits/stl_tree.h projects/diffused_head/contrib/llvm/LICENSE.TXT projects/diffused_head/contrib/llvm/include/llvm-c/Analysis.h projects/diffused_head/contrib/llvm/include/llvm-c/BitReader.h projects/diffused_head/contrib/llvm/include/llvm-c/BitWriter.h projects/diffused_head/contrib/llvm/include/llvm-c/Core.h projects/diffused_head/contrib/llvm/include/llvm-c/Disassembler.h projects/diffused_head/contrib/llvm/include/llvm-c/EnhancedDisassembly.h projects/diffused_head/contrib/llvm/include/llvm-c/ExecutionEngine.h projects/diffused_head/contrib/llvm/include/llvm-c/Initialization.h projects/diffused_head/contrib/llvm/include/llvm-c/LinkTimeOptimizer.h projects/diffused_head/contrib/llvm/include/llvm-c/Object.h projects/diffused_head/contrib/llvm/include/llvm-c/Target.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/IPO.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/PassManagerBuilder.h projects/diffused_head/contrib/llvm/include/llvm-c/Transforms/Scalar.h projects/diffused_head/contrib/llvm/include/llvm-c/lto.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APFloat.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APInt.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/diffused_head/contrib/llvm/include/llvm/ADT/BitVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseMapInfo.h projects/diffused_head/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/GraphTraits.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/IntervalMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PointerUnion.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SetVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallPtrSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallString.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SparseBitVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Statistic.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringExtras.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringRef.h projects/diffused_head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Trie.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Triple.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Twine.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ValueMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ilist.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequencyInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/CFGPrinter.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/CaptureTracking.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ConstantFolding.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DIBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DebugInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DominanceFrontier.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DominatorInternals.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/Dominators.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/IVUsers.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/IntervalIterator.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LazyValueInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/Loads.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/PHITransAddr.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ProfileInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/diffused_head/contrib/llvm/include/llvm/Argument.h projects/diffused_head/contrib/llvm/include/llvm/Assembly/AssemblyAnnotationWriter.h projects/diffused_head/contrib/llvm/include/llvm/Assembly/Parser.h projects/diffused_head/contrib/llvm/include/llvm/Assembly/Writer.h projects/diffused_head/contrib/llvm/include/llvm/Attributes.h projects/diffused_head/contrib/llvm/include/llvm/AutoUpgrade.h projects/diffused_head/contrib/llvm/include/llvm/BasicBlock.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/Archive.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/BitCodes.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/BitstreamWriter.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/Analysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/GCStrategy.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveVariables.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineDominators.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFunctionAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineMemOperand.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/PBQP/HeuristicBase.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/Passes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SchedulerRegistry.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/diffused_head/contrib/llvm/include/llvm/Constant.h projects/diffused_head/contrib/llvm/include/llvm/Constants.h projects/diffused_head/contrib/llvm/include/llvm/DefaultPasses.h projects/diffused_head/contrib/llvm/include/llvm/DerivedTypes.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/JITEventListener.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/diffused_head/contrib/llvm/include/llvm/Function.h projects/diffused_head/contrib/llvm/include/llvm/GlobalValue.h projects/diffused_head/contrib/llvm/include/llvm/InitializePasses.h projects/diffused_head/contrib/llvm/include/llvm/InlineAsm.h projects/diffused_head/contrib/llvm/include/llvm/InstrTypes.h projects/diffused_head/contrib/llvm/include/llvm/Instruction.def projects/diffused_head/contrib/llvm/include/llvm/Instruction.h projects/diffused_head/contrib/llvm/include/llvm/Instructions.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicInst.h projects/diffused_head/contrib/llvm/include/llvm/Intrinsics.td projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsX86.td projects/diffused_head/contrib/llvm/include/llvm/LLVMContext.h projects/diffused_head/contrib/llvm/include/llvm/LinkAllPasses.h projects/diffused_head/contrib/llvm/include/llvm/Linker.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmBackend.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfoCOFF.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfoDarwin.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmLayout.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAssembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCCodeEmitter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCCodeGenInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCContext.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDwarf.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCExpr.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCFixup.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInst.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstPrinter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectStreamer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSection.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSectionCOFF.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSectionELF.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSectionMachO.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCStreamer.h projects/diffused_head/contrib/llvm/include/llvm/Metadata.h projects/diffused_head/contrib/llvm/include/llvm/Module.h projects/diffused_head/contrib/llvm/include/llvm/Object/Archive.h projects/diffused_head/contrib/llvm/include/llvm/Object/Binary.h projects/diffused_head/contrib/llvm/include/llvm/Object/COFF.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachO.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachOObject.h projects/diffused_head/contrib/llvm/include/llvm/Object/ObjectFile.h projects/diffused_head/contrib/llvm/include/llvm/Operator.h projects/diffused_head/contrib/llvm/include/llvm/Pass.h projects/diffused_head/contrib/llvm/include/llvm/PassAnalysisSupport.h projects/diffused_head/contrib/llvm/include/llvm/PassManager.h projects/diffused_head/contrib/llvm/include/llvm/PassManagers.h projects/diffused_head/contrib/llvm/include/llvm/PassSupport.h projects/diffused_head/contrib/llvm/include/llvm/Support/BlockFrequency.h projects/diffused_head/contrib/llvm/include/llvm/Support/BranchProbability.h projects/diffused_head/contrib/llvm/include/llvm/Support/CFG.h projects/diffused_head/contrib/llvm/include/llvm/Support/COFF.h projects/diffused_head/contrib/llvm/include/llvm/Support/CallSite.h projects/diffused_head/contrib/llvm/include/llvm/Support/Capacity.h projects/diffused_head/contrib/llvm/include/llvm/Support/CodeGen.h projects/diffused_head/contrib/llvm/include/llvm/Support/CommandLine.h projects/diffused_head/contrib/llvm/include/llvm/Support/Compiler.h projects/diffused_head/contrib/llvm/include/llvm/Support/DOTGraphTraits.h projects/diffused_head/contrib/llvm/include/llvm/Support/DataTypes.h.in projects/diffused_head/contrib/llvm/include/llvm/Support/Debug.h projects/diffused_head/contrib/llvm/include/llvm/Support/Dwarf.h projects/diffused_head/contrib/llvm/include/llvm/Support/DynamicLibrary.h projects/diffused_head/contrib/llvm/include/llvm/Support/ELF.h projects/diffused_head/contrib/llvm/include/llvm/Support/Endian.h projects/diffused_head/contrib/llvm/include/llvm/Support/FileSystem.h projects/diffused_head/contrib/llvm/include/llvm/Support/GraphWriter.h projects/diffused_head/contrib/llvm/include/llvm/Support/Host.h projects/diffused_head/contrib/llvm/include/llvm/Support/IRBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/IRReader.h projects/diffused_head/contrib/llvm/include/llvm/Support/InstVisitor.h projects/diffused_head/contrib/llvm/include/llvm/Support/MachO.h projects/diffused_head/contrib/llvm/include/llvm/Support/ManagedStatic.h projects/diffused_head/contrib/llvm/include/llvm/Support/MathExtras.h projects/diffused_head/contrib/llvm/include/llvm/Support/MemoryObject.h projects/diffused_head/contrib/llvm/include/llvm/Support/PathV1.h projects/diffused_head/contrib/llvm/include/llvm/Support/PatternMatch.h projects/diffused_head/contrib/llvm/include/llvm/Support/Process.h projects/diffused_head/contrib/llvm/include/llvm/Support/Program.h projects/diffused_head/contrib/llvm/include/llvm/Support/Recycler.h projects/diffused_head/contrib/llvm/include/llvm/Support/SMLoc.h projects/diffused_head/contrib/llvm/include/llvm/Support/SourceMgr.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetSelect.h projects/diffused_head/contrib/llvm/include/llvm/Support/Valgrind.h projects/diffused_head/contrib/llvm/include/llvm/Support/ValueHandle.h projects/diffused_head/contrib/llvm/include/llvm/Support/raw_ostream.h projects/diffused_head/contrib/llvm/include/llvm/Support/system_error.h projects/diffused_head/contrib/llvm/include/llvm/Support/type_traits.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/Error.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/Record.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/TableGenAction.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/TableGenBackend.h projects/diffused_head/contrib/llvm/include/llvm/Target/Mangler.h projects/diffused_head/contrib/llvm/include/llvm/Target/Target.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetCallingConv.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetData.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetFrameLowering.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetJITInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLowering.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetMachine.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetOpcodes.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetOptions.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/IPO.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/IPO/InlinerPass.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Scalar.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/UnrollLoop.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h projects/diffused_head/contrib/llvm/include/llvm/Type.h projects/diffused_head/contrib/llvm/include/llvm/User.h projects/diffused_head/contrib/llvm/include/llvm/Value.h projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysisCounter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BlockFrequencyInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/CFGPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DIBuilder.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DebugInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DominanceFrontier.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IVUsers.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Lint.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Loads.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopDependenceAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PHITransAddr.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PathNumbering.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ProfileVerifierPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp projects/diffused_head/contrib/llvm/lib/Analysis/SparsePropagation.cpp projects/diffused_head/contrib/llvm/lib/Analysis/Trace.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/diffused_head/contrib/llvm/lib/Archive/ArchiveReader.cpp projects/diffused_head/contrib/llvm/lib/Archive/ArchiveWriter.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLLexer.h projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.h projects/diffused_head/contrib/llvm/lib/AsmParser/LLToken.h projects/diffused_head/contrib/llvm/lib/AsmParser/Parser.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h projects/diffused_head/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AllocationOrder.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AllocationOrder.h projects/diffused_head/contrib/llvm/lib/CodeGen/Analysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h projects/diffused_head/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/EdgeBundles.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/GCMetadata.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/GCStrategy.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/diffused_head/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LatencyPriorityQueue.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineFunctionAnalysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineModuleInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/OptimizePHIs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Passes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.h projects/diffused_head/contrib/llvm/lib/CodeGen/PseudoSourceValue.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBase.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Spiller.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Spiller.h projects/diffused_head/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SplitKit.h projects/diffused_head/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegMap.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugAbbrev.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugArangeSet.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFFormValue.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/diffused_head/contrib/llvm/lib/Linker/LinkArchives.cpp projects/diffused_head/contrib/llvm/lib/Linker/LinkModules.cpp projects/diffused_head/contrib/llvm/lib/Linker/Linker.cpp projects/diffused_head/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAssembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCCodeGenInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCContext.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDwarf.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCExpr.cpp projects/diffused_head/contrib/llvm/lib/MC/MCInst.cpp projects/diffused_head/contrib/llvm/lib/MC/MCInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCModule.cpp projects/diffused_head/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/MCAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCPureStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCSymbol.cpp projects/diffused_head/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/diffused_head/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/diffused_head/contrib/llvm/lib/Object/Archive.cpp projects/diffused_head/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/ELFObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObject.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/Object.cpp projects/diffused_head/contrib/llvm/lib/Object/ObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Support/APFloat.cpp projects/diffused_head/contrib/llvm/lib/Support/APInt.cpp projects/diffused_head/contrib/llvm/lib/Support/Allocator.cpp projects/diffused_head/contrib/llvm/lib/Support/Atomic.cpp projects/diffused_head/contrib/llvm/lib/Support/BlockFrequency.cpp projects/diffused_head/contrib/llvm/lib/Support/BranchProbability.cpp projects/diffused_head/contrib/llvm/lib/Support/CommandLine.cpp projects/diffused_head/contrib/llvm/lib/Support/ConstantRange.cpp projects/diffused_head/contrib/llvm/lib/Support/CrashRecoveryContext.cpp projects/diffused_head/contrib/llvm/lib/Support/DAGDeltaAlgorithm.cpp projects/diffused_head/contrib/llvm/lib/Support/DataExtractor.cpp projects/diffused_head/contrib/llvm/lib/Support/Dwarf.cpp projects/diffused_head/contrib/llvm/lib/Support/FileUtilities.cpp projects/diffused_head/contrib/llvm/lib/Support/FoldingSet.cpp projects/diffused_head/contrib/llvm/lib/Support/GraphWriter.cpp projects/diffused_head/contrib/llvm/lib/Support/Host.cpp projects/diffused_head/contrib/llvm/lib/Support/ManagedStatic.cpp projects/diffused_head/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/diffused_head/contrib/llvm/lib/Support/Mutex.cpp projects/diffused_head/contrib/llvm/lib/Support/Path.cpp projects/diffused_head/contrib/llvm/lib/Support/PathV2.cpp projects/diffused_head/contrib/llvm/lib/Support/Program.cpp projects/diffused_head/contrib/llvm/lib/Support/RWMutex.cpp projects/diffused_head/contrib/llvm/lib/Support/SmallPtrSet.cpp projects/diffused_head/contrib/llvm/lib/Support/SourceMgr.cpp projects/diffused_head/contrib/llvm/lib/Support/Statistic.cpp projects/diffused_head/contrib/llvm/lib/Support/StringExtras.cpp projects/diffused_head/contrib/llvm/lib/Support/StringMap.cpp projects/diffused_head/contrib/llvm/lib/Support/StringRef.cpp projects/diffused_head/contrib/llvm/lib/Support/TargetRegistry.cpp projects/diffused_head/contrib/llvm/lib/Support/ThreadLocal.cpp projects/diffused_head/contrib/llvm/lib/Support/Threading.cpp projects/diffused_head/contrib/llvm/lib/Support/Timer.cpp projects/diffused_head/contrib/llvm/lib/Support/Triple.cpp projects/diffused_head/contrib/llvm/lib/Support/Unix/Host.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Path.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Program.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Signals.inc projects/diffused_head/contrib/llvm/lib/Support/Valgrind.cpp projects/diffused_head/contrib/llvm/lib/Support/Windows/Host.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Path.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Program.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Signals.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Windows.h projects/diffused_head/contrib/llvm/lib/Support/raw_ostream.cpp projects/diffused_head/contrib/llvm/lib/TableGen/Error.cpp projects/diffused_head/contrib/llvm/lib/TableGen/Record.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TGLexer.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TGLexer.h projects/diffused_head/contrib/llvm/lib/TableGen/TGParser.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TGParser.h projects/diffused_head/contrib/llvm/lib/TableGen/TableGenBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARM.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARM.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBuildAttrs.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCallingConv.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantPoolValue.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMELFWriterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMJITInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRelocations.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSchedule.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMScheduleV6.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/CellSDKIntrinsics.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/SPUMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPU.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPU.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPU128InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPU64InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrBuilder.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUMathInstr.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUNodes.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUNopFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUOperands.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUSchedule.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlaze.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeELFWriterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFPU.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFSL.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsics.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeRelocations.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule3.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule5.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Mangler.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.td projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRelocations.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSchedule.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRelocations.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/FPMover.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/Sparc.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/Sparc.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/TargetData.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmLexer.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ELFWriterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86Instr3DNow.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrBuilder.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCMovSetCC.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFPStack.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrShiftRotate.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrVMX.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86JITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86JITInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86Relocations.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCore.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCore.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Transforms/IPO/ConstantMerge.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/FunctionAttrs.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/InlineAlways.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/InlineSimple.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/Internalize.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ConstantProp.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/AddrModeMatcher.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyInstructions.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Attributes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/diffused_head/contrib/llvm/lib/VMCore/BasicBlock.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Constants.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantsContext.h projects/diffused_head/contrib/llvm/lib/VMCore/Core.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DebugLoc.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Dominators.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Function.cpp projects/diffused_head/contrib/llvm/lib/VMCore/GCOV.cpp projects/diffused_head/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instruction.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instructions.cpp projects/diffused_head/contrib/llvm/lib/VMCore/LLVMContext.cpp projects/diffused_head/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp projects/diffused_head/contrib/llvm/lib/VMCore/LLVMContextImpl.h projects/diffused_head/contrib/llvm/lib/VMCore/Metadata.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Module.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Pass.cpp projects/diffused_head/contrib/llvm/lib/VMCore/PassManager.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Type.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Use.cpp projects/diffused_head/contrib/llvm/lib/VMCore/User.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Value.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Verifier.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/CrashDebugger.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ExecutionDriver.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/Miscompilation.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/OptimizerDriver.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ToolRunner.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ToolRunner.h projects/diffused_head/contrib/llvm/tools/bugpoint/bugpoint.cpp projects/diffused_head/contrib/llvm/tools/clang/LICENSE.TXT projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/Index.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/APValue.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/VTableBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Version.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Action.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Job.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Tool.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Types.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/ModuleLoader.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/ParseAST.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/ASTConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/PrettyDeclStackTrace.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/SemaConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/Module.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ModuleManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerRegistry.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/diffused_head/contrib/llvm/tools/clang/lib/AST/APValue.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/AttrImpl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Mangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/FormatStringParsing.h projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/LangOptions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/SourceLocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Action.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Arg.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/CC1AsOptions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/CC1Options.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/DriverOptions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Job.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Option.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTMerge.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LangStandards.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/avxintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/float.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/smmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/tgmath.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/tmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/x86intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPCaching.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/HTMLPrint.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteMacros.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteTest.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/Scope.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/Module.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ModuleManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerRegistry.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/diffused_head/contrib/llvm/tools/llc/llc.cpp projects/diffused_head/contrib/llvm/tools/lli/lli.cpp projects/diffused_head/contrib/llvm/tools/llvm-as/llvm-as.cpp projects/diffused_head/contrib/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DiffConsumer.h projects/diffused_head/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DifferenceEngine.h projects/diffused_head/contrib/llvm/tools/llvm-diff/llvm-diff.cpp projects/diffused_head/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/diffused_head/contrib/llvm/tools/llvm-extract/llvm-extract.cpp projects/diffused_head/contrib/llvm/tools/llvm-ld/llvm-ld.cpp projects/diffused_head/contrib/llvm/tools/llvm-link/llvm-link.cpp projects/diffused_head/contrib/llvm/tools/llvm-mc/Disassembler.cpp projects/diffused_head/contrib/llvm/tools/llvm-mc/Disassembler.h projects/diffused_head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/diffused_head/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/diffused_head/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/diffused_head/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/diffused_head/contrib/llvm/tools/llvm-objdump/llvm-objdump.h projects/diffused_head/contrib/llvm/tools/llvm-prof/llvm-prof.cpp projects/diffused_head/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/diffused_head/contrib/llvm/tools/opt/PrintSCC.cpp projects/diffused_head/contrib/llvm/tools/opt/opt.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/SetTheory.cpp projects/diffused_head/contrib/llvm/utils/TableGen/SetTheory.h projects/diffused_head/contrib/llvm/utils/TableGen/StringToOffsetTable.h projects/diffused_head/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/TableGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86ModRMFilters.h projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/diffused_head/contrib/ntp/ntpd/ntp_loopfilter.c projects/diffused_head/contrib/openbsm/libauditd/auditd_lib.c projects/diffused_head/contrib/openpam/lib/openpam_configure.c projects/diffused_head/contrib/telnet/libtelnet/kerberos5.c projects/diffused_head/contrib/tnftp/src/main.c projects/diffused_head/contrib/tnftp/src/util.c projects/diffused_head/contrib/top/top.c projects/diffused_head/contrib/traceroute/traceroute.c projects/diffused_head/contrib/tzdata/antarctica projects/diffused_head/contrib/tzdata/asia projects/diffused_head/contrib/tzdata/australasia projects/diffused_head/contrib/tzdata/europe projects/diffused_head/contrib/tzdata/leapseconds projects/diffused_head/contrib/tzdata/northamerica projects/diffused_head/contrib/tzdata/southamerica projects/diffused_head/contrib/tzdata/zone.tab projects/diffused_head/crypto/heimdal/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2002 (contents, props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2003 (contents, props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2004 (contents, props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2005 (contents, props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2006 (contents, props changed) projects/diffused_head/crypto/heimdal/LICENSE (contents, props changed) projects/diffused_head/crypto/heimdal/Makefile.am projects/diffused_head/crypto/heimdal/Makefile.am.common projects/diffused_head/crypto/heimdal/Makefile.in projects/diffused_head/crypto/heimdal/NEWS (contents, props changed) projects/diffused_head/crypto/heimdal/README (contents, props changed) projects/diffused_head/crypto/heimdal/acinclude.m4 projects/diffused_head/crypto/heimdal/aclocal.m4 projects/diffused_head/crypto/heimdal/admin/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/admin/Makefile.am projects/diffused_head/crypto/heimdal/admin/Makefile.in projects/diffused_head/crypto/heimdal/admin/add.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/change.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/copy.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/get.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/ktutil-commands.in projects/diffused_head/crypto/heimdal/admin/ktutil.8 projects/diffused_head/crypto/heimdal/admin/ktutil.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/ktutil_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/admin/list.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/purge.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/remove.c (contents, props changed) projects/diffused_head/crypto/heimdal/admin/rename.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/Makefile.am projects/diffused_head/crypto/heimdal/appl/Makefile.in projects/diffused_head/crypto/heimdal/appl/afsutil/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/afsutil/Makefile.am projects/diffused_head/crypto/heimdal/appl/afsutil/Makefile.in projects/diffused_head/crypto/heimdal/appl/afsutil/afslog.1 projects/diffused_head/crypto/heimdal/appl/afsutil/afslog.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/afsutil/pagsh.1 projects/diffused_head/crypto/heimdal/appl/afsutil/pagsh.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/Makefile.am projects/diffused_head/crypto/heimdal/appl/ftp/Makefile.in projects/diffused_head/crypto/heimdal/appl/ftp/common/Makefile.am projects/diffused_head/crypto/heimdal/appl/ftp/common/Makefile.in projects/diffused_head/crypto/heimdal/appl/ftp/common/buffer.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/common/common.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/common/sockbuf.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/Makefile.am projects/diffused_head/crypto/heimdal/appl/ftp/ftp/Makefile.in projects/diffused_head/crypto/heimdal/appl/ftp/ftp/cmds.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/cmdtab.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/domacro.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/extern.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/ftp.1 projects/diffused_head/crypto/heimdal/appl/ftp/ftp/ftp.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/ftp_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/globals.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/gssapi.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/kauth.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/main.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/ruserpass.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/security.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/security.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/Makefile.am projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/Makefile.in projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/extern.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpcmd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpcmd.y (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpd.8 projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpd_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ftpusers.5 projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/gss_userok.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/gssapi.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/kauth.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/klist.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/logwtmp.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/ls.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/popen.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/security.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/gssmask/Makefile.am projects/diffused_head/crypto/heimdal/appl/gssmask/Makefile.in projects/diffused_head/crypto/heimdal/appl/gssmask/common.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/gssmask/common.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/gssmask/gssmaestro.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/gssmask/gssmask.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/gssmask/protocol.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/kf/Makefile.am projects/diffused_head/crypto/heimdal/appl/kf/Makefile.in projects/diffused_head/crypto/heimdal/appl/kf/kf.1 projects/diffused_head/crypto/heimdal/appl/kf/kf.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/kf/kf_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/kf/kfd.8 projects/diffused_head/crypto/heimdal/appl/kf/kfd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/Makefile.am projects/diffused_head/crypto/heimdal/appl/login/Makefile.in projects/diffused_head/crypto/heimdal/appl/login/conf.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/env.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/limits_conf.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/login.1 projects/diffused_head/crypto/heimdal/appl/login/login.access.5 projects/diffused_head/crypto/heimdal/appl/login/login.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/login_access.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/login_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/loginpaths.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/osfc2.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/read_string.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/shadow.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/stty_default.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/tty.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/utmp_login.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/login/utmpx_login.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/push/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/push/Makefile.am projects/diffused_head/crypto/heimdal/appl/push/Makefile.in projects/diffused_head/crypto/heimdal/appl/push/pfrom.1 projects/diffused_head/crypto/heimdal/appl/push/pfrom.in projects/diffused_head/crypto/heimdal/appl/push/push.8 projects/diffused_head/crypto/heimdal/appl/push/push.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/push/push_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rcp/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rcp/Makefile.am projects/diffused_head/crypto/heimdal/appl/rcp/Makefile.in projects/diffused_head/crypto/heimdal/appl/rcp/extern.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rcp/rcp.1 projects/diffused_head/crypto/heimdal/appl/rcp/rcp.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rcp/rcp_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rcp/util.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/Makefile.am projects/diffused_head/crypto/heimdal/appl/rsh/Makefile.in projects/diffused_head/crypto/heimdal/appl/rsh/common.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/limits_conf.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/login_access.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/rsh.1 projects/diffused_head/crypto/heimdal/appl/rsh/rsh.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/rsh_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/rsh/rshd.8 projects/diffused_head/crypto/heimdal/appl/rsh/rshd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/su/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/su/Makefile.am projects/diffused_head/crypto/heimdal/appl/su/Makefile.in projects/diffused_head/crypto/heimdal/appl/su/su.1 projects/diffused_head/crypto/heimdal/appl/su/su.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/su/supaths.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/Makefile.am projects/diffused_head/crypto/heimdal/appl/telnet/Makefile.in projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/Makefile.am projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/Makefile.in projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/auth-proto.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/auth.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/auth.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/enc-proto.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/enc_des.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/encrypt.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/encrypt.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/genget.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/kerberos5.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/misc-proto.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/misc.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/rsaencpwd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/spx.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/Makefile.am projects/diffused_head/crypto/heimdal/appl/telnet/telnet/Makefile.in projects/diffused_head/crypto/heimdal/appl/telnet/telnet/authenc.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/commands.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/externs.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/main.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/network.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/ring.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/ring.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/sys_bsd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/telnet.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/telnet_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/terminal.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/utilities.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/Makefile.am projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/Makefile.in projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/authenc.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/defs.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/ext.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/global.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/slc.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/state.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/sys_term.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/telnetd.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/telnetd.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/termstat.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnetd/utility.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/Makefile.am projects/diffused_head/crypto/heimdal/appl/test/Makefile.in projects/diffused_head/crypto/heimdal/appl/test/common.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/gss_common.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/gss_common.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/gssapi_client.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/gssapi_server.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/http_client.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/nt_gss_client.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/nt_gss_common.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/nt_gss_common.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/nt_gss_server.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/tcp_client.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/tcp_server.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/test_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/uu_client.c (contents, props changed) projects/diffused_head/crypto/heimdal/appl/test/uu_server.c (contents, props changed) projects/diffused_head/crypto/heimdal/autogen.sh projects/diffused_head/crypto/heimdal/compile projects/diffused_head/crypto/heimdal/config.guess projects/diffused_head/crypto/heimdal/config.sub projects/diffused_head/crypto/heimdal/configure projects/diffused_head/crypto/heimdal/doc/Makefile.am projects/diffused_head/crypto/heimdal/doc/Makefile.in projects/diffused_head/crypto/heimdal/doc/ack.texi projects/diffused_head/crypto/heimdal/doc/apps.texi projects/diffused_head/crypto/heimdal/doc/doxytmpl.dxy projects/diffused_head/crypto/heimdal/doc/hcrypto.din projects/diffused_head/crypto/heimdal/doc/heimdal.texi projects/diffused_head/crypto/heimdal/doc/hx509.din projects/diffused_head/crypto/heimdal/doc/hx509.texi projects/diffused_head/crypto/heimdal/doc/install.texi projects/diffused_head/crypto/heimdal/doc/intro.texi projects/diffused_head/crypto/heimdal/doc/kerberos4.texi projects/diffused_head/crypto/heimdal/doc/krb5.din projects/diffused_head/crypto/heimdal/doc/migration.texi projects/diffused_head/crypto/heimdal/doc/misc.texi projects/diffused_head/crypto/heimdal/doc/ntlm.din projects/diffused_head/crypto/heimdal/doc/programming.texi projects/diffused_head/crypto/heimdal/doc/setup.texi projects/diffused_head/crypto/heimdal/doc/vars.texi projects/diffused_head/crypto/heimdal/doc/whatis.texi projects/diffused_head/crypto/heimdal/doc/win2k.texi projects/diffused_head/crypto/heimdal/etc/Makefile.am projects/diffused_head/crypto/heimdal/etc/Makefile.in projects/diffused_head/crypto/heimdal/etc/services.append projects/diffused_head/crypto/heimdal/include/Makefile.am projects/diffused_head/crypto/heimdal/include/Makefile.in projects/diffused_head/crypto/heimdal/include/bits.c (contents, props changed) projects/diffused_head/crypto/heimdal/include/config.h.in projects/diffused_head/crypto/heimdal/include/gssapi/Makefile.am projects/diffused_head/crypto/heimdal/include/gssapi/Makefile.in projects/diffused_head/crypto/heimdal/include/hcrypto/Makefile.am projects/diffused_head/crypto/heimdal/include/hcrypto/Makefile.in projects/diffused_head/crypto/heimdal/include/kadm5/Makefile.am projects/diffused_head/crypto/heimdal/include/kadm5/Makefile.in projects/diffused_head/crypto/heimdal/install-sh projects/diffused_head/crypto/heimdal/kadmin/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/Makefile.am projects/diffused_head/crypto/heimdal/kadmin/Makefile.in projects/diffused_head/crypto/heimdal/kadmin/add-random-users.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/add_enctype.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/ank.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/check.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/cpw.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/del.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/del_enctype.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/dump.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/ext.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/get.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/init.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/kadm_conn.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/kadmin-commands.in projects/diffused_head/crypto/heimdal/kadmin/kadmin.8 projects/diffused_head/crypto/heimdal/kadmin/kadmin.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/kadmin_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/kadmind.8 projects/diffused_head/crypto/heimdal/kadmin/kadmind.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/load.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/mod.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/pw_quality.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/random_password.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/rename.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/server.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/stash.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/test_util.c (contents, props changed) projects/diffused_head/crypto/heimdal/kadmin/util.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/Makefile.am projects/diffused_head/crypto/heimdal/kcm/Makefile.in projects/diffused_head/crypto/heimdal/kcm/acl.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/acquire.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/cache.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/client.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/config.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/connect.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/events.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/headers.h (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/kcm.8 projects/diffused_head/crypto/heimdal/kcm/kcm_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/log.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/main.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/protocol.c (contents, props changed) projects/diffused_head/crypto/heimdal/kcm/renew.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/Makefile.am projects/diffused_head/crypto/heimdal/kdc/Makefile.in projects/diffused_head/crypto/heimdal/kdc/config.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/connect.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/default_config.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/digest.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/headers.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/hprop.8 projects/diffused_head/crypto/heimdal/kdc/hprop.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/hprop.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/hpropd.8 projects/diffused_head/crypto/heimdal/kdc/hpropd.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kdc-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kdc-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kdc-replay.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kdc.8 projects/diffused_head/crypto/heimdal/kdc/kdc.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kdc_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kerberos5.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/krb5tgs.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kstash.8 projects/diffused_head/crypto/heimdal/kdc/kstash.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/kx509.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/log.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/main.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/misc.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/mit_dump.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/pkinit.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/process.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/rx.h (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/set_dbinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/string2key.8 projects/diffused_head/crypto/heimdal/kdc/string2key.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/version-script.map projects/diffused_head/crypto/heimdal/kdc/windc.c (contents, props changed) projects/diffused_head/crypto/heimdal/kdc/windc_plugin.h (contents, props changed) projects/diffused_head/crypto/heimdal/kpasswd/Makefile.am projects/diffused_head/crypto/heimdal/kpasswd/Makefile.in projects/diffused_head/crypto/heimdal/kpasswd/kpasswd-generator.c (contents, props changed) projects/diffused_head/crypto/heimdal/kpasswd/kpasswd.1 projects/diffused_head/crypto/heimdal/kpasswd/kpasswd.c (contents, props changed) projects/diffused_head/crypto/heimdal/kpasswd/kpasswd_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/kpasswd/kpasswdd.8 projects/diffused_head/crypto/heimdal/kpasswd/kpasswdd.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/Makefile.am projects/diffused_head/crypto/heimdal/kuser/Makefile.in projects/diffused_head/crypto/heimdal/kuser/copy_cred_cache.1 projects/diffused_head/crypto/heimdal/kuser/copy_cred_cache.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/generate-requests.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kdecode_ticket.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kdestroy.1 projects/diffused_head/crypto/heimdal/kuser/kdestroy.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kdigest-commands.in projects/diffused_head/crypto/heimdal/kuser/kdigest.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kgetcred.1 projects/diffused_head/crypto/heimdal/kuser/kgetcred.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kimpersonate.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kinit.1 projects/diffused_head/crypto/heimdal/kuser/kinit.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/klist.1 projects/diffused_head/crypto/heimdal/kuser/klist.c (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kuser_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/kuser/kverify.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/Makefile.am projects/diffused_head/crypto/heimdal/lib/Makefile.in projects/diffused_head/crypto/heimdal/lib/asn1/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/Makefile.am projects/diffused_head/crypto/heimdal/lib/asn1/Makefile.in projects/diffused_head/crypto/heimdal/lib/asn1/asn1-common.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/asn1_err.et projects/diffused_head/crypto/heimdal/lib/asn1/asn1_gen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/asn1_print.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/asn1_queue.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/canthandle.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/check-common.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/check-common.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/check-der.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/check-gen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/check-timegm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_cmp.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_copy.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_format.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_free.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_get.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_length.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/der_put.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/digest.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/extra.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_copy.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_decode.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_encode.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_free.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_length.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/gen_seq.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/hash.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/hash.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/heim_asn1.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/kx509.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/lex.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/lex.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/lex.l projects/diffused_head/crypto/heimdal/lib/asn1/main.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/pkcs12.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/pkcs8.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/pkcs9.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/pkinit.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/rfc2459.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/setchgpw2.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/symbol.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/symbol.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/asn1/test.asn1 projects/diffused_head/crypto/heimdal/lib/asn1/test.gen projects/diffused_head/crypto/heimdal/lib/asn1/timegm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/Makefile.am projects/diffused_head/crypto/heimdal/lib/com_err/Makefile.in projects/diffused_head/crypto/heimdal/lib/com_err/com_err.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/com_err.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/com_right.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/compile_et.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/compile_et.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/error.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/lex.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/lex.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/lex.l projects/diffused_head/crypto/heimdal/lib/com_err/parse.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/parse.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/parse.y projects/diffused_head/crypto/heimdal/lib/com_err/roken_rename.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/com_err/version-script.map projects/diffused_head/crypto/heimdal/lib/gssapi/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/Makefile.am projects/diffused_head/crypto/heimdal/lib/gssapi/Makefile.in projects/diffused_head/crypto/heimdal/lib/gssapi/gss-commands.in projects/diffused_head/crypto/heimdal/lib/gssapi/gss_acquire_cred.3 projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi.3 projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi/gssapi.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi/gssapi_krb5.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi/gssapi_spnego.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/gssapi_mech.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/8003.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/accept_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/acquire_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/add_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/address_to_krb5addr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/arcfour.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/canonicalize_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/ccache_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/cfx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/cfx.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/compare_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/compat.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/context_time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/copy_ccache.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/decapsulate.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/delete_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/display_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/display_status.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/duplicate_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/encapsulate.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/export_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/export_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/external.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/get_mic.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/gkrb5_err.et projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/gsskrb5-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/gsskrb5_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/import_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/import_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/indicate_mechs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/init.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/init_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_cred_by_mech.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_cred_by_oid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_mechs_for_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_names_for_mech.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/inquire_sec_context_by_oid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/prf.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/process_context_token.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/release_buffer.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/release_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/release_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/sequence.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/set_cred_option.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/set_sec_context_option.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/test_cfx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/ticket_flags.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/unwrap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/verify_mic.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/krb5/wrap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/accept_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/acquire_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/add_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/canonicalize_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/compare_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/context_time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/crypto.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/delete_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/display_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/display_status.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/duplicate_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/export_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/export_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/external.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/import_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/import_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/indicate_mechs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/init_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_cred_by_mech.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_mechs_for_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/inquire_names_for_mech.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/ntlm-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/ntlm.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/process_context_token.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/release_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/ntlm/release_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/accept_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/compat.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/context_stubs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/cred_stubs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/external.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/init_sec_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/spnego-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/spnego.asn1 projects/diffused_head/crypto/heimdal/lib/gssapi/spnego/spnego_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_acquire_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_common.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_common.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_kcred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_names.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_ntlm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/test_oid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/gssapi/version-script.map projects/diffused_head/crypto/heimdal/lib/hdb/Makefile.am projects/diffused_head/crypto/heimdal/lib/hdb/Makefile.in projects/diffused_head/crypto/heimdal/lib/hdb/common.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/db.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/db3.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/dbinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/ext.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb-ldap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb.asn1 projects/diffused_head/crypto/heimdal/lib/hdb/hdb.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/hdb.schema projects/diffused_head/crypto/heimdal/lib/hdb/hdb_err.et projects/diffused_head/crypto/heimdal/lib/hdb/hdb_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/keys.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/keytab.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/mkey.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/ndbm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/print.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hdb/test_dbinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/Makefile.am projects/diffused_head/crypto/heimdal/lib/hx509/Makefile.in projects/diffused_head/crypto/heimdal/lib/hx509/ca.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/cert.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/cms.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/collector.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/crmf.asn1 projects/diffused_head/crypto/heimdal/lib/hx509/crypto.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/doxygen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/env.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/error.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/file.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/hx509-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/hx509-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/hx509.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/hx509_err.et projects/diffused_head/crypto/heimdal/lib/hx509/hx_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/hxtool-commands.in projects/diffused_head/crypto/heimdal/lib/hx509/hxtool.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/keyset.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_dir.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_file.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_keychain.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_mem.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_null.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_p11.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ks_p12.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/lock.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ocsp.asn1 projects/diffused_head/crypto/heimdal/lib/hx509/peer.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/pkcs10.asn1 projects/diffused_head/crypto/heimdal/lib/hx509/print.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/req.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/revoke.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/softp11.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/test_ca.in projects/diffused_head/crypto/heimdal/lib/hx509/test_cert.in projects/diffused_head/crypto/heimdal/lib/hx509/test_chain.in projects/diffused_head/crypto/heimdal/lib/hx509/test_cms.in projects/diffused_head/crypto/heimdal/lib/hx509/test_crypto.in projects/diffused_head/crypto/heimdal/lib/hx509/test_java_pkcs11.in projects/diffused_head/crypto/heimdal/lib/hx509/test_name.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/test_nist.in projects/diffused_head/crypto/heimdal/lib/hx509/test_nist2.in projects/diffused_head/crypto/heimdal/lib/hx509/test_nist_cert.in projects/diffused_head/crypto/heimdal/lib/hx509/test_nist_pkcs12.in projects/diffused_head/crypto/heimdal/lib/hx509/test_pkcs11.in projects/diffused_head/crypto/heimdal/lib/hx509/test_query.in projects/diffused_head/crypto/heimdal/lib/hx509/test_req.in projects/diffused_head/crypto/heimdal/lib/hx509/test_soft_pkcs11.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/hx509/test_windows.in projects/diffused_head/crypto/heimdal/lib/hx509/tst-crypto-available2 projects/diffused_head/crypto/heimdal/lib/hx509/tst-crypto-select1 projects/diffused_head/crypto/heimdal/lib/hx509/tst-crypto-select2 projects/diffused_head/crypto/heimdal/lib/hx509/version-script.map projects/diffused_head/crypto/heimdal/lib/kadm5/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/Makefile.am projects/diffused_head/crypto/heimdal/lib/kadm5/Makefile.in projects/diffused_head/crypto/heimdal/lib/kadm5/acl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/ad.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/admin.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/bump_pw_expire.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/check-cracklib.pl projects/diffused_head/crypto/heimdal/lib/kadm5/chpass_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/chpass_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/client_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/common_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/context_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/create_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/create_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/default_keys.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/delete_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/delete_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/destroy_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/destroy_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/ent_setup.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/error.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/flush.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/flush_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/flush_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/free.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/get_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/get_princs_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/get_princs_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/get_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/init_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/init_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/iprop-commands.in projects/diffused_head/crypto/heimdal/lib/kadm5/iprop-log.8 projects/diffused_head/crypto/heimdal/lib/kadm5/iprop-log.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/iprop.8 projects/diffused_head/crypto/heimdal/lib/kadm5/iprop.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/ipropd_common.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/ipropd_master.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/ipropd_slave.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5-pwcheck.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5_err.et projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5_pwcheck.3 projects/diffused_head/crypto/heimdal/lib/kadm5/keys.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/log.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/marshall.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/modify_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/modify_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/password_quality.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/privs_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/privs_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/randkey_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/randkey_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/rename_c.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/rename_s.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/sample_passwd_check.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/send_recv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/server_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/set_keys.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/set_modifier.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/test_pw_quality.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/Makefile.am projects/diffused_head/crypto/heimdal/lib/kafs/Makefile.in projects/diffused_head/crypto/heimdal/lib/kafs/afskrb5.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/afslib.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/afssys.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/afssysdefs.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/common.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/kafs.3 projects/diffused_head/crypto/heimdal/lib/kafs/kafs.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/kafs_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/kafs/roken_rename.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/Makefile.am projects/diffused_head/crypto/heimdal/lib/krb5/Makefile.in projects/diffused_head/crypto/heimdal/lib/krb5/acache.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/acl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/add_et_list.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/addr_families.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/aes-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/aname_to_localname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/appdefault.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/asn1_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/auth_context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/build_ap_req.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/build_auth.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/cache.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/changepw.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/codec.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/config_file.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/constants.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/context.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/convert_creds.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/copy_host_realm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/crc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/creds.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/crypto.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/data.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/derived-key-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/digest.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/doxygen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/eai_to_heim_errno.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/error_string.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/expand_hostname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/fcache.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/free.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/free_host_realm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/generate_seq_number.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/generate_subkey.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_addrs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_default_principal.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_default_realm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_for_creds.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_host_realm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_in_tkt.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/get_port.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/heim_err.et projects/diffused_head/crypto/heimdal/lib/krb5/init_creds.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/init_creds_pw.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/k524_err.et projects/diffused_head/crypto/heimdal/lib/krb5/kcm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/kcm.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/kerberos.8 projects/diffused_head/crypto/heimdal/lib/krb5/keyblock.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/keytab.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/keytab_any.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/keytab_file.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/keytab_keyfile.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/keytab_memory.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5-private.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5-v4compat.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5.conf.5 projects/diffused_head/crypto/heimdal/lib/krb5/krb5.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5.moduli projects/diffused_head/crypto/heimdal/lib/krb5/krb524_convert_creds_kdc.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_425_conv_principal.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_acl_match_file.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_aname_to_localname.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_appdefault.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_auth_context.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_c_make_checksum.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_ccapi.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5_check_transited.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_create_checksum.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_digest.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_eai_to_heim_errno.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_encrypt.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_err.et projects/diffused_head/crypto/heimdal/lib/krb5/krb5_find_padata.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_generate_random_block.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_all_client_addrs.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_credentials.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_forwarded_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_in_cred.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_init_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_get_krbhst.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_getportbyname.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_init_context.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_is_thread_safe.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_krbhst_init.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krb5_mk_req.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_mk_safe.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_openlog.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_parse_name.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_principal.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_rcache.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_rd_error.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_rd_safe.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_set_default_realm.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_set_password.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_string_to_key.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_timeofday.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_verify_init_creds.3 projects/diffused_head/crypto/heimdal/lib/krb5/krb5_verify_user.3 projects/diffused_head/crypto/heimdal/lib/krb5/krbhst-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/krbhst.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/kuserok.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/locate_plugin.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/log.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mcache.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/misc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mit_glue.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_error.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_priv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_rep.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_req.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_req_ext.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/mk_safe.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/n-fold-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/n-fold.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/net_read.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/net_write.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/pac.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/padata.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/parse-name-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/pkinit.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/plugin.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/principal.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/prog_setup.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/prompter_posix.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_cred.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_error.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_priv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_rep.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_req.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/rd_safe.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/read_message.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/recvauth.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/replay.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/send_to_kdc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/sendauth.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/set_default_realm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/sock_principal.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store-int.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store_emem.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store_fd.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/store_mem.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/string-to-key-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_acl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_addr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_alname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_cc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_config.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_crypto.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_crypto_wrapping.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_forward.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_get_addrs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_hostname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_keytab.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_kuserok.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_mem.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_pac.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_pkinit_dh2key.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_plugin.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_prf.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_princ.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_renew.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_store.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/test_time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/ticket.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/transited.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/verify_init.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/verify_krb5_conf.8 projects/diffused_head/crypto/heimdal/lib/krb5/verify_krb5_conf.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/verify_user.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/version-script.map projects/diffused_head/crypto/heimdal/lib/krb5/version.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/warn.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/krb5/write_message.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/Makefile.am projects/diffused_head/crypto/heimdal/lib/ntlm/Makefile.in projects/diffused_head/crypto/heimdal/lib/ntlm/heimntlm-protos.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/heimntlm.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/ntlm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/test_ntlm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/ntlm/version-script.map projects/diffused_head/crypto/heimdal/lib/roken/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/Makefile.am projects/diffused_head/crypto/heimdal/lib/roken/Makefile.in projects/diffused_head/crypto/heimdal/lib/roken/base64-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/base64.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/base64.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/bswap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/chown.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/closefrom.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/concat.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/copyhostent.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/daemon.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/dumpdata.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/ecalloc.3 projects/diffused_head/crypto/heimdal/lib/roken/ecalloc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/emalloc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/environment.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/eread.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/erealloc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/err.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/err.hin projects/diffused_head/crypto/heimdal/lib/roken/errx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/esetenv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/estrdup.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/ewrite.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/fchown.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/flock.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/fnmatch.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/fnmatch.hin projects/diffused_head/crypto/heimdal/lib/roken/freeaddrinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/freehostent.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/gai_strerror.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/get_default_username.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/get_window_size.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getaddrinfo-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getaddrinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getaddrinfo_hostspec.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getarg.3 projects/diffused_head/crypto/heimdal/lib/roken/getarg.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getarg.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getcap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getcwd.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getdtablesize.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getegid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/geteuid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getgid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/gethostname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getifaddrs.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getipnodebyaddr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getipnodebyname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getnameinfo.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getnameinfo_verified.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getopt.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getprogname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/gettimeofday.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getuid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/getusershell.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/glob.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/glob.hin projects/diffused_head/crypto/heimdal/lib/roken/h_errno.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/hex-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/hex.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/hex.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/hostent_find_fqdn.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/hstrerror.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/ifaddrs.hin projects/diffused_head/crypto/heimdal/lib/roken/inet_aton.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/inet_ntop.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/inet_pton.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/initgroups.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/innetgr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/iruserok.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/issuid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/k_getpwnam.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/k_getpwuid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/localtime_r.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/lstat.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/memmove.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/mini_inetd.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/mkstemp.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/ndbm_wrap.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/ndbm_wrap.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/net_read.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/net_write.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_bytes-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_bytes.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_bytes.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_reply-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_time-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_time.3 projects/diffused_head/crypto/heimdal/lib/roken/parse_time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_time.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_units.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/parse_units.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/putenv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/rcmd.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/readv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/realloc.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/recvmsg.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/resolve-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/resolve.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/resolve.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/roken-common.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/roken.awk projects/diffused_head/crypto/heimdal/lib/roken/roken.h.in projects/diffused_head/crypto/heimdal/lib/roken/roken_gethostby.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/rtbl.3 projects/diffused_head/crypto/heimdal/lib/roken/rtbl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/rtbl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/sendmsg.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/setegid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/setenv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/seteuid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/setprogname.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/signal.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/simple_exec.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/snprintf-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/snprintf.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/socket.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/socket_wrapper.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/socket_wrapper.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strcasecmp.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strcollect.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strdup.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strerror.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strftime.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strlcat.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strlcpy.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strlwr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strncasecmp.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strndup.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strnlen.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strpftime-test.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strpftime-test.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strpool.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strptime.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strsep.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strsep_copy.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strtok_r.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/strupr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/swab.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/test-mem.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/test-mem.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/test-readenv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/timegm.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/timeval.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/tm2time.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/unsetenv.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/unvis.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/verify.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/verr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/verrx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/vis.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/vis.hin projects/diffused_head/crypto/heimdal/lib/roken/vsyslog.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/vwarn.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/vwarnx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/warn.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/warnerr.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/warnx.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/write_pid.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/writev.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/roken/xdbm.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/Makefile.am projects/diffused_head/crypto/heimdal/lib/sl/Makefile.in projects/diffused_head/crypto/heimdal/lib/sl/roken_rename.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/sl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/sl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/sl_locl.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/slc-gram.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/slc-gram.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/slc-gram.y projects/diffused_head/crypto/heimdal/lib/sl/slc-lex.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/slc-lex.l projects/diffused_head/crypto/heimdal/lib/sl/slc.h (contents, props changed) projects/diffused_head/crypto/heimdal/lib/sl/test_sl.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/vers/ChangeLog (contents, props changed) projects/diffused_head/crypto/heimdal/lib/vers/Makefile.am projects/diffused_head/crypto/heimdal/lib/vers/Makefile.in projects/diffused_head/crypto/heimdal/lib/vers/print_version.c (contents, props changed) projects/diffused_head/crypto/heimdal/lib/vers/vers.h (contents, props changed) projects/diffused_head/crypto/heimdal/ltmain.sh projects/diffused_head/crypto/heimdal/missing projects/diffused_head/crypto/heimdal/tools/Makefile.am projects/diffused_head/crypto/heimdal/tools/Makefile.in projects/diffused_head/crypto/heimdal/tools/heimdal-gssapi.pc.in projects/diffused_head/crypto/heimdal/tools/kdc-log-analyze.pl projects/diffused_head/crypto/heimdal/tools/krb5-config.1 projects/diffused_head/crypto/heimdal/tools/krb5-config.in projects/diffused_head/crypto/openssl/crypto/asn1/a_d2i_fp.c projects/diffused_head/crypto/openssl/crypto/buffer/buffer.c projects/diffused_head/crypto/openssl/crypto/mem.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_map.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_tree.c projects/diffused_head/crypto/openssl/ssl/s3_enc.c projects/diffused_head/crypto/openssl/ssl/s3_srvr.c projects/diffused_head/crypto/openssl/ssl/ssl.h projects/diffused_head/crypto/openssl/ssl/ssl3.h projects/diffused_head/crypto/openssl/ssl/ssl_err.c projects/diffused_head/etc/defaults/devfs.rules projects/diffused_head/etc/defaults/rc.conf projects/diffused_head/etc/devd/apple.conf projects/diffused_head/etc/devd/usb.conf projects/diffused_head/etc/mtree/BSD.include.dist projects/diffused_head/etc/mtree/BSD.usr.dist projects/diffused_head/etc/newsyslog.conf projects/diffused_head/etc/rc projects/diffused_head/etc/rc.d/Makefile projects/diffused_head/etc/rc.d/accounting projects/diffused_head/etc/rc.d/routing projects/diffused_head/etc/rc.shutdown projects/diffused_head/etc/root/dot.cshrc projects/diffused_head/etc/services projects/diffused_head/games/pom/pom.6 projects/diffused_head/gnu/lib/libgcc/Makefile projects/diffused_head/gnu/lib/libstdc++/Makefile projects/diffused_head/gnu/lib/libsupc++/Makefile projects/diffused_head/gnu/usr.bin/binutils/Makefile.inc0 projects/diffused_head/gnu/usr.bin/binutils/ar/Makefile projects/diffused_head/gnu/usr.bin/binutils/as/Makefile projects/diffused_head/gnu/usr.bin/binutils/as/mips-freebsd/itbl-cpu.h projects/diffused_head/gnu/usr.bin/binutils/ld/Makefile projects/diffused_head/gnu/usr.bin/binutils/ranlib/Makefile projects/diffused_head/gnu/usr.bin/cc/Makefile.tgt projects/diffused_head/gnu/usr.bin/cc/c++/Makefile projects/diffused_head/gnu/usr.bin/cc/cc/Makefile projects/diffused_head/gnu/usr.bin/cc/cc1/Makefile projects/diffused_head/gnu/usr.bin/cc/cc1plus/Makefile projects/diffused_head/gnu/usr.bin/cc/cpp/Makefile projects/diffused_head/gnu/usr.bin/gdb/Makefile.inc projects/diffused_head/gnu/usr.bin/gdb/arch/mips/Makefile projects/diffused_head/gnu/usr.bin/gdb/kgdb/trgt_powerpc.c projects/diffused_head/gnu/usr.bin/gdb/libgdb/Makefile projects/diffused_head/include/Makefile projects/diffused_head/include/ctype.h projects/diffused_head/include/inttypes.h projects/diffused_head/include/langinfo.h projects/diffused_head/include/locale.h projects/diffused_head/include/malloc_np.h projects/diffused_head/include/monetary.h projects/diffused_head/include/runetype.h projects/diffused_head/include/setjmp.h projects/diffused_head/include/stdatomic.h projects/diffused_head/include/stdio.h projects/diffused_head/include/stdlib.h projects/diffused_head/include/string.h projects/diffused_head/include/time.h projects/diffused_head/include/unistd.h projects/diffused_head/include/wchar.h projects/diffused_head/include/wctype.h projects/diffused_head/include/xlocale.h projects/diffused_head/kerberos5/Makefile.inc projects/diffused_head/kerberos5/include/config.h projects/diffused_head/kerberos5/include/crypto-headers.h projects/diffused_head/kerberos5/include/krb5-types.h projects/diffused_head/kerberos5/include/version.h projects/diffused_head/kerberos5/lib/Makefile projects/diffused_head/kerberos5/lib/Makefile.inc projects/diffused_head/kerberos5/lib/libasn1/Makefile projects/diffused_head/kerberos5/lib/libgssapi_krb5/Makefile projects/diffused_head/kerberos5/lib/libgssapi_krb5/gss_krb5.c projects/diffused_head/kerberos5/lib/libgssapi_ntlm/Makefile projects/diffused_head/kerberos5/lib/libgssapi_ntlm/prefix.c projects/diffused_head/kerberos5/lib/libgssapi_spnego/Makefile projects/diffused_head/kerberos5/lib/libhdb/Makefile projects/diffused_head/kerberos5/lib/libheimntlm/Makefile projects/diffused_head/kerberos5/lib/libhx509/Makefile projects/diffused_head/kerberos5/lib/libkadm5clnt/Makefile projects/diffused_head/kerberos5/lib/libkadm5srv/Makefile projects/diffused_head/kerberos5/lib/libkafs5/Makefile projects/diffused_head/kerberos5/lib/libkrb5/Makefile projects/diffused_head/kerberos5/lib/libroken/Makefile projects/diffused_head/kerberos5/lib/libvers/Makefile projects/diffused_head/kerberos5/libexec/Makefile projects/diffused_head/kerberos5/libexec/hprop/Makefile projects/diffused_head/kerberos5/libexec/ipropd-master/Makefile projects/diffused_head/kerberos5/libexec/kadmind/Makefile projects/diffused_head/kerberos5/libexec/kcm/Makefile projects/diffused_head/kerberos5/libexec/kdc/Makefile projects/diffused_head/kerberos5/tools/Makefile projects/diffused_head/kerberos5/tools/Makefile.inc projects/diffused_head/kerberos5/tools/asn1_compile/Makefile projects/diffused_head/kerberos5/tools/make-roken/Makefile projects/diffused_head/kerberos5/tools/slc/Makefile projects/diffused_head/kerberos5/usr.bin/Makefile projects/diffused_head/kerberos5/usr.bin/kadmin/Makefile projects/diffused_head/kerberos5/usr.bin/kdestroy/Makefile projects/diffused_head/kerberos5/usr.bin/kinit/Makefile projects/diffused_head/kerberos5/usr.bin/krb5-config/Makefile projects/diffused_head/kerberos5/usr.sbin/Makefile projects/diffused_head/kerberos5/usr.sbin/kstash/Makefile projects/diffused_head/kerberos5/usr.sbin/ktutil/Makefile projects/diffused_head/lib/Makefile projects/diffused_head/lib/bind/config.h projects/diffused_head/lib/bind/dns/code.h projects/diffused_head/lib/bind/dns/dns/enumclass.h projects/diffused_head/lib/bind/dns/dns/enumtype.h projects/diffused_head/lib/bind/dns/dns/rdatastruct.h projects/diffused_head/lib/bind/lwres/lwres/netdb.h projects/diffused_head/lib/bind/lwres/lwres/platform.h projects/diffused_head/lib/clang/Makefile projects/diffused_head/lib/clang/clang.build.mk projects/diffused_head/lib/clang/include/Makefile projects/diffused_head/lib/clang/include/clang/Basic/Version.inc projects/diffused_head/lib/clang/include/llvm/Config/config.h projects/diffused_head/lib/clang/include/llvm/Config/llvm-config.h projects/diffused_head/lib/clang/libclanganalysis/Makefile projects/diffused_head/lib/clang/libclangarcmigrate/Makefile projects/diffused_head/lib/clang/libclangast/Makefile projects/diffused_head/lib/clang/libclangbasic/Makefile projects/diffused_head/lib/clang/libclangcodegen/Makefile projects/diffused_head/lib/clang/libclangdriver/Makefile projects/diffused_head/lib/clang/libclangfrontend/Makefile projects/diffused_head/lib/clang/libclanglex/Makefile projects/diffused_head/lib/clang/libclangparse/Makefile projects/diffused_head/lib/clang/libclangrewrite/Makefile projects/diffused_head/lib/clang/libclangsema/Makefile projects/diffused_head/lib/clang/libclangserialization/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercheckers/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercore/Makefile projects/diffused_head/lib/clang/libllvmanalysis/Makefile projects/diffused_head/lib/clang/libllvmarmcodegen/Makefile projects/diffused_head/lib/clang/libllvmarmdesc/Makefile projects/diffused_head/lib/clang/libllvmasmprinter/Makefile projects/diffused_head/lib/clang/libllvmcodegen/Makefile projects/diffused_head/lib/clang/libllvmcore/Makefile projects/diffused_head/lib/clang/libllvminstrumentation/Makefile projects/diffused_head/lib/clang/libllvmjit/Makefile projects/diffused_head/lib/clang/libllvmmc/Makefile projects/diffused_head/lib/clang/libllvmmcjit/Makefile projects/diffused_head/lib/clang/libllvmmipscodegen/Makefile projects/diffused_head/lib/clang/libllvmmipsdesc/Makefile projects/diffused_head/lib/clang/libllvmpowerpccodegen/Makefile projects/diffused_head/lib/clang/libllvmpowerpcdesc/Makefile projects/diffused_head/lib/clang/libllvmruntimedyld/Makefile projects/diffused_head/lib/clang/libllvmscalaropts/Makefile projects/diffused_head/lib/clang/libllvmselectiondag/Makefile projects/diffused_head/lib/clang/libllvmsupport/Makefile projects/diffused_head/lib/clang/libllvmtablegen/Makefile projects/diffused_head/lib/clang/libllvmtarget/Makefile projects/diffused_head/lib/clang/libllvmtransformutils/Makefile projects/diffused_head/lib/clang/libllvmx86codegen/Makefile projects/diffused_head/lib/clang/libllvmx86desc/Makefile projects/diffused_head/lib/csu/Makefile.inc projects/diffused_head/lib/csu/amd64/Makefile projects/diffused_head/lib/csu/amd64/crt1.c projects/diffused_head/lib/csu/arm/Makefile projects/diffused_head/lib/csu/arm/crt1.c projects/diffused_head/lib/csu/common/crtbrand.c projects/diffused_head/lib/csu/i386-elf/Makefile projects/diffused_head/lib/csu/i386-elf/crt1_c.c projects/diffused_head/lib/csu/ia64/Makefile projects/diffused_head/lib/csu/mips/Makefile projects/diffused_head/lib/csu/mips/crt1.c projects/diffused_head/lib/csu/powerpc/Makefile projects/diffused_head/lib/csu/powerpc/crt1.c projects/diffused_head/lib/csu/powerpc64/Makefile projects/diffused_head/lib/csu/powerpc64/crt1.c projects/diffused_head/lib/csu/sparc64/crt1.c projects/diffused_head/lib/libarchive/Makefile projects/diffused_head/lib/libarchive/config_freebsd.h projects/diffused_head/lib/libarchive/test/Makefile projects/diffused_head/lib/libbluetooth/bluetooth.3 projects/diffused_head/lib/libc++/Makefile projects/diffused_head/lib/libc/Makefile projects/diffused_head/lib/libc/arm/Symbol.map projects/diffused_head/lib/libc/arm/gen/Makefile.inc projects/diffused_head/lib/libc/arm/gen/_set_tp.c projects/diffused_head/lib/libc/compat-43/killpg.2 projects/diffused_head/lib/libc/gen/Makefile.inc projects/diffused_head/lib/libc/gen/closedir.c projects/diffused_head/lib/libc/gen/err.3 projects/diffused_head/lib/libc/gen/fmtmsg.c projects/diffused_head/lib/libc/gen/fstab.c projects/diffused_head/lib/libc/gen/fts.3 projects/diffused_head/lib/libc/gen/getpagesizes.3 projects/diffused_head/lib/libc/gen/getutxent.c projects/diffused_head/lib/libc/gen/opendir.c projects/diffused_head/lib/libc/gen/psignal.3 projects/diffused_head/lib/libc/gen/sem.c projects/diffused_head/lib/libc/gen/sem_new.c projects/diffused_head/lib/libc/gen/sysconf.3 projects/diffused_head/lib/libc/gen/tls.c projects/diffused_head/lib/libc/gen/utxdb.c projects/diffused_head/lib/libc/gmon/gmon.c projects/diffused_head/lib/libc/gmon/moncontrol.3 projects/diffused_head/lib/libc/i386/sys/i386_get_ioperm.2 projects/diffused_head/lib/libc/i386/sys/i386_set_watch.3 projects/diffused_head/lib/libc/i386/sys/i386_vm86.2 projects/diffused_head/lib/libc/iconv/iconv.3 projects/diffused_head/lib/libc/iconv/iconvctl.3 projects/diffused_head/lib/libc/iconv/iconvlist.3 projects/diffused_head/lib/libc/include/libc_private.h projects/diffused_head/lib/libc/locale/Makefile.inc projects/diffused_head/lib/libc/locale/Symbol.map projects/diffused_head/lib/libc/locale/btowc.3 projects/diffused_head/lib/libc/locale/collate.c projects/diffused_head/lib/libc/locale/ctype.3 projects/diffused_head/lib/libc/locale/digittoint.3 projects/diffused_head/lib/libc/locale/duplocale.3 projects/diffused_head/lib/libc/locale/isalnum.3 projects/diffused_head/lib/libc/locale/isalpha.3 projects/diffused_head/lib/libc/locale/isblank.3 projects/diffused_head/lib/libc/locale/iscntrl.3 projects/diffused_head/lib/libc/locale/isdigit.3 projects/diffused_head/lib/libc/locale/isgraph.3 projects/diffused_head/lib/libc/locale/islower.3 projects/diffused_head/lib/libc/locale/isprint.3 projects/diffused_head/lib/libc/locale/ispunct.3 projects/diffused_head/lib/libc/locale/isspace.3 projects/diffused_head/lib/libc/locale/isupper.3 projects/diffused_head/lib/libc/locale/isxdigit.3 projects/diffused_head/lib/libc/locale/newlocale.3 projects/diffused_head/lib/libc/locale/nomacros.c projects/diffused_head/lib/libc/locale/setrunelocale.c projects/diffused_head/lib/libc/locale/table.c projects/diffused_head/lib/libc/locale/xlocale.3 projects/diffused_head/lib/libc/locale/xlocale.c projects/diffused_head/lib/libc/locale/xlocale_private.h projects/diffused_head/lib/libc/mips/gen/_set_tp.c projects/diffused_head/lib/libc/net/Symbol.map projects/diffused_head/lib/libc/net/getaddrinfo.c projects/diffused_head/lib/libc/net/getipnodebyname.3 projects/diffused_head/lib/libc/net/getnameinfo.3 projects/diffused_head/lib/libc/net/if_nametoindex.c projects/diffused_head/lib/libc/net/inet_net.3 projects/diffused_head/lib/libc/net/name6.c projects/diffused_head/lib/libc/net/nsdispatch.3 projects/diffused_head/lib/libc/net/sctp_bindx.3 projects/diffused_head/lib/libc/net/sctp_connectx.3 projects/diffused_head/lib/libc/net/sctp_freepaddrs.3 projects/diffused_head/lib/libc/net/sctp_getaddrlen.3 projects/diffused_head/lib/libc/net/sctp_getassocid.3 projects/diffused_head/lib/libc/net/sctp_getpaddrs.3 projects/diffused_head/lib/libc/net/sctp_opt_info.3 projects/diffused_head/lib/libc/net/sctp_recvmsg.3 projects/diffused_head/lib/libc/net/sctp_send.3 projects/diffused_head/lib/libc/net/sctp_sendmsg.3 projects/diffused_head/lib/libc/net/sctp_sys_calls.c projects/diffused_head/lib/libc/net/sourcefilter.3 projects/diffused_head/lib/libc/posix1e/acl_add_flag_np.3 projects/diffused_head/lib/libc/posix1e/acl_add_perm.3 projects/diffused_head/lib/libc/posix1e/acl_create_entry.3 projects/diffused_head/lib/libc/posix1e/acl_set_entry_type_np.3 projects/diffused_head/lib/libc/posix1e/acl_set_tag_type.3 projects/diffused_head/lib/libc/posix1e/acl_to_text.3 projects/diffused_head/lib/libc/powerpc/gen/_setjmp.S projects/diffused_head/lib/libc/powerpc/gen/setjmp.S projects/diffused_head/lib/libc/powerpc/gen/sigsetjmp.S projects/diffused_head/lib/libc/powerpc64/gen/_setjmp.S projects/diffused_head/lib/libc/powerpc64/gen/makecontext.c projects/diffused_head/lib/libc/powerpc64/gen/setjmp.S projects/diffused_head/lib/libc/powerpc64/gen/sigsetjmp.S projects/diffused_head/lib/libc/regex/regcomp.c projects/diffused_head/lib/libc/rpc/rpc_soc.3 projects/diffused_head/lib/libc/rpc/svc.c projects/diffused_head/lib/libc/rpc/svc_raw.c projects/diffused_head/lib/libc/stdio/fclose.c projects/diffused_head/lib/libc/stdio/fgetwc.c projects/diffused_head/lib/libc/stdio/findfp.c projects/diffused_head/lib/libc/stdio/fputws.c projects/diffused_head/lib/libc/stdio/getline.3 projects/diffused_head/lib/libc/stdio/local.h projects/diffused_head/lib/libc/stdio/mktemp.3 projects/diffused_head/lib/libc/stdio/printf.3 projects/diffused_head/lib/libc/stdio/setbuf.3 projects/diffused_head/lib/libc/stdio/snprintf.c projects/diffused_head/lib/libc/stdio/vfprintf.c projects/diffused_head/lib/libc/stdio/vfscanf.c projects/diffused_head/lib/libc/stdio/vfwprintf.c projects/diffused_head/lib/libc/stdio/vfwscanf.c projects/diffused_head/lib/libc/stdio/vsnprintf.c projects/diffused_head/lib/libc/stdio/vswprintf.c projects/diffused_head/lib/libc/stdlib/Makefile.inc projects/diffused_head/lib/libc/stdlib/Symbol.map projects/diffused_head/lib/libc/stdlib/at_quick_exit.3 projects/diffused_head/lib/libc/stdlib/getenv.3 projects/diffused_head/lib/libc/string/memchr.3 projects/diffused_head/lib/libc/string/strerror.c projects/diffused_head/lib/libc/string/swab.3 projects/diffused_head/lib/libc/string/swab.c projects/diffused_head/lib/libc/sys/Makefile.inc projects/diffused_head/lib/libc/sys/cap_enter.2 projects/diffused_head/lib/libc/sys/cap_new.2 projects/diffused_head/lib/libc/sys/chflags.2 projects/diffused_head/lib/libc/sys/cpuset.2 projects/diffused_head/lib/libc/sys/cpuset_getaffinity.2 projects/diffused_head/lib/libc/sys/dup.2 projects/diffused_head/lib/libc/sys/fcntl.2 projects/diffused_head/lib/libc/sys/getsockopt.2 projects/diffused_head/lib/libc/sys/jail.2 projects/diffused_head/lib/libc/sys/kill.2 projects/diffused_head/lib/libc/sys/kldstat.2 projects/diffused_head/lib/libc/sys/kqueue.2 projects/diffused_head/lib/libc/sys/kse.2 projects/diffused_head/lib/libc/sys/ktrace.2 projects/diffused_head/lib/libc/sys/mmap.2 projects/diffused_head/lib/libc/sys/msync.2 projects/diffused_head/lib/libc/sys/pathconf.2 projects/diffused_head/lib/libc/sys/pdfork.2 projects/diffused_head/lib/libc/sys/posix_fadvise.2 projects/diffused_head/lib/libc/sys/posix_fallocate.2 projects/diffused_head/lib/libc/sys/ptrace.2 projects/diffused_head/lib/libc/sys/quotactl.2 projects/diffused_head/lib/libc/sys/read.2 projects/diffused_head/lib/libc/sys/sctp_generic_sendmsg.2 projects/diffused_head/lib/libc/sys/sctp_peeloff.2 projects/diffused_head/lib/libc/sys/select.2 projects/diffused_head/lib/libc/sys/sendfile.2 projects/diffused_head/lib/libc/sys/setfib.2 projects/diffused_head/lib/libc/sys/shm_open.2 projects/diffused_head/lib/libc/sys/sigqueue.2 projects/diffused_head/lib/libc/uuid/uuid.3 projects/diffused_head/lib/libcam/camlib.c projects/diffused_head/lib/libcom_err/Makefile projects/diffused_head/lib/libcrypt/crypt.3 projects/diffused_head/lib/libcxxrt/Makefile projects/diffused_head/lib/libedit/edit/readline/Makefile projects/diffused_head/lib/libelf/elf.3 projects/diffused_head/lib/libelf/elf_getdata.3 projects/diffused_head/lib/libelf/elf_getphdrnum.3 projects/diffused_head/lib/libelf/elf_getphnum.3 projects/diffused_head/lib/libelf/elf_getshdrnum.3 projects/diffused_head/lib/libelf/elf_getshdrstrndx.3 projects/diffused_head/lib/libelf/elf_getshnum.3 projects/diffused_head/lib/libelf/elf_getshstrndx.3 projects/diffused_head/lib/libelf/libelf_data.c projects/diffused_head/lib/libfetch/common.c projects/diffused_head/lib/libfetch/fetch.3 projects/diffused_head/lib/libfetch/fetch.c projects/diffused_head/lib/libfetch/http.c projects/diffused_head/lib/libgpib/gpib.3 projects/diffused_head/lib/libgssapi/Symbol.map projects/diffused_head/lib/libgssapi/gss_accept_sec_context.3 projects/diffused_head/lib/libgssapi/gss_display_status.c projects/diffused_head/lib/libgssapi/gss_release_buffer.3 projects/diffused_head/lib/libgssapi/gss_release_oid_set.3 projects/diffused_head/lib/libgssapi/mech.5 projects/diffused_head/lib/libgssapi/mech_switch.h projects/diffused_head/lib/libjail/jail.c projects/diffused_head/lib/libkse/Makefile projects/diffused_head/lib/libmagic/Makefile projects/diffused_head/lib/libmagic/config.h projects/diffused_head/lib/libmd/Makefile projects/diffused_head/lib/libmd/mdX.3 projects/diffused_head/lib/libmemstat/libmemstat.3 projects/diffused_head/lib/libpam/modules/pam_exec/pam_exec.8 projects/diffused_head/lib/libpam/modules/pam_exec/pam_exec.c projects/diffused_head/lib/libpam/modules/pam_krb5/pam_krb5.c projects/diffused_head/lib/libpam/modules/pam_ksu/pam_ksu.c projects/diffused_head/lib/libpam/modules/pam_nologin/pam_nologin.8 projects/diffused_head/lib/libpmc/Makefile projects/diffused_head/lib/libpmc/libpmc.c projects/diffused_head/lib/libpmc/pmc.3 projects/diffused_head/lib/libpmc/pmc.atom.3 projects/diffused_head/lib/libpmc/pmc.core.3 projects/diffused_head/lib/libpmc/pmc.core2.3 projects/diffused_head/lib/libpmc/pmc.corei7.3 projects/diffused_head/lib/libpmc/pmc.corei7uc.3 projects/diffused_head/lib/libpmc/pmc.h projects/diffused_head/lib/libpmc/pmc.iaf.3 projects/diffused_head/lib/libpmc/pmc.k7.3 projects/diffused_head/lib/libpmc/pmc.k8.3 projects/diffused_head/lib/libpmc/pmc.p4.3 projects/diffused_head/lib/libpmc/pmc.p5.3 projects/diffused_head/lib/libpmc/pmc.p6.3 projects/diffused_head/lib/libpmc/pmc.tsc.3 projects/diffused_head/lib/libpmc/pmc.ucf.3 projects/diffused_head/lib/libpmc/pmc.westmere.3 projects/diffused_head/lib/libpmc/pmc.westmereuc.3 projects/diffused_head/lib/libpmc/pmc.xscale.3 projects/diffused_head/lib/libpmc/pmc_capabilities.3 projects/diffused_head/lib/libpmc/pmclog.c projects/diffused_head/lib/libpmc/pmclog.h projects/diffused_head/lib/libproc/proc_bkpt.c projects/diffused_head/lib/libproc/proc_regs.c projects/diffused_head/lib/libprocstat/Symbol.map projects/diffused_head/lib/libprocstat/Versions.def projects/diffused_head/lib/libprocstat/libprocstat.3 projects/diffused_head/lib/libprocstat/libprocstat.c projects/diffused_head/lib/libprocstat/libprocstat.h projects/diffused_head/lib/librpcsec_gss/rpc_gss_seccreate.3 projects/diffused_head/lib/librt/sigev_thread.c projects/diffused_head/lib/librt/sigev_thread.h projects/diffused_head/lib/libsm/Makefile projects/diffused_head/lib/libtacplus/libtacplus.3 projects/diffused_head/lib/libthr/arch/mips/include/pthread_md.h projects/diffused_head/lib/libthr/thread/thr_barrier.c projects/diffused_head/lib/libthr/thread/thr_init.c projects/diffused_head/lib/libthr/thread/thr_private.h projects/diffused_head/lib/libthr/thread/thr_rwlock.c projects/diffused_head/lib/libthr/thread/thr_sig.c projects/diffused_head/lib/libthr/thread/thr_sleepq.c projects/diffused_head/lib/libthr/thread/thr_umtx.c projects/diffused_head/lib/libthr/thread/thr_umtx.h projects/diffused_head/lib/libthread_db/Makefile projects/diffused_head/lib/libulog/ulog_login.c projects/diffused_head/lib/libulog/utempter_add_record.3 projects/diffused_head/lib/libusb/Makefile projects/diffused_head/lib/libusb/libusb.3 projects/diffused_head/lib/libusb/libusb.h projects/diffused_head/lib/libusb/libusb10.c projects/diffused_head/lib/libusb/libusb10_desc.c projects/diffused_head/lib/libusb/libusb10_io.c projects/diffused_head/lib/libusb/libusb20.3 projects/diffused_head/lib/libusb/libusb20.c projects/diffused_head/lib/libusb/libusb20_desc.c projects/diffused_head/lib/libusb/libusb20_ugen20.c projects/diffused_head/lib/libutil/kinfo_getallproc.3 projects/diffused_head/lib/libutil/kinfo_getproc.3 projects/diffused_head/lib/libutil/login.conf.5 projects/diffused_head/lib/libutil/login_cap.3 projects/diffused_head/lib/libutil/quotafile.3 projects/diffused_head/lib/libvgl/vgl.3 projects/diffused_head/lib/libz/Makefile projects/diffused_head/lib/msun/man/csqrt.3 projects/diffused_head/lib/msun/man/ieee.3 projects/diffused_head/lib/msun/src/s_fabsl.c projects/diffused_head/lib/msun/src/s_remquo.c projects/diffused_head/lib/msun/src/s_remquof.c projects/diffused_head/lib/msun/src/s_remquol.c projects/diffused_head/libexec/bootpd/bootpd.8 projects/diffused_head/libexec/getty/gettytab.5 projects/diffused_head/libexec/mail.local/Makefile projects/diffused_head/libexec/rtld-elf/Makefile projects/diffused_head/libexec/rtld-elf/amd64/reloc.c projects/diffused_head/libexec/rtld-elf/amd64/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/arm/reloc.c projects/diffused_head/libexec/rtld-elf/arm/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/i386/reloc.c projects/diffused_head/libexec/rtld-elf/i386/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/ia64/reloc.c projects/diffused_head/libexec/rtld-elf/ia64/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/libmap.c projects/diffused_head/libexec/rtld-elf/malloc.c projects/diffused_head/libexec/rtld-elf/map_object.c projects/diffused_head/libexec/rtld-elf/mips/reloc.c projects/diffused_head/libexec/rtld-elf/mips/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/mips/rtld_start.S projects/diffused_head/libexec/rtld-elf/powerpc/reloc.c projects/diffused_head/libexec/rtld-elf/powerpc/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/powerpc64/reloc.c projects/diffused_head/libexec/rtld-elf/powerpc64/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/rtld.c projects/diffused_head/libexec/rtld-elf/rtld.h projects/diffused_head/libexec/rtld-elf/rtld_printf.c projects/diffused_head/libexec/rtld-elf/sparc64/reloc.c projects/diffused_head/libexec/rtld-elf/sparc64/rtld_machdep.h projects/diffused_head/libexec/rtld-elf/xmalloc.c projects/diffused_head/libexec/smrsh/Makefile projects/diffused_head/libexec/tftpd/tftpd.8 projects/diffused_head/libexec/ulog-helper/ulog-helper.c projects/diffused_head/release/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/diffused_head/release/doc/share/misc/dev.archlist.txt projects/diffused_head/release/picobsd/build/picobsd projects/diffused_head/sbin/adjkerntz/adjkerntz.8 projects/diffused_head/sbin/bsdlabel/bsdlabel.c projects/diffused_head/sbin/camcontrol/camcontrol.8 projects/diffused_head/sbin/devfs/devfs.8 projects/diffused_head/sbin/fdisk/fdisk.c projects/diffused_head/sbin/fsdb/Makefile projects/diffused_head/sbin/fsdb/fsdbutil.c projects/diffused_head/sbin/geom/class/eli/geli.8 projects/diffused_head/sbin/geom/class/multipath/geom_multipath.c projects/diffused_head/sbin/geom/class/multipath/gmultipath.8 projects/diffused_head/sbin/geom/class/part/gpart.8 projects/diffused_head/sbin/geom/class/raid/geom_raid.c projects/diffused_head/sbin/geom/class/raid/graid.8 projects/diffused_head/sbin/geom/class/sched/gsched.8 projects/diffused_head/sbin/growfs/Makefile projects/diffused_head/sbin/growfs/debug.c projects/diffused_head/sbin/growfs/growfs.8 projects/diffused_head/sbin/growfs/growfs.c projects/diffused_head/sbin/gvinum/gvinum.8 projects/diffused_head/sbin/hastd/hastd.c projects/diffused_head/sbin/hastd/nv.c projects/diffused_head/sbin/ifconfig/ifconfig.8 projects/diffused_head/sbin/ifconfig/ifieee80211.c projects/diffused_head/sbin/ifconfig/iflagg.c projects/diffused_head/sbin/ifconfig/ifpfsync.c projects/diffused_head/sbin/init/init.8 projects/diffused_head/sbin/init/init.c projects/diffused_head/sbin/init/pathnames.h projects/diffused_head/sbin/ipfw/dummynet.c projects/diffused_head/sbin/ipfw/ipfw.8 projects/diffused_head/sbin/ipfw/ipfw2.c projects/diffused_head/sbin/iscontrol/Makefile projects/diffused_head/sbin/iscontrol/iscontrol.8 projects/diffused_head/sbin/iscontrol/iscontrol.c projects/diffused_head/sbin/iscontrol/iscsi.conf.5 projects/diffused_head/sbin/kldload/kldload.8 projects/diffused_head/sbin/kldload/kldload.c projects/diffused_head/sbin/mdconfig/mdconfig.8 projects/diffused_head/sbin/mdconfig/mdconfig.c projects/diffused_head/sbin/mdmfs/mdmfs.8 projects/diffused_head/sbin/mount_unionfs/mount_unionfs.8 projects/diffused_head/sbin/ping6/ping6.8 projects/diffused_head/sbin/quotacheck/quotacheck.8 projects/diffused_head/sbin/rcorder/rcorder.8 projects/diffused_head/sbin/route/route.8 projects/diffused_head/sbin/savecore/savecore.c projects/diffused_head/sbin/setkey/setkey.8 projects/diffused_head/sbin/sunlabel/sunlabel.8 projects/diffused_head/sbin/sysctl/sysctl.8 projects/diffused_head/sbin/sysctl/sysctl.c projects/diffused_head/secure/usr.bin/ssh/Makefile projects/diffused_head/secure/usr.sbin/sshd/Makefile projects/diffused_head/share/doc/bind9/Makefile projects/diffused_head/share/examples/Makefile projects/diffused_head/share/examples/cvsup/cvs-supfile projects/diffused_head/share/examples/cvsup/doc-supfile projects/diffused_head/share/examples/cvsup/gnats-supfile projects/diffused_head/share/examples/cvsup/ports-supfile projects/diffused_head/share/examples/cvsup/stable-supfile projects/diffused_head/share/examples/cvsup/standard-supfile projects/diffused_head/share/examples/cvsup/www-supfile projects/diffused_head/share/man/man3/pthread_attr_affinity_np.3 projects/diffused_head/share/man/man3/pthread_cond_destroy.3 projects/diffused_head/share/man/man3/pthread_cond_timedwait.3 projects/diffused_head/share/man/man3/pthread_cond_wait.3 projects/diffused_head/share/man/man3/pthread_getthreadid_np.3 projects/diffused_head/share/man/man3/tgmath.3 projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man4/acpi.4 projects/diffused_head/share/man/man4/acpi_hp.4 projects/diffused_head/share/man/man4/acpi_panasonic.4 projects/diffused_head/share/man/man4/acpi_wmi.4 projects/diffused_head/share/man/man4/ada.4 projects/diffused_head/share/man/man4/adv.4 projects/diffused_head/share/man/man4/ahc.4 projects/diffused_head/share/man/man4/ahci.4 projects/diffused_head/share/man/man4/aibs.4 projects/diffused_head/share/man/man4/amdsmb.4 projects/diffused_head/share/man/man4/amdtemp.4 projects/diffused_head/share/man/man4/ata.4 projects/diffused_head/share/man/man4/ath.4 projects/diffused_head/share/man/man4/atkbd.4 projects/diffused_head/share/man/man4/atp.4 projects/diffused_head/share/man/man4/bce.4 projects/diffused_head/share/man/man4/bpf.4 projects/diffused_head/share/man/man4/bridge.4 projects/diffused_head/share/man/man4/bt.4 projects/diffused_head/share/man/man4/bwi.4 projects/diffused_head/share/man/man4/bwn.4 projects/diffused_head/share/man/man4/carp.4 projects/diffused_head/share/man/man4/cas.4 projects/diffused_head/share/man/man4/cc_vegas.4 projects/diffused_head/share/man/man4/cd.4 projects/diffused_head/share/man/man4/coda.4 projects/diffused_head/share/man/man4/cxgbe.4 projects/diffused_head/share/man/man4/cy.4 projects/diffused_head/share/man/man4/dpms.4 projects/diffused_head/share/man/man4/ed.4 projects/diffused_head/share/man/man4/ehci.4 projects/diffused_head/share/man/man4/em.4 projects/diffused_head/share/man/man4/epair.4 projects/diffused_head/share/man/man4/eventtimers.4 projects/diffused_head/share/man/man4/fdc.4 projects/diffused_head/share/man/man4/fwohci.4 projects/diffused_head/share/man/man4/gem.4 projects/diffused_head/share/man/man4/geom_fox.4 projects/diffused_head/share/man/man4/geom_uzip.4 projects/diffused_head/share/man/man4/gre.4 projects/diffused_head/share/man/man4/hptiop.4 projects/diffused_head/share/man/man4/igb.4 projects/diffused_head/share/man/man4/ip.4 projects/diffused_head/share/man/man4/ipmi.4 projects/diffused_head/share/man/man4/ipw.4 projects/diffused_head/share/man/man4/isci.4 projects/diffused_head/share/man/man4/iscsi_initiator.4 projects/diffused_head/share/man/man4/isp.4 projects/diffused_head/share/man/man4/iwi.4 projects/diffused_head/share/man/man4/iwn.4 projects/diffused_head/share/man/man4/iwnfw.4 projects/diffused_head/share/man/man4/ixgbe.4 projects/diffused_head/share/man/man4/jme.4 projects/diffused_head/share/man/man4/ksyms.4 projects/diffused_head/share/man/man4/ktr.4 projects/diffused_head/share/man/man4/lagg.4 projects/diffused_head/share/man/man4/lmc.4 projects/diffused_head/share/man/man4/mac_lomac.4 projects/diffused_head/share/man/man4/malo.4 projects/diffused_head/share/man/man4/man4.i386/apm.4 projects/diffused_head/share/man/man4/man4.i386/glxsb.4 projects/diffused_head/share/man/man4/man4.powerpc/abtn.4 projects/diffused_head/share/man/man4/man4.powerpc/akbd.4 projects/diffused_head/share/man/man4/man4.powerpc/bm.4 projects/diffused_head/share/man/man4/man4.powerpc/cuda.4 projects/diffused_head/share/man/man4/man4.powerpc/smu.4 projects/diffused_head/share/man/man4/man4.powerpc/snd_ai2s.4 projects/diffused_head/share/man/man4/man4.powerpc/snd_davbus.4 projects/diffused_head/share/man/man4/md.4 projects/diffused_head/share/man/man4/mld.4 projects/diffused_head/share/man/man4/mmc.4 projects/diffused_head/share/man/man4/mos.4 projects/diffused_head/share/man/man4/mps.4 projects/diffused_head/share/man/man4/mwl.4 projects/diffused_head/share/man/man4/net80211.4 projects/diffused_head/share/man/man4/netmap.4 projects/diffused_head/share/man/man4/ng_car.4 projects/diffused_head/share/man/man4/ng_deflate.4 projects/diffused_head/share/man/man4/ng_nat.4 projects/diffused_head/share/man/man4/ng_netflow.4 projects/diffused_head/share/man/man4/ng_patch.4 projects/diffused_head/share/man/man4/ng_ppp.4 projects/diffused_head/share/man/man4/ng_pred1.4 projects/diffused_head/share/man/man4/ng_tty.4 projects/diffused_head/share/man/man4/nvram2env.4 projects/diffused_head/share/man/man4/nxge.4 projects/diffused_head/share/man/man4/oce.4 projects/diffused_head/share/man/man4/pcm.4 projects/diffused_head/share/man/man4/ppbus.4 projects/diffused_head/share/man/man4/psm.4 projects/diffused_head/share/man/man4/pts.4 projects/diffused_head/share/man/man4/ral.4 projects/diffused_head/share/man/man4/run.4 projects/diffused_head/share/man/man4/runfw.4 projects/diffused_head/share/man/man4/sfxge.4 projects/diffused_head/share/man/man4/siftr.4 projects/diffused_head/share/man/man4/smp.4 projects/diffused_head/share/man/man4/snd_emu10kx.4 projects/diffused_head/share/man/man4/snd_hda.4 projects/diffused_head/share/man/man4/snd_ich.4 projects/diffused_head/share/man/man4/syscons.4 projects/diffused_head/share/man/man4/tcp.4 projects/diffused_head/share/man/man4/tpm.4 projects/diffused_head/share/man/man4/u3g.4 projects/diffused_head/share/man/man4/uark.4 projects/diffused_head/share/man/man4/uath.4 projects/diffused_head/share/man/man4/ufoma.4 projects/diffused_head/share/man/man4/uipaq.4 projects/diffused_head/share/man/man4/ulpt.4 projects/diffused_head/share/man/man4/umcs.4 projects/diffused_head/share/man/man4/upgt.4 projects/diffused_head/share/man/man4/usb.4 projects/diffused_head/share/man/man4/vge.4 projects/diffused_head/share/man/man4/virtio.4 projects/diffused_head/share/man/man4/vr.4 projects/diffused_head/share/man/man4/vxge.4 projects/diffused_head/share/man/man4/wi.4 projects/diffused_head/share/man/man4/wlan.4 projects/diffused_head/share/man/man4/wlan_acl.4 projects/diffused_head/share/man/man4/wlan_amrr.4 projects/diffused_head/share/man/man4/wpi.4 projects/diffused_head/share/man/man4/xen.4 projects/diffused_head/share/man/man4/xnb.4 projects/diffused_head/share/man/man5/ar.5 projects/diffused_head/share/man/man5/devfs.5 projects/diffused_head/share/man/man5/fdescfs.5 projects/diffused_head/share/man/man5/fs.5 projects/diffused_head/share/man/man5/fstab.5 projects/diffused_head/share/man/man5/libmap.conf.5 projects/diffused_head/share/man/man5/make.conf.5 projects/diffused_head/share/man/man5/nsmb.conf.5 projects/diffused_head/share/man/man5/passwd.5 projects/diffused_head/share/man/man5/quota.user.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/services.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man5/style.Makefile.5 projects/diffused_head/share/man/man5/tmpfs.5 projects/diffused_head/share/man/man7/development.7 projects/diffused_head/share/man/man7/mailaddr.7 projects/diffused_head/share/man/man7/operator.7 projects/diffused_head/share/man/man7/release.7 projects/diffused_head/share/man/man8/picobsd.8 projects/diffused_head/share/man/man9/BUS_DESCRIBE_INTR.9 projects/diffused_head/share/man/man9/BUS_SETUP_INTR.9 projects/diffused_head/share/man/man9/DB_COMMAND.9 projects/diffused_head/share/man/man9/DEVICE_PROBE.9 projects/diffused_head/share/man/man9/LOCK_PROFILING.9 projects/diffused_head/share/man/man9/Makefile projects/diffused_head/share/man/man9/SYSINIT.9 projects/diffused_head/share/man/man9/buf_ring.9 projects/diffused_head/share/man/man9/bus_dma.9 projects/diffused_head/share/man/man9/byteorder.9 projects/diffused_head/share/man/man9/condvar.9 projects/diffused_head/share/man/man9/contigmalloc.9 projects/diffused_head/share/man/man9/crypto.9 projects/diffused_head/share/man/man9/devclass_get_maxunit.9 projects/diffused_head/share/man/man9/device_get_children.9 projects/diffused_head/share/man/man9/domain.9 projects/diffused_head/share/man/man9/drbr.9 projects/diffused_head/share/man/man9/eventtimers.9 projects/diffused_head/share/man/man9/fail.9 projects/diffused_head/share/man/man9/firmware.9 projects/diffused_head/share/man/man9/ieee80211.9 projects/diffused_head/share/man/man9/ieee80211_amrr.9 projects/diffused_head/share/man/man9/ieee80211_bmiss.9 projects/diffused_head/share/man/man9/ieee80211_crypto.9 projects/diffused_head/share/man/man9/ieee80211_input.9 projects/diffused_head/share/man/man9/ieee80211_node.9 projects/diffused_head/share/man/man9/ieee80211_output.9 projects/diffused_head/share/man/man9/ieee80211_proto.9 projects/diffused_head/share/man/man9/ieee80211_radiotap.9 projects/diffused_head/share/man/man9/ieee80211_regdomain.9 projects/diffused_head/share/man/man9/ieee80211_scan.9 projects/diffused_head/share/man/man9/ieee80211_vap.9 projects/diffused_head/share/man/man9/ifnet.9 projects/diffused_head/share/man/man9/kproc.9 projects/diffused_head/share/man/man9/kqueue.9 projects/diffused_head/share/man/man9/kthread.9 projects/diffused_head/share/man/man9/lock.9 projects/diffused_head/share/man/man9/locking.9 projects/diffused_head/share/man/man9/make_dev.9 projects/diffused_head/share/man/man9/malloc.9 projects/diffused_head/share/man/man9/mi_switch.9 projects/diffused_head/share/man/man9/namei.9 projects/diffused_head/share/man/man9/osd.9 projects/diffused_head/share/man/man9/pci.9 projects/diffused_head/share/man/man9/rmlock.9 projects/diffused_head/share/man/man9/shm_map.9 projects/diffused_head/share/man/man9/sleep.9 projects/diffused_head/share/man/man9/spl.9 projects/diffused_head/share/man/man9/swi.9 projects/diffused_head/share/man/man9/sysctl.9 projects/diffused_head/share/man/man9/sysctl_ctx_init.9 projects/diffused_head/share/man/man9/taskqueue.9 projects/diffused_head/share/man/man9/timeout.9 projects/diffused_head/share/man/man9/usbdi.9 projects/diffused_head/share/man/man9/vm_map_find.9 projects/diffused_head/share/man/man9/watchdog.9 projects/diffused_head/share/man/man9/zone.9 projects/diffused_head/share/misc/bsd-family-tree projects/diffused_head/share/misc/committers-doc.dot projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/misc/scsi_modes projects/diffused_head/share/mk/bsd.endian.mk projects/diffused_head/share/mk/bsd.libnames.mk projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/share/mk/bsd.sys.mk projects/diffused_head/share/mk/sys.mk projects/diffused_head/share/skel/dot.cshrc projects/diffused_head/share/termcap/termcap.5 projects/diffused_head/sys/Makefile projects/diffused_head/sys/amd64/acpica/acpi_wakeup.c projects/diffused_head/sys/amd64/amd64/cpu_switch.S projects/diffused_head/sys/amd64/amd64/identcpu.c projects/diffused_head/sys/amd64/amd64/initcpu.c projects/diffused_head/sys/amd64/amd64/machdep.c projects/diffused_head/sys/amd64/amd64/mp_machdep.c projects/diffused_head/sys/amd64/amd64/pmap.c projects/diffused_head/sys/amd64/amd64/ptrace_machdep.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/conf/DEFAULTS projects/diffused_head/sys/amd64/conf/GENERIC projects/diffused_head/sys/amd64/conf/GENERIC.hints projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/amd64/ia32/ia32_reg.c projects/diffused_head/sys/amd64/include/_limits.h projects/diffused_head/sys/amd64/include/_stdint.h projects/diffused_head/sys/amd64/include/_types.h projects/diffused_head/sys/amd64/include/cpufunc.h projects/diffused_head/sys/amd64/include/endian.h projects/diffused_head/sys/amd64/include/float.h projects/diffused_head/sys/amd64/include/fpu.h projects/diffused_head/sys/amd64/include/intr_machdep.h projects/diffused_head/sys/amd64/include/pcb.h projects/diffused_head/sys/amd64/include/pmc_mdep.h projects/diffused_head/sys/amd64/include/proc.h projects/diffused_head/sys/amd64/include/psl.h projects/diffused_head/sys/amd64/include/ptrace.h projects/diffused_head/sys/amd64/include/reg.h projects/diffused_head/sys/amd64/include/segments.h projects/diffused_head/sys/amd64/include/setjmp.h projects/diffused_head/sys/amd64/include/specialreg.h projects/diffused_head/sys/amd64/include/stdarg.h projects/diffused_head/sys/amd64/include/sysarch.h projects/diffused_head/sys/amd64/include/trap.h projects/diffused_head/sys/amd64/include/vm.h projects/diffused_head/sys/amd64/include/vmparam.h projects/diffused_head/sys/amd64/linux32/linux32_dummy.c projects/diffused_head/sys/amd64/linux32/linux32_machdep.c projects/diffused_head/sys/amd64/linux32/linux32_proto.h projects/diffused_head/sys/amd64/linux32/linux32_syscall.h projects/diffused_head/sys/amd64/linux32/linux32_syscalls.c projects/diffused_head/sys/amd64/linux32/linux32_sysent.c projects/diffused_head/sys/amd64/linux32/linux32_systrace_args.c projects/diffused_head/sys/amd64/linux32/syscalls.master projects/diffused_head/sys/arm/arm/busdma_machdep.c projects/diffused_head/sys/arm/arm/elf_trampoline.c projects/diffused_head/sys/arm/at91/at91_mci.c projects/diffused_head/sys/arm/at91/at91_mcireg.h projects/diffused_head/sys/arm/at91/at91_pio.c projects/diffused_head/sys/arm/at91/at91_piovar.h projects/diffused_head/sys/arm/at91/at91_pit.c projects/diffused_head/sys/arm/at91/at91_pmc.c projects/diffused_head/sys/arm/at91/at91_rst.c projects/diffused_head/sys/arm/at91/at91_twi.c projects/diffused_head/sys/arm/at91/at91_twireg.h projects/diffused_head/sys/arm/at91/at91_wdt.c projects/diffused_head/sys/arm/at91/at91reg.h projects/diffused_head/sys/arm/at91/at91sam9260.c projects/diffused_head/sys/arm/at91/at91sam9g20reg.h projects/diffused_head/sys/arm/at91/at91var.h projects/diffused_head/sys/arm/at91/board_sam9g20ek.c projects/diffused_head/sys/arm/at91/if_ate.c projects/diffused_head/sys/arm/at91/uart_dev_at91usart.c projects/diffused_head/sys/arm/conf/AVILA projects/diffused_head/sys/arm/conf/BWCT projects/diffused_head/sys/arm/conf/CAMBRIA projects/diffused_head/sys/arm/conf/CNS11XXNAS projects/diffused_head/sys/arm/conf/CRB projects/diffused_head/sys/arm/conf/DB-78XXX projects/diffused_head/sys/arm/conf/DB-88F5XXX projects/diffused_head/sys/arm/conf/DB-88F6XXX projects/diffused_head/sys/arm/conf/DEFAULTS projects/diffused_head/sys/arm/conf/DOCKSTAR projects/diffused_head/sys/arm/conf/EP80219 projects/diffused_head/sys/arm/conf/GUMSTIX projects/diffused_head/sys/arm/conf/HL200 projects/diffused_head/sys/arm/conf/HL201 projects/diffused_head/sys/arm/conf/IQ31244 projects/diffused_head/sys/arm/conf/KB920X projects/diffused_head/sys/arm/conf/LN2410SBC projects/diffused_head/sys/arm/conf/NSLU projects/diffused_head/sys/arm/conf/QILA9G20 projects/diffused_head/sys/arm/conf/SAM9G20EK projects/diffused_head/sys/arm/conf/SHEEVAPLUG projects/diffused_head/sys/arm/conf/TS7800 projects/diffused_head/sys/arm/include/armreg.h projects/diffused_head/sys/arm/include/pcb.h projects/diffused_head/sys/arm/include/pmc_mdep.h projects/diffused_head/sys/arm/include/sysarch.h projects/diffused_head/sys/arm/mv/common.c projects/diffused_head/sys/arm/mv/mv_machdep.c projects/diffused_head/sys/arm/mv/mvreg.h projects/diffused_head/sys/arm/xscale/i8134x/crb_machdep.c projects/diffused_head/sys/arm/xscale/pxa/uart_bus_pxa.c projects/diffused_head/sys/boot/arm/uboot/start.S projects/diffused_head/sys/boot/common/bootstrap.h projects/diffused_head/sys/boot/common/crc32.c projects/diffused_head/sys/boot/common/gpt.c projects/diffused_head/sys/boot/common/loader.8 projects/diffused_head/sys/boot/common/ufsread.c projects/diffused_head/sys/boot/efi/Makefile.inc projects/diffused_head/sys/boot/fdt/dts/db78100.dts projects/diffused_head/sys/boot/fdt/fdt_loader_cmd.c projects/diffused_head/sys/boot/forth/loader.conf projects/diffused_head/sys/boot/forth/loader.conf.5 projects/diffused_head/sys/boot/forth/menu-commands.4th projects/diffused_head/sys/boot/forth/menu.4th.8 projects/diffused_head/sys/boot/i386/boot0/Makefile projects/diffused_head/sys/boot/i386/boot2/Makefile projects/diffused_head/sys/boot/i386/boot2/boot1.S projects/diffused_head/sys/boot/i386/boot2/boot2.c projects/diffused_head/sys/boot/i386/btx/btx/Makefile projects/diffused_head/sys/boot/i386/btx/btxldr/Makefile projects/diffused_head/sys/boot/i386/efi/Makefile projects/diffused_head/sys/boot/i386/gptboot/Makefile projects/diffused_head/sys/boot/i386/gptzfsboot/Makefile projects/diffused_head/sys/boot/i386/libi386/Makefile projects/diffused_head/sys/boot/i386/libi386/vidconsole.c projects/diffused_head/sys/boot/i386/pxeldr/Makefile projects/diffused_head/sys/boot/i386/zfsboot/Makefile projects/diffused_head/sys/boot/i386/zfsboot/zfsboot.c projects/diffused_head/sys/boot/ofw/libofw/devicename.c projects/diffused_head/sys/boot/pc98/boot2/boot2.c projects/diffused_head/sys/boot/pc98/btx/btx/Makefile projects/diffused_head/sys/boot/pc98/btx/btxldr/Makefile projects/diffused_head/sys/boot/powerpc/ps3/start.S projects/diffused_head/sys/boot/sparc64/Makefile projects/diffused_head/sys/boot/sparc64/boot1/Makefile projects/diffused_head/sys/boot/sparc64/boot1/boot1.c projects/diffused_head/sys/boot/sparc64/loader/Makefile projects/diffused_head/sys/boot/sparc64/loader/main.c projects/diffused_head/sys/boot/uboot/common/metadata.c projects/diffused_head/sys/boot/uboot/lib/Makefile projects/diffused_head/sys/boot/uboot/lib/devicename.c projects/diffused_head/sys/boot/uboot/lib/disk.c projects/diffused_head/sys/boot/uboot/lib/glue.c projects/diffused_head/sys/boot/uboot/lib/libuboot.h projects/diffused_head/sys/boot/zfs/zfs.c projects/diffused_head/sys/cam/ata/ata_da.c projects/diffused_head/sys/cam/ctl/ctl.c projects/diffused_head/sys/cam/ctl/ctl.h projects/diffused_head/sys/cam/ctl/ctl_backend.c projects/diffused_head/sys/cam/ctl/ctl_backend.h projects/diffused_head/sys/cam/ctl/ctl_backend_block.c projects/diffused_head/sys/cam/ctl/ctl_backend_ramdisk.c projects/diffused_head/sys/cam/ctl/ctl_cmd_table.c projects/diffused_head/sys/cam/ctl/ctl_error.c projects/diffused_head/sys/cam/ctl/ctl_frontend.c projects/diffused_head/sys/cam/ctl/ctl_frontend_internal.c projects/diffused_head/sys/cam/ctl/ctl_ioctl.h projects/diffused_head/sys/cam/ctl/ctl_private.h projects/diffused_head/sys/cam/scsi/scsi_da.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/diffused_head/sys/cddl/dev/dtrace/dtrace_ioctl.c projects/diffused_head/sys/cddl/dev/lockstat/lockstat.c projects/diffused_head/sys/cddl/dev/profile/profile.c projects/diffused_head/sys/cddl/dev/sdt/sdt.c projects/diffused_head/sys/compat/freebsd32/freebsd32.h projects/diffused_head/sys/compat/freebsd32/freebsd32_misc.c projects/diffused_head/sys/compat/freebsd32/freebsd32_proto.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscall.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscalls.c projects/diffused_head/sys/compat/freebsd32/freebsd32_sysent.c projects/diffused_head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/diffused_head/sys/compat/freebsd32/syscalls.master projects/diffused_head/sys/compat/ia32/ia32_sysvec.c projects/diffused_head/sys/compat/linprocfs/linprocfs.c projects/diffused_head/sys/compat/linsysfs/linsysfs.c projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/compat/ndis/subr_hal.c projects/diffused_head/sys/conf/Makefile.amd64 projects/diffused_head/sys/conf/Makefile.i386 projects/diffused_head/sys/conf/Makefile.mips projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.arm projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/files.ia64 projects/diffused_head/sys/conf/files.mips projects/diffused_head/sys/conf/files.pc98 projects/diffused_head/sys/conf/files.powerpc projects/diffused_head/sys/conf/files.sparc64 projects/diffused_head/sys/conf/kern.mk projects/diffused_head/sys/conf/kern.post.mk projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/makeLINT.mk projects/diffused_head/sys/conf/options projects/diffused_head/sys/conf/options.amd64 projects/diffused_head/sys/conf/options.arm projects/diffused_head/sys/conf/options.i386 projects/diffused_head/sys/conf/options.mips projects/diffused_head/sys/contrib/dev/acpica/acpica_prep.sh projects/diffused_head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/adisasm.c projects/diffused_head/sys/contrib/dev/acpica/common/getopt.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcodegen.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompile.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.l projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.y projects/diffused_head/sys/contrib/dev/acpica/compiler/aslerror.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfiles.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslglobal.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmain.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmap.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmessages.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype1.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstartup.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asltypes.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslutils.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompile.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompiler.h projects/diffused_head/sys/contrib/dev/acpica/compiler/dtexpress.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtio.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtparser.y projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbcmds.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbdisply.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbstats.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbutils.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evmisc.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evxface.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exdump.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwesleep.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwsleep.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsdumpdv.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nspredef.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsrepair.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsutils.c projects/diffused_head/sys/contrib/dev/acpica/components/parser/psargs.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbfadt.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbutils.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utdelete.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/uttrack.c projects/diffused_head/sys/contrib/dev/acpica/include/acglobal.h projects/diffused_head/sys/contrib/dev/acpica/include/achware.h projects/diffused_head/sys/contrib/dev/acpica/include/aclocal.h projects/diffused_head/sys/contrib/dev/acpica/include/acnames.h projects/diffused_head/sys/contrib/dev/acpica/include/acnamesp.h projects/diffused_head/sys/contrib/dev/acpica/include/acobject.h projects/diffused_head/sys/contrib/dev/acpica/include/acoutput.h projects/diffused_head/sys/contrib/dev/acpica/include/acpixf.h projects/diffused_head/sys/contrib/dev/acpica/include/actypes.h projects/diffused_head/sys/contrib/dev/ral/Makefile projects/diffused_head/sys/contrib/dev/ral/rt2860.fw.uu projects/diffused_head/sys/contrib/dev/run/rt2870.fw.uu projects/diffused_head/sys/contrib/octeon-sdk/cvmip.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-abi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-access-native.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-access.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-address.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-agl-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-hotplug.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-hotplug.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-init-linux.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-init.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-init.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-asm.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-asx0-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-asxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-atomic.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-bootloader.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-bootmem.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-bootmem.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ciu-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-clock.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-clock.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-cmd-queue.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-cmd-queue.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-cn3010-evb-hs5.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-cn3010-evb-hs5.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-compactflash.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-compactflash.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-core.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-core.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-coremask.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-coremask.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-crypto.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-crypto.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr-enums.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr-typedefs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-csr.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dbg-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-debug-handler.S projects/diffused_head/sys/contrib/octeon-sdk/cvmx-debug-remote.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-debug-uart.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-debug.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-debug.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dfa-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dfa.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dfa.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dfm-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dma-engine.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dpi-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ebt3000.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ebt3000.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-fau.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-flash.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-flash.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-fpa-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-fpa.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-fpa.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-gmx.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-gmxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-gpio-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-gpio.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-board.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-check-defines.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-errata.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-errata.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-fpa.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-fpa.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-jtag.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-jtag.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-loop.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-loop.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-npi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-npi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-rgmii.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-rgmii.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-sgmii.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-sgmii.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-spi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-spi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-srio.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-srio.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-util.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-util.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-xaui.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-xaui.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-higig.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-interrupt-handler.S projects/diffused_head/sys/contrib/octeon-sdk/cvmx-interrupt.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-interrupt.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-iob-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ipd-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ipd.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ixf18201.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ixf18201.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-key-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-key.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-l2c-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-l2c.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-l2c.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-l2d-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-l2t-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-led-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-llm.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-llm.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-lmcx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-log-arc.S projects/diffused_head/sys/contrib/octeon-sdk/cvmx-log.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-log.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-malloc.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mdio.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mgmt-port.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mgmt-port.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mio-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mixx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-mpi-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-nand.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-nand.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ndf-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-npei-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-npi-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-npi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-packet.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pci-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pci.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcie.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcie.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcieepx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pciercx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcm-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcmx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcsx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pcsxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pemx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pescx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pexp-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pip-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pip.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pko-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pko.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pko.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-platform.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pow-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pow.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pow.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-power-throttle.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-power-throttle.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-rad-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-raid.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-raid.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-rng.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-rnm-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-rtc.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-rwlock.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-scratch.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-shmem.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-shmem.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sim-magic.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sli-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-smi-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-smix-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spi4000.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spinlock.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spx0-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-srio.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-srio.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sriomaintx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sriox-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-srxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-stxx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-swap.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sysinfo.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-sysinfo.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-thunder.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-thunder.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tim-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tim.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tim.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tlb.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tlb.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tra-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tra.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-tra.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-twsi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-twsi.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-uahcx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-uart.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-uart.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-uctlx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usb.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usb.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usbcx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usbd.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usbd.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-usbnx-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-utils.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-version.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-warn.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-warn.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-wqe.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-zip-defs.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-zip.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-zip.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-zone.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-boot-info.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-feature.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-model.c projects/diffused_head/sys/contrib/octeon-sdk/octeon-model.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-pci-console.c projects/diffused_head/sys/contrib/octeon-sdk/octeon-pci-console.h projects/diffused_head/sys/contrib/pf/net/if_pfsync.c projects/diffused_head/sys/contrib/pf/net/if_pfsync.h projects/diffused_head/sys/contrib/rdma/rdma_cma.c projects/diffused_head/sys/ddb/db_main.c projects/diffused_head/sys/dev/aac/aac_pci.c projects/diffused_head/sys/dev/acpi_support/atk0110.c projects/diffused_head/sys/dev/acpica/Osd/OsdSchedule.c projects/diffused_head/sys/dev/acpica/acpi.c projects/diffused_head/sys/dev/acpica/acpi_hpet.c projects/diffused_head/sys/dev/acpica/acpi_pci.c projects/diffused_head/sys/dev/acpica/acpi_pcib_acpi.c projects/diffused_head/sys/dev/acpica/acpivar.h projects/diffused_head/sys/dev/advansys/adv_eisa.c projects/diffused_head/sys/dev/advansys/adv_isa.c projects/diffused_head/sys/dev/advansys/adv_pci.c projects/diffused_head/sys/dev/advansys/adw_pci.c projects/diffused_head/sys/dev/ahb/ahb.c projects/diffused_head/sys/dev/ahci/ahci.c projects/diffused_head/sys/dev/aic7xxx/ahc_eisa.c projects/diffused_head/sys/dev/aic7xxx/ahc_isa.c projects/diffused_head/sys/dev/aic7xxx/ahc_pci.c projects/diffused_head/sys/dev/aic7xxx/ahd_pci.c projects/diffused_head/sys/dev/aic7xxx/aicasm/aicasm_symbol.c projects/diffused_head/sys/dev/ale/if_ale.c projects/diffused_head/sys/dev/ale/if_alevar.h projects/diffused_head/sys/dev/amdtemp/amdtemp.c projects/diffused_head/sys/dev/amr/amr.c projects/diffused_head/sys/dev/amr/amr_pci.c projects/diffused_head/sys/dev/an/if_an_pci.c projects/diffused_head/sys/dev/arcmsr/arcmsr.c projects/diffused_head/sys/dev/asr/asr.c projects/diffused_head/sys/dev/ata/ata-all.c projects/diffused_head/sys/dev/ata/ata-all.h projects/diffused_head/sys/dev/ata/ata-card.c projects/diffused_head/sys/dev/ata/ata-cbus.c projects/diffused_head/sys/dev/ata/ata-disk.c projects/diffused_head/sys/dev/ata/ata-pci.c projects/diffused_head/sys/dev/ata/ata-pci.h projects/diffused_head/sys/dev/ata/ata-queue.c projects/diffused_head/sys/dev/ata/ata-raid.c projects/diffused_head/sys/dev/ata/atapi-cam.c projects/diffused_head/sys/dev/ata/atapi-cd.c projects/diffused_head/sys/dev/ata/atapi-fd.c projects/diffused_head/sys/dev/ata/atapi-tape.c projects/diffused_head/sys/dev/ata/chipsets/ata-acard.c projects/diffused_head/sys/dev/ata/chipsets/ata-acerlabs.c projects/diffused_head/sys/dev/ata/chipsets/ata-adaptec.c projects/diffused_head/sys/dev/ata/chipsets/ata-ahci.c projects/diffused_head/sys/dev/ata/chipsets/ata-amd.c projects/diffused_head/sys/dev/ata/chipsets/ata-ati.c projects/diffused_head/sys/dev/ata/chipsets/ata-cyrix.c projects/diffused_head/sys/dev/ata/chipsets/ata-highpoint.c projects/diffused_head/sys/dev/ata/chipsets/ata-intel.c projects/diffused_head/sys/dev/ata/chipsets/ata-ite.c projects/diffused_head/sys/dev/ata/chipsets/ata-jmicron.c projects/diffused_head/sys/dev/ata/chipsets/ata-marvell.c projects/diffused_head/sys/dev/ata/chipsets/ata-national.c projects/diffused_head/sys/dev/ata/chipsets/ata-nvidia.c projects/diffused_head/sys/dev/ata/chipsets/ata-promise.c projects/diffused_head/sys/dev/ata/chipsets/ata-serverworks.c projects/diffused_head/sys/dev/ata/chipsets/ata-siliconimage.c projects/diffused_head/sys/dev/ata/chipsets/ata-sis.c projects/diffused_head/sys/dev/ata/chipsets/ata-via.c projects/diffused_head/sys/dev/ath/ah_osdep.c projects/diffused_head/sys/dev/ath/ah_osdep.h projects/diffused_head/sys/dev/ath/ath_hal/ah.h projects/diffused_head/sys/dev/ath/ath_hal/ah_decode.h projects/diffused_head/sys/dev/ath/ath_hal/ah_eeprom_v4k.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211.h projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5312/ar5312_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_power.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416phy.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.h projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_ath_debug.c projects/diffused_head/sys/dev/ath/if_ath_pci.c projects/diffused_head/sys/dev/ath/if_ath_sysctl.c projects/diffused_head/sys/dev/ath/if_ath_tx.c projects/diffused_head/sys/dev/ath/if_ath_tx.h projects/diffused_head/sys/dev/ath/if_ath_tx_ht.c projects/diffused_head/sys/dev/ath/if_athioctl.h projects/diffused_head/sys/dev/ath/if_athvar.h projects/diffused_head/sys/dev/atkbdc/atkbdc_isa.c projects/diffused_head/sys/dev/atkbdc/psm.c projects/diffused_head/sys/dev/bce/if_bce.c projects/diffused_head/sys/dev/bce/if_bcereg.h projects/diffused_head/sys/dev/bge/if_bge.c projects/diffused_head/sys/dev/bge/if_bgereg.h projects/diffused_head/sys/dev/buslogic/bt_pci.c projects/diffused_head/sys/dev/bxe/if_bxe.c projects/diffused_head/sys/dev/cardbus/cardbus.c projects/diffused_head/sys/dev/cesa/cesa.c projects/diffused_head/sys/dev/cfi/cfi_core.c projects/diffused_head/sys/dev/cfi/cfi_dev.c projects/diffused_head/sys/dev/cfi/cfi_disk.c projects/diffused_head/sys/dev/cfi/cfi_var.h projects/diffused_head/sys/dev/ciss/ciss.c projects/diffused_head/sys/dev/cxgb/cxgb_sge.c projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/cxgbe/t4_sge.c projects/diffused_head/sys/dev/de/if_de.c projects/diffused_head/sys/dev/dpt/dpt.h projects/diffused_head/sys/dev/dpt/dpt_pci.c projects/diffused_head/sys/dev/dpt/dpt_scsi.c projects/diffused_head/sys/dev/e1000/e1000_osdep.h projects/diffused_head/sys/dev/e1000/if_em.c projects/diffused_head/sys/dev/e1000/if_igb.c projects/diffused_head/sys/dev/e1000/if_igb.h projects/diffused_head/sys/dev/e1000/if_lem.c projects/diffused_head/sys/dev/en/midway.c projects/diffused_head/sys/dev/fb/s3_pci.c projects/diffused_head/sys/dev/fb/vesa.c projects/diffused_head/sys/dev/fb/vga.c projects/diffused_head/sys/dev/fdt/fdt_common.c projects/diffused_head/sys/dev/fdt/fdt_common.h projects/diffused_head/sys/dev/fxp/if_fxp.c projects/diffused_head/sys/dev/fxp/if_fxpreg.h projects/diffused_head/sys/dev/fxp/if_fxpvar.h projects/diffused_head/sys/dev/glxsb/glxsb.c projects/diffused_head/sys/dev/gpio/gpioc.c projects/diffused_head/sys/dev/hatm/if_hatm.c projects/diffused_head/sys/dev/hifn/hifn7751.c projects/diffused_head/sys/dev/hptiop/hptiop.c projects/diffused_head/sys/dev/hptmv/entry.c projects/diffused_head/sys/dev/hwpmc/hwpmc_amd.c projects/diffused_head/sys/dev/hwpmc/hwpmc_core.c projects/diffused_head/sys/dev/hwpmc/hwpmc_intel.c projects/diffused_head/sys/dev/hwpmc/hwpmc_logging.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mips.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mips24k.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mod.c projects/diffused_head/sys/dev/hwpmc/hwpmc_piv.c projects/diffused_head/sys/dev/hwpmc/hwpmc_powerpc.c projects/diffused_head/sys/dev/hwpmc/hwpmc_ppro.c projects/diffused_head/sys/dev/hwpmc/hwpmc_tsc.c projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.c projects/diffused_head/sys/dev/hwpmc/hwpmc_uncore.h projects/diffused_head/sys/dev/hwpmc/hwpmc_x86.c projects/diffused_head/sys/dev/hwpmc/hwpmc_xscale.c projects/diffused_head/sys/dev/hwpmc/pmc_events.h projects/diffused_head/sys/dev/ida/ida_pci.c projects/diffused_head/sys/dev/if_ndis/if_ndis_pci.c projects/diffused_head/sys/dev/iicbus/ds1775.c projects/diffused_head/sys/dev/iicbus/iicbb.c projects/diffused_head/sys/dev/iicbus/iicbb_if.m projects/diffused_head/sys/dev/iir/iir_pci.c projects/diffused_head/sys/dev/ips/ips_pci.c projects/diffused_head/sys/dev/ipw/if_ipw.c projects/diffused_head/sys/dev/ipw/if_ipwvar.h projects/diffused_head/sys/dev/isci/isci.c projects/diffused_head/sys/dev/isci/isci.h projects/diffused_head/sys/dev/isci/isci_controller.c projects/diffused_head/sys/dev/isci/isci_domain.c projects/diffused_head/sys/dev/isci/isci_io_request.c projects/diffused_head/sys/dev/isci/isci_remote_device.c projects/diffused_head/sys/dev/isci/isci_task_request.c projects/diffused_head/sys/dev/isci/scil/sati_read_capacity.c projects/diffused_head/sys/dev/iscsi/initiator/isc_subr.c projects/diffused_head/sys/dev/iscsi/initiator/iscsi.c projects/diffused_head/sys/dev/iscsi/initiator/iscsi_subr.c projects/diffused_head/sys/dev/iscsi/initiator/iscsivar.h projects/diffused_head/sys/dev/iwi/if_iwi.c projects/diffused_head/sys/dev/iwn/if_iwn.c projects/diffused_head/sys/dev/ixgb/if_ixgb.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe.h projects/diffused_head/sys/dev/ixgbe/ixv.c projects/diffused_head/sys/dev/lmc/if_lmc.c projects/diffused_head/sys/dev/mfi/mfi.c projects/diffused_head/sys/dev/mfi/mfi_cam.c projects/diffused_head/sys/dev/mfi/mfi_debug.c projects/diffused_head/sys/dev/mfi/mfi_disk.c projects/diffused_head/sys/dev/mfi/mfi_ioctl.h projects/diffused_head/sys/dev/mfi/mfi_linux.c projects/diffused_head/sys/dev/mfi/mfi_pci.c projects/diffused_head/sys/dev/mfi/mfireg.h projects/diffused_head/sys/dev/mfi/mfivar.h projects/diffused_head/sys/dev/mge/if_mge.c projects/diffused_head/sys/dev/mge/if_mgevar.h projects/diffused_head/sys/dev/mii/rgephy.c projects/diffused_head/sys/dev/mii/smcphy.c projects/diffused_head/sys/dev/mlx/mlx.c projects/diffused_head/sys/dev/mlx/mlx_pci.c projects/diffused_head/sys/dev/mly/mly.c projects/diffused_head/sys/dev/mmc/mmc.c projects/diffused_head/sys/dev/mmc/mmcbrvar.h projects/diffused_head/sys/dev/mmc/mmcreg.h projects/diffused_head/sys/dev/mmc/mmcsd.c projects/diffused_head/sys/dev/mmc/mmcvar.h projects/diffused_head/sys/dev/mps/mps_pci.c projects/diffused_head/sys/dev/mpt/mpilib/mpi.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_cnfg.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_fc.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_init.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_ioc.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_lan.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_raid.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_sas.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_targ.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_tool.h projects/diffused_head/sys/dev/mpt/mpilib/mpi_type.h projects/diffused_head/sys/dev/mpt/mpt.h projects/diffused_head/sys/dev/mpt/mpt_pci.c projects/diffused_head/sys/dev/msk/if_msk.c projects/diffused_head/sys/dev/mwl/if_mwl.c projects/diffused_head/sys/dev/mwl/if_mwlvar.h projects/diffused_head/sys/dev/mxge/if_mxge.c projects/diffused_head/sys/dev/netmap/if_em_netmap.h projects/diffused_head/sys/dev/netmap/if_igb_netmap.h projects/diffused_head/sys/dev/netmap/if_lem_netmap.h projects/diffused_head/sys/dev/netmap/if_re_netmap.h projects/diffused_head/sys/dev/netmap/ixgbe_netmap.h projects/diffused_head/sys/dev/netmap/netmap.c projects/diffused_head/sys/dev/netmap/netmap_kern.h projects/diffused_head/sys/dev/nve/if_nve.c projects/diffused_head/sys/dev/nxge/if_nxge.c projects/diffused_head/sys/dev/oce/oce_hw.c projects/diffused_head/sys/dev/ofw/ofw_bus_if.m projects/diffused_head/sys/dev/ofw/ofw_bus_subr.c projects/diffused_head/sys/dev/ofw/ofw_iicbus.c projects/diffused_head/sys/dev/patm/if_patm_attach.c projects/diffused_head/sys/dev/pcf/pcf_ebus.c projects/diffused_head/sys/dev/pci/hostb_pci.c projects/diffused_head/sys/dev/pci/pci.c projects/diffused_head/sys/dev/pci/pci_if.m projects/diffused_head/sys/dev/pci/pci_private.h projects/diffused_head/sys/dev/pci/pcireg.h projects/diffused_head/sys/dev/pci/pcivar.h projects/diffused_head/sys/dev/pci/vga_pci.c projects/diffused_head/sys/dev/pcn/if_pcn.c projects/diffused_head/sys/dev/qlxgb/qla_os.c projects/diffused_head/sys/dev/re/if_re.c projects/diffused_head/sys/dev/safe/safe.c projects/diffused_head/sys/dev/sf/if_sf.c projects/diffused_head/sys/dev/sf/if_sfreg.h projects/diffused_head/sys/dev/sfxge/sfxge_rx.c projects/diffused_head/sys/dev/siba/siba_bwn.c projects/diffused_head/sys/dev/siba/siba_core.c projects/diffused_head/sys/dev/smc/if_smc.c projects/diffused_head/sys/dev/sound/pci/emu10kx.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.c projects/diffused_head/sys/dev/sound/pcm/sndstat.c projects/diffused_head/sys/dev/sound/usb/uaudio.c projects/diffused_head/sys/dev/sound/usb/uaudioreg.h projects/diffused_head/sys/dev/syscons/syscons.c projects/diffused_head/sys/dev/trm/trm.c projects/diffused_head/sys/dev/tsec/if_tsec.c projects/diffused_head/sys/dev/tsec/if_tsec.h projects/diffused_head/sys/dev/tsec/if_tsec_fdt.c projects/diffused_head/sys/dev/twa/tw_osl.h projects/diffused_head/sys/dev/twa/tw_osl_freebsd.c projects/diffused_head/sys/dev/twe/twe_freebsd.c projects/diffused_head/sys/dev/tws/tws.c projects/diffused_head/sys/dev/uart/uart_bus.h projects/diffused_head/sys/dev/uart/uart_bus_pci.c projects/diffused_head/sys/dev/uart/uart_core.c projects/diffused_head/sys/dev/uart/uart_if.m projects/diffused_head/sys/dev/ubsec/ubsec.c projects/diffused_head/sys/dev/usb/controller/at91dci.c projects/diffused_head/sys/dev/usb/controller/atmegadci.c projects/diffused_head/sys/dev/usb/controller/avr32dci.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.h projects/diffused_head/sys/dev/usb/controller/dwc_otg_atmelarm.c projects/diffused_head/sys/dev/usb/controller/ehci.c projects/diffused_head/sys/dev/usb/controller/musb_otg.c projects/diffused_head/sys/dev/usb/controller/ohci.c projects/diffused_head/sys/dev/usb/controller/uhci.c projects/diffused_head/sys/dev/usb/controller/usb_controller.c projects/diffused_head/sys/dev/usb/controller/uss820dci.c projects/diffused_head/sys/dev/usb/controller/xhci.c projects/diffused_head/sys/dev/usb/input/atp.c projects/diffused_head/sys/dev/usb/input/uep.c projects/diffused_head/sys/dev/usb/input/uhid.c projects/diffused_head/sys/dev/usb/input/ukbd.c projects/diffused_head/sys/dev/usb/input/ums.c projects/diffused_head/sys/dev/usb/misc/ufm.c projects/diffused_head/sys/dev/usb/net/if_aue.c projects/diffused_head/sys/dev/usb/net/if_axe.c projects/diffused_head/sys/dev/usb/net/if_cdce.c projects/diffused_head/sys/dev/usb/net/if_cue.c projects/diffused_head/sys/dev/usb/net/if_ipheth.c projects/diffused_head/sys/dev/usb/net/if_kue.c projects/diffused_head/sys/dev/usb/net/if_mos.c projects/diffused_head/sys/dev/usb/net/if_mosreg.h projects/diffused_head/sys/dev/usb/net/if_rue.c projects/diffused_head/sys/dev/usb/net/if_udav.c projects/diffused_head/sys/dev/usb/net/if_usie.c projects/diffused_head/sys/dev/usb/net/ruephy.c projects/diffused_head/sys/dev/usb/net/uhso.c projects/diffused_head/sys/dev/usb/serial/u3g.c projects/diffused_head/sys/dev/usb/serial/ubsa.c projects/diffused_head/sys/dev/usb/serial/uchcom.c projects/diffused_head/sys/dev/usb/serial/ucycom.c projects/diffused_head/sys/dev/usb/serial/ufoma.c projects/diffused_head/sys/dev/usb/serial/ulpt.c projects/diffused_head/sys/dev/usb/serial/umodem.c projects/diffused_head/sys/dev/usb/serial/uplcom.c projects/diffused_head/sys/dev/usb/serial/usb_serial.c projects/diffused_head/sys/dev/usb/serial/usb_serial.h projects/diffused_head/sys/dev/usb/storage/umass.c projects/diffused_head/sys/dev/usb/storage/urio.c projects/diffused_head/sys/dev/usb/storage/ustorage_fs.c projects/diffused_head/sys/dev/usb/template/usb_template.c projects/diffused_head/sys/dev/usb/usb.h projects/diffused_head/sys/dev/usb/usb_busdma.c projects/diffused_head/sys/dev/usb/usb_compat_linux.c projects/diffused_head/sys/dev/usb/usb_controller.h projects/diffused_head/sys/dev/usb/usb_dev.c projects/diffused_head/sys/dev/usb/usb_device.c projects/diffused_head/sys/dev/usb/usb_handle_request.c projects/diffused_head/sys/dev/usb/usb_hid.c projects/diffused_head/sys/dev/usb/usb_hub.c projects/diffused_head/sys/dev/usb/usb_hub.h projects/diffused_head/sys/dev/usb/usb_msctest.c projects/diffused_head/sys/dev/usb/usb_request.c projects/diffused_head/sys/dev/usb/usb_request.h projects/diffused_head/sys/dev/usb/usb_transfer.c projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/usb/usbdi.h projects/diffused_head/sys/dev/usb/usbhid.h projects/diffused_head/sys/dev/usb/wlan/if_rum.c projects/diffused_head/sys/dev/usb/wlan/if_run.c projects/diffused_head/sys/dev/usb/wlan/if_uath.c projects/diffused_head/sys/dev/usb/wlan/if_upgt.c projects/diffused_head/sys/dev/usb/wlan/if_ural.c projects/diffused_head/sys/dev/usb/wlan/if_urtw.c projects/diffused_head/sys/dev/usb/wlan/if_zyd.c projects/diffused_head/sys/dev/virtio/balloon/virtio_balloon.c projects/diffused_head/sys/dev/virtio/block/virtio_blk.c projects/diffused_head/sys/dev/virtio/network/if_vtnet.c projects/diffused_head/sys/dev/virtio/pci/virtio_pci.c projects/diffused_head/sys/dev/virtio/virtio_ring.h projects/diffused_head/sys/dev/virtio/virtqueue.c projects/diffused_head/sys/dev/virtio/virtqueue.h projects/diffused_head/sys/dev/wds/wd7000.c projects/diffused_head/sys/dev/wi/if_wi.c projects/diffused_head/sys/dev/wpi/if_wpi.c projects/diffused_head/sys/dev/wtap/if_wtap.c projects/diffused_head/sys/dev/xen/balloon/balloon.c projects/diffused_head/sys/dev/xen/blkfront/blkfront.c projects/diffused_head/sys/fs/cd9660/cd9660_node.c projects/diffused_head/sys/fs/cd9660/cd9660_vfsops.c projects/diffused_head/sys/fs/cd9660/cd9660_vnops.c projects/diffused_head/sys/fs/coda/coda_subr.c projects/diffused_head/sys/fs/devfs/devfs_vfsops.c projects/diffused_head/sys/fs/ext2fs/ext2_alloc.c projects/diffused_head/sys/fs/ext2fs/ext2_dinode.h projects/diffused_head/sys/fs/ext2fs/ext2_inode.c projects/diffused_head/sys/fs/ext2fs/ext2_inode_cnv.c projects/diffused_head/sys/fs/ext2fs/ext2_vfsops.c projects/diffused_head/sys/fs/ext2fs/ext2_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2fs.h projects/diffused_head/sys/fs/ext2fs/inode.h projects/diffused_head/sys/fs/fdescfs/fdesc_vfsops.c projects/diffused_head/sys/fs/fifofs/fifo_vnops.c projects/diffused_head/sys/fs/hpfs/hpfs_vfsops.c projects/diffused_head/sys/fs/hpfs/hpfs_vnops.c projects/diffused_head/sys/fs/msdosfs/denode.h projects/diffused_head/sys/fs/msdosfs/msdosfs_denode.c projects/diffused_head/sys/fs/msdosfs/msdosfs_lookup.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vfsops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vnops.c projects/diffused_head/sys/fs/nfs/nfsport.h projects/diffused_head/sys/fs/nfsclient/nfs_clbio.c projects/diffused_head/sys/fs/nfsclient/nfs_clrpcops.c projects/diffused_head/sys/fs/nfsclient/nfs_clsubs.c projects/diffused_head/sys/fs/nfsclient/nfs_clvfsops.c projects/diffused_head/sys/fs/nfsclient/nfs_clvnops.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdcache.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdport.c projects/diffused_head/sys/fs/ntfs/ntfs.h projects/diffused_head/sys/fs/ntfs/ntfs_vfsops.c projects/diffused_head/sys/fs/nullfs/null_subr.c projects/diffused_head/sys/fs/nullfs/null_vfsops.c projects/diffused_head/sys/fs/nullfs/null_vnops.c projects/diffused_head/sys/fs/portalfs/portal_vfsops.c projects/diffused_head/sys/fs/procfs/procfs.c projects/diffused_head/sys/fs/pseudofs/pseudofs.h projects/diffused_head/sys/fs/pseudofs/pseudofs_vnops.c projects/diffused_head/sys/fs/smbfs/smbfs_node.c projects/diffused_head/sys/fs/tmpfs/tmpfs.h projects/diffused_head/sys/fs/tmpfs/tmpfs_subr.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vfsops.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vnops.c projects/diffused_head/sys/fs/udf/udf_vnops.c projects/diffused_head/sys/fs/unionfs/union_subr.c projects/diffused_head/sys/fs/unionfs/union_vfsops.c projects/diffused_head/sys/fs/unionfs/union_vnops.c projects/diffused_head/sys/gdb/gdb_main.c projects/diffused_head/sys/geom/geom_vfs.c projects/diffused_head/sys/geom/multipath/g_multipath.c projects/diffused_head/sys/geom/part/g_part.c projects/diffused_head/sys/geom/part/g_part.h projects/diffused_head/sys/geom/part/g_part_bsd.c projects/diffused_head/sys/geom/part/g_part_gpt.c projects/diffused_head/sys/geom/part/g_part_mbr.c projects/diffused_head/sys/geom/raid/g_raid.c projects/diffused_head/sys/geom/raid/g_raid.h projects/diffused_head/sys/geom/raid/g_raid_ctl.c projects/diffused_head/sys/geom/raid/g_raid_md_if.m projects/diffused_head/sys/geom/raid/md_intel.c projects/diffused_head/sys/geom/raid/md_jmicron.c projects/diffused_head/sys/geom/raid/md_nvidia.c projects/diffused_head/sys/geom/raid/md_promise.c projects/diffused_head/sys/geom/raid/md_sii.c projects/diffused_head/sys/geom/raid/tr_raid1.c projects/diffused_head/sys/geom/raid/tr_raid1e.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_vnops.c projects/diffused_head/sys/i386/acpica/acpi_wakeup.c projects/diffused_head/sys/i386/conf/DEFAULTS projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/GENERIC.hints projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/conf/XBOX projects/diffused_head/sys/i386/conf/XEN projects/diffused_head/sys/i386/i386/exception.s projects/diffused_head/sys/i386/i386/identcpu.c projects/diffused_head/sys/i386/i386/machdep.c projects/diffused_head/sys/i386/i386/mp_machdep.c projects/diffused_head/sys/i386/i386/pmap.c projects/diffused_head/sys/i386/i386/trap.c projects/diffused_head/sys/i386/i386/vm86.c projects/diffused_head/sys/i386/include/_limits.h projects/diffused_head/sys/i386/include/_stdint.h projects/diffused_head/sys/i386/include/_types.h projects/diffused_head/sys/i386/include/apicvar.h projects/diffused_head/sys/i386/include/endian.h projects/diffused_head/sys/i386/include/float.h projects/diffused_head/sys/i386/include/intr_machdep.h projects/diffused_head/sys/i386/include/npx.h projects/diffused_head/sys/i386/include/pcb.h projects/diffused_head/sys/i386/include/pmc_mdep.h projects/diffused_head/sys/i386/include/proc.h projects/diffused_head/sys/i386/include/psl.h projects/diffused_head/sys/i386/include/ptrace.h projects/diffused_head/sys/i386/include/reg.h projects/diffused_head/sys/i386/include/segments.h projects/diffused_head/sys/i386/include/setjmp.h projects/diffused_head/sys/i386/include/specialreg.h projects/diffused_head/sys/i386/include/stdarg.h projects/diffused_head/sys/i386/include/sysarch.h projects/diffused_head/sys/i386/include/trap.h projects/diffused_head/sys/i386/include/vm.h projects/diffused_head/sys/i386/linux/linux_dummy.c projects/diffused_head/sys/i386/linux/linux_machdep.c projects/diffused_head/sys/i386/linux/linux_proto.h projects/diffused_head/sys/i386/linux/linux_syscall.h projects/diffused_head/sys/i386/linux/linux_syscalls.c projects/diffused_head/sys/i386/linux/linux_sysent.c projects/diffused_head/sys/i386/linux/linux_systrace_args.c projects/diffused_head/sys/i386/linux/linux_sysvec.c projects/diffused_head/sys/i386/linux/syscalls.master projects/diffused_head/sys/i386/xbox/xboxfb.c projects/diffused_head/sys/ia64/conf/DEFAULTS projects/diffused_head/sys/ia64/conf/GENERIC projects/diffused_head/sys/ia64/conf/SKI projects/diffused_head/sys/ia64/ia32/ia32_reg.c projects/diffused_head/sys/ia64/ia32/ia32_signal.c projects/diffused_head/sys/ia64/ia32/ia32_trap.c projects/diffused_head/sys/ia64/ia64/busdma_machdep.c projects/diffused_head/sys/ia64/ia64/machdep.c projects/diffused_head/sys/ia64/include/pcb.h projects/diffused_head/sys/ia64/include/reg.h projects/diffused_head/sys/kern/imgact_elf.c projects/diffused_head/sys/kern/kern_acct.c projects/diffused_head/sys/kern/kern_clock.c projects/diffused_head/sys/kern/kern_clocksource.c projects/diffused_head/sys/kern/kern_condvar.c projects/diffused_head/sys/kern/kern_cpu.c projects/diffused_head/sys/kern/kern_descrip.c projects/diffused_head/sys/kern/kern_event.c projects/diffused_head/sys/kern/kern_exec.c projects/diffused_head/sys/kern/kern_exit.c projects/diffused_head/sys/kern/kern_fork.c projects/diffused_head/sys/kern/kern_intr.c projects/diffused_head/sys/kern/kern_jail.c projects/diffused_head/sys/kern/kern_kthread.c projects/diffused_head/sys/kern/kern_ktrace.c projects/diffused_head/sys/kern/kern_linker.c projects/diffused_head/sys/kern/kern_lock.c projects/diffused_head/sys/kern/kern_malloc.c projects/diffused_head/sys/kern/kern_mutex.c projects/diffused_head/sys/kern/kern_pmc.c projects/diffused_head/sys/kern/kern_proc.c projects/diffused_head/sys/kern/kern_racct.c projects/diffused_head/sys/kern/kern_rctl.c projects/diffused_head/sys/kern/kern_rwlock.c projects/diffused_head/sys/kern/kern_sdt.c projects/diffused_head/sys/kern/kern_sig.c projects/diffused_head/sys/kern/kern_sx.c projects/diffused_head/sys/kern/kern_synch.c projects/diffused_head/sys/kern/kern_sysctl.c projects/diffused_head/sys/kern/kern_tc.c projects/diffused_head/sys/kern/kern_thr.c projects/diffused_head/sys/kern/kern_timeout.c projects/diffused_head/sys/kern/kern_umtx.c projects/diffused_head/sys/kern/sched_4bsd.c projects/diffused_head/sys/kern/sched_ule.c projects/diffused_head/sys/kern/subr_acl_nfs4.c projects/diffused_head/sys/kern/subr_acl_posix1e.c projects/diffused_head/sys/kern/subr_bus.c projects/diffused_head/sys/kern/subr_firmware.c projects/diffused_head/sys/kern/subr_kdb.c projects/diffused_head/sys/kern/subr_msgbuf.c projects/diffused_head/sys/kern/subr_syscall.c projects/diffused_head/sys/kern/subr_trap.c projects/diffused_head/sys/kern/subr_turnstile.c projects/diffused_head/sys/kern/subr_uio.c projects/diffused_head/sys/kern/subr_witness.c projects/diffused_head/sys/kern/sys_capability.c projects/diffused_head/sys/kern/sys_generic.c projects/diffused_head/sys/kern/sys_pipe.c projects/diffused_head/sys/kern/sys_process.c projects/diffused_head/sys/kern/tty.c projects/diffused_head/sys/kern/uipc_domain.c projects/diffused_head/sys/kern/uipc_mqueue.c projects/diffused_head/sys/kern/uipc_shm.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_syscalls.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_bio.c projects/diffused_head/sys/kern/vfs_cache.c projects/diffused_head/sys/kern/vfs_default.c projects/diffused_head/sys/kern/vfs_mount.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/kern/vfs_syscalls.c projects/diffused_head/sys/kern/vfs_vnops.c projects/diffused_head/sys/kern/vnode_if.src projects/diffused_head/sys/libkern/crc32.c projects/diffused_head/sys/mips/adm5120/adm5120_machdep.c projects/diffused_head/sys/mips/adm5120/std.adm5120 projects/diffused_head/sys/mips/alchemy/alchemy_machdep.c projects/diffused_head/sys/mips/alchemy/std.alchemy projects/diffused_head/sys/mips/atheros/apb.c projects/diffused_head/sys/mips/atheros/ar71xx_chip.c projects/diffused_head/sys/mips/atheros/ar71xx_chip.h projects/diffused_head/sys/mips/atheros/ar71xx_cpudef.h projects/diffused_head/sys/mips/atheros/ar71xx_gpio.c projects/diffused_head/sys/mips/atheros/ar71xx_machdep.c projects/diffused_head/sys/mips/atheros/ar71xx_pci.c projects/diffused_head/sys/mips/atheros/ar71xxreg.h projects/diffused_head/sys/mips/atheros/ar724x_chip.c projects/diffused_head/sys/mips/atheros/ar724x_pci.c projects/diffused_head/sys/mips/atheros/ar91xx_chip.c projects/diffused_head/sys/mips/atheros/files.ar71xx projects/diffused_head/sys/mips/atheros/if_arge.c projects/diffused_head/sys/mips/atheros/if_argevar.h projects/diffused_head/sys/mips/atheros/std.ar71xx projects/diffused_head/sys/mips/cavium/ciu.c projects/diffused_head/sys/mips/cavium/cvmx_config.h projects/diffused_head/sys/mips/cavium/files.octeon1 projects/diffused_head/sys/mips/cavium/if_octm.c projects/diffused_head/sys/mips/cavium/obio.c projects/diffused_head/sys/mips/cavium/octe/ethernet-common.c projects/diffused_head/sys/mips/cavium/octe/ethernet-rgmii.c projects/diffused_head/sys/mips/cavium/octe/ethernet-rx.c projects/diffused_head/sys/mips/cavium/octe/ethernet-spi.c projects/diffused_head/sys/mips/cavium/octe/ethernet.c projects/diffused_head/sys/mips/cavium/octe/wrapper-cvmx-includes.h projects/diffused_head/sys/mips/cavium/octeon_ebt3000_cf.c projects/diffused_head/sys/mips/cavium/octeon_gpio.c projects/diffused_head/sys/mips/cavium/octeon_machdep.c projects/diffused_head/sys/mips/cavium/octeon_mp.c projects/diffused_head/sys/mips/cavium/octeon_wdog.c projects/diffused_head/sys/mips/cavium/octopci.c projects/diffused_head/sys/mips/cavium/octopci_bus_space.c projects/diffused_head/sys/mips/cavium/std.octeon1 projects/diffused_head/sys/mips/cavium/uart_dev_oct16550.c projects/diffused_head/sys/mips/cavium/usb/octusb_octeon.c projects/diffused_head/sys/mips/conf/AR71XX_BASE projects/diffused_head/sys/mips/conf/AR91XX_BASE projects/diffused_head/sys/mips/conf/DEFAULTS projects/diffused_head/sys/mips/conf/MALTA projects/diffused_head/sys/mips/conf/MALTA64 projects/diffused_head/sys/mips/conf/OCTEON1 projects/diffused_head/sys/mips/conf/PB92 projects/diffused_head/sys/mips/conf/RT305X projects/diffused_head/sys/mips/conf/SWARM projects/diffused_head/sys/mips/conf/SWARM64 projects/diffused_head/sys/mips/conf/SWARM64_SMP projects/diffused_head/sys/mips/conf/SWARM_SMP projects/diffused_head/sys/mips/conf/TP-WN1043ND.hints projects/diffused_head/sys/mips/conf/XLP projects/diffused_head/sys/mips/conf/XLP64 projects/diffused_head/sys/mips/conf/XLPN32 projects/diffused_head/sys/mips/conf/XLR projects/diffused_head/sys/mips/conf/XLR64 projects/diffused_head/sys/mips/conf/XLRN32 projects/diffused_head/sys/mips/conf/std.XLP projects/diffused_head/sys/mips/idt/idt_machdep.c projects/diffused_head/sys/mips/idt/std.idt projects/diffused_head/sys/mips/include/_bus.h projects/diffused_head/sys/mips/include/asm.h projects/diffused_head/sys/mips/include/bus.h projects/diffused_head/sys/mips/include/cache.h projects/diffused_head/sys/mips/include/cpu.h projects/diffused_head/sys/mips/include/cpufunc.h projects/diffused_head/sys/mips/include/cpuregs.h projects/diffused_head/sys/mips/include/elf.h projects/diffused_head/sys/mips/include/frame.h projects/diffused_head/sys/mips/include/hwfunc.h projects/diffused_head/sys/mips/include/locore.h projects/diffused_head/sys/mips/include/md_var.h projects/diffused_head/sys/mips/include/param.h projects/diffused_head/sys/mips/include/pcb.h projects/diffused_head/sys/mips/include/pmap.h projects/diffused_head/sys/mips/include/pmc_mdep.h projects/diffused_head/sys/mips/include/proc.h projects/diffused_head/sys/mips/include/reg.h projects/diffused_head/sys/mips/include/sigframe.h projects/diffused_head/sys/mips/include/trap.h projects/diffused_head/sys/mips/include/ucontext.h projects/diffused_head/sys/mips/include/vm.h projects/diffused_head/sys/mips/include/vmparam.h projects/diffused_head/sys/mips/malta/malta_machdep.c projects/diffused_head/sys/mips/malta/std.malta projects/diffused_head/sys/mips/mips/bus_space_generic.c projects/diffused_head/sys/mips/mips/busdma_machdep.c projects/diffused_head/sys/mips/mips/cache.c projects/diffused_head/sys/mips/mips/cache_mipsNN.c projects/diffused_head/sys/mips/mips/cpu.c projects/diffused_head/sys/mips/mips/exception.S projects/diffused_head/sys/mips/mips/genassym.c projects/diffused_head/sys/mips/mips/intr_machdep.c projects/diffused_head/sys/mips/mips/locore.S projects/diffused_head/sys/mips/mips/machdep.c projects/diffused_head/sys/mips/mips/mpboot.S projects/diffused_head/sys/mips/mips/nexus.c projects/diffused_head/sys/mips/mips/pm_machdep.c projects/diffused_head/sys/mips/mips/pmap.c projects/diffused_head/sys/mips/mips/support.S projects/diffused_head/sys/mips/mips/swtch.S projects/diffused_head/sys/mips/mips/sys_machdep.c projects/diffused_head/sys/mips/mips/tick.c projects/diffused_head/sys/mips/mips/trap.c projects/diffused_head/sys/mips/mips/vm_machdep.c projects/diffused_head/sys/mips/nlm/board.c projects/diffused_head/sys/mips/nlm/board.h projects/diffused_head/sys/mips/nlm/cms.c projects/diffused_head/sys/mips/nlm/files.xlp projects/diffused_head/sys/mips/nlm/hal/iomap.h projects/diffused_head/sys/mips/nlm/hal/nlm_hal.c projects/diffused_head/sys/mips/nlm/hal/pcibus.h projects/diffused_head/sys/mips/nlm/hal/pic.h projects/diffused_head/sys/mips/nlm/hal/sys.h projects/diffused_head/sys/mips/nlm/intr_machdep.c projects/diffused_head/sys/mips/nlm/mpreset.S projects/diffused_head/sys/mips/nlm/msgring.h projects/diffused_head/sys/mips/nlm/tick.c projects/diffused_head/sys/mips/nlm/uart_cpu_xlp.c projects/diffused_head/sys/mips/nlm/xlp.h projects/diffused_head/sys/mips/nlm/xlp_machdep.c projects/diffused_head/sys/mips/nlm/xlp_pci.c projects/diffused_head/sys/mips/rmi/tick.c projects/diffused_head/sys/mips/rmi/xlr_machdep.c projects/diffused_head/sys/mips/rt305x/rt305x_machdep.c projects/diffused_head/sys/mips/rt305x/rt305x_sysctl.c projects/diffused_head/sys/mips/rt305x/std.rt305x projects/diffused_head/sys/mips/sentry5/s5_machdep.c projects/diffused_head/sys/mips/sentry5/std.sentry5 projects/diffused_head/sys/mips/sibyte/sb_machdep.c projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/bios/smapi/Makefile projects/diffused_head/sys/modules/cyclic/Makefile projects/diffused_head/sys/modules/dtrace/Makefile projects/diffused_head/sys/modules/dtrace/dtrace/Makefile projects/diffused_head/sys/modules/geom/geom_part/Makefile projects/diffused_head/sys/modules/geom/geom_raid/Makefile projects/diffused_head/sys/modules/hwpmc/Makefile projects/diffused_head/sys/modules/linux/Makefile projects/diffused_head/sys/modules/mfi/Makefile projects/diffused_head/sys/modules/mii/Makefile projects/diffused_head/sys/modules/mlx4/Makefile projects/diffused_head/sys/modules/mlx4ib/Makefile projects/diffused_head/sys/modules/mlxen/Makefile projects/diffused_head/sys/modules/mmcsd/Makefile projects/diffused_head/sys/modules/mps/Makefile projects/diffused_head/sys/modules/mthca/Makefile projects/diffused_head/sys/modules/mwl/Makefile projects/diffused_head/sys/modules/netgraph/netflow/Makefile projects/diffused_head/sys/modules/ralfw/Makefile projects/diffused_head/sys/modules/scc/Makefile projects/diffused_head/sys/modules/sound/driver/Makefile projects/diffused_head/sys/modules/uart/Makefile projects/diffused_head/sys/modules/usb/Makefile projects/diffused_head/sys/net/bpf.c projects/diffused_head/sys/net/bpf.h projects/diffused_head/sys/net/bpf_buffer.c projects/diffused_head/sys/net/bpf_zerocopy.c projects/diffused_head/sys/net/bpfdesc.h projects/diffused_head/sys/net/bridgestp.c projects/diffused_head/sys/net/bridgestp.h projects/diffused_head/sys/net/ieee8023ad_lacp.c projects/diffused_head/sys/net/if.c projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_ethersubr.c projects/diffused_head/sys/net/if_lagg.c projects/diffused_head/sys/net/if_lagg.h projects/diffused_head/sys/net/if_llatbl.h projects/diffused_head/sys/net/if_media.h projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/net/netmap.h projects/diffused_head/sys/net/netmap_user.h projects/diffused_head/sys/net/route.c projects/diffused_head/sys/net/route.h projects/diffused_head/sys/net/rtsock.c projects/diffused_head/sys/net80211/ieee80211.c projects/diffused_head/sys/net80211/ieee80211.h projects/diffused_head/sys/net80211/ieee80211_action.c projects/diffused_head/sys/net80211/ieee80211_alq.c projects/diffused_head/sys/net80211/ieee80211_alq.h projects/diffused_head/sys/net80211/ieee80211_ddb.c projects/diffused_head/sys/net80211/ieee80211_freebsd.c projects/diffused_head/sys/net80211/ieee80211_ht.c projects/diffused_head/sys/net80211/ieee80211_ht.h projects/diffused_head/sys/net80211/ieee80211_hwmp.c projects/diffused_head/sys/net80211/ieee80211_input.c projects/diffused_head/sys/net80211/ieee80211_ioctl.h projects/diffused_head/sys/net80211/ieee80211_mesh.c projects/diffused_head/sys/net80211/ieee80211_mesh.h projects/diffused_head/sys/net80211/ieee80211_node.c projects/diffused_head/sys/net80211/ieee80211_node.h projects/diffused_head/sys/net80211/ieee80211_output.c projects/diffused_head/sys/net80211/ieee80211_proto.c projects/diffused_head/sys/net80211/ieee80211_radiotap.c projects/diffused_head/sys/net80211/ieee80211_radiotap.h projects/diffused_head/sys/net80211/ieee80211_regdomain.c projects/diffused_head/sys/net80211/ieee80211_scan.c projects/diffused_head/sys/net80211/ieee80211_sta.c projects/diffused_head/sys/net80211/ieee80211_superg.c projects/diffused_head/sys/net80211/ieee80211_var.h projects/diffused_head/sys/netatalk/aarp.c projects/diffused_head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/diffused_head/sys/netgraph/netflow/netflow.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.h projects/diffused_head/sys/netgraph/ng_patch.c projects/diffused_head/sys/netgraph/ng_source.c projects/diffused_head/sys/netgraph/ng_vlan.c projects/diffused_head/sys/netgraph/ng_vlan.h projects/diffused_head/sys/netinet/icmp6.h projects/diffused_head/sys/netinet/in.c projects/diffused_head/sys/netinet/in_pcb.h projects/diffused_head/sys/netinet/ip_carp.c projects/diffused_head/sys/netinet/ip_fw.h projects/diffused_head/sys/netinet/ip_mroute.c projects/diffused_head/sys/netinet/ipfw/ip_fw2.c projects/diffused_head/sys/netinet/ipfw/ip_fw_dynamic.c projects/diffused_head/sys/netinet/ipfw/ip_fw_private.h projects/diffused_head/sys/netinet/ipfw/ip_fw_sockopt.c projects/diffused_head/sys/netinet/ipfw/ip_fw_table.c projects/diffused_head/sys/netinet/sctp.h projects/diffused_head/sys/netinet/sctp_auth.c projects/diffused_head/sys/netinet/sctp_bsd_addr.c projects/diffused_head/sys/netinet/sctp_cc_functions.c projects/diffused_head/sys/netinet/sctp_constants.h projects/diffused_head/sys/netinet/sctp_crc32.c projects/diffused_head/sys/netinet/sctp_header.h projects/diffused_head/sys/netinet/sctp_indata.c projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_os_bsd.h projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_output.h projects/diffused_head/sys/netinet/sctp_pcb.c projects/diffused_head/sys/netinet/sctp_pcb.h projects/diffused_head/sys/netinet/sctp_peeloff.c projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_timer.c projects/diffused_head/sys/netinet/sctp_uio.h projects/diffused_head/sys/netinet/sctp_usrreq.c projects/diffused_head/sys/netinet/sctp_var.h projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/sctputil.h projects/diffused_head/sys/netinet/tcp_input.c projects/diffused_head/sys/netinet/tcp_output.c projects/diffused_head/sys/netinet/tcp_subr.c projects/diffused_head/sys/netinet/tcp_var.h projects/diffused_head/sys/netinet/udp_usrreq.c projects/diffused_head/sys/netinet/udp_var.h projects/diffused_head/sys/netinet6/in6.c projects/diffused_head/sys/netinet6/in6_pcb.c projects/diffused_head/sys/netinet6/in6_src.c projects/diffused_head/sys/netinet6/ip6_input.c projects/diffused_head/sys/netinet6/ip6_output.c projects/diffused_head/sys/netinet6/ip6_var.h projects/diffused_head/sys/netinet6/nd6.c projects/diffused_head/sys/netinet6/sctp6_usrreq.c projects/diffused_head/sys/nfsclient/nfs_bio.c projects/diffused_head/sys/nfsclient/nfs_krpc.c projects/diffused_head/sys/nfsclient/nfs_subs.c projects/diffused_head/sys/nfsclient/nfs_vfsops.c projects/diffused_head/sys/nfsclient/nfs_vnops.c projects/diffused_head/sys/ofed/drivers/infiniband/core/addr.c projects/diffused_head/sys/ofed/drivers/infiniband/core/cma.c projects/diffused_head/sys/ofed/drivers/infiniband/core/fmr_pool.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_ib.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/sdp/sdp_main.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_frag.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_netdev.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_port.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_port.h projects/diffused_head/sys/ofed/drivers/net/mlx4/en_rx.c projects/diffused_head/sys/ofed/include/linux/in.h projects/diffused_head/sys/ofed/include/linux/in6.h projects/diffused_head/sys/ofed/include/linux/io.h projects/diffused_head/sys/ofed/include/linux/page.h projects/diffused_head/sys/ofed/include/net/ip.h projects/diffused_head/sys/ofed/include/net/ipv6.h projects/diffused_head/sys/pc98/conf/DEFAULTS projects/diffused_head/sys/pc98/conf/GENERIC projects/diffused_head/sys/pc98/include/_limits.h projects/diffused_head/sys/pc98/include/_stdint.h projects/diffused_head/sys/pc98/include/_types.h projects/diffused_head/sys/pc98/include/endian.h projects/diffused_head/sys/pc98/include/float.h projects/diffused_head/sys/pc98/include/psl.h projects/diffused_head/sys/pc98/include/ptrace.h projects/diffused_head/sys/pc98/include/reg.h projects/diffused_head/sys/pc98/include/setjmp.h projects/diffused_head/sys/pc98/include/specialreg.h projects/diffused_head/sys/pc98/include/stdarg.h projects/diffused_head/sys/pc98/include/sysarch.h projects/diffused_head/sys/pc98/include/trap.h projects/diffused_head/sys/pc98/pc98/machdep.c projects/diffused_head/sys/pci/if_rl.c projects/diffused_head/sys/pci/if_rlreg.h projects/diffused_head/sys/pci/intpm.c projects/diffused_head/sys/powerpc/aim/machdep.c projects/diffused_head/sys/powerpc/aim/mmu_oea.c projects/diffused_head/sys/powerpc/aim/mmu_oea64.c projects/diffused_head/sys/powerpc/aim/moea64_native.c projects/diffused_head/sys/powerpc/aim/slb.c projects/diffused_head/sys/powerpc/aim/swtch32.S projects/diffused_head/sys/powerpc/aim/swtch64.S projects/diffused_head/sys/powerpc/conf/DEFAULTS projects/diffused_head/sys/powerpc/conf/GENERIC projects/diffused_head/sys/powerpc/conf/GENERIC64 projects/diffused_head/sys/powerpc/conf/MPC85XX projects/diffused_head/sys/powerpc/include/asm.h projects/diffused_head/sys/powerpc/include/atomic.h projects/diffused_head/sys/powerpc/include/cpu.h projects/diffused_head/sys/powerpc/include/cpufunc.h projects/diffused_head/sys/powerpc/include/endian.h projects/diffused_head/sys/powerpc/include/pio.h projects/diffused_head/sys/powerpc/include/pmap.h projects/diffused_head/sys/powerpc/include/pmc_mdep.h projects/diffused_head/sys/powerpc/include/profile.h projects/diffused_head/sys/powerpc/include/trap.h projects/diffused_head/sys/powerpc/include/trap_aim.h projects/diffused_head/sys/powerpc/include/trap_booke.h projects/diffused_head/sys/powerpc/include/ucontext.h projects/diffused_head/sys/powerpc/include/vm.h projects/diffused_head/sys/powerpc/mpc85xx/mpc85xx.c projects/diffused_head/sys/powerpc/ofw/ofw_pcib_pci.c projects/diffused_head/sys/powerpc/ofw/ofw_pcibus.c projects/diffused_head/sys/powerpc/powermac/smu.c projects/diffused_head/sys/powerpc/powermac/uninorth.c projects/diffused_head/sys/powerpc/powerpc/bus_machdep.c projects/diffused_head/sys/powerpc/powerpc/busdma_machdep.c projects/diffused_head/sys/powerpc/powerpc/exec_machdep.c projects/diffused_head/sys/powerpc/powerpc/iommu_if.m projects/diffused_head/sys/powerpc/ps3/ps3bus.c projects/diffused_head/sys/security/mac/mac_net.c projects/diffused_head/sys/security/mac/mac_syscalls.c projects/diffused_head/sys/security/mac_mls/mac_mls.c projects/diffused_head/sys/sparc64/conf/DEFAULTS projects/diffused_head/sys/sparc64/conf/GENERIC projects/diffused_head/sys/sparc64/include/bus_dma.h projects/diffused_head/sys/sparc64/include/endian.h projects/diffused_head/sys/sparc64/include/intr_machdep.h projects/diffused_head/sys/sparc64/include/pcb.h projects/diffused_head/sys/sparc64/pci/fire.c projects/diffused_head/sys/sparc64/pci/firereg.h projects/diffused_head/sys/sparc64/pci/ofw_pcibus.c projects/diffused_head/sys/sparc64/sparc64/bus_machdep.c projects/diffused_head/sys/sparc64/sparc64/intr_machdep.c projects/diffused_head/sys/sparc64/sparc64/machdep.c projects/diffused_head/sys/sparc64/sparc64/trap.c projects/diffused_head/sys/sys/_umtx.h projects/diffused_head/sys/sys/buf.h projects/diffused_head/sys/sys/bus.h projects/diffused_head/sys/sys/bus_dma.h projects/diffused_head/sys/sys/callout.h projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/conf.h projects/diffused_head/sys/sys/cpuset.h projects/diffused_head/sys/sys/diskmbr.h projects/diffused_head/sys/sys/elf_common.h projects/diffused_head/sys/sys/event.h projects/diffused_head/sys/sys/gpt.h projects/diffused_head/sys/sys/jail.h projects/diffused_head/sys/sys/kdb.h projects/diffused_head/sys/sys/ktrace.h projects/diffused_head/sys/sys/libkern.h projects/diffused_head/sys/sys/malloc.h projects/diffused_head/sys/sys/mman.h projects/diffused_head/sys/sys/mount.h projects/diffused_head/sys/sys/msgbuf.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/pipe.h projects/diffused_head/sys/sys/pmc.h projects/diffused_head/sys/sys/pmckern.h projects/diffused_head/sys/sys/pmclog.h projects/diffused_head/sys/sys/proc.h projects/diffused_head/sys/sys/racct.h projects/diffused_head/sys/sys/rman.h projects/diffused_head/sys/sys/sched.h projects/diffused_head/sys/sys/sdt.h projects/diffused_head/sys/sys/signal.h projects/diffused_head/sys/sys/socket.h projects/diffused_head/sys/sys/sysctl.h projects/diffused_head/sys/sys/systm.h projects/diffused_head/sys/sys/ucontext.h projects/diffused_head/sys/sys/umtx.h projects/diffused_head/sys/sys/unistd.h projects/diffused_head/sys/sys/vnode.h projects/diffused_head/sys/ufs/ffs/ffs_balloc.c projects/diffused_head/sys/ufs/ffs/ffs_extern.h projects/diffused_head/sys/ufs/ffs/ffs_inode.c projects/diffused_head/sys/ufs/ffs/ffs_rawread.c projects/diffused_head/sys/ufs/ffs/ffs_snapshot.c projects/diffused_head/sys/ufs/ffs/ffs_softdep.c projects/diffused_head/sys/ufs/ffs/ffs_vfsops.c projects/diffused_head/sys/ufs/ffs/ffs_vnops.c projects/diffused_head/sys/ufs/ufs/inode.h projects/diffused_head/sys/ufs/ufs/quota.h projects/diffused_head/sys/ufs/ufs/ufs_extattr.c projects/diffused_head/sys/ufs/ufs/ufs_inode.c projects/diffused_head/sys/ufs/ufs/ufs_lookup.c projects/diffused_head/sys/ufs/ufs/ufs_quota.c projects/diffused_head/sys/ufs/ufs/ufs_vnops.c projects/diffused_head/sys/ufs/ufs/ufsmount.h projects/diffused_head/sys/vm/vm_contig.c projects/diffused_head/sys/vm/vm_fault.c projects/diffused_head/sys/vm/vm_kern.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_map.h projects/diffused_head/sys/vm/vm_mmap.c projects/diffused_head/sys/vm/vm_object.c projects/diffused_head/sys/vm/vm_object.h projects/diffused_head/sys/vm/vm_page.c projects/diffused_head/sys/vm/vm_page.h projects/diffused_head/sys/vm/vm_pageout.c projects/diffused_head/sys/vm/vm_pageout.h projects/diffused_head/sys/vm/vm_reserv.c projects/diffused_head/sys/vm/vnode_pager.c projects/diffused_head/sys/vm/vnode_pager.h projects/diffused_head/sys/x86/acpica/madt.c projects/diffused_head/sys/x86/cpufreq/p4tcc.c projects/diffused_head/sys/x86/include/mca.h projects/diffused_head/sys/x86/isa/atpic.c projects/diffused_head/sys/x86/isa/icu.h projects/diffused_head/sys/x86/isa/isa_dma.c projects/diffused_head/sys/x86/pci/pci_bus.c projects/diffused_head/sys/x86/x86/busdma_machdep.c projects/diffused_head/sys/x86/x86/local_apic.c projects/diffused_head/sys/x86/x86/mca.c projects/diffused_head/sys/x86/x86/mptable_pci.c projects/diffused_head/sys/xen/interface/io/blkif.h projects/diffused_head/tools/build/mk/OptionalObsoleteFiles.inc projects/diffused_head/tools/make_libdeps.sh projects/diffused_head/tools/regression/fifo/fifo_misc/fifo_misc.c projects/diffused_head/tools/regression/lib/msun/test-rem.c projects/diffused_head/tools/regression/security/cap_test/cap_test_capmode.c projects/diffused_head/tools/regression/usr.bin/m4/Makefile projects/diffused_head/tools/regression/usr.bin/m4/regress.sh projects/diffused_head/tools/test/netfibs/README projects/diffused_head/tools/test/netfibs/forwarding.sh projects/diffused_head/tools/test/netfibs/initiator.sh projects/diffused_head/tools/test/netfibs/reflector.sh projects/diffused_head/tools/tools/ath/Makefile projects/diffused_head/tools/tools/ath/ath_ee_v14_print/ath_ee_v14_print.c projects/diffused_head/tools/tools/ath/athdecode/main.c projects/diffused_head/tools/tools/ath/athrd/athrd.1 projects/diffused_head/tools/tools/ath/common/dumpregs_5416.c projects/diffused_head/tools/tools/bus_autoconf/bus_usb.c projects/diffused_head/tools/tools/ether_reflect/ether_reflect.1 projects/diffused_head/tools/tools/net80211/wlanstats/wlanstats.c projects/diffused_head/tools/tools/netmap/README projects/diffused_head/tools/tools/netmap/bridge.c projects/diffused_head/tools/tools/netmap/pcap.c projects/diffused_head/tools/tools/netmap/pkt-gen.c projects/diffused_head/tools/tools/netrate/netsend/netsend.c projects/diffused_head/tools/tools/vimage/vimage.8 projects/diffused_head/tools/tools/wtap/vis_map/Makefile projects/diffused_head/tools/tools/wtap/wtap/Makefile projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/ar/Makefile projects/diffused_head/usr.bin/ar/ar.c projects/diffused_head/usr.bin/bc/bc.library projects/diffused_head/usr.bin/bc/bc.y projects/diffused_head/usr.bin/bsdiff/bsdiff/bsdiff.1 projects/diffused_head/usr.bin/calendar/Makefile projects/diffused_head/usr.bin/calendar/calendar.1 projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.all projects/diffused_head/usr.bin/calendar/calendars/hr_HR.ISO8859-2/calendar.praznici projects/diffused_head/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all projects/diffused_head/usr.bin/clang/bugpoint/Makefile projects/diffused_head/usr.bin/clang/bugpoint/bugpoint.1 projects/diffused_head/usr.bin/clang/clang/Makefile projects/diffused_head/usr.bin/clang/clang/clang.1 projects/diffused_head/usr.bin/clang/llc/llc.1 projects/diffused_head/usr.bin/clang/lli/Makefile projects/diffused_head/usr.bin/clang/lli/lli.1 projects/diffused_head/usr.bin/clang/llvm-ar/llvm-ar.1 projects/diffused_head/usr.bin/clang/llvm-as/llvm-as.1 projects/diffused_head/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 projects/diffused_head/usr.bin/clang/llvm-diff/llvm-diff.1 projects/diffused_head/usr.bin/clang/llvm-dis/llvm-dis.1 projects/diffused_head/usr.bin/clang/llvm-extract/llvm-extract.1 projects/diffused_head/usr.bin/clang/llvm-ld/Makefile projects/diffused_head/usr.bin/clang/llvm-ld/llvm-ld.1 projects/diffused_head/usr.bin/clang/llvm-link/llvm-link.1 projects/diffused_head/usr.bin/clang/llvm-nm/llvm-nm.1 projects/diffused_head/usr.bin/clang/llvm-prof/llvm-prof.1 projects/diffused_head/usr.bin/clang/llvm-ranlib/llvm-ranlib.1 projects/diffused_head/usr.bin/clang/opt/Makefile projects/diffused_head/usr.bin/clang/opt/opt.1 projects/diffused_head/usr.bin/clang/tblgen/Makefile projects/diffused_head/usr.bin/clang/tblgen/tblgen.1 projects/diffused_head/usr.bin/comm/comm.1 projects/diffused_head/usr.bin/compile_et/Makefile projects/diffused_head/usr.bin/cpio/Makefile projects/diffused_head/usr.bin/cpio/test/Makefile projects/diffused_head/usr.bin/csup/auth.c projects/diffused_head/usr.bin/csup/cpasswd.1 projects/diffused_head/usr.bin/csup/csup.1 projects/diffused_head/usr.bin/dc/bcode.c projects/diffused_head/usr.bin/fetch/fetch.1 projects/diffused_head/usr.bin/file/Makefile projects/diffused_head/usr.bin/find/find.1 projects/diffused_head/usr.bin/fstat/fstat.c projects/diffused_head/usr.bin/fstat/fuser.1 projects/diffused_head/usr.bin/hexdump/hexdump.1 projects/diffused_head/usr.bin/hexdump/od.1 projects/diffused_head/usr.bin/indent/indent.1 projects/diffused_head/usr.bin/ipcrm/ipcrm.1 projects/diffused_head/usr.bin/jot/jot.1 projects/diffused_head/usr.bin/kdump/Makefile projects/diffused_head/usr.bin/kdump/kdump.1 projects/diffused_head/usr.bin/kdump/kdump.c projects/diffused_head/usr.bin/kdump/mkioctls projects/diffused_head/usr.bin/kdump/mksubr projects/diffused_head/usr.bin/killall/killall.1 projects/diffused_head/usr.bin/ktrace/ktrace.1 projects/diffused_head/usr.bin/ktrace/ktrace.h projects/diffused_head/usr.bin/ktrace/subr.c projects/diffused_head/usr.bin/lex/flex.skl projects/diffused_head/usr.bin/locale/locale.1 projects/diffused_head/usr.bin/lockf/lockf.1 projects/diffused_head/usr.bin/m4/eval.c projects/diffused_head/usr.bin/m4/extern.h projects/diffused_head/usr.bin/m4/main.c projects/diffused_head/usr.bin/m4/parser.y projects/diffused_head/usr.bin/make/Makefile projects/diffused_head/usr.bin/man/man.conf.5 projects/diffused_head/usr.bin/ministat/ministat.1 projects/diffused_head/usr.bin/mkulzma/mkulzma.8 projects/diffused_head/usr.bin/ncal/ncal.c projects/diffused_head/usr.bin/netstat/Makefile projects/diffused_head/usr.bin/netstat/if.c projects/diffused_head/usr.bin/netstat/inet.c projects/diffused_head/usr.bin/printf/printf.1 projects/diffused_head/usr.bin/procstat/procstat.1 projects/diffused_head/usr.bin/procstat/procstat_bin.c projects/diffused_head/usr.bin/procstat/procstat_cred.c projects/diffused_head/usr.bin/procstat/procstat_files.c projects/diffused_head/usr.bin/rctl/rctl.8 projects/diffused_head/usr.bin/sed/sed.1 projects/diffused_head/usr.bin/setchannel/setchannel.1 projects/diffused_head/usr.bin/stat/stat.1 projects/diffused_head/usr.bin/tar/Makefile projects/diffused_head/usr.bin/tar/test/Makefile projects/diffused_head/usr.bin/tftp/tftp.1 projects/diffused_head/usr.bin/top/machine.c projects/diffused_head/usr.bin/top/top.local.1 projects/diffused_head/usr.bin/touch/touch.1 projects/diffused_head/usr.bin/tr/tr.1 projects/diffused_head/usr.bin/truss/Makefile projects/diffused_head/usr.bin/unifdef/unifdef.1 projects/diffused_head/usr.bin/units/units.1 projects/diffused_head/usr.bin/unzip/unzip.1 projects/diffused_head/usr.bin/unzip/unzip.c projects/diffused_head/usr.bin/vacation/Makefile projects/diffused_head/usr.bin/vgrind/vgrindefs.5 projects/diffused_head/usr.bin/vmstat/vmstat.c projects/diffused_head/usr.bin/wall/wall.1 projects/diffused_head/usr.bin/wall/wall.c projects/diffused_head/usr.bin/xargs/xargs.1 projects/diffused_head/usr.bin/xargs/xargs.c projects/diffused_head/usr.bin/xlint/Makefile.inc projects/diffused_head/usr.sbin/Makefile projects/diffused_head/usr.sbin/Makefile.arm projects/diffused_head/usr.sbin/Makefile.mips projects/diffused_head/usr.sbin/ac/ac.8 projects/diffused_head/usr.sbin/acpi/iasl/Makefile projects/diffused_head/usr.sbin/adduser/adduser.conf.5 projects/diffused_head/usr.sbin/adduser/adduser.sh projects/diffused_head/usr.sbin/apmd/apmd.8 projects/diffused_head/usr.sbin/arp/arp.4 projects/diffused_head/usr.sbin/arp/arp.c projects/diffused_head/usr.sbin/bluetooth/ath3kfw/ath3kfw.8 projects/diffused_head/usr.sbin/boot0cfg/boot0cfg.8 projects/diffused_head/usr.sbin/bootparamd/bootparamd/bootparamd.8 projects/diffused_head/usr.sbin/bsdinstall/bsdinstall.8 projects/diffused_head/usr.sbin/bsdinstall/distextract/distextract.c projects/diffused_head/usr.sbin/bsdinstall/distfetch/distfetch.c projects/diffused_head/usr.sbin/bsdinstall/partedit/gpart_ops.c projects/diffused_head/usr.sbin/bsdinstall/scripts/auto projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 projects/diffused_head/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 projects/diffused_head/usr.sbin/cdcontrol/cdcontrol.1 projects/diffused_head/usr.sbin/config/config.8 projects/diffused_head/usr.sbin/crashinfo/crashinfo.sh projects/diffused_head/usr.sbin/cron/crontab/crontab.5 projects/diffused_head/usr.sbin/cron/crontab/crontab.c projects/diffused_head/usr.sbin/crunch/crunchide/Makefile projects/diffused_head/usr.sbin/ctladm/Makefile projects/diffused_head/usr.sbin/ctladm/ctladm.8 projects/diffused_head/usr.sbin/ctladm/ctladm.c projects/diffused_head/usr.sbin/dconschat/dconschat.c projects/diffused_head/usr.sbin/diskinfo/diskinfo.c projects/diffused_head/usr.sbin/edquota/edquota.8 projects/diffused_head/usr.sbin/faithd/faithd.8 projects/diffused_head/usr.sbin/fdwrite/fdwrite.1 projects/diffused_head/usr.sbin/freebsd-update/freebsd-update.8 projects/diffused_head/usr.sbin/fwcontrol/fwcontrol.8 projects/diffused_head/usr.sbin/gpioctl/gpioctl.8 projects/diffused_head/usr.sbin/i2c/i2c.8 projects/diffused_head/usr.sbin/ifmcstat/ifmcstat.8 projects/diffused_head/usr.sbin/jail/Makefile projects/diffused_head/usr.sbin/jail/jail.8 projects/diffused_head/usr.sbin/jail/jail.c projects/diffused_head/usr.sbin/jls/jls.c projects/diffused_head/usr.sbin/lmcconfig/lmcconfig.8 projects/diffused_head/usr.sbin/lpr/lpc/cmds.c projects/diffused_head/usr.sbin/lpr/lpr/printcap.5 projects/diffused_head/usr.sbin/makefs/cd9660/cd9660_eltorito.c projects/diffused_head/usr.sbin/mfiutil/mfi_config.c projects/diffused_head/usr.sbin/mfiutil/mfi_drive.c projects/diffused_head/usr.sbin/mfiutil/mfiutil.8 projects/diffused_head/usr.sbin/mountd/exports.5 projects/diffused_head/usr.sbin/moused/moused.c projects/diffused_head/usr.sbin/mptutil/mptutil.8 projects/diffused_head/usr.sbin/mtest/mtest.8 projects/diffused_head/usr.sbin/mtree/mtree.5 projects/diffused_head/usr.sbin/newsyslog/newsyslog.c projects/diffused_head/usr.sbin/newsyslog/newsyslog.conf.5 projects/diffused_head/usr.sbin/nfsd/nfsv4.4 projects/diffused_head/usr.sbin/ntp/doc/ntp-keygen.8 projects/diffused_head/usr.sbin/ntp/doc/ntpdate.8 projects/diffused_head/usr.sbin/pc-sysinstall/backend-partmanager/create-part.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend-query/disk-list.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend-query/sys-mem.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-disk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-mountdisk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-networking.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-newfs.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-parse.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-unmount.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/startautoinstall.sh projects/diffused_head/usr.sbin/pciconf/pciconf.8 projects/diffused_head/usr.sbin/pkg_install/add/main.c projects/diffused_head/usr.sbin/pkg_install/updating/pkg_updating.1 projects/diffused_head/usr.sbin/pmcstat/pmcpl_calltree.c projects/diffused_head/usr.sbin/pmcstat/pmcstat.8 projects/diffused_head/usr.sbin/pmcstat/pmcstat_log.c projects/diffused_head/usr.sbin/powerd/powerd.c projects/diffused_head/usr.sbin/rtadvd/rtadvd.8 projects/diffused_head/usr.sbin/rtadvd/rtadvd.conf.5 projects/diffused_head/usr.sbin/sendmail/Makefile projects/diffused_head/usr.sbin/setfib/setfib.1 projects/diffused_head/usr.sbin/syslogd/syslogd.8 projects/diffused_head/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/diffused_head/usr.sbin/timed/timed/timed.8 projects/diffused_head/usr.sbin/tzsetup/tzsetup.8 projects/diffused_head/usr.sbin/usbdump/usbdump.8 projects/diffused_head/usr.sbin/usbdump/usbdump.c projects/diffused_head/usr.sbin/utx/utx.8 projects/diffused_head/usr.sbin/wake/wake.c projects/diffused_head/usr.sbin/watch/watch.c projects/diffused_head/usr.sbin/wlandebug/wlandebug.8 projects/diffused_head/usr.sbin/wlconfig/wlconfig.8 projects/diffused_head/usr.sbin/wpa/Makefile.inc projects/diffused_head/usr.sbin/wpa/hostapd/Makefile projects/diffused_head/usr.sbin/wpa/hostapd/hostapd.conf.5 projects/diffused_head/usr.sbin/wpa/wpa_supplicant/Makefile projects/diffused_head/usr.sbin/ypserv/ypserv.8 Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/contrib/bind9/ (props changed) projects/diffused_head/contrib/com_err/ (props changed) projects/diffused_head/contrib/file/ (props changed) projects/diffused_head/contrib/gcc/ (props changed) projects/diffused_head/contrib/gdb/ (props changed) projects/diffused_head/contrib/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/cpio/ (props changed) projects/diffused_head/contrib/libarchive/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/libarchive_fe/ (props changed) projects/diffused_head/contrib/libarchive/tar/ (props changed) projects/diffused_head/contrib/libc++/ (props changed) projects/diffused_head/contrib/libcxxrt/ (props changed) projects/diffused_head/contrib/libstdc++/ (props changed) projects/diffused_head/contrib/llvm/ (props changed) projects/diffused_head/contrib/llvm/tools/clang/ (props changed) projects/diffused_head/contrib/ntp/ (props changed) projects/diffused_head/contrib/openbsm/ (props changed) projects/diffused_head/contrib/openpam/ (props changed) projects/diffused_head/contrib/tnftp/ (props changed) projects/diffused_head/contrib/top/ (props changed) projects/diffused_head/contrib/tzdata/ (props changed) projects/diffused_head/crypto/heimdal/ (props changed) projects/diffused_head/crypto/heimdal/ChangeLog.1998 (props changed) projects/diffused_head/crypto/heimdal/ChangeLog.1999 (props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2000 (props changed) projects/diffused_head/crypto/heimdal/ChangeLog.2001 (props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/ftp_var.h (props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftp/pathnames.h (props changed) projects/diffused_head/crypto/heimdal/appl/ftp/ftpd/pathnames.h (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/README.ORIG (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/arpa/telnet.h (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/libtelnet/misc.h (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet.state (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/defines.h (props changed) projects/diffused_head/crypto/heimdal/appl/telnet/telnet/types.h (props changed) projects/diffused_head/crypto/heimdal/lib/hx509/ref/pkcs11.h (props changed) projects/diffused_head/crypto/heimdal/lib/kadm5/kadm5-protos.h (props changed) projects/diffused_head/crypto/openssl/ (props changed) projects/diffused_head/gnu/lib/ (props changed) projects/diffused_head/gnu/usr.bin/binutils/ (props changed) projects/diffused_head/gnu/usr.bin/gdb/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/lib/libz/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/boot/i386/efi/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/common/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/ (props changed) projects/diffused_head/sys/contrib/octeon-sdk/ (props changed) projects/diffused_head/sys/contrib/pf/ (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/csup/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) projects/diffused_head/usr.sbin/jail/ (props changed) projects/diffused_head/usr.sbin/rtadvd/ (props changed) Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/Makefile Tue Nov 27 00:42:30 2012 (r243577) @@ -18,6 +18,7 @@ # reinstallkernel.debug # kernel - buildkernel + installkernel. # kernel-toolchain - Builds the subset of world necessary to build a kernel +# kernel-toolchains - Build kernel-toolchain for all universe targets. # doxygen - Build API documentation of the kernel, needs doxygen. # update - Convenient way to update your source tree(s). # check-old - List obsolete directories/files/libraries. @@ -131,20 +132,19 @@ _MAKE= PATH=${PATH} ${BINMAKE} -f Makefi # Guess machine architecture from machine type, and vice versa. .if !defined(TARGET_ARCH) && defined(TARGET) -_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/mips/mipsel/} +_TARGET_ARCH= ${TARGET:S/pc98/i386/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} .endif -# Legacy names, for a transition period mips:mips -> mipsel:mips +# Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1 .if defined(TARGET) && defined(TARGET_ARCH) && \ - ${TARGET_ARCH} == "mips" && ${TARGET} == "mips" -.warning "TARGET_ARCH of mips is deprecated in favor of mipsel or mipseb" -.if defined(TARGET_BIG_ENDIAN) -_TARGET_ARCH=mipseb -.else -_TARGET_ARCH=mipsel + ${TARGET} == "mips" && ${TARGET_ARCH:Mmips*eb} +_TARGET_ARCH= ${TARGET_ARCH:C/eb$//} +.warning "TARGET_ARCH of ${TARGET_ARCH} is deprecated in favor of ${_TARGET_ARCH}" .endif +.if defined(TARGET) && ${TARGET} == "mips" && defined(TARGET_BIG_ENDIAN) +.warning "TARGET_BIG_ENDIAN is no longer necessary for MIPS. Big-endian is not the default." .endif # arm with TARGET_BIG_ENDIAN -> armeb .if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN) @@ -317,6 +317,9 @@ tinderbox: toolchains: @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe +kernel-toolchains: + @cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe + # # universe # @@ -327,7 +330,7 @@ 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 -TARGET_ARCHES_mips?= mipsel mipseb mips64el mips64eb mipsn32eb +TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 .for target in ${TARGETS} Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/Makefile.inc1 Tue Nov 27 00:42:30 2012 (r243577) @@ -136,7 +136,7 @@ VERSION!= uname -srp VERSION+= ${OSRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/arm i386 i386/pc98 ia64 mipsel/mips mipseb/mips mips64el/mips mips64eb/mips mipsn32el/mips mipsn32eb/mips powerpc powerpc64/powerpc sparc64 +KNOWN_ARCHES?= amd64 arm armeb/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 @@ -468,13 +468,6 @@ build32: -p ${LIB32TMP}/usr/include >/dev/null mkdir -p ${WORLDTMP} ln -sf ${.CURDIR}/sys ${WORLDTMP} -.if ${MK_KERBEROS} != "no" -.for _t in obj depend all - cd ${.CURDIR}/kerberos5/tools; \ - MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ - DIRPRFX=kerberos5/tools/ ${_t} -.endfor -.endif .for _t in obj includes cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} @@ -1054,9 +1047,11 @@ _clang_tblgen= \ usr.bin/clang/clang-tblgen .endif +# dtrace tools are required for older bootstrap env and cross-build .if ${MK_CDDL} != "no" && \ - ${BOOTSTRAPPING} < 800038 && \ - !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999) + ((${BOOTSTRAPPING} < 800038 && \ + !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999)) \ + || (${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 .endif @@ -1065,12 +1060,22 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/ _dtc= gnu/usr.bin/dtc .endif +.if ${MK_KERBEROS} != "no" +_kerberos5_bootstrap_tools= \ + kerberos5/tools/make-roken \ + kerberos5/lib/libroken \ + kerberos5/lib/libvers \ + kerberos5/tools/asn1_compile \ + kerberos5/tools/slc +.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: .for _tool in \ ${_clang_tblgen} \ + ${_kerberos5_bootstrap_tools} \ ${_dtrace_tools} \ ${_strfile} \ ${_gperf} \ @@ -1108,8 +1113,8 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_KERBEROS} != "no" -_kerberos5_tools= kerberos5/tools +.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +_gcc_tools= gnu/usr.bin/cc/cc_tools .endif .if ${MK_RESCUE} != "no" @@ -1136,8 +1141,7 @@ build-tools: ${MAKE} DIRPRFX=${_tool}/ build-tools .endfor .for _tool in \ - gnu/usr.bin/cc/cc_tools \ - ${_kerberos5_tools} + ${_gcc_tools} ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ cd ${.CURDIR}/${_tool}; \ ${MAKE} DIRPRFX=${_tool}/ obj; \ @@ -1166,14 +1170,12 @@ _kgzip= usr.sbin/kgzip _binutils= gnu/usr.bin/binutils .endif -.if ${MK_CLANG} != "no" -.if ${CC:T:Mclang} == "clang" +.if ${MK_CLANG} != "no" && (${MK_CLANG_IS_CC} != "no" || ${CC:T:Mclang} == "clang") _clang= usr.bin/clang _clang_libs= lib/clang .endif -.endif -.if ${MK_GCC} != "no" +.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" _cc= gnu/usr.bin/cc .endif @@ -1241,12 +1243,20 @@ _startup_libs+= lib/libcxxrt .endif gnu/lib/libgcc__L: lib/libc__L +.if ${MK_LIBCPLUSPLUS} != "no" +lib/libcxxrt__L: gnu/lib/libgcc__L +.endif -_prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \ +_prebuild_libs= ${_kerberos5_lib_libasn1} \ + ${_kerberos5_lib_libhdb} \ + ${_kerberos5_lib_libheimbase} \ ${_kerberos5_lib_libheimntlm} \ + ${_kerberos5_lib_libheimsqlite} \ + ${_kerberos5_lib_libheimipcc} \ ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ - lib/libbz2 lib/libcom_err lib/libcrypt \ + ${_kerberos5_lib_libwind} \ + lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ lib/libkiconv lib/libkvm lib/liblzma lib/libmd \ @@ -1296,14 +1306,21 @@ _secure_lib= secure/lib .if ${MK_KERBEROS} != "no" kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ - kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L -kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L + kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ + kerberos5/lib/libwind__L kerberos5/lib/libheimsqlite__L +kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ + kerberos5/lib/libroken__L lib/libcom_err__L kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ - secure/lib/libcrypto__L kerberos5/lib/libroken__L + secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ - kerberos5/lib/libroken__L + kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ + kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L kerberos5/lib/libroken__L: lib/libcrypt__L +kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L +kerberos5/lib/libheimbase__L: lib/libthr__L +kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L +kerberos5/lib/libheimsqlite__L: lib/libthr__L .endif .if ${MK_GSSAPI} != "no" @@ -1318,10 +1335,15 @@ _lib_libipx= lib/libipx _kerberos5_lib= kerberos5/lib _kerberos5_lib_libasn1= kerberos5/lib/libasn1 _kerberos5_lib_libhdb= kerberos5/lib/libhdb +_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 _kerberos5_lib_libhx509= kerberos5/lib/libhx509 _kerberos5_lib_libroken= kerberos5/lib/libroken _kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm +_kerberos5_lib_libheimsqlite= kerberos5/lib/libheimsqlite +_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc +_kerberos5_lib_libwind= kerberos5/lib/libwind +_libcom_err= lib/libcom_err .endif .if ${MK_NIS} != "no" @@ -1627,8 +1649,8 @@ _xi-mtree: mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ -p ${XDDESTDIR}/usr/include >/dev/null -.ORDER: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links -xdev-install: _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links +.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links +xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries _xi-links _xi-cross-tools: @echo "_xi-cross-tools" Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 00:42:30 2012 (r243577) @@ -38,6 +38,88 @@ # xargs -n1 | sort | uniq -d; # done +# 20120425: libusb version bump (r234684) +OLD_LIBS+=usr/lib/libusb.so.2 +OLD_LIBS+=usr/lib32/libusb.so.2 +# 20120415: new clang import which bumps version from 3.0 to 3.1 +OLD_FILES+=usr/include/clang/3.0/altivec.h +OLD_FILES+=usr/include/clang/3.0/avxintrin.h +OLD_FILES+=usr/include/clang/3.0/emmintrin.h +OLD_FILES+=usr/include/clang/3.0/immintrin.h +OLD_FILES+=usr/include/clang/3.0/mm3dnow.h +OLD_FILES+=usr/include/clang/3.0/mm_malloc.h +OLD_FILES+=usr/include/clang/3.0/mmintrin.h +OLD_FILES+=usr/include/clang/3.0/nmmintrin.h +OLD_FILES+=usr/include/clang/3.0/pmmintrin.h +OLD_FILES+=usr/include/clang/3.0/smmintrin.h +OLD_FILES+=usr/include/clang/3.0/tmmintrin.h +OLD_FILES+=usr/include/clang/3.0/wmmintrin.h +OLD_FILES+=usr/include/clang/3.0/x86intrin.h +OLD_FILES+=usr/include/clang/3.0/xmmintrin.h +OLD_DIRS+=usr/include/clang/3.0 +# 20120322: Update heimdal to 1.5.1. +OLD_FILES+=usr/include/krb5-v4compat.h \ + usr/include/krb_err.h \ + usr/include/hdb-private.h \ + usr/share/man/man3/krb5_addresses.3.gz \ + usr/share/man/man3/krb5_cc_cursor.3.gz \ + usr/share/man/man3/krb5_cc_ops.3.gz \ + usr/share/man/man3/krb5_config.3.gz \ + usr/share/man/man3/krb5_config_get_int_default.3.gz \ + usr/share/man/man3/krb5_context.3.gz \ + usr/share/man/man3/krb5_data.3.gz \ + usr/share/man/man3/krb5_err.3.gz \ + usr/share/man/man3/krb5_errx.3.gz \ + usr/share/man/man3/krb5_keyblock.3.gz \ + usr/share/man/man3/krb5_keytab_entry.3.gz \ + usr/share/man/man3/krb5_kt_cursor.3.gz \ + usr/share/man/man3/krb5_kt_ops.3.gz \ + usr/share/man/man3/krb5_set_warn_dest.3.gz \ + usr/share/man/man3/krb5_verr.3.gz \ + usr/share/man/man3/krb5_verrx.3.gz \ + usr/share/man/man3/krb5_vwarnx.3.gz \ + usr/share/man/man3/krb5_warn.3.gz \ + usr/share/man/man3/krb5_warnx.3.gz +OLD_LIBS+=usr/lib/libasn1.so.10 \ + usr/lib/libhdb.so.10 \ + usr/lib/libheimntlm.so.10 \ + usr/lib/libhx509.so.10 \ + usr/lib/libkadm5clnt.so.10 \ + usr/lib/libkadm5srv.so.10 \ + usr/lib/libkafs5.so.10 \ + usr/lib/libkrb5.so.10 \ + usr/lib/libroken.so.10 \ + usr/lib32/libasn1.so.10 \ + usr/lib32/libhdb.so.10 \ + usr/lib32/libheimntlm.so.10 \ + usr/lib32/libhx509.so.10 \ + usr/lib32/libkadm5clnt.so.10 \ + usr/lib32/libkadm5srv.so.10 \ + usr/lib32/libkafs5.so.10 \ + usr/lib32/libkrb5.so.10 \ + usr/lib32/libroken.so.10 +# 20120309: Remove fifofs header files. +OLD_FILES+=usr/include/fs/fifofs/fifo.h +OLD_DIRS+=usr/include/fs/fifofs +# 20120225: libarchive 3.0.3 +OLD_FILES+=usr/share/man/man3/archive_read_data_into_buffer.3.gz \ + usr/share/man/man3/archive_read_support_compression_all.3.gz \ + usr/share/man/man3/archive_read_support_compression_bzip2.3.gz \ + usr/share/man/man3/archive_read_support_compression_compress.3.gz \ + usr/share/man/man3/archive_read_support_compression_gzip.3.gz \ + usr/share/man/man3/archive_read_support_compression_lzma.3.gz \ + usr/share/man/man3/archive_read_support_compression_none.3.gz \ + usr/share/man/man3/archive_read_support_compression_program.3.gz \ + usr/share/man/man3/archive_read_support_compression_program_signature.3.gz \ + usr/share/man/man3/archive_read_support_compression_xz.3.gz \ + usr/share/man/man3/archive_write_set_callbacks.3.gz \ + usr/share/man/man3/archive_write_set_compression_bzip2.3.gz \ + usr/share/man/man3/archive_write_set_compression_compress.3.gz \ + usr/share/man/man3/archive_write_set_compression_gzip.3.gz \ + usr/share/man/man3/archive_write_set_compression_none.3.gz \ + usr/share/man/man3/archive_write_set_compression_program.3.gz +OLD_LIBS+=usr/lib/libarchive.so.5 +OLD_LIBS+=usr/lib32/libarchive.so.5 # 20120113: removal of wtmpcvt(1) OLD_FILES+=usr/bin/wtmpcvt OLD_FILES+=usr/share/man/man1/wtmpcvt.1.gz @@ -50,12 +132,10 @@ OLD_FILES+=usr/lib/libodialog.a OLD_FILES+=usr/lib/libodialog.so OLD_LIBS+=usr/lib/libodialog.so.7 OLD_FILES+=usr/lib/libodialog_p.a -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libodialog.a OLD_FILES+=usr/lib32/libodialog.so OLD_LIBS+=usr/lib32/libodialog.so.7 OLD_FILES+=usr/lib32/libodialog_p.a -.endif # 20110930: sysinstall removed OLD_FILES+=usr/sbin/sysinstall OLD_FILES+=usr/share/man/man8/sysinstall.8.gz @@ -63,12 +143,10 @@ OLD_FILES+=usr/lib/libftpio.a OLD_FILES+=usr/lib/libftpio.so OLD_LIBS+=usr/lib/libftpio.so.8 OLD_FILES+=usr/lib/libftpio_p.a -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libftpio.a OLD_FILES+=usr/lib32/libftpio.so OLD_LIBS+=usr/lib32/libftpio.so.8 OLD_FILES+=usr/lib32/libftpio_p.a -.endif OLD_FILES+=usr/include/ftpio.h OLD_FILES+=usr/share/man/man3/ftpio.3.gz # 20110915: rename congestion control manpages @@ -87,7 +165,6 @@ OLD_LIBS+=usr/lib/libdwarf.so.2 OLD_LIBS+=usr/lib/libopie.so.6 OLD_LIBS+=usr/lib/librtld_db.so.1 OLD_LIBS+=usr/lib/libtacplus.so.4 -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_LIBS+=usr/lib32/libcam.so.5 OLD_LIBS+=usr/lib32/libpcap.so.7 OLD_LIBS+=usr/lib32/libufs.so.5 @@ -96,7 +173,6 @@ OLD_LIBS+=usr/lib32/libdwarf.so.2 OLD_LIBS+=usr/lib32/libopie.so.6 OLD_LIBS+=usr/lib32/librtld_db.so.1 OLD_LIBS+=usr/lib32/libtacplus.so.4 -.endif # 20110817: no more acd.4, ad.4, afd.4 and ast.4 OLD_FILES+=usr/share/man/man4/acd.4.gz OLD_FILES+=usr/share/man/man4/ad.4.gz @@ -136,17 +212,13 @@ OLD_FILES+=usr/lib/libpkg.a OLD_FILES+=usr/lib/libpkg.so OLD_LIBS+=usr/lib/libpkg.so.0 OLD_FILES+=usr/lib/libpkg_p.a -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libpkg.a OLD_FILES+=usr/lib32/libpkg.so OLD_LIBS+=usr/lib32/libpkg.so.0 OLD_FILES+=usr/lib32/libpkg_p.a -.endif # 20110517: libsbuf version bump OLD_LIBS+=lib/libsbuf.so.5 -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_LIBS+=usr/lib32/libsbuf.so.5 -.endif # 20110502: new clang import which bumps version from 2.9 to 3.0 OLD_FILES+=usr/include/clang/2.9/emmintrin.h OLD_FILES+=usr/include/clang/2.9/mm_malloc.h @@ -175,12 +247,10 @@ OLD_FILES+=usr/lib/libobjc_p.a OLD_FILES+=usr/libexec/cc1obj OLD_LIBS+=usr/lib/libobjc.so.4 OLD_DIRS+=usr/include/objc -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_FILES+=usr/lib32/libobjc.a OLD_FILES+=usr/lib32/libobjc.so OLD_FILES+=usr/lib32/libobjc_p.a OLD_LIBS+=usr/lib32/libobjc.so.4 -.endif # 20110331: firmware.img created at build time OLD_FILES+=usr/share/examples/kld/firmware/fwimage/firmware.img # 20110224: sticky.8 -> sticky.7 @@ -302,9 +372,7 @@ OLD_FILES+=usr/include/machine/intr.h .endif # 20100514: library version bump for versioned symbols for liblzma OLD_LIBS+=usr/lib/liblzma.so.0 -.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_LIBS+=usr/lib32/liblzma.so.0 -.endif # 20100511: move GCC-specific headers to /usr/include/gcc .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/emmintrin.h @@ -345,9 +413,7 @@ OLD_FILES+=usr/share/info/cpio.info.gz OLD_FILES+=usr/share/man/man1/gcpio.1.gz # 20100322: libz update OLD_LIBS+=lib/libz.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libz.so.5 -.endif # 20100314: removal of regexp.h OLD_FILES+=usr/include/regexp.h OLD_FILES+=usr/share/man/man3/regexp.3.gz @@ -396,6 +462,7 @@ OLD_FILES+=usr/share/man/man5/lastlog.5. OLD_FILES+=usr/share/man/man5/utmp.5.gz OLD_FILES+=usr/share/man/man5/wtmp.5.gz OLD_LIBS+=lib/libutil.so.8 +OLD_LIBS+=usr/lib32/libutil.so.8 # 20100105: new userland semaphore implementation OLD_FILES+=usr/include/sys/semaphore.h # 20100103: ntptrace(8) removed @@ -515,6 +582,7 @@ OLD_LIBS+=lib/libipx.so.4 OLD_LIBS+=lib/libkiconv.so.3 OLD_LIBS+=lib/libkvm.so.4 OLD_LIBS+=lib/libmd.so.4 +OLD_LIBS+=lib/libmd.so.5 OLD_LIBS+=lib/libncurses.so.7 OLD_LIBS+=lib/libncursesw.so.7 OLD_LIBS+=lib/libnvpair.so.1 @@ -603,7 +671,6 @@ OLD_LIBS+=usr/lib/snmp_hostres.so.5 OLD_LIBS+=usr/lib/snmp_mibII.so.5 OLD_LIBS+=usr/lib/snmp_netgraph.so.5 OLD_LIBS+=usr/lib/snmp_pf.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libalias.so.6 OLD_LIBS+=usr/lib32/libarchive.so.4 OLD_LIBS+=usr/lib32/libauditd.so.4 @@ -704,9 +771,10 @@ OLD_LIBS+=usr/lib32/pam_self.so.4 OLD_LIBS+=usr/lib32/pam_ssh.so.4 OLD_LIBS+=usr/lib32/pam_tacplus.so.4 OLD_LIBS+=usr/lib32/pam_unix.so.4 -.endif # 20090718: the gdm pam.d file is no longer required. OLD_FILES+=etc/pam.d/gdm +# 20090714: net_add_domain(9) renamed to domain_add(9) +OLD_FILES+=usr/share/man/man9/net_add_domain.9.gz # 20090713: vimage container structs removed. OLD_FILES+=usr/include/netinet/vinet.h OLD_FILES+=usr/include/netinet6/vinet6.h @@ -889,9 +957,7 @@ OLD_FILES+=usr/share/man/man8/sliplogin. OLD_FILES+=usr/share/man/man8/slstat.8.gz # 20090321: libpcap upgraded to 1.0.0 OLD_LIBS+=lib/libpcap.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libpcap.so.5 -.endif # 20090319: uscanner(4) has been removed OLD_FILES+=usr/share/man/man4/uscanner.4.gz # 20090313: k8temp(4) renamed to amdtemp(4) @@ -903,17 +969,13 @@ OLD_FILES+=usr/lib/libusb20.so OLD_FILES+=usr/lib/libusb20_p.a OLD_FILES+=usr/include/libusb20_compat01.h OLD_FILES+=usr/include/libusb20_compat10.h -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libusb20.so.1 OLD_FILES+=usr/lib32/libusb20.a OLD_FILES+=usr/lib32/libusb20.so OLD_FILES+=usr/lib32/libusb20_p.a -.endif # 20090226: libmp(3) functions renamed OLD_LIBS+=usr/lib/libmp.so.6 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libmp.so.6 -.endif # 20090223: changeover of USB stacks OLD_FILES+=usr/include/dev/usb2/include/ufm2_ioctl.h OLD_FILES+=usr/include/dev/usb2/include/urio2_ioctl.h @@ -1216,9 +1278,7 @@ OLD_LIBS+=usr/lib/libkadm5srv.so.9 OLD_LIBS+=usr/lib/libkafs5.so.9 OLD_LIBS+=usr/lib/libkrb5.so.9 OLD_LIBS+=usr/lib/libroken.so.9 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libgssapi.so.9 -.endif # 20080420: Symbol card support dropped OLD_FILES+=usr/include/dev/wi/spectrum24t_cf.h # 20080420: awi removal @@ -1245,10 +1305,8 @@ OLD_FILES+=usr/share/man/man2/kse_releas OLD_FILES+=usr/share/man/man2/kse_switchin.2.gz OLD_FILES+=usr/share/man/man2/kse_thr_interrupt.2.gz OLD_FILES+=usr/share/man/man2/kse_wakeup.2.gz -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libkse.so OLD_LIBS+=usr/lib32/libkse.so.3 -.endif # 20080220: geom_lvm rename to geom_linux_lvm OLD_FILES+=usr/share/man/man4/geom_lvm.4.gz # 20080126: oldcard.4 removal @@ -1268,11 +1326,9 @@ OLD_FILES+=usr/include/sys/xrpuio.h OLD_FILES+=usr/lib/libkse.a OLD_FILES+=usr/lib/libkse_p.a OLD_FILES+=usr/lib/libkse_pic.a -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libkse.a OLD_FILES+=usr/lib32/libkse_p.a OLD_FILES+=usr/lib32/libkse_pic.a -.endif # 20071129: Removed a Solaris compatibility header OLD_FILES+=usr/include/sys/_elf_solaris.h # 20071125: Renamed to pmc_get_msr() @@ -1372,12 +1428,10 @@ OLD_DIRS+=usr/include/netatm/ipatm OLD_DIRS+=usr/include/netatm/uni OLD_DIRS+=usr/include/netatm OLD_DIRS+=usr/share/examples/atm -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libatm.a OLD_FILES+=usr/lib32/libatm.so OLD_LIBS+=usr/lib32/libatm.so.5 OLD_FILES+=usr/lib32/libatm_p.a -.endif # 20070705: I4B headers repo-copied to include/i4b/ .if ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/machine/i4b_cause.h @@ -1462,7 +1516,6 @@ OLD_LIBS+=usr/lib/snmp_hostres.so.4 OLD_LIBS+=usr/lib/snmp_mibII.so.4 OLD_LIBS+=usr/lib/snmp_netgraph.so.4 OLD_LIBS+=usr/lib/snmp_pf.so.4 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libalias.so.5 OLD_LIBS+=usr/lib32/libbsnmp.so.3 OLD_LIBS+=usr/lib32/libdialog.so.5 @@ -1497,7 +1550,6 @@ OLD_LIBS+=usr/lib32/pam_self.so.3 OLD_LIBS+=usr/lib32/pam_ssh.so.3 OLD_LIBS+=usr/lib32/pam_tacplus.so.3 OLD_LIBS+=usr/lib32/pam_unix.so.3 -.endif # 20070613: IPX over IP tunnel removal OLD_FILES+=usr/include/netipx/ipx_ip.h # 20070605: sched_core removal @@ -1567,7 +1619,6 @@ OLD_LIBS+=usr/lib/libwrap.so.4 OLD_LIBS+=usr/lib/libypclnt.so.2 OLD_LIBS+=usr/lib/snmp_bridge.so.3 OLD_LIBS+=usr/lib/snmp_hostres.so.3 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libatm.so.4 OLD_LIBS+=usr/lib32/libbegemot.so.2 OLD_LIBS+=usr/lib32/libbluetooth.so.2 @@ -1626,7 +1677,6 @@ OLD_LIBS+=usr/lib32/libvgl.so.4 OLD_LIBS+=usr/lib32/libwrap.so.4 OLD_LIBS+=usr/lib32/libypclnt.so.2 OLD_LIBS+=usr/lib32/libz.so.3 -.endif # 20070519: GCC 4.2 OLD_FILES+=usr/bin/f77 OLD_FILES+=usr/bin/protoize @@ -1873,9 +1923,7 @@ OLD_FILES+=usr/bin/uuidgen OLD_FILES+=usr/share/info/bzip2.info.gz # 20070303: libarchive 2.0 OLD_LIBS+=usr/lib/libarchive.so.3 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libarchive.so.3 -.endif # 20070301: remove addr2ascii and ascii2addr OLD_FILES+=usr/share/man/man3/addr2ascii.3.gz OLD_FILES+=usr/share/man/man3/ascii2addr.3.gz @@ -1892,14 +1940,12 @@ OLD_FILES+=usr/lib/libmytinfo_p.a OLD_FILES+=usr/lib/libmytinfow.a OLD_FILES+=usr/lib/libmytinfow.so OLD_FILES+=usr/lib/libmytinfow_p.a -.if ${TARGET_ARCH} == "amd64" OLD_FILES+=usr/lib32/libmytinfo.a OLD_FILES+=usr/lib32/libmytinfo.so OLD_FILES+=usr/lib32/libmytinfo_p.a OLD_FILES+=usr/lib32/libmytinfow.a OLD_FILES+=usr/lib32/libmytinfow.so OLD_FILES+=usr/lib32/libmytinfow_p.a -.endif # 20070128: remove vnconfig OLD_FILES+=usr/sbin/vnconfig # 20070127: remove bpf_compat.h @@ -4582,9 +4628,7 @@ OLD_FILES+=usr/share/man/man1/x509.1.gz OLD_FILES+=usr/share/man/man3/SSL_COMP_add_compression_method.3.gz OLD_FILES+=usr/share/man/man3/SSL_CTX_get_ex_new_index.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_dup.3.gz -OLD_FILES+=usr/share/man/man3/archive_entry_hardlink_w.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_set_tartype.3.gz -OLD_FILES+=usr/share/man/man3/archive_entry_symlink_w.3.gz OLD_FILES+=usr/share/man/man3/archive_entry_tartype.3.gz OLD_FILES+=usr/share/man/man3/archive_read_data_into_file.3.gz OLD_FILES+=usr/share/man/man3/archive_read_open_tar.3.gz @@ -5243,40 +5287,32 @@ OLD_LIBS+=usr/lib/libkadm5srv.so.8 OLD_LIBS+=usr/lib/libkafs5.so.8 OLD_LIBS+=usr/lib/libkrb5.so.8 OLD_LIBS+=usr/lib/libobjc.so.2 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libgssapi.so.8 OLD_LIBS+=usr/lib32/libobjc.so.2 -.endif # 20070519: GCC 4.2 OLD_LIBS+=usr/lib/libg2c.a OLD_LIBS+=usr/lib/libg2c.so OLD_LIBS+=usr/lib/libg2c.so.2 OLD_LIBS+=usr/lib/libg2c_p.a OLD_LIBS+=usr/lib/libgcc_pic.a -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libg2c.a OLD_LIBS+=usr/lib32/libg2c.so OLD_LIBS+=usr/lib32/libg2c.so.2 OLD_LIBS+=usr/lib32/libg2c_p.a OLD_LIBS+=usr/lib32/libgcc_pic.a -.endif # 20060729: OpenSSL 0.9.7e -> 0.9.8b upgrade OLD_LIBS+=lib/libcrypto.so.4 OLD_LIBS+=usr/lib/libssl.so.4 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libcrypto.so.4 OLD_LIBS+=usr/lib32/libssl.so.4 -.endif # 20060521: gethostbyaddr(3) ABI change OLD_LIBS+=usr/lib/libroken.so.8 OLD_LIBS+=lib/libatm.so.3 OLD_LIBS+=lib/libc.so.6 OLD_LIBS+=lib/libutil.so.5 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libatm.so.3 OLD_LIBS+=usr/lib32/libc.so.6 OLD_LIBS+=usr/lib32/libutil.so.5 -.endif # 20060413: shared library moved to /usr/lib OLD_LIBS+=lib/libgpib.so.1 # 20060413: libpcap.so.4 moved to /lib/ @@ -5290,12 +5326,10 @@ OLD_LIBS+=usr/lib/libc_r.a OLD_LIBS+=usr/lib/libc_r.so OLD_LIBS+=usr/lib/libc_r.so.7 OLD_LIBS+=usr/lib/libc_r_p.a -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libc_r.a OLD_LIBS+=usr/lib32/libc_r.so OLD_LIBS+=usr/lib32/libc_r.so.7 OLD_LIBS+=usr/lib32/libc_r_p.a -.endif # 20050722: bump for 6.0-RELEASE OLD_LIBS+=lib/libalias.so.4 OLD_LIBS+=lib/libatm.so.2 @@ -5507,10 +5541,8 @@ OLD_LIBS+=usr/lib/libc_r.so.3 OLD_LIBS+=usr/lib/libarchive.so.2 OLD_LIBS+=usr/lib/libbsnmp.so.1 OLD_LIBS+=usr/lib/libc_r.so.6 -.if ${TARGET_ARCH} == "amd64" OLD_LIBS+=usr/lib32/libarchive.so.2 OLD_LIBS+=usr/lib32/libc_r.so.6 -.endif OLD_LIBS+=usr/lib/libcipher.so.2 OLD_LIBS+=usr/lib/libgssapi.so.6 OLD_LIBS+=usr/lib/libkse.so.1 Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/UPDATING Tue Nov 27 00:42:30 2012 (r243577) @@ -19,8 +19,38 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 includes various WITNESS- related kernel options, INVARIANTS, malloc debugging flags in userland, and various verbose features in the kernel. Many developers choose to disable these features on build - machines to maximize performance. (To disable malloc debugging, run - ln -s aj /etc/malloc.conf.) + machines to maximize performance. (To completely disable malloc + debugging, define MALLOC_PRODUCTION in /etc/make.conf, or to merely + disable the most expensive debugging functionality run + "ln -s 'abort:false,junk:false' /etc/malloc.conf".) + +20120417: + The malloc(3) implementation embedded in libc now uses sources imported + as contrib/jemalloc. The most disruptive API change is to + /etc/malloc.conf. If your system has an old-style /etc/malloc.conf, + delete it prior to installworld, and optionally re-create it using the + new format after rebooting. See malloc.conf(5) for details + (specifically the TUNING section and the "opt.*" entries in the MALLCTL + NAMESPACE section). + +20120328: + Big-endian MIPS TARGET_ARCH values no longer end in "eb". mips64eb + is now spelled mips64. mipsn32eb is now spelled mipsn32. mipseb is + now spelled mips. This is to aid compatibility with third-party + software that expects this naming scheme in uname(3). Little-endian + settings are unchanged. + +20120306: + Disable by default the option VFS_ALLOW_NONMPSAFE for all supported + platforms. + +20120229: + Now unix domain sockets behave "as expected" on nullfs(5). Previously + nullfs(5) did not pass through all behaviours to the underlying layer, + as a result if we bound to a socket on the lower layer we could connect + only to the lower path; if we bound to the upper layer we could connect + only to the upper path. The new behavior is one can connect to both the + lower and the upper paths regardless what layer path one binds to. 20120211: The getifaddrs upgrade path broken with 20111215 has been restored. Modified: projects/diffused_head/bin/df/df.1 ============================================================================== --- projects/diffused_head/bin/df/df.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/df/df.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd October 18, 2011 +.Dd March 3, 2012 .Dt DF 1 .Os .Sh NAME @@ -158,7 +158,9 @@ is set, the block counts will be display .El .Sh SEE ALSO .Xr lsvfs 1 , +.Xr pstat 1 , .Xr quota 1 , +.Xr swapinfo 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , Modified: projects/diffused_head/bin/expr/expr.1 ============================================================================== --- projects/diffused_head/bin/expr/expr.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/expr/expr.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -30,7 +30,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 9, 2010 +.Dd February 25, 2012 .Dt EXPR 1 .Os .Sh NAME @@ -52,7 +52,7 @@ Several of the operators have special me and must therefore be quoted appropriately. All integer operands are interpreted in base 10 and must consist of only an optional leading minus sign followed by one or more digits (unless -less strict parsing has been enabled for backwards compatibilty with +less strict parsing has been enabled for backwards compatibility with prior versions of .Nm in @@ -176,7 +176,8 @@ option, since this matches the historic .Nm in .Fx . This option makes number parsing less strict and permits leading -white space and an optional leading plus sign. In addition, empty operands +white space and an optional leading plus sign. +In addition, empty operands have an implied value of zero in numeric context. For historical reasons, defining the environment variable .Ev EXPR_COMPAT @@ -284,7 +285,7 @@ An empty operand string is interpreted a .Bl -bullet .It Leading white space and/or a plus sign before an otherwise valid positive -numberic operand are allowed and will be ignored. +numeric operand are allowed and will be ignored. .El .Pp The extended arithmetic range and overflow checks do not conflict with @@ -300,7 +301,8 @@ standard, the use of string arguments .Va index , or .Va match -produces undefined results. In this version of +produces undefined results. +In this version of .Nm , these arguments are treated just as their respective string values. .Pp Modified: projects/diffused_head/bin/expr/expr.y ============================================================================== --- projects/diffused_head/bin/expr/expr.y Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/expr/expr.y Tue Nov 27 00:42:30 2012 (r243577) @@ -540,7 +540,7 @@ op_colon(struct val *a, struct val *b) v = make_str(a->u.s + rm[1].rm_so); } else - v = make_integer((intmax_t)(rm[0].rm_eo - rm[0].rm_so)); + v = make_integer((intmax_t)(rm[0].rm_eo)); else if (rp.re_nsub == 0) v = make_integer((intmax_t)0); Modified: projects/diffused_head/bin/kenv/kenv.1 ============================================================================== --- projects/diffused_head/bin/kenv/kenv.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/kenv/kenv.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -84,7 +84,6 @@ everything after a '#' character, are ig character except '=' is acceptable as part of a name. Quotes are optional and necessary only if the value contains whitespace. -.Pp .Sh SEE ALSO .Xr kenv 2 , .Xr config 5 , Modified: projects/diffused_head/bin/ps/ps.1 ============================================================================== --- projects/diffused_head/bin/ps/ps.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/ps/ps.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd November 22, 2011 +.Dd March 8, 2012 .Dt PS 1 .Os .Sh NAME @@ -292,36 +292,37 @@ The flags associated with the process as the include file .In sys/proc.h : .Bl -column P_SINGLE_BOUNDARY 0x40000000 -.It Dv "P_ADVLOCK" Ta No "0x00001 Process may hold a POSIX advisory lock" -.It Dv "P_CONTROLT" Ta No "0x00002 Has a controlling terminal" -.It Dv "P_KTHREAD" Ta No "0x00004 Kernel thread" -.It Dv "P_FOLLOWFORK" Ta No "0x00008 Attach debugger to new children" -.It Dv "P_PPWAIT" Ta No "0x00010 Parent is waiting for child to exec/exit" -.It Dv "P_PROFIL" Ta No "0x00020 Has started profiling" -.It Dv "P_STOPPROF" Ta No "0x00040 Has thread in requesting to stop prof" -.It Dv "P_HADTHREADS" Ta No "0x00080 Has had threads (no cleanup shortcuts)" -.It Dv "P_SUGID" Ta No "0x00100 Had set id privileges since last exec" -.It Dv "P_SYSTEM" Ta No "0x00200 System proc: no sigs, stats or swapping" -.It Dv "P_SINGLE_EXIT" Ta No "0x00400 Threads suspending should exit, not wait" -.It Dv "P_TRACED" Ta No "0x00800 Debugged process being traced" -.It Dv "P_WAITED" Ta No "0x01000 Someone is waiting for us" -.It Dv "P_WEXIT" Ta No "0x02000 Working on exiting" -.It Dv "P_EXEC" Ta No "0x04000 Process called exec" -.It Dv "P_WKILLED" Ta No "0x08000 Killed, shall go to kernel/user boundary ASAP" -.It Dv "P_CONTINUED" Ta No "0x10000 Proc has continued from a stopped state" -.It Dv "P_STOPPED_SIG" Ta No "0x20000 Stopped due to SIGSTOP/SIGTSTP" -.It Dv "P_STOPPED_TRACE" Ta No "0x40000 Stopped because of tracing" -.It Dv "P_STOPPED_SINGLE" Ta No "0x80000 Only one thread can continue" -.It Dv "P_PROTECTED" Ta No "0x100000 Do not kill on memory overcommit" -.It Dv "P_SIGEVENT" Ta No "0x200000 Process pending signals changed" -.It Dv "P_SINGLE_BOUNDARY" Ta No "0x400000 Threads should suspend at user boundary" -.It Dv "P_HWPMC" Ta No "0x800000 Process is using HWPMCs" -.It Dv "P_JAILED" Ta No "0x1000000 Process is in jail" -.It Dv "P_INEXEC" Ta No "0x4000000 Process is in execve()" -.It Dv "P_STATCHILD" Ta No "0x8000000 Child process stopped or exited" -.It Dv "P_INMEM" Ta No "0x10000000 Loaded into memory" -.It Dv "P_SWAPPINGOUT" Ta No "0x20000000 Process is being swapped out" -.It Dv "P_SWAPPINGIN" Ta No "0x40000000 Process is being swapped in" +.It Dv "P_ADVLOCK" Ta No "0x00001" Ta "Process may hold a POSIX advisory lock" +.It Dv "P_CONTROLT" Ta No "0x00002" Ta "Has a controlling terminal" +.It Dv "P_KTHREAD" Ta No "0x00004" Ta "Kernel thread" +.It Dv "P_FOLLOWFORK" Ta No "0x00008" Ta "Attach debugger to new children" +.It Dv "P_PPWAIT" Ta No "0x00010" Ta "Parent is waiting for child to exec/exit" +.It Dv "P_PROFIL" Ta No "0x00020" Ta "Has started profiling" +.It Dv "P_STOPPROF" Ta No "0x00040" Ta "Has thread in requesting to stop prof" +.It Dv "P_HADTHREADS" Ta No "0x00080" Ta "Has had threads (no cleanup shortcuts)" +.It Dv "P_SUGID" Ta No "0x00100" Ta "Had set id privileges since last exec" +.It Dv "P_SYSTEM" Ta No "0x00200" Ta "System proc: no sigs, stats or swapping" +.It Dv "P_SINGLE_EXIT" Ta No "0x00400" Ta "Threads suspending should exit, not wait" +.It Dv "P_TRACED" Ta No "0x00800" Ta "Debugged process being traced" +.It Dv "P_WAITED" Ta No "0x01000" Ta "Someone is waiting for us" +.It Dv "P_WEXIT" Ta No "0x02000" Ta "Working on exiting" +.It Dv "P_EXEC" Ta No "0x04000" Ta "Process called exec" +.It Dv "P_WKILLED" Ta No "0x08000" Ta "Killed, shall go to kernel/user boundary ASAP" +.It Dv "P_CONTINUED" Ta No "0x10000" Ta "Proc has continued from a stopped state" +.It Dv "P_STOPPED_SIG" Ta No "0x20000" Ta "Stopped due to SIGSTOP/SIGTSTP" +.It Dv "P_STOPPED_TRACE" Ta No "0x40000" Ta "Stopped because of tracing" +.It Dv "P_STOPPED_SINGLE" Ta No "0x80000" Ta "Only one thread can continue" +.It Dv "P_PROTECTED" Ta No "0x100000" Ta "Do not kill on memory overcommit" +.It Dv "P_SIGEVENT" Ta No "0x200000" Ta "Process pending signals changed" +.It Dv "P_SINGLE_BOUNDARY" Ta No "0x400000" Ta "Threads should suspend at user boundary" +.It Dv "P_HWPMC" Ta No "0x800000" Ta "Process is using HWPMCs" +.It Dv "P_JAILED" Ta No "0x1000000" Ta "Process is in jail" +.It Dv "P_ORPHAN" Ta No "0x2000000" Ta "Orphaned by original parent, reparented to debugger" +.It Dv "P_INEXEC" Ta No "0x4000000" Ta "Process is in execve()" +.It Dv "P_STATCHILD" Ta No "0x8000000" Ta "Child process stopped or exited" +.It Dv "P_INMEM" Ta No "0x10000000" Ta "Loaded into memory" +.It Dv "P_SWAPPINGOUT" Ta No "0x20000000" Ta "Process is being swapped out" +.It Dv "P_SWAPPINGIN" Ta No "0x40000000" Ta "Process is being swapped in" .El .It Cm label The MAC label of the process. Modified: projects/diffused_head/bin/pwait/pwait.1 ============================================================================== --- projects/diffused_head/bin/pwait/pwait.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/pwait/pwait.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -46,7 +46,7 @@ .Sh DESCRIPTION The .Nm -utility will wait until each of the given processes has terminated. +utility will wait until each of the given processes has terminated. .Pp The following option is available: .Bl -tag -width indent @@ -54,7 +54,6 @@ The following option is available: Print the exit status when each process terminates. .El .Sh DIAGNOSTICS -.Pp The .Nm utility returns 0 on success, and >0 if an error occurs. Modified: projects/diffused_head/bin/setfacl/setfacl.1 ============================================================================== --- projects/diffused_head/bin/setfacl/setfacl.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/setfacl/setfacl.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -295,7 +295,7 @@ The ACL qualifier field describes the us the ACL entry. It may consist of one of the following: uid or user name, or gid or group name. In entries whose tag type is -one of +one of .Dq Li owner@ , .Dq Li group@ , or Modified: projects/diffused_head/bin/sh/jobs.c ============================================================================== --- projects/diffused_head/bin/sh/jobs.c Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/sh/jobs.c Tue Nov 27 00:42:30 2012 (r243577) @@ -893,8 +893,8 @@ vforkexecshell(struct job *jp, char **ar struct jmploc jmploc; struct jmploc *savehandler; - TRACE(("vforkexecshell(%%%td, %p, %d) called\n", jp - jobtab, (void *)n, - mode)); + TRACE(("vforkexecshell(%%%td, %s, %p) called\n", jp - jobtab, argv[0], + (void *)pip)); INTOFF; flushall(); savehandler = handler; Modified: projects/diffused_head/bin/sh/sh.1 ============================================================================== --- projects/diffused_head/bin/sh/sh.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/sh/sh.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -381,7 +381,7 @@ The following is a list of valid operato .It Redirection operators: .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact .It Li < Ta Li > Ta Li << Ta Li >> Ta Li <> -.It Li <& Ta Li >& Ta Li <<- Ta Li >| +.It Li <& Ta Li >& Ta Li <<- Ta Li >| Ta \& .El .El .Pp @@ -1027,7 +1027,6 @@ or .Pp The first form executes the commands in a subshell environment. A subshell environment has its own copy of: -.Pp .Bl -enum .It The current working directory as set by @@ -1632,7 +1631,7 @@ All values are of type .It Constants Decimal, octal (starting with .Li 0 ) -and hexadecimal (starting with +and hexadecimal (starting with .Li 0x ) integer constants. .It Variables Modified: projects/diffused_head/bin/stty/stty.1 ============================================================================== --- projects/diffused_head/bin/stty/stty.1 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/bin/stty/stty.1 Tue Nov 27 00:42:30 2012 (r243577) @@ -90,7 +90,6 @@ to restore the current terminal state as The following arguments are available to set the terminal characteristics: .Ss Control Modes: -.Pp Control mode flags affect hardware characteristics associated with the terminal. This corresponds to the c_cflag in the termios structure. @@ -256,7 +255,6 @@ Do not (do) output CRs at column zero. On the terminal NL performs (does not perform) the CR function. .El .Ss Local Modes: -.Pp Local mode flags (lflags) affect various and sundry characteristics of terminal processing. Historically the term "local" pertained to new job control features @@ -386,7 +384,7 @@ is disabled (i.e., set to Recognized control-characters: .Bd -ragged -offset indent .Bl -column character Subscript -.It control- +.It control- Ta \& Ta \& .It character Ta Subscript Ta Description .It _________ Ta _________ Ta _______________ .It eof Ta Tn VEOF Ta EOF No character @@ -513,7 +511,6 @@ The size of the terminal is printed as t first rows, then columns. .El .Ss Compatibility Modes: -.Pp These modes remain for compatibility with the previous version of the .Nm Modified: projects/diffused_head/cddl/compat/opensolaris/include/stdlib.h ============================================================================== --- projects/diffused_head/cddl/compat/opensolaris/include/stdlib.h Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/cddl/compat/opensolaris/include/stdlib.h Tue Nov 27 00:42:30 2012 (r243577) @@ -27,11 +27,11 @@ * */ +#include_next + #ifndef _COMPAT_OPENSOLARIS_STDLIB_H_ #define _COMPAT_OPENSOLARIS_STDLIB_H_ -#include_next - #define getexecname getprogname #endif Modified: projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 ============================================================================== --- projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Tue Nov 27 00:41:39 2012 (r243576) +++ projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Tue Nov 27 00:42:30 2012 (r243577) @@ -1,5 +1,5 @@ '\" te -.\" Copyright (c) 2011, Martin Matuska . *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 03:36:20 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BAAD8AA2; Tue, 27 Nov 2012 03:36:20 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 904328FC0C; Tue, 27 Nov 2012 03:36:20 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAR3aKDa064128; Tue, 27 Nov 2012 03:36:20 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAR3aJNa064101; Tue, 27 Nov 2012 03:36:19 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211270336.qAR3aJNa064101@svn.freebsd.org> From: Lawrence Stewart Date: Tue, 27 Nov 2012 03:36:19 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243595 - in projects/diffused_head: . bin/cat bin/date bin/dd bin/ed bin/expr bin/kenv bin/ls bin/mv bin/ps bin/rcp bin/rm bin/sh bin/stty bin/test bin/uuidgen cddl/compat/opensolaris/... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 03:36:20 -0000 Author: lstewart Date: Tue Nov 27 03:36:15 2012 New Revision: 243595 URL: http://svnweb.freebsd.org/changeset/base/243595 Log: Merge revs 235000:240000 from head. Added: projects/diffused_head/cddl/contrib/dtracetoolkit/Apps/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Apps/ projects/diffused_head/cddl/contrib/dtracetoolkit/Bin/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Bin/ projects/diffused_head/cddl/contrib/dtracetoolkit/Code/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Code/ projects/diffused_head/cddl/contrib/dtracetoolkit/Cpu/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Cpu/ projects/diffused_head/cddl/contrib/dtracetoolkit/Disk/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Disk/ projects/diffused_head/cddl/contrib/dtracetoolkit/Docs/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Docs/ projects/diffused_head/cddl/contrib/dtracetoolkit/Examples/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Examples/ projects/diffused_head/cddl/contrib/dtracetoolkit/FS/ - copied from r240000, head/cddl/contrib/dtracetoolkit/FS/ projects/diffused_head/cddl/contrib/dtracetoolkit/Guide - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/Guide projects/diffused_head/cddl/contrib/dtracetoolkit/Include/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Include/ projects/diffused_head/cddl/contrib/dtracetoolkit/Java/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Java/ projects/diffused_head/cddl/contrib/dtracetoolkit/JavaScript/ - copied from r240000, head/cddl/contrib/dtracetoolkit/JavaScript/ projects/diffused_head/cddl/contrib/dtracetoolkit/Kernel/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Kernel/ projects/diffused_head/cddl/contrib/dtracetoolkit/License - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/License projects/diffused_head/cddl/contrib/dtracetoolkit/Locks/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Locks/ projects/diffused_head/cddl/contrib/dtracetoolkit/Man/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Man/ projects/diffused_head/cddl/contrib/dtracetoolkit/Mem/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Mem/ projects/diffused_head/cddl/contrib/dtracetoolkit/Misc/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Misc/ projects/diffused_head/cddl/contrib/dtracetoolkit/Net/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Net/ projects/diffused_head/cddl/contrib/dtracetoolkit/Notes/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Notes/ projects/diffused_head/cddl/contrib/dtracetoolkit/Perl/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Perl/ projects/diffused_head/cddl/contrib/dtracetoolkit/Php/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Php/ projects/diffused_head/cddl/contrib/dtracetoolkit/Proc/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Proc/ projects/diffused_head/cddl/contrib/dtracetoolkit/Python/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Python/ projects/diffused_head/cddl/contrib/dtracetoolkit/README - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/README projects/diffused_head/cddl/contrib/dtracetoolkit/Ruby/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Ruby/ projects/diffused_head/cddl/contrib/dtracetoolkit/Shell/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Shell/ projects/diffused_head/cddl/contrib/dtracetoolkit/Snippits/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Snippits/ projects/diffused_head/cddl/contrib/dtracetoolkit/System/ - copied from r240000, head/cddl/contrib/dtracetoolkit/System/ projects/diffused_head/cddl/contrib/dtracetoolkit/Tcl/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Tcl/ projects/diffused_head/cddl/contrib/dtracetoolkit/User/ - copied from r240000, head/cddl/contrib/dtracetoolkit/User/ projects/diffused_head/cddl/contrib/dtracetoolkit/Version - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/Version projects/diffused_head/cddl/contrib/dtracetoolkit/Zones/ - copied from r240000, head/cddl/contrib/dtracetoolkit/Zones/ projects/diffused_head/cddl/contrib/dtracetoolkit/dexplorer - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/dexplorer projects/diffused_head/cddl/contrib/dtracetoolkit/dvmstat - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/dvmstat projects/diffused_head/cddl/contrib/dtracetoolkit/errinfo - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/errinfo projects/diffused_head/cddl/contrib/dtracetoolkit/execsnoop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/execsnoop projects/diffused_head/cddl/contrib/dtracetoolkit/hotkernel - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/hotkernel projects/diffused_head/cddl/contrib/dtracetoolkit/hotuser - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/hotuser projects/diffused_head/cddl/contrib/dtracetoolkit/install - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/install projects/diffused_head/cddl/contrib/dtracetoolkit/iopattern - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/iopattern projects/diffused_head/cddl/contrib/dtracetoolkit/iosnoop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/iosnoop projects/diffused_head/cddl/contrib/dtracetoolkit/iotop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/iotop projects/diffused_head/cddl/contrib/dtracetoolkit/opensnoop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/opensnoop projects/diffused_head/cddl/contrib/dtracetoolkit/procsystime - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/procsystime projects/diffused_head/cddl/contrib/dtracetoolkit/rwsnoop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/rwsnoop projects/diffused_head/cddl/contrib/dtracetoolkit/rwtop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/rwtop projects/diffused_head/cddl/contrib/dtracetoolkit/statsnoop - copied unchanged from r240000, head/cddl/contrib/dtracetoolkit/statsnoop projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/include/ - copied from r240000, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/include/ projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/llquantize/ - copied from r240000, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/llquantize/ projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.libdepsepdir.ksh - copied unchanged from r240000, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.libdepsepdir.ksh projects/diffused_head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sizeof/err.D_SIZEOF_TYPE.badstruct.d - copied unchanged from r240000, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sizeof/err.D_SIZEOF_TYPE.badstruct.d projects/diffused_head/cddl/contrib/opensolaris/cmd/zhack/ - copied from r240000, head/cddl/contrib/opensolaris/cmd/zhack/ projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 - copied unchanged from r240000, head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/diffused_head/cddl/lib/libdtrace/io.d - copied unchanged from r240000, head/cddl/lib/libdtrace/io.d projects/diffused_head/cddl/usr.sbin/zhack/ - copied from r240000, head/cddl/usr.sbin/zhack/ projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/tlsa_52.c - copied unchanged from r240000, head/contrib/bind9/lib/dns/rdata/generic/tlsa_52.c projects/diffused_head/contrib/bind9/lib/dns/rdata/generic/tlsa_52.h - copied unchanged from r240000, head/contrib/bind9/lib/dns/rdata/generic/tlsa_52.h projects/diffused_head/contrib/byacc/ - copied from r240000, head/contrib/byacc/ projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_idivmod.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_idivmod.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_ldivmod.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_ldivmod.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_memcmp.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_memcmp.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_memcpy.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_memcpy.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_memmove.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_memmove.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_memset.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_memset.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_uidivmod.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_uidivmod.S projects/diffused_head/contrib/compiler-rt/lib/arm/aeabi_uldivmod.S - copied unchanged from r240000, head/contrib/compiler-rt/lib/arm/aeabi_uldivmod.S projects/diffused_head/contrib/compiler-rt/lib/atomic.c - copied unchanged from r240000, head/contrib/compiler-rt/lib/atomic.c projects/diffused_head/contrib/dtc/dtdiff - copied unchanged from r240000, head/contrib/dtc/dtdiff projects/diffused_head/contrib/dtc/fdtdump.c - copied unchanged from r240000, head/contrib/dtc/fdtdump.c projects/diffused_head/contrib/dtc/fdtget.c - copied unchanged from r240000, head/contrib/dtc/fdtget.c projects/diffused_head/contrib/dtc/fdtput.c - copied unchanged from r240000, head/contrib/dtc/fdtput.c projects/diffused_head/contrib/dtc/libfdt/fdt_empty_tree.c - copied unchanged from r240000, head/contrib/dtc/libfdt/fdt_empty_tree.c projects/diffused_head/contrib/libarchive/libarchive/archive_getdate.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_getdate.c projects/diffused_head/contrib/libarchive/libarchive/archive_match.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_match.c projects/diffused_head/contrib/libarchive/libarchive/archive_pathmatch.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_pathmatch.c projects/diffused_head/contrib/libarchive/libarchive/archive_pathmatch.h - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_pathmatch.h projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_write_add_filter.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_acl.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/archive_write_disk_acl.c projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_freebsd_nfs4.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_acl_freebsd_nfs4.c projects/diffused_head/contrib/libarchive/libarchive/test/test_acl_freebsd_posix1e.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_acl_freebsd_posix1e.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_getdate.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_archive_getdate.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_match_owner.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_archive_match_owner.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_match_path.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_archive_match_path.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_match_time.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_archive_match_time.c projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_pathmatch.c - copied unchanged from r240000, head/contrib/libarchive/libarchive/test/test_archive_pathmatch.c projects/diffused_head/contrib/libarchive/tar/test/test_format_newc.c - copied unchanged from r240000, head/contrib/libarchive/tar/test/test_format_newc.c projects/diffused_head/contrib/libarchive/tar/test/test_option_nodump.c - copied unchanged from r240000, head/contrib/libarchive/tar/test/test_option_nodump.c projects/diffused_head/contrib/libpcap/pcap-netfilter-linux.c - copied unchanged from r240000, head/contrib/libpcap/pcap-netfilter-linux.c projects/diffused_head/contrib/libpcap/pcap-netfilter-linux.h - copied unchanged from r240000, head/contrib/libpcap/pcap-netfilter-linux.h projects/diffused_head/contrib/libpcap/pcap-tstamp.manmisc - copied unchanged from r240000, head/contrib/libpcap/pcap-tstamp.manmisc projects/diffused_head/contrib/libpcap/pcap-tstamp.manmisc.in - copied unchanged from r240000, head/contrib/libpcap/pcap-tstamp.manmisc.in projects/diffused_head/contrib/libpcap/pcap_list_tstamp_types.3pcap - copied unchanged from r240000, head/contrib/libpcap/pcap_list_tstamp_types.3pcap projects/diffused_head/contrib/libpcap/pcap_list_tstamp_types.3pcap.in - copied unchanged from r240000, head/contrib/libpcap/pcap_list_tstamp_types.3pcap.in projects/diffused_head/contrib/libpcap/pcap_set_tstamp_type.3pcap - copied unchanged from r240000, head/contrib/libpcap/pcap_set_tstamp_type.3pcap projects/diffused_head/contrib/libpcap/pcap_set_tstamp_type.3pcap.in - copied unchanged from r240000, head/contrib/libpcap/pcap_set_tstamp_type.3pcap.in projects/diffused_head/contrib/libpcap/pcap_tstamp_type_name_to_val.3pcap - copied unchanged from r240000, head/contrib/libpcap/pcap_tstamp_type_name_to_val.3pcap projects/diffused_head/contrib/libpcap/pcap_tstamp_type_val_to_name.3pcap - copied unchanged from r240000, head/contrib/libpcap/pcap_tstamp_type_val_to_name.3pcap projects/diffused_head/contrib/libpcap/test/ - copied from r240000, head/contrib/libpcap/test/ projects/diffused_head/contrib/llvm/include/llvm-c/Linker.h - copied unchanged from r240000, head/contrib/llvm/include/llvm-c/Linker.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h projects/diffused_head/contrib/llvm/include/llvm/DIBuilder.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/DIBuilder.h projects/diffused_head/contrib/llvm/include/llvm/DebugInfo.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/DebugInfo.h projects/diffused_head/contrib/llvm/include/llvm/IRBuilder.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/IRBuilder.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsMips.td - copied unchanged from r240000, head/contrib/llvm/include/llvm/IntrinsicsMips.td projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsNVVM.td - copied unchanged from r240000, head/contrib/llvm/include/llvm/IntrinsicsNVVM.td projects/diffused_head/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSchedule.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/MC/MCSchedule.h projects/diffused_head/contrib/llvm/include/llvm/MDBuilder.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/MDBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/FileOutputBuffer.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/diffused_head/contrib/llvm/include/llvm/Support/IntegersSubset.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Support/IntegersSubset.h projects/diffused_head/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h projects/diffused_head/contrib/llvm/include/llvm/Support/LEB128.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Support/LEB128.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/StringMatcher.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/TableGen/StringMatcher.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetItinerary.td - copied unchanged from r240000, head/contrib/llvm/include/llvm/Target/TargetItinerary.td projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h projects/diffused_head/contrib/llvm/include/llvm/TypeBuilder.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/TypeBuilder.h projects/diffused_head/contrib/llvm/include/llvm/TypeFinder.h - copied unchanged from r240000, head/contrib/llvm/include/llvm/TypeFinder.h projects/diffused_head/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRegMatrix.h - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/LiveRegMatrix.h projects/diffused_head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterPressure.cpp - copied unchanged from r240000, head/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/diffused_head/contrib/llvm/lib/MC/MCRegisterInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/MC/MCRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Support/FileOutputBuffer.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Support/FileOutputBuffer.cpp projects/diffused_head/contrib/llvm/lib/TableGen/StringMatcher.cpp - copied unchanged from r240000, head/contrib/llvm/lib/TableGen/StringMatcher.cpp projects/diffused_head/contrib/llvm/lib/Target/AMDGPU/ - copied from r240000, head/contrib/llvm/lib/Target/AMDGPU/ projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td - copied unchanged from r240000, head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td - copied unchanged from r240000, head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h - copied unchanged from r240000, head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/NVPTX/ - copied from r240000, head/contrib/llvm/lib/Target/NVPTX/ projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp - copied unchanged from r240000, head/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DIBuilder.cpp - copied unchanged from r240000, head/contrib/llvm/lib/VMCore/DIBuilder.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DebugInfo.cpp - copied unchanged from r240000, head/contrib/llvm/lib/VMCore/DebugInfo.cpp projects/diffused_head/contrib/llvm/lib/VMCore/TypeFinder.cpp - copied unchanged from r240000, head/contrib/llvm/lib/VMCore/TypeFinder.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/CXString.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang-c/CXString.h projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/Platform.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang-c/Platform.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Comment.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/Comment.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ - copied from r240000, head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/CommentNodes.td - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Basic/CommentNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Comment.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ASTMatchers/ - copied from r240000, head/contrib/llvm/tools/clang/lib/ASTMatchers/ projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/ammintrin.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Headers/ammintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/xopintrin.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Headers/xopintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp - copied unchanged from r240000, head/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h - copied unchanged from r240000, head/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp - copied unchanged from r240000, head/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenSchedule.h - copied unchanged from r240000, head/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/diffused_head/contrib/llvm/utils/TableGen/TableGenBackends.h - copied unchanged from r240000, head/contrib/llvm/utils/TableGen/TableGenBackends.h projects/diffused_head/contrib/openpam/TODO - copied unchanged from r240000, head/contrib/openpam/TODO projects/diffused_head/contrib/openpam/bin/openpam_dump_policy/ - copied from r240000, head/contrib/openpam/bin/openpam_dump_policy/ projects/diffused_head/contrib/openpam/doc/man/openpam_get_feature.3 - copied unchanged from r240000, head/contrib/openpam/doc/man/openpam_get_feature.3 projects/diffused_head/contrib/openpam/doc/man/openpam_readlinev.3 - copied unchanged from r240000, head/contrib/openpam/doc/man/openpam_readlinev.3 projects/diffused_head/contrib/openpam/doc/man/openpam_readword.3 - copied unchanged from r240000, head/contrib/openpam/doc/man/openpam_readword.3 projects/diffused_head/contrib/openpam/doc/man/openpam_set_feature.3 - copied unchanged from r240000, head/contrib/openpam/doc/man/openpam_set_feature.3 projects/diffused_head/contrib/openpam/doc/man/openpam_straddch.3 - copied unchanged from r240000, head/contrib/openpam/doc/man/openpam_straddch.3 projects/diffused_head/contrib/openpam/lib/openpam_ctype.h - copied unchanged from r240000, head/contrib/openpam/lib/openpam_ctype.h projects/diffused_head/contrib/openpam/lib/openpam_features.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_features.c projects/diffused_head/contrib/openpam/lib/openpam_features.h - copied unchanged from r240000, head/contrib/openpam/lib/openpam_features.h projects/diffused_head/contrib/openpam/lib/openpam_get_feature.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_get_feature.c projects/diffused_head/contrib/openpam/lib/openpam_readlinev.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_readlinev.c projects/diffused_head/contrib/openpam/lib/openpam_readword.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_readword.c projects/diffused_head/contrib/openpam/lib/openpam_set_feature.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_set_feature.c projects/diffused_head/contrib/openpam/lib/openpam_straddch.c - copied unchanged from r240000, head/contrib/openpam/lib/openpam_straddch.c projects/diffused_head/contrib/openpam/lib/openpam_strlcat.h - copied unchanged from r240000, head/contrib/openpam/lib/openpam_strlcat.h projects/diffused_head/contrib/openpam/pamgdb.in - copied unchanged from r240000, head/contrib/openpam/pamgdb.in projects/diffused_head/contrib/openpam/t/ - copied from r240000, head/contrib/openpam/t/ projects/diffused_head/contrib/tcpdump/in_cksum.c - copied unchanged from r240000, head/contrib/tcpdump/in_cksum.c projects/diffused_head/contrib/tcpdump/ppi.h - copied unchanged from r240000, head/contrib/tcpdump/ppi.h projects/diffused_head/contrib/tcpdump/print-802_15_4.c - copied unchanged from r240000, head/contrib/tcpdump/print-802_15_4.c projects/diffused_head/contrib/tcpdump/print-babel.c - copied unchanged from r240000, head/contrib/tcpdump/print-babel.c projects/diffused_head/contrib/tcpdump/print-carp.c - copied unchanged from r240000, head/contrib/tcpdump/print-carp.c projects/diffused_head/contrib/tcpdump/print-ppi.c - copied unchanged from r240000, head/contrib/tcpdump/print-ppi.c projects/diffused_head/contrib/tcpdump/print-rpki-rtr.c - copied unchanged from r240000, head/contrib/tcpdump/print-rpki-rtr.c projects/diffused_head/crypto/openssl/apps/genpkey.c - copied unchanged from r240000, head/crypto/openssl/apps/genpkey.c projects/diffused_head/crypto/openssl/apps/pkey.c - copied unchanged from r240000, head/crypto/openssl/apps/pkey.c projects/diffused_head/crypto/openssl/apps/pkeyparam.c - copied unchanged from r240000, head/crypto/openssl/apps/pkeyparam.c projects/diffused_head/crypto/openssl/apps/pkeyutl.c - copied unchanged from r240000, head/crypto/openssl/apps/pkeyutl.c projects/diffused_head/crypto/openssl/apps/srp.c - copied unchanged from r240000, head/crypto/openssl/apps/srp.c projects/diffused_head/crypto/openssl/apps/ts.c - copied unchanged from r240000, head/crypto/openssl/apps/ts.c projects/diffused_head/crypto/openssl/apps/tsget - copied unchanged from r240000, head/crypto/openssl/apps/tsget projects/diffused_head/crypto/openssl/crypto/aes/aes_x86core.c - copied unchanged from r240000, head/crypto/openssl/crypto/aes/aes_x86core.c projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-armv4.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-armv4.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-mips.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-mips.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-parisc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-parisc.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-ppc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-ppc.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-s390x.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-s390x.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-sparcv9.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aes-sparcv9.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aesni-sha1-x86_64.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aesni-x86.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aesni-x86.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/aesni-x86_64.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/bsaes-x86_64.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/vpaes-x86.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/vpaes-x86.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/aes/asm/vpaes-x86_64.pl projects/diffused_head/crypto/openssl/crypto/arm_arch.h - copied unchanged from r240000, head/crypto/openssl/crypto/arm_arch.h projects/diffused_head/crypto/openssl/crypto/armcap.c - copied unchanged from r240000, head/crypto/openssl/crypto/armcap.c projects/diffused_head/crypto/openssl/crypto/armv4cpuid.S - copied unchanged from r240000, head/crypto/openssl/crypto/armv4cpuid.S projects/diffused_head/crypto/openssl/crypto/asn1/ameth_lib.c - copied unchanged from r240000, head/crypto/openssl/crypto/asn1/ameth_lib.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1_locl.h - copied unchanged from r240000, head/crypto/openssl/crypto/asn1/asn1_locl.h projects/diffused_head/crypto/openssl/crypto/asn1/bio_asn1.c - copied unchanged from r240000, head/crypto/openssl/crypto/asn1/bio_asn1.c projects/diffused_head/crypto/openssl/crypto/asn1/bio_ndef.c - copied unchanged from r240000, head/crypto/openssl/crypto/asn1/bio_ndef.c projects/diffused_head/crypto/openssl/crypto/asn1/x_nx509.c - copied unchanged from r240000, head/crypto/openssl/crypto/asn1/x_nx509.c projects/diffused_head/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/armv4-gf2m.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/armv4-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/armv4-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/ia64-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/ia64-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/mips-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/mips-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/mips.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/mips.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/mips3-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/mips3-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/modexp512-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/modexp512-x86_64.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/parisc-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/parisc-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/ppc-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/ppc-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/ppc64-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/ppc64-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/s390x-gf2m.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/s390x-gf2m.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/s390x-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/s390x-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/s390x.S - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/s390x.S projects/diffused_head/crypto/openssl/crypto/bn/asm/sparcv9-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/sparcv9-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/sparcv9a-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/sparcv9a-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/via-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/via-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/x86-gf2m.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/x86-gf2m.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/x86-mont.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/x86-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/x86_64-gf2m.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/x86_64-gf2m.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl - copied unchanged from r240000, head/crypto/openssl/crypto/bn/asm/x86_64-mont5.pl projects/diffused_head/crypto/openssl/crypto/camellia/asm/ - copied from r240000, head/crypto/openssl/crypto/camellia/asm/ projects/diffused_head/crypto/openssl/crypto/camellia/cmll_utl.c - copied unchanged from r240000, head/crypto/openssl/crypto/camellia/cmll_utl.c projects/diffused_head/crypto/openssl/crypto/cmac/ - copied from r240000, head/crypto/openssl/crypto/cmac/ projects/diffused_head/crypto/openssl/crypto/cms/cms_pwri.c - copied unchanged from r240000, head/crypto/openssl/crypto/cms/cms_pwri.c projects/diffused_head/crypto/openssl/crypto/dh/dh_ameth.c - copied unchanged from r240000, head/crypto/openssl/crypto/dh/dh_ameth.c projects/diffused_head/crypto/openssl/crypto/dh/dh_pmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/dh/dh_pmeth.c projects/diffused_head/crypto/openssl/crypto/dh/dh_prn.c - copied unchanged from r240000, head/crypto/openssl/crypto/dh/dh_prn.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_ameth.c - copied unchanged from r240000, head/crypto/openssl/crypto/dsa/dsa_ameth.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_locl.h - copied unchanged from r240000, head/crypto/openssl/crypto/dsa/dsa_locl.h projects/diffused_head/crypto/openssl/crypto/dsa/dsa_pmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/dsa/dsa_pmeth.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_prn.c - copied unchanged from r240000, head/crypto/openssl/crypto/dsa/dsa_prn.c projects/diffused_head/crypto/openssl/crypto/dso/dso_beos.c - copied unchanged from r240000, head/crypto/openssl/crypto/dso/dso_beos.c projects/diffused_head/crypto/openssl/crypto/ec/ec2_oct.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ec2_oct.c projects/diffused_head/crypto/openssl/crypto/ec/ec_ameth.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ec_ameth.c projects/diffused_head/crypto/openssl/crypto/ec/ec_oct.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ec_oct.c projects/diffused_head/crypto/openssl/crypto/ec/ec_pmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ec_pmeth.c projects/diffused_head/crypto/openssl/crypto/ec/eck_prn.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/eck_prn.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_nistp224.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ecp_nistp224.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_nistp256.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ecp_nistp256.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_nistp521.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ecp_nistp521.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_nistputil.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ecp_nistputil.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_oct.c - copied unchanged from r240000, head/crypto/openssl/crypto/ec/ecp_oct.c projects/diffused_head/crypto/openssl/crypto/engine/eng_rdrand.c - copied unchanged from r240000, head/crypto/openssl/crypto/engine/eng_rdrand.c projects/diffused_head/crypto/openssl/crypto/engine/eng_rsax.c - copied unchanged from r240000, head/crypto/openssl/crypto/engine/eng_rsax.c projects/diffused_head/crypto/openssl/crypto/engine/tb_asnmth.c - copied unchanged from r240000, head/crypto/openssl/crypto/engine/tb_asnmth.c projects/diffused_head/crypto/openssl/crypto/engine/tb_pkmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/engine/tb_pkmeth.c projects/diffused_head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/e_aes_cbc_hmac_sha1.c projects/diffused_head/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/e_rc4_hmac_md5.c projects/diffused_head/crypto/openssl/crypto/evp/evp_fips.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/evp_fips.c projects/diffused_head/crypto/openssl/crypto/evp/m_sigver.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/m_sigver.c projects/diffused_head/crypto/openssl/crypto/evp/m_wp.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/m_wp.c projects/diffused_head/crypto/openssl/crypto/evp/pmeth_fn.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/pmeth_fn.c projects/diffused_head/crypto/openssl/crypto/evp/pmeth_gn.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/pmeth_gn.c projects/diffused_head/crypto/openssl/crypto/evp/pmeth_lib.c - copied unchanged from r240000, head/crypto/openssl/crypto/evp/pmeth_lib.c projects/diffused_head/crypto/openssl/crypto/fips_ers.c - copied unchanged from r240000, head/crypto/openssl/crypto/fips_ers.c projects/diffused_head/crypto/openssl/crypto/hmac/hm_ameth.c - copied unchanged from r240000, head/crypto/openssl/crypto/hmac/hm_ameth.c projects/diffused_head/crypto/openssl/crypto/hmac/hm_pmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/hmac/hm_pmeth.c projects/diffused_head/crypto/openssl/crypto/md5/asm/md5-ia64.S - copied unchanged from r240000, head/crypto/openssl/crypto/md5/asm/md5-ia64.S projects/diffused_head/crypto/openssl/crypto/modes/ - copied from r240000, head/crypto/openssl/crypto/modes/ projects/diffused_head/crypto/openssl/crypto/o_fips.c - copied unchanged from r240000, head/crypto/openssl/crypto/o_fips.c projects/diffused_head/crypto/openssl/crypto/objects/obj_xref.c - copied unchanged from r240000, head/crypto/openssl/crypto/objects/obj_xref.c projects/diffused_head/crypto/openssl/crypto/objects/obj_xref.h - copied unchanged from r240000, head/crypto/openssl/crypto/objects/obj_xref.h projects/diffused_head/crypto/openssl/crypto/objects/obj_xref.txt - copied unchanged from r240000, head/crypto/openssl/crypto/objects/obj_xref.txt projects/diffused_head/crypto/openssl/crypto/objects/objxref.pl - copied unchanged from r240000, head/crypto/openssl/crypto/objects/objxref.pl projects/diffused_head/crypto/openssl/crypto/pariscid.pl - copied unchanged from r240000, head/crypto/openssl/crypto/pariscid.pl projects/diffused_head/crypto/openssl/crypto/pem/pvkfmt.c - copied unchanged from r240000, head/crypto/openssl/crypto/pem/pvkfmt.c projects/diffused_head/crypto/openssl/crypto/perlasm/ppc-xlate.pl - copied unchanged from r240000, head/crypto/openssl/crypto/perlasm/ppc-xlate.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86gas.pl - copied unchanged from r240000, head/crypto/openssl/crypto/perlasm/x86gas.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86masm.pl - copied unchanged from r240000, head/crypto/openssl/crypto/perlasm/x86masm.pl projects/diffused_head/crypto/openssl/crypto/pkcs7/bio_pk7.c - copied unchanged from r240000, head/crypto/openssl/crypto/pkcs7/bio_pk7.c projects/diffused_head/crypto/openssl/crypto/ppccap.c - copied unchanged from r240000, head/crypto/openssl/crypto/ppccap.c projects/diffused_head/crypto/openssl/crypto/ppccpuid.pl - copied unchanged from r240000, head/crypto/openssl/crypto/ppccpuid.pl projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-ia64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/rc4/asm/rc4-ia64.pl projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-md5-x86_64.pl - copied unchanged from r240000, head/crypto/openssl/crypto/rc4/asm/rc4-md5-x86_64.pl projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-parisc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/rc4/asm/rc4-parisc.pl projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-s390x.pl - copied unchanged from r240000, head/crypto/openssl/crypto/rc4/asm/rc4-s390x.pl projects/diffused_head/crypto/openssl/crypto/rc4/rc4_utl.c - copied unchanged from r240000, head/crypto/openssl/crypto/rc4/rc4_utl.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_ameth.c - copied unchanged from r240000, head/crypto/openssl/crypto/rsa/rsa_ameth.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_crpt.c - copied unchanged from r240000, head/crypto/openssl/crypto/rsa/rsa_crpt.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_locl.h - copied unchanged from r240000, head/crypto/openssl/crypto/rsa/rsa_locl.h projects/diffused_head/crypto/openssl/crypto/rsa/rsa_pmeth.c - copied unchanged from r240000, head/crypto/openssl/crypto/rsa/rsa_pmeth.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_prn.c - copied unchanged from r240000, head/crypto/openssl/crypto/rsa/rsa_prn.c projects/diffused_head/crypto/openssl/crypto/s390xcap.c - copied unchanged from r240000, head/crypto/openssl/crypto/s390xcap.c projects/diffused_head/crypto/openssl/crypto/s390xcpuid.S - copied unchanged from r240000, head/crypto/openssl/crypto/s390xcpuid.S projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-armv4-large.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-mips.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-mips.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-parisc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-parisc.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-ppc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-ppc.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-s390x.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-s390x.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-sparcv9.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-sparcv9a.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-sparcv9a.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-thumb.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha1-thumb.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha256-586.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha256-586.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha256-armv4.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha256-armv4.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-586.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-586.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-armv4.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-armv4.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-mips.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-mips.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-parisc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-parisc.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-ppc.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-ppc.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-s390x.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-s390x.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl - copied unchanged from r240000, head/crypto/openssl/crypto/sha/asm/sha512-sparcv9.pl projects/diffused_head/crypto/openssl/crypto/sparcv9cap.c - copied unchanged from r240000, head/crypto/openssl/crypto/sparcv9cap.c projects/diffused_head/crypto/openssl/crypto/srp/ - copied from r240000, head/crypto/openssl/crypto/srp/ projects/diffused_head/crypto/openssl/crypto/ts/ - copied from r240000, head/crypto/openssl/crypto/ts/ projects/diffused_head/crypto/openssl/crypto/vms_rms.h - copied unchanged from r240000, head/crypto/openssl/crypto/vms_rms.h projects/diffused_head/crypto/openssl/crypto/whrlpool/ - copied from r240000, head/crypto/openssl/crypto/whrlpool/ projects/diffused_head/crypto/openssl/doc/apps/cms.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/cms.pod projects/diffused_head/crypto/openssl/doc/apps/genpkey.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/genpkey.pod projects/diffused_head/crypto/openssl/doc/apps/pkey.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/pkey.pod projects/diffused_head/crypto/openssl/doc/apps/pkeyparam.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/pkeyparam.pod projects/diffused_head/crypto/openssl/doc/apps/pkeyutl.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/pkeyutl.pod projects/diffused_head/crypto/openssl/doc/apps/ts.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/ts.pod projects/diffused_head/crypto/openssl/doc/apps/tsget.pod - copied unchanged from r240000, head/crypto/openssl/doc/apps/tsget.pod projects/diffused_head/crypto/openssl/doc/crypto/BIO_new_CMS.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/BIO_new_CMS.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_add0_cert.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_add0_cert.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_add1_recipient_cert.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_add1_recipient_cert.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_compress.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_compress.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_decrypt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_decrypt.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_encrypt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_encrypt.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_final.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_final.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_get0_RecipientInfos.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_get0_RecipientInfos.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_get0_SignerInfos.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_get0_SignerInfos.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_get0_type.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_get0_type.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_get1_ReceiptRequest.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_get1_ReceiptRequest.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_sign.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_sign.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_sign_add1_signer.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_sign_add1_signer.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_sign_receipt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_sign_receipt.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_uncompress.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_uncompress.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_verify.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_verify.pod projects/diffused_head/crypto/openssl/doc/crypto/CMS_verify_receipt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/CMS_verify_receipt.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_DigestSignInit.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_DigestSignInit.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_DigestVerifyInit.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_DigestVerifyInit.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_CTX_ctrl.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_CTX_ctrl.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_CTX_new.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_CTX_new.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_cmp.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_cmp.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_decrypt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_decrypt.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_derive.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_derive.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_encrypt.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_encrypt.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_get_default_digest.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_get_default_digest.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_keygen.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_keygen.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_print_private.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_print_private.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_sign.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_sign.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_verify.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_verify.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_PKEY_verifyrecover.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/EVP_PKEY_verifyrecover.pod projects/diffused_head/crypto/openssl/doc/crypto/PEM_write_bio_CMS_stream.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/PEM_write_bio_CMS_stream.pod projects/diffused_head/crypto/openssl/doc/crypto/PEM_write_bio_PKCS7_stream.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/PEM_write_bio_PKCS7_stream.pod projects/diffused_head/crypto/openssl/doc/crypto/PKCS7_sign_add_signer.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/PKCS7_sign_add_signer.pod projects/diffused_head/crypto/openssl/doc/crypto/SMIME_read_CMS.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/SMIME_read_CMS.pod projects/diffused_head/crypto/openssl/doc/crypto/SMIME_write_CMS.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/SMIME_write_CMS.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_error.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_error.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_STORE_CTX_get_ex_new_index.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_STORE_CTX_new.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_STORE_CTX_new.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_STORE_CTX_set_verify_cb.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_STORE_CTX_set_verify_cb.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_STORE_set_verify_cb_func.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_STORE_set_verify_cb_func.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_VERIFY_PARAM_set_flags.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_VERIFY_PARAM_set_flags.pod projects/diffused_head/crypto/openssl/doc/crypto/X509_verify_cert.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/X509_verify_cert.pod projects/diffused_head/crypto/openssl/doc/crypto/i2d_CMS_bio_stream.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/i2d_CMS_bio_stream.pod projects/diffused_head/crypto/openssl/doc/crypto/i2d_PKCS7_bio_stream.pod - copied unchanged from r240000, head/crypto/openssl/doc/crypto/i2d_PKCS7_bio_stream.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_set_psk_client_callback.pod - copied unchanged from r240000, head/crypto/openssl/doc/ssl/SSL_CTX_set_psk_client_callback.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_use_psk_identity_hint.pod - copied unchanged from r240000, head/crypto/openssl/doc/ssl/SSL_CTX_use_psk_identity_hint.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_get_psk_identity.pod - copied unchanged from r240000, head/crypto/openssl/doc/ssl/SSL_get_psk_identity.pod projects/diffused_head/crypto/openssl/engines/ccgost/ - copied from r240000, head/crypto/openssl/engines/ccgost/ projects/diffused_head/crypto/openssl/engines/e_padlock.c - copied unchanged from r240000, head/crypto/openssl/engines/e_padlock.c projects/diffused_head/crypto/openssl/ssl/d1_srtp.c - copied unchanged from r240000, head/crypto/openssl/ssl/d1_srtp.c projects/diffused_head/crypto/openssl/ssl/srtp.h - copied unchanged from r240000, head/crypto/openssl/ssl/srtp.h projects/diffused_head/crypto/openssl/ssl/tls_srp.c - copied unchanged from r240000, head/crypto/openssl/ssl/tls_srp.c projects/diffused_head/crypto/openssl/util/cygwin.sh - copied unchanged from r240000, head/crypto/openssl/util/cygwin.sh projects/diffused_head/crypto/openssl/util/mkrc.pl - copied unchanged from r240000, head/crypto/openssl/util/mkrc.pl projects/diffused_head/etc/rc.d/postrandom - copied unchanged from r240000, head/etc/rc.d/postrandom projects/diffused_head/lib/clang/include/MipsGenDisassemblerTables.inc - copied unchanged from r240000, head/lib/clang/include/MipsGenDisassemblerTables.inc projects/diffused_head/lib/clang/include/MipsGenEDInfo.inc - copied unchanged from r240000, head/lib/clang/include/MipsGenEDInfo.inc projects/diffused_head/lib/clang/include/clang/AST/CommentNodes.inc - copied unchanged from r240000, head/lib/clang/include/clang/AST/CommentNodes.inc projects/diffused_head/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc - copied unchanged from r240000, head/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc projects/diffused_head/lib/clang/libllvmmipsdisassembler/ - copied from r240000, head/lib/clang/libllvmmipsdisassembler/ projects/diffused_head/lib/libc/amd64/sys/__vdso_gettc.c - copied unchanged from r240000, head/lib/libc/amd64/sys/__vdso_gettc.c projects/diffused_head/lib/libc/gen/auxv.c - copied unchanged from r240000, head/lib/libc/gen/auxv.c projects/diffused_head/lib/libc/gen/clock_getcpuclockid.3 - copied unchanged from r240000, head/lib/libc/gen/clock_getcpuclockid.3 projects/diffused_head/lib/libc/gen/clock_getcpuclockid.c - copied unchanged from r240000, head/lib/libc/gen/clock_getcpuclockid.c projects/diffused_head/lib/libc/gen/dirfd.c - copied unchanged from r240000, head/lib/libc/gen/dirfd.c projects/diffused_head/lib/libc/gen/gen-private.h - copied unchanged from r240000, head/lib/libc/gen/gen-private.h projects/diffused_head/lib/libc/i386/sys/__vdso_gettc.c - copied unchanged from r240000, head/lib/libc/i386/sys/__vdso_gettc.c projects/diffused_head/lib/libc/locale/iswalnum_l.3 - copied unchanged from r240000, head/lib/libc/locale/iswalnum_l.3 projects/diffused_head/lib/libc/powerpc/gen/eabi.S - copied unchanged from r240000, head/lib/libc/powerpc/gen/eabi.S projects/diffused_head/lib/libc/stdio/printf_l.3 - copied unchanged from r240000, head/lib/libc/stdio/printf_l.3 projects/diffused_head/lib/libc/stdio/scanf_l.3 - copied unchanged from r240000, head/lib/libc/stdio/scanf_l.3 projects/diffused_head/lib/libc/sys/__vdso_gettimeofday.c - copied unchanged from r240000, head/lib/libc/sys/__vdso_gettimeofday.c projects/diffused_head/lib/libc/sys/clock_gettime.c - copied unchanged from r240000, head/lib/libc/sys/clock_gettime.c projects/diffused_head/lib/libc/sys/gettimeofday.c - copied unchanged from r240000, head/lib/libc/sys/gettimeofday.c projects/diffused_head/lib/libnandfs/ - copied from r240000, head/lib/libnandfs/ projects/diffused_head/lib/libstand/nandfs.c - copied unchanged from r240000, head/lib/libstand/nandfs.c projects/diffused_head/lib/libz/test/ - copied from r240000, head/lib/libz/test/ projects/diffused_head/lib/msun/ld128/s_expl.c - copied unchanged from r240000, head/lib/msun/ld128/s_expl.c projects/diffused_head/lib/msun/ld80/s_expl.c - copied unchanged from r240000, head/lib/msun/ld80/s_expl.c projects/diffused_head/sbin/camcontrol/progress.c - copied unchanged from r240000, head/sbin/camcontrol/progress.c projects/diffused_head/sbin/camcontrol/progress.h - copied unchanged from r240000, head/sbin/camcontrol/progress.h projects/diffused_head/sbin/etherswitchcfg/ - copied from r240000, head/sbin/etherswitchcfg/ projects/diffused_head/sbin/nandfs/ - copied from r240000, head/sbin/nandfs/ projects/diffused_head/sbin/newfs_nandfs/ - copied from r240000, head/sbin/newfs_nandfs/ projects/diffused_head/secure/lib/libcrypto/amd64/ - copied from r240000, head/secure/lib/libcrypto/amd64/ projects/diffused_head/secure/lib/libcrypto/engines/libgost/ - copied from r240000, head/secure/lib/libcrypto/engines/libgost/ projects/diffused_head/secure/lib/libcrypto/i386/aes-586.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/aes-586.s projects/diffused_head/secure/lib/libcrypto/i386/aesni-x86.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/aesni-x86.s projects/diffused_head/secure/lib/libcrypto/i386/cmll-x86.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/cmll-x86.s projects/diffused_head/secure/lib/libcrypto/i386/ghash-x86.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/ghash-x86.s projects/diffused_head/secure/lib/libcrypto/i386/sha256-586.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/sha256-586.s projects/diffused_head/secure/lib/libcrypto/i386/sha512-586.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/sha512-586.s projects/diffused_head/secure/lib/libcrypto/i386/vpaes-x86.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/vpaes-x86.s projects/diffused_head/secure/lib/libcrypto/i386/wp-mmx.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/wp-mmx.s projects/diffused_head/secure/lib/libcrypto/i386/x86-gf2m.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/x86-gf2m.s projects/diffused_head/secure/lib/libcrypto/i386/x86-mont.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/x86-mont.s projects/diffused_head/secure/lib/libcrypto/i386/x86cpuid.s - copied unchanged from r240000, head/secure/lib/libcrypto/i386/x86cpuid.s projects/diffused_head/secure/lib/libcrypto/man/BIO_new_CMS.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/BIO_new_CMS.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_add0_cert.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_add0_cert.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_add1_recipient_cert.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_compress.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_compress.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_decrypt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_decrypt.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_encrypt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_encrypt.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_final.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_final.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_get0_RecipientInfos.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_get0_SignerInfos.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_get0_type.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_get0_type.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_get1_ReceiptRequest.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_sign.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_sign.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_sign_add1_signer.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_sign_add1_signer.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_sign_receipt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_sign_receipt.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_uncompress.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_uncompress.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_verify.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_verify.3 projects/diffused_head/secure/lib/libcrypto/man/CMS_verify_receipt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/CMS_verify_receipt.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_DigestSignInit.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_DigestSignInit.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_DigestVerifyInit.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_ctrl.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_CTX_new.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_cmp.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_decrypt.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_derive.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_derive.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_encrypt.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_get_default_digest.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_keygen.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_print_private.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_sign.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_sign.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_verify.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_verify.3 projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_verifyrecover.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/EVP_PKEY_verifyrecover.3 projects/diffused_head/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/PEM_write_bio_CMS_stream.3 projects/diffused_head/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/PEM_write_bio_PKCS7_stream.3 projects/diffused_head/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/PKCS7_sign_add_signer.3 projects/diffused_head/secure/lib/libcrypto/man/SMIME_read_CMS.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/SMIME_read_CMS.3 projects/diffused_head/secure/lib/libcrypto/man/SMIME_write_CMS.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/SMIME_write_CMS.3 projects/diffused_head/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_STORE_CTX_get_error.3 projects/diffused_head/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_STORE_CTX_get_ex_new_index.3 projects/diffused_head/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_STORE_CTX_new.3 projects/diffused_head/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_STORE_CTX_set_verify_cb.3 projects/diffused_head/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_STORE_set_verify_cb_func.3 projects/diffused_head/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_VERIFY_PARAM_set_flags.3 projects/diffused_head/secure/lib/libcrypto/man/X509_verify_cert.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/X509_verify_cert.3 projects/diffused_head/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/i2d_CMS_bio_stream.3 projects/diffused_head/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 - copied unchanged from r240000, head/secure/lib/libcrypto/man/i2d_PKCS7_bio_stream.3 projects/diffused_head/secure/lib/libcrypto/opensslconf-x86.h - copied unchanged from r240000, head/secure/lib/libcrypto/opensslconf-x86.h projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 - copied unchanged from r240000, head/secure/lib/libssl/man/SSL_CTX_set_psk_client_callback.3 projects/diffused_head/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 - copied unchanged from r240000, head/secure/lib/libssl/man/SSL_CTX_use_psk_identity_hint.3 projects/diffused_head/secure/lib/libssl/man/SSL_get_psk_identity.3 - copied unchanged from r240000, head/secure/lib/libssl/man/SSL_get_psk_identity.3 projects/diffused_head/secure/usr.bin/openssl/man/cms.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/cms.1 projects/diffused_head/secure/usr.bin/openssl/man/genpkey.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/genpkey.1 projects/diffused_head/secure/usr.bin/openssl/man/pkey.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/pkey.1 projects/diffused_head/secure/usr.bin/openssl/man/pkeyparam.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/pkeyparam.1 projects/diffused_head/secure/usr.bin/openssl/man/pkeyutl.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/pkeyutl.1 projects/diffused_head/secure/usr.bin/openssl/man/ts.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/ts.1 projects/diffused_head/secure/usr.bin/openssl/man/tsget.1 - copied unchanged from r240000, head/secure/usr.bin/openssl/man/tsget.1 projects/diffused_head/share/dtrace/ - copied from r240000, head/share/dtrace/ projects/diffused_head/share/examples/libusb20/ - copied from r240000, head/share/examples/libusb20/ projects/diffused_head/share/man/man3/pthread_getcpuclockid.3 - copied unchanged from r240000, head/share/man/man3/pthread_getcpuclockid.3 projects/diffused_head/share/man/man4/acpi_asus_wmi.4 - copied unchanged from r240000, head/share/man/man4/acpi_asus_wmi.4 projects/diffused_head/share/man/man4/altera_avgen.4 - copied unchanged from r240000, head/share/man/man4/altera_avgen.4 projects/diffused_head/share/man/man4/altera_jtag_uart.4 - copied unchanged from r240000, head/share/man/man4/altera_jtag_uart.4 projects/diffused_head/share/man/man4/altera_sdcard.4 - copied unchanged from r240000, head/share/man/man4/altera_sdcard.4 projects/diffused_head/share/man/man4/aout.4 - copied unchanged from r240000, head/share/man/man4/aout.4 projects/diffused_head/share/man/man4/bxe.4 - copied unchanged from r240000, head/share/man/man4/bxe.4 projects/diffused_head/share/man/man4/est.4 - copied unchanged from r240000, head/share/man/man4/est.4 projects/diffused_head/share/man/man4/filemon.4 - copied unchanged from r240000, head/share/man/man4/filemon.4 projects/diffused_head/share/man/man4/isf.4 - copied unchanged from r240000, head/share/man/man4/isf.4 projects/diffused_head/share/man/man4/nand.4 - copied unchanged from r240000, head/share/man/man4/nand.4 projects/diffused_head/share/man/man4/nandsim.4 - copied unchanged from r240000, head/share/man/man4/nandsim.4 projects/diffused_head/share/man/man4/terasic_mtl.4 - copied unchanged from r240000, head/share/man/man4/terasic_mtl.4 projects/diffused_head/share/man/man4/vale.4 - copied unchanged from r240000, head/share/man/man4/vale.4 projects/diffused_head/share/man/man5/nandfs.5 - copied unchanged from r240000, head/share/man/man5/nandfs.5 projects/diffused_head/share/man/man9/BUS_CHILD_DELETED.9 - copied unchanged from r240000, head/share/man/man9/BUS_CHILD_DELETED.9 projects/diffused_head/share/man/man9/BUS_CHILD_DETACHED.9 - copied unchanged from r240000, head/share/man/man9/BUS_CHILD_DETACHED.9 projects/diffused_head/share/syscons/keymaps/spanish.dvorak.kbd - copied unchanged from r240000, head/share/syscons/keymaps/spanish.dvorak.kbd projects/diffused_head/sys/amd64/include/vdso.h - copied unchanged from r240000, head/sys/amd64/include/vdso.h projects/diffused_head/sys/arm/arm/busdma_machdep-v6.c - copied unchanged from r240000, head/sys/arm/arm/busdma_machdep-v6.c projects/diffused_head/sys/arm/arm/cpufunc_asm_armv6.S - copied unchanged from r240000, head/sys/arm/arm/cpufunc_asm_armv6.S projects/diffused_head/sys/arm/arm/cpufunc_asm_armv7.S - copied unchanged from r240000, head/sys/arm/arm/cpufunc_asm_armv7.S projects/diffused_head/sys/arm/arm/cpufunc_asm_pj4b.S - copied unchanged from r240000, head/sys/arm/arm/cpufunc_asm_pj4b.S projects/diffused_head/sys/arm/arm/gic.c - copied unchanged from r240000, head/sys/arm/arm/gic.c projects/diffused_head/sys/arm/arm/mp_machdep.c - copied unchanged from r240000, head/sys/arm/arm/mp_machdep.c projects/diffused_head/sys/arm/arm/mpcore_timer.c - copied unchanged from r240000, head/sys/arm/arm/mpcore_timer.c projects/diffused_head/sys/arm/arm/pl310.c - copied unchanged from r240000, head/sys/arm/arm/pl310.c projects/diffused_head/sys/arm/arm/pmap-v6.c - copied unchanged from r240000, head/sys/arm/arm/pmap-v6.c projects/diffused_head/sys/arm/arm/sc_machdep.c - copied unchanged from r240000, head/sys/arm/arm/sc_machdep.c projects/diffused_head/sys/arm/arm/vfp.c - copied unchanged from r240000, head/sys/arm/arm/vfp.c projects/diffused_head/sys/arm/at91/at91_pio_sam9g45.h - copied unchanged from r240000, head/sys/arm/at91/at91_pio_sam9g45.h projects/diffused_head/sys/arm/at91/at91rm9200_devices.c - copied unchanged from r240000, head/sys/arm/at91/at91rm9200_devices.c projects/diffused_head/sys/arm/at91/at91rm9200var.h - copied unchanged from r240000, head/sys/arm/at91/at91rm9200var.h projects/diffused_head/sys/arm/at91/at91sam9g45.c - copied unchanged from r240000, head/sys/arm/at91/at91sam9g45.c projects/diffused_head/sys/arm/at91/at91sam9g45reg.h - copied unchanged from r240000, head/sys/arm/at91/at91sam9g45reg.h projects/diffused_head/sys/arm/at91/at91sam9x5.c - copied unchanged from r240000, head/sys/arm/at91/at91sam9x5.c projects/diffused_head/sys/arm/at91/at91sam9x5reg.h - copied unchanged from r240000, head/sys/arm/at91/at91sam9x5reg.h projects/diffused_head/sys/arm/at91/at91soc.c - copied unchanged from r240000, head/sys/arm/at91/at91soc.c projects/diffused_head/sys/arm/at91/at91soc.h - copied unchanged from r240000, head/sys/arm/at91/at91soc.h projects/diffused_head/sys/arm/at91/board_eb9200.c - copied unchanged from r240000, head/sys/arm/at91/board_eb9200.c projects/diffused_head/sys/arm/at91/board_ethernut5.c - copied unchanged from r240000, head/sys/arm/at91/board_ethernut5.c projects/diffused_head/sys/arm/at91/board_sam9260ek.c - copied unchanged from r240000, head/sys/arm/at91/board_sam9260ek.c projects/diffused_head/sys/arm/at91/board_sam9x25ek.c - copied unchanged from r240000, head/sys/arm/at91/board_sam9x25ek.c projects/diffused_head/sys/arm/at91/board_sn9g45.c - copied unchanged from r240000, head/sys/arm/at91/board_sn9g45.c projects/diffused_head/sys/arm/at91/std.at91sam9g45 - copied unchanged from r240000, head/sys/arm/at91/std.at91sam9g45 projects/diffused_head/sys/arm/at91/std.atmel - copied unchanged from r240000, head/sys/arm/at91/std.atmel projects/diffused_head/sys/arm/at91/std.eb9200 - copied unchanged from r240000, head/sys/arm/at91/std.eb9200 projects/diffused_head/sys/arm/at91/std.ethernut5 - copied unchanged from r240000, head/sys/arm/at91/std.ethernut5 projects/diffused_head/sys/arm/at91/std.sam9260ek - copied unchanged from r240000, head/sys/arm/at91/std.sam9260ek projects/diffused_head/sys/arm/at91/std.sam9x25ek - copied unchanged from r240000, head/sys/arm/at91/std.sam9x25ek projects/diffused_head/sys/arm/at91/std.sn9g45 - copied unchanged from r240000, head/sys/arm/at91/std.sn9g45 projects/diffused_head/sys/arm/at91/uart_cpu_at91usart.c - copied unchanged from r240000, head/sys/arm/at91/uart_cpu_at91usart.c projects/diffused_head/sys/arm/broadcom/ - copied from r240000, head/sys/arm/broadcom/ projects/diffused_head/sys/arm/conf/ARMADAXP - copied unchanged from r240000, head/sys/arm/conf/ARMADAXP projects/diffused_head/sys/arm/conf/ATMEL - copied unchanged from r240000, head/sys/arm/conf/ATMEL projects/diffused_head/sys/arm/conf/BEAGLEBONE - copied unchanged from r240000, head/sys/arm/conf/BEAGLEBONE projects/diffused_head/sys/arm/conf/EA3250 - copied unchanged from r240000, head/sys/arm/conf/EA3250 projects/diffused_head/sys/arm/conf/EA3250.hints - copied unchanged from r240000, head/sys/arm/conf/EA3250.hints projects/diffused_head/sys/arm/conf/EB9200 - copied unchanged from r240000, head/sys/arm/conf/EB9200 projects/diffused_head/sys/arm/conf/EB9200.hints - copied unchanged from r240000, head/sys/arm/conf/EB9200.hints projects/diffused_head/sys/arm/conf/ETHERNUT5 - copied unchanged from r240000, head/sys/arm/conf/ETHERNUT5 projects/diffused_head/sys/arm/conf/ETHERNUT5.hints - copied unchanged from r240000, head/sys/arm/conf/ETHERNUT5.hints projects/diffused_head/sys/arm/conf/PANDABOARD - copied unchanged from r240000, head/sys/arm/conf/PANDABOARD projects/diffused_head/sys/arm/conf/PANDABOARD.hints - copied unchanged from r240000, head/sys/arm/conf/PANDABOARD.hints projects/diffused_head/sys/arm/conf/RPI-B - copied unchanged from r240000, head/sys/arm/conf/RPI-B projects/diffused_head/sys/arm/conf/SAM9260EK - copied unchanged from r240000, head/sys/arm/conf/SAM9260EK projects/diffused_head/sys/arm/conf/SAM9260EK.hints - copied unchanged from r240000, head/sys/arm/conf/SAM9260EK.hints projects/diffused_head/sys/arm/conf/SAM9X25EK - copied unchanged from r240000, head/sys/arm/conf/SAM9X25EK projects/diffused_head/sys/arm/conf/SAM9X25EK.hints - copied unchanged from r240000, head/sys/arm/conf/SAM9X25EK.hints projects/diffused_head/sys/arm/conf/SN9G45 - copied unchanged from r240000, head/sys/arm/conf/SN9G45 projects/diffused_head/sys/arm/conf/genboardid.awk - copied unchanged from r240000, head/sys/arm/conf/genboardid.awk projects/diffused_head/sys/arm/conf/mach-types - copied unchanged from r240000, head/sys/arm/conf/mach-types projects/diffused_head/sys/arm/include/atags.h - copied unchanged from r240000, head/sys/arm/include/atags.h projects/diffused_head/sys/arm/include/board.h - copied unchanged from r240000, head/sys/arm/include/board.h projects/diffused_head/sys/arm/include/pl310.h - copied unchanged from r240000, head/sys/arm/include/pl310.h projects/diffused_head/sys/arm/include/sc_machdep.h - copied unchanged from r240000, head/sys/arm/include/sc_machdep.h projects/diffused_head/sys/arm/include/vdso.h - copied unchanged from r240000, head/sys/arm/include/vdso.h projects/diffused_head/sys/arm/include/vfp.h - copied unchanged from r240000, head/sys/arm/include/vfp.h projects/diffused_head/sys/arm/lpc/ - copied from r240000, head/sys/arm/lpc/ projects/diffused_head/sys/arm/mv/armadaxp/ - copied from r240000, head/sys/arm/mv/armadaxp/ projects/diffused_head/sys/arm/mv/mpic.c - copied unchanged from r240000, head/sys/arm/mv/mpic.c projects/diffused_head/sys/arm/mv/mv_localbus.c - copied unchanged from r240000, head/sys/arm/mv/mv_localbus.c projects/diffused_head/sys/arm/mv/mv_ts.c - copied unchanged from r240000, head/sys/arm/mv/mv_ts.c projects/diffused_head/sys/arm/mv/std-pj4b.mv - copied unchanged from r240000, head/sys/arm/mv/std-pj4b.mv projects/diffused_head/sys/arm/tegra/ - copied from r240000, head/sys/arm/tegra/ projects/diffused_head/sys/arm/ti/ - copied from r240000, head/sys/arm/ti/ projects/diffused_head/sys/arm/xscale/std.xscale-be - copied unchanged from r240000, head/sys/arm/xscale/std.xscale-be projects/diffused_head/sys/boot/common/part.c - copied unchanged from r240000, head/sys/boot/common/part.c projects/diffused_head/sys/boot/common/part.h - copied unchanged from r240000, head/sys/boot/common/part.h projects/diffused_head/sys/boot/fdt/dts/bcm2835-rpi-b.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/diffused_head/sys/boot/fdt/dts/beaglebone.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/beaglebone.dts projects/diffused_head/sys/boot/fdt/dts/bindings-localbus.txt - copied unchanged from r240000, head/sys/boot/fdt/dts/bindings-localbus.txt projects/diffused_head/sys/boot/fdt/dts/db88f78160.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/db88f78160.dts projects/diffused_head/sys/boot/fdt/dts/ea3250.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/ea3250.dts projects/diffused_head/sys/boot/fdt/dts/p2041rdb.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/p2041rdb.dts projects/diffused_head/sys/boot/fdt/dts/p2041si.dtsi - copied unchanged from r240000, head/sys/boot/fdt/dts/p2041si.dtsi projects/diffused_head/sys/boot/fdt/dts/p3041si.dtsi - copied unchanged from r240000, head/sys/boot/fdt/dts/p3041si.dtsi projects/diffused_head/sys/boot/fdt/dts/p5020ds.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/p5020ds.dts projects/diffused_head/sys/boot/fdt/dts/p5020si.dtsi - copied unchanged from r240000, head/sys/boot/fdt/dts/p5020si.dtsi projects/diffused_head/sys/boot/fdt/dts/pandaboard.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/pandaboard.dts projects/diffused_head/sys/boot/fdt/dts/trimslice.dts - copied unchanged from r240000, head/sys/boot/fdt/dts/trimslice.dts projects/diffused_head/sys/boot/i386/btx/lib/btxcsu.S - copied unchanged from r240000, head/sys/boot/i386/btx/lib/btxcsu.S projects/diffused_head/sys/boot/i386/cdboot/cdboot.S - copied unchanged from r240000, head/sys/boot/i386/cdboot/cdboot.S projects/diffused_head/sys/boot/i386/common/bootargs.h - copied unchanged from r240000, head/sys/boot/i386/common/bootargs.h projects/diffused_head/sys/boot/pc98/btx/lib/btxcsu.S - copied unchanged from r240000, head/sys/boot/pc98/btx/lib/btxcsu.S projects/diffused_head/sys/boot/pc98/cdboot/cdboot.S - copied unchanged from r240000, head/sys/boot/pc98/cdboot/cdboot.S projects/diffused_head/sys/boot/zfs/devicename_stubs.c - copied unchanged from r240000, head/sys/boot/zfs/devicename_stubs.c projects/diffused_head/sys/boot/zfs/libzfs.h - copied unchanged from r240000, head/sys/boot/zfs/libzfs.h projects/diffused_head/sys/cam/scsi/scsi_enc.c - copied unchanged from r240000, head/sys/cam/scsi/scsi_enc.c projects/diffused_head/sys/cam/scsi/scsi_enc.h - copied unchanged from r240000, head/sys/cam/scsi/scsi_enc.h projects/diffused_head/sys/cam/scsi/scsi_enc_internal.h - copied unchanged from r240000, head/sys/cam/scsi/scsi_enc_internal.h projects/diffused_head/sys/cam/scsi/scsi_enc_safte.c - copied unchanged from r240000, head/sys/cam/scsi/scsi_enc_safte.c projects/diffused_head/sys/cam/scsi/scsi_enc_ses.c - copied unchanged from r240000, head/sys/cam/scsi/scsi_enc_ses.c projects/diffused_head/sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bptree.h - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bptree.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfeature.h - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfeature.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c - copied unchanged from r240000, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c projects/diffused_head/sys/compat/linux/check_error.d - copied unchanged from r240000, head/sys/compat/linux/check_error.d projects/diffused_head/sys/compat/linux/check_internal_locks.d - copied unchanged from r240000, head/sys/compat/linux/check_internal_locks.d projects/diffused_head/sys/compat/linux/linux_dtrace.h - copied unchanged from r240000, head/sys/compat/linux/linux_dtrace.h projects/diffused_head/sys/compat/linux/stats_timing.d - copied unchanged from r240000, head/sys/compat/linux/stats_timing.d projects/diffused_head/sys/compat/linux/trace_futexes.d - copied unchanged from r240000, head/sys/compat/linux/trace_futexes.d projects/diffused_head/sys/contrib/dev/acpica/common/ahpredef.c - copied unchanged from r240000, head/sys/contrib/dev/acpica/common/ahpredef.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxfload.c - copied unchanged from r240000, head/sys/contrib/dev/acpica/components/tables/tbxfload.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utexcep.c - copied unchanged from r240000, head/sys/contrib/dev/acpica/components/utilities/utexcep.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxfinit.c - copied unchanged from r240000, head/sys/contrib/dev/acpica/components/utilities/utxfinit.c projects/diffused_head/sys/contrib/dev/acpica/include/acbuffer.h - copied unchanged from r240000, head/sys/contrib/dev/acpica/include/acbuffer.h projects/diffused_head/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu - copied unchanged from r240000, head/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.3.fw.uu projects/diffused_head/sys/contrib/dev/iwn/iwlwifi-6000g2b-18.168.6.1.fw.uu - copied unchanged from r240000, head/sys/contrib/dev/iwn/iwlwifi-6000g2b-18.168.6.1.fw.uu projects/diffused_head/sys/contrib/libfdt/fdt_empty_tree.c - copied unchanged from r240000, head/sys/contrib/libfdt/fdt_empty_tree.c projects/diffused_head/sys/dev/acpi_support/acpi_asus_wmi.c - copied unchanged from r240000, head/sys/dev/acpi_support/acpi_asus_wmi.c projects/diffused_head/sys/dev/agp/agp_i810.h - copied unchanged from r240000, head/sys/dev/agp/agp_i810.h projects/diffused_head/sys/dev/ahci/ahciem.c - copied unchanged from r240000, head/sys/dev/ahci/ahciem.c projects/diffused_head/sys/dev/altera/ - copied from r240000, head/sys/dev/altera/ projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c - copied unchanged from r240000, head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.h - copied unchanged from r240000, head/sys/dev/ath/ath_hal/ar5416/ar5416_btcoex.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c - copied unchanged from r240000, head/sys/dev/ath/ath_hal/ar9002/ar9285_btcoex.c projects/diffused_head/sys/dev/ath/ath_hal/ar9003/ar9300_btcoex.h - copied unchanged from r240000, head/sys/dev/ath/ath_hal/ar9003/ar9300_btcoex.h projects/diffused_head/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h - copied unchanged from r240000, head/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h projects/diffused_head/sys/dev/ath/if_ath_beacon.c - copied unchanged from r240000, head/sys/dev/ath/if_ath_beacon.c projects/diffused_head/sys/dev/ath/if_ath_beacon.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_beacon.h projects/diffused_head/sys/dev/ath/if_ath_rx.c - copied unchanged from r240000, head/sys/dev/ath/if_ath_rx.c projects/diffused_head/sys/dev/ath/if_ath_rx.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_rx.h projects/diffused_head/sys/dev/ath/if_ath_rx_edma.c - copied unchanged from r240000, head/sys/dev/ath/if_ath_rx_edma.c projects/diffused_head/sys/dev/ath/if_ath_rx_edma.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_rx_edma.h projects/diffused_head/sys/dev/ath/if_ath_tdma.c - copied unchanged from r240000, head/sys/dev/ath/if_ath_tdma.c projects/diffused_head/sys/dev/ath/if_ath_tdma.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_tdma.h projects/diffused_head/sys/dev/ath/if_ath_tsf.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_tsf.h projects/diffused_head/sys/dev/ath/if_ath_tx_edma.c - copied unchanged from r240000, head/sys/dev/ath/if_ath_tx_edma.c projects/diffused_head/sys/dev/ath/if_ath_tx_edma.h - copied unchanged from r240000, head/sys/dev/ath/if_ath_tx_edma.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ib_intfc.h - copied unchanged from r240000, head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ib_intfc.h projects/diffused_head/sys/dev/cxgbe/tom/ - copied from r240000, head/sys/dev/cxgbe/tom/ projects/diffused_head/sys/dev/drm2/ - copied from r240000, head/sys/dev/drm2/ projects/diffused_head/sys/dev/e1000/e1000_i210.c - copied unchanged from r240000, head/sys/dev/e1000/e1000_i210.c projects/diffused_head/sys/dev/e1000/e1000_i210.h - copied unchanged from r240000, head/sys/dev/e1000/e1000_i210.h projects/diffused_head/sys/dev/etherswitch/arswitch/ - copied from r240000, head/sys/dev/etherswitch/arswitch/ projects/diffused_head/sys/dev/etherswitch/etherswitch.c - copied unchanged from r240000, head/sys/dev/etherswitch/etherswitch.c projects/diffused_head/sys/dev/etherswitch/etherswitch.h - copied unchanged from r240000, head/sys/dev/etherswitch/etherswitch.h projects/diffused_head/sys/dev/etherswitch/etherswitch_if.m - copied unchanged from r240000, head/sys/dev/etherswitch/etherswitch_if.m projects/diffused_head/sys/dev/etherswitch/rtl8366/ - copied from r240000, head/sys/dev/etherswitch/rtl8366/ projects/diffused_head/sys/dev/fdt/fdt_slicer.c - copied unchanged from r240000, head/sys/dev/fdt/fdt_slicer.c projects/diffused_head/sys/dev/filemon/ - copied from r240000, head/sys/dev/filemon/ projects/diffused_head/sys/dev/gxemul/disk/ - copied from r240000, head/sys/dev/gxemul/disk/ projects/diffused_head/sys/dev/gxemul/ether/ - copied from r240000, head/sys/dev/gxemul/ether/ projects/diffused_head/sys/dev/iicbus/ds1631.c - copied unchanged from r240000, head/sys/dev/iicbus/ds1631.c projects/diffused_head/sys/dev/iicbus/s35390a.c - copied unchanged from r240000, head/sys/dev/iicbus/s35390a.c projects/diffused_head/sys/dev/isf/ - copied from r240000, head/sys/dev/isf/ projects/diffused_head/sys/dev/mii/smscphy.c - copied unchanged from r240000, head/sys/dev/mii/smscphy.c projects/diffused_head/sys/dev/nand/ - copied from r240000, head/sys/dev/nand/ projects/diffused_head/sys/dev/ral/rt2860.c - copied unchanged from r240000, head/sys/dev/ral/rt2860.c projects/diffused_head/sys/dev/ral/rt2860reg.h - copied unchanged from r240000, head/sys/dev/ral/rt2860reg.h projects/diffused_head/sys/dev/ral/rt2860var.h - copied unchanged from r240000, head/sys/dev/ral/rt2860var.h projects/diffused_head/sys/dev/sound/macio/onyx.c - copied unchanged from r240000, head/sys/dev/sound/macio/onyx.c projects/diffused_head/sys/dev/terasic/ - copied from r240000, head/sys/dev/terasic/ projects/diffused_head/sys/dev/uart/uart_dev_lpc.c - copied unchanged from r240000, head/sys/dev/uart/uart_dev_lpc.c projects/diffused_head/sys/dev/uart/uart_dev_pl011.c - copied unchanged from r240000, head/sys/dev/uart/uart_dev_pl011.c projects/diffused_head/sys/dev/usb/controller/dwc_otgreg.h - copied unchanged from r240000, head/sys/dev/usb/controller/dwc_otgreg.h projects/diffused_head/sys/dev/usb/controller/ehci_fsl.c - copied unchanged from r240000, head/sys/dev/usb/controller/ehci_fsl.c projects/diffused_head/sys/dev/usb/net/if_smsc.c - copied unchanged from r240000, head/sys/dev/usb/net/if_smsc.c projects/diffused_head/sys/dev/usb/net/if_smscreg.h - copied unchanged from r240000, head/sys/dev/usb/net/if_smscreg.h projects/diffused_head/sys/fs/nandfs/ - copied from r240000, head/sys/fs/nandfs/ projects/diffused_head/sys/geom/geom_flashmap.c - copied unchanged from r240000, head/sys/geom/geom_flashmap.c projects/diffused_head/sys/i386/include/vdso.h - copied unchanged from r240000, head/sys/i386/include/vdso.h projects/diffused_head/sys/ia64/ia64/physmem.c - copied unchanged from r240000, head/sys/ia64/ia64/physmem.c projects/diffused_head/sys/ia64/include/vdso.h - copied unchanged from r240000, head/sys/ia64/include/vdso.h projects/diffused_head/sys/kern/dtio_kdtrace.c - copied unchanged from r240000, head/sys/kern/dtio_kdtrace.c projects/diffused_head/sys/kern/kern_rangelock.c - copied unchanged from r240000, head/sys/kern/kern_rangelock.c projects/diffused_head/sys/kern/kern_sharedpage.c - copied unchanged from r240000, head/sys/kern/kern_sharedpage.c projects/diffused_head/sys/kern/subr_dummy_vdso_tc.c - copied unchanged from r240000, head/sys/kern/subr_dummy_vdso_tc.c projects/diffused_head/sys/mips/beri/ - copied from r240000, head/sys/mips/beri/ projects/diffused_head/sys/mips/conf/AP91 - copied unchanged from r240000, head/sys/mips/conf/AP91 projects/diffused_head/sys/mips/conf/AP91.hints - copied unchanged from r240000, head/sys/mips/conf/AP91.hints projects/diffused_head/sys/mips/conf/AP93 - copied unchanged from r240000, head/sys/mips/conf/AP93 projects/diffused_head/sys/mips/conf/AP93.hints - copied unchanged from r240000, head/sys/mips/conf/AP93.hints projects/diffused_head/sys/mips/conf/AR724X_BASE - copied unchanged from r240000, head/sys/mips/conf/AR724X_BASE projects/diffused_head/sys/mips/conf/AR724X_BASE.hints - copied unchanged from r240000, head/sys/mips/conf/AR724X_BASE.hints projects/diffused_head/sys/mips/conf/BERI_DE4.hints - copied unchanged from r240000, head/sys/mips/conf/BERI_DE4.hints projects/diffused_head/sys/mips/conf/BERI_DE4_MDROOT - copied unchanged from r240000, head/sys/mips/conf/BERI_DE4_MDROOT projects/diffused_head/sys/mips/conf/BERI_DE4_SDROOT - copied unchanged from r240000, head/sys/mips/conf/BERI_DE4_SDROOT projects/diffused_head/sys/mips/conf/BERI_SIM.hints - copied unchanged from r240000, head/sys/mips/conf/BERI_SIM.hints projects/diffused_head/sys/mips/conf/BERI_SIM_MDROOT - copied unchanged from r240000, head/sys/mips/conf/BERI_SIM_MDROOT projects/diffused_head/sys/mips/conf/BERI_TEMPLATE - copied unchanged from r240000, head/sys/mips/conf/BERI_TEMPLATE projects/diffused_head/sys/mips/conf/BERI_TPAD.hints - copied unchanged from r240000, head/sys/mips/conf/BERI_TPAD.hints projects/diffused_head/sys/mips/conf/DIR-825 - copied unchanged from r240000, head/sys/mips/conf/DIR-825 projects/diffused_head/sys/mips/conf/DIR-825.hints - copied unchanged from r240000, head/sys/mips/conf/DIR-825.hints projects/diffused_head/sys/mips/gxemul/mpreg.h - copied unchanged from r240000, head/sys/mips/gxemul/mpreg.h projects/diffused_head/sys/mips/include/sc_machdep.h - copied unchanged from r240000, head/sys/mips/include/sc_machdep.h projects/diffused_head/sys/mips/include/vdso.h - copied unchanged from r240000, head/sys/mips/include/vdso.h projects/diffused_head/sys/mips/mips/sc_machdep.c - copied unchanged from r240000, head/sys/mips/mips/sc_machdep.c projects/diffused_head/sys/modules/acpi/acpi_asus_wmi/ - copied from r240000, head/sys/modules/acpi/acpi_asus_wmi/ projects/diffused_head/sys/modules/cpsw/ - copied from r240000, head/sys/modules/cpsw/ projects/diffused_head/sys/modules/cxgbe/tom/ - copied from r240000, head/sys/modules/cxgbe/tom/ projects/diffused_head/sys/modules/drm2/ - copied from r240000, head/sys/modules/drm2/ projects/diffused_head/sys/modules/dtrace/dtio/ - copied from r240000, head/sys/modules/dtrace/dtio/ projects/diffused_head/sys/modules/filemon/ - copied from r240000, head/sys/modules/filemon/ projects/diffused_head/sys/modules/nand/ - copied from r240000, head/sys/modules/nand/ projects/diffused_head/sys/modules/nandfs/ - copied from r240000, head/sys/modules/nandfs/ projects/diffused_head/sys/modules/nandsim/ - copied from r240000, head/sys/modules/nandsim/ projects/diffused_head/sys/modules/netmap/ - copied from r240000, head/sys/modules/netmap/ projects/diffused_head/sys/modules/toecore/ - copied from r240000, head/sys/modules/toecore/ projects/diffused_head/sys/modules/usb/smsc/ - copied from r240000, head/sys/modules/usb/smsc/ projects/diffused_head/sys/netinet/toecore.c - copied unchanged from r240000, head/sys/netinet/toecore.c projects/diffused_head/sys/netinet/toecore.h - copied unchanged from r240000, head/sys/netinet/toecore.h projects/diffused_head/sys/pc98/include/vdso.h - copied unchanged from r240000, head/sys/pc98/include/vdso.h projects/diffused_head/sys/powerpc/booke/machdep_e500.c - copied unchanged from r240000, head/sys/powerpc/booke/machdep_e500.c projects/diffused_head/sys/powerpc/booke/machdep_ppc4xx.c - copied unchanged from r240000, head/sys/powerpc/booke/machdep_ppc4xx.c projects/diffused_head/sys/powerpc/include/machdep.h - copied unchanged from r240000, head/sys/powerpc/include/machdep.h projects/diffused_head/sys/powerpc/include/vdso.h - copied unchanged from r240000, head/sys/powerpc/include/vdso.h projects/diffused_head/sys/powerpc/mpc85xx/fsl_sdhc.c - copied unchanged from r240000, head/sys/powerpc/mpc85xx/fsl_sdhc.c projects/diffused_head/sys/powerpc/mpc85xx/fsl_sdhc.h - copied unchanged from r240000, head/sys/powerpc/mpc85xx/fsl_sdhc.h projects/diffused_head/sys/powerpc/powermac/nvbl.c - copied unchanged from r240000, head/sys/powerpc/powermac/nvbl.c projects/diffused_head/sys/powerpc/powerpc/openpic_fdt.c - copied unchanged from r240000, head/sys/powerpc/powerpc/openpic_fdt.c projects/diffused_head/sys/powerpc/wii/ - copied from r240000, head/sys/powerpc/wii/ projects/diffused_head/sys/sparc64/include/vdso.h - copied unchanged from r240000, head/sys/sparc64/include/vdso.h projects/diffused_head/sys/sys/rangelock.h - copied unchanged from r240000, head/sys/sys/rangelock.h projects/diffused_head/sys/sys/slicer.h - copied unchanged from r240000, head/sys/sys/slicer.h projects/diffused_head/sys/sys/vdso.h - copied unchanged from r240000, head/sys/sys/vdso.h projects/diffused_head/sys/x86/acpica/acpi_wakeup.c - copied unchanged from r240000, head/sys/x86/acpica/acpi_wakeup.c projects/diffused_head/sys/x86/include/vdso.h - copied unchanged from r240000, head/sys/x86/include/vdso.h projects/diffused_head/tools/build/make_check/check.mk - copied unchanged from r240000, head/tools/build/make_check/check.mk projects/diffused_head/tools/build/options/WITHOUT_ED_CRYPTO - copied unchanged from r240000, head/tools/build/options/WITHOUT_ED_CRYPTO projects/diffused_head/tools/build/options/WITHOUT_LS_COLORS - copied unchanged from r240000, head/tools/build/options/WITHOUT_LS_COLORS projects/diffused_head/tools/build/options/WITHOUT_NAND - copied unchanged from r240000, head/tools/build/options/WITHOUT_NAND projects/diffused_head/tools/build/options/WITHOUT_PKGBOOTSTRAP - copied unchanged from r240000, head/tools/build/options/WITHOUT_PKGBOOTSTRAP projects/diffused_head/tools/build/options/WITH_BSDCONFIG - copied unchanged from r240000, head/tools/build/options/WITH_BSDCONFIG projects/diffused_head/tools/build/options/WITH_GNU_SORT - copied unchanged from r240000, head/tools/build/options/WITH_GNU_SORT projects/diffused_head/tools/build/options/WITH_INSTALL_AS_USER - copied unchanged from r240000, head/tools/build/options/WITH_INSTALL_AS_USER projects/diffused_head/tools/build/options/WITH_NAND - copied unchanged from r240000, head/tools/build/options/WITH_NAND projects/diffused_head/tools/regression/bin/sh/builtins/local1.0 - copied unchanged from r240000, head/tools/regression/bin/sh/builtins/local1.0 projects/diffused_head/tools/regression/bin/sh/expansion/export1.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/export1.0 projects/diffused_head/tools/regression/bin/sh/expansion/export2.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/export2.0 projects/diffused_head/tools/regression/bin/sh/expansion/export3.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/export3.0 projects/diffused_head/tools/regression/bin/sh/expansion/local1.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/local1.0 projects/diffused_head/tools/regression/bin/sh/expansion/local2.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/local2.0 projects/diffused_head/tools/regression/bin/sh/expansion/readonly1.0 - copied unchanged from r240000, head/tools/regression/bin/sh/expansion/readonly1.0 projects/diffused_head/tools/regression/filemon/ - copied from r240000, head/tools/regression/filemon/ projects/diffused_head/tools/regression/lib/libc/gen/test-ftw.c - copied unchanged from r240000, head/tools/regression/lib/libc/gen/test-ftw.c projects/diffused_head/tools/regression/usr.bin/make/syntax/funny-targets/ - copied from r240000, head/tools/regression/usr.bin/make/syntax/funny-targets/ projects/diffused_head/tools/regression/usr.bin/make/test-new.mk - copied unchanged from r240000, head/tools/regression/usr.bin/make/test-new.mk projects/diffused_head/tools/regression/usr.bin/make/variables/modifier_t/ - copied from r240000, head/tools/regression/usr.bin/make/variables/modifier_t/ projects/diffused_head/tools/regression/usr.bin/make/variables/opt_V/ - copied from r240000, head/tools/regression/usr.bin/make/variables/opt_V/ projects/diffused_head/tools/regression/usr.bin/yacc/ - copied from r240000, head/tools/regression/usr.bin/yacc/ projects/diffused_head/tools/regression/usr.sbin/etcupdate/ - copied from r240000, head/tools/regression/usr.sbin/etcupdate/ projects/diffused_head/tools/test/sort/ - copied from r240000, head/tools/test/sort/ projects/diffused_head/tools/test/upsdl/ - copied from r240000, head/tools/test/upsdl/ projects/diffused_head/tools/tools/ath/athaggrstats/ - copied from r240000, head/tools/tools/ath/athaggrstats/ projects/diffused_head/tools/tools/ath/athratestats/ - copied from r240000, head/tools/tools/ath/athratestats/ projects/diffused_head/tools/tools/bootparttest/ - copied from r240000, head/tools/tools/bootparttest/ projects/diffused_head/tools/tools/ifpifa/ - copied from r240000, head/tools/tools/ifpifa/ projects/diffused_head/usr.bin/pamtest/ - copied from r240000, head/usr.bin/pamtest/ projects/diffused_head/usr.bin/sort/ - copied from r240000, head/usr.bin/sort/ projects/diffused_head/usr.sbin/bsdconfig/ - copied from r240000, head/usr.sbin/bsdconfig/ projects/diffused_head/usr.sbin/etcupdate/ - copied from r240000, head/usr.sbin/etcupdate/ projects/diffused_head/usr.sbin/isfctl/ - copied from r240000, head/usr.sbin/isfctl/ projects/diffused_head/usr.sbin/nandsim/ - copied from r240000, head/usr.sbin/nandsim/ projects/diffused_head/usr.sbin/nandtool/ - copied from r240000, head/usr.sbin/nandtool/ projects/diffused_head/usr.sbin/pciconf/err.c - copied unchanged from r240000, head/usr.sbin/pciconf/err.c Replaced: projects/diffused_head/sys/arm/conf/HL201.hints - copied unchanged from r240000, head/sys/arm/conf/HL201.hints Deleted: projects/diffused_head/contrib/dtc/Makefile.convert-dtsv0 projects/diffused_head/contrib/dtc/Makefile.ftdump projects/diffused_head/contrib/dtc/convert-dtsv0-lexer.l projects/diffused_head/contrib/dtc/ftdump.c projects/diffused_head/contrib/libarchive/cpio/test/test_pathmatch.c projects/diffused_head/contrib/libarchive/libarchive_fe/matching.c projects/diffused_head/contrib/libarchive/libarchive_fe/matching.h projects/diffused_head/contrib/libarchive/libarchive_fe/pathmatch.c projects/diffused_head/contrib/libarchive/libarchive_fe/pathmatch.h projects/diffused_head/contrib/libarchive/tar/getdate.c projects/diffused_head/contrib/libarchive/tar/test/test_getdate.c projects/diffused_head/contrib/libarchive/tar/tree.c projects/diffused_head/contrib/libarchive/tar/tree.h projects/diffused_head/contrib/libpcap/filtertest.c projects/diffused_head/contrib/libpcap/findalldevstest.c projects/diffused_head/contrib/libpcap/opentest.c projects/diffused_head/contrib/libpcap/pcap_free_datalinks.3pcap projects/diffused_head/contrib/libpcap/pcap_freealldevs.3pcap projects/diffused_head/contrib/libpcap/selpolltest.c projects/diffused_head/contrib/llvm/include/llvm/Analysis/DIBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/DebugInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ProcessImplicitDefs.h projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsPTX.td projects/diffused_head/contrib/llvm/include/llvm/Support/IRBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/MDBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Support/TypeBuilder.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/FunctionUtils.h projects/diffused_head/contrib/llvm/lib/Analysis/DIBuilder.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DebugInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h projects/diffused_head/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RenderMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTX.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXParamManager.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPTX.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/CC1Options.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.h projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.h projects/diffused_head/contrib/llvm/tools/llvm-ld/ projects/diffused_head/contrib/llvm/tools/llvm-stub/llvm-stub.c projects/diffused_head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/CallingConvEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeEmitterGen.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/DisassemblerEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/EDEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/FastISelEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h projects/diffused_head/contrib/llvm/utils/TableGen/StringMatcher.cpp projects/diffused_head/contrib/llvm/utils/TableGen/StringMatcher.h projects/diffused_head/contrib/llvm/utils/TableGen/SubtargetEmitter.h projects/diffused_head/contrib/tcpdump/missing/addrsize.h projects/diffused_head/contrib/tcpdump/missing/bittypes.h projects/diffused_head/contrib/tcpdump/missing/resolv6.h projects/diffused_head/contrib/tcpdump/missing/resolv_ext.h projects/diffused_head/contrib/tcpdump/tests/ projects/diffused_head/crypto/openssl/apps/demoCA/ projects/diffused_head/crypto/openssl/apps/winrand.c projects/diffused_head/crypto/openssl/bugs/ projects/diffused_head/crypto/openssl/certs/demo/ projects/diffused_head/crypto/openssl/crypto/LPdir_nyi.c projects/diffused_head/crypto/openssl/crypto/LPdir_vms.c projects/diffused_head/crypto/openssl/crypto/LPdir_win.c projects/diffused_head/crypto/openssl/crypto/LPdir_win32.c projects/diffused_head/crypto/openssl/crypto/LPdir_wince.c projects/diffused_head/crypto/openssl/crypto/asn1/a_hdr.c projects/diffused_head/crypto/openssl/crypto/asn1/a_meth.c projects/diffused_head/crypto/openssl/crypto/asn1/p8_key.c projects/diffused_head/crypto/openssl/crypto/bf/bfs.cpp projects/diffused_head/crypto/openssl/crypto/bn/asm/mo-586.pl projects/diffused_head/crypto/openssl/crypto/bn/bn_opt.c projects/diffused_head/crypto/openssl/crypto/cast/casts.cpp projects/diffused_head/crypto/openssl/crypto/des/asm/des686.pl projects/diffused_head/crypto/openssl/crypto/des/des3s.cpp projects/diffused_head/crypto/openssl/crypto/des/des_lib.c projects/diffused_head/crypto/openssl/crypto/des/dess.cpp projects/diffused_head/crypto/openssl/crypto/des/t/ projects/diffused_head/crypto/openssl/crypto/des/times/ projects/diffused_head/crypto/openssl/crypto/dsa/dsa_utl.c projects/diffused_head/crypto/openssl/crypto/dyn_lck.c projects/diffused_head/crypto/openssl/crypto/ec/ec2_smpt.c projects/diffused_head/crypto/openssl/crypto/engine/eng_padlock.c projects/diffused_head/crypto/openssl/crypto/err/err_bio.c projects/diffused_head/crypto/openssl/crypto/err/err_def.c projects/diffused_head/crypto/openssl/crypto/err/err_str.c projects/diffused_head/crypto/openssl/crypto/err/openssl.ec projects/diffused_head/crypto/openssl/crypto/evp/dig_eng.c projects/diffused_head/crypto/openssl/crypto/evp/enc_min.c projects/diffused_head/crypto/openssl/crypto/evp/evp_cnf.c projects/diffused_head/crypto/openssl/crypto/fips_err.c projects/diffused_head/crypto/openssl/crypto/md4/md4s.cpp projects/diffused_head/crypto/openssl/crypto/md5/md5s.cpp projects/diffused_head/crypto/openssl/crypto/perlasm/x86ms.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86unix.pl projects/diffused_head/crypto/openssl/crypto/pqueue/pq_compat.h projects/diffused_head/crypto/openssl/crypto/rand/rand_eng.c projects/diffused_head/crypto/openssl/crypto/rand/rand_nw.c projects/diffused_head/crypto/openssl/crypto/rand/rand_os2.c projects/diffused_head/crypto/openssl/crypto/rand/rand_vms.c projects/diffused_head/crypto/openssl/crypto/rand/rand_win.c projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-ia64.S projects/diffused_head/crypto/openssl/crypto/rc4/rc4_fblk.c projects/diffused_head/crypto/openssl/crypto/rc4/rc4s.cpp projects/diffused_head/crypto/openssl/crypto/rc5/rc5s.cpp projects/diffused_head/crypto/openssl/crypto/ripemd/asm/rips.cpp projects/diffused_head/crypto/openssl/crypto/rsa/rsa_eng.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_x931g.c projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-sse2.pl projects/diffused_head/crypto/openssl/crypto/sha/sha1s.cpp projects/diffused_head/crypto/openssl/crypto/tmdiff.c projects/diffused_head/crypto/openssl/crypto/tmdiff.h projects/diffused_head/crypto/openssl/demos/ projects/diffused_head/crypto/openssl/engines/alpha.opt projects/diffused_head/crypto/openssl/engines/e_4758cca.ec projects/diffused_head/crypto/openssl/engines/e_aep.ec projects/diffused_head/crypto/openssl/engines/e_atalla.ec projects/diffused_head/crypto/openssl/engines/e_capi.ec projects/diffused_head/crypto/openssl/engines/e_chil.ec projects/diffused_head/crypto/openssl/engines/e_cswift.ec projects/diffused_head/crypto/openssl/engines/e_gmp.ec projects/diffused_head/crypto/openssl/engines/e_nuron.ec projects/diffused_head/crypto/openssl/engines/e_sureware.ec projects/diffused_head/crypto/openssl/engines/e_ubsec.ec projects/diffused_head/crypto/openssl/engines/ia64.opt projects/diffused_head/crypto/openssl/engines/vax.opt projects/diffused_head/crypto/openssl/fips/ projects/diffused_head/crypto/openssl/openssl.doxy projects/diffused_head/crypto/openssl/openssl.spec projects/diffused_head/crypto/openssl/test/ projects/diffused_head/crypto/openssl/times/ projects/diffused_head/crypto/openssl/tools/ projects/diffused_head/crypto/openssl/util/arx.pl projects/diffused_head/crypto/openssl/util/fipslink.pl projects/diffused_head/crypto/openssl/util/mksdef.pl projects/diffused_head/etc/auth.conf projects/diffused_head/etc/pam.d/kde projects/diffused_head/gnu/usr.bin/diff/context.c.diff projects/diffused_head/gnu/usr.bin/diff/diff.c.diff projects/diffused_head/lib/clang/include/clang/Driver/CC1Options.inc projects/diffused_head/lib/libc/gen/aux.c projects/diffused_head/lib/libutil/auth.3 projects/diffused_head/lib/libutil/auth.conf.5 projects/diffused_head/lib/libz/example.c projects/diffused_head/lib/libz/minigzip.c projects/diffused_head/secure/lib/libcrypto/man/des_modes.3 projects/diffused_head/secure/lib/libcrypto/opensslconf-amd64.h projects/diffused_head/secure/lib/libcrypto/opensslconf-i386.h projects/diffused_head/secure/usr.bin/openssl/man/config.1 projects/diffused_head/sys/amd64/acpica/acpi_switch.S projects/diffused_head/sys/amd64/acpica/acpi_wakeup.c projects/diffused_head/sys/arm/at91/at91_pio_rm9200.h projects/diffused_head/sys/arm/at91/files.at91sam9 projects/diffused_head/sys/arm/at91/hints.at91rm9200 projects/diffused_head/sys/arm/at91/hints.at91sam9261 projects/diffused_head/sys/arm/at91/uart_cpu_at91rm9200usart.c projects/diffused_head/sys/boot/i386/btx/lib/btxcsu.s projects/diffused_head/sys/boot/i386/cdboot/cdboot.s projects/diffused_head/sys/boot/pc98/btx/lib/btxcsu.s projects/diffused_head/sys/boot/pc98/cdboot/cdboot.s projects/diffused_head/sys/cam/scsi/scsi_ses.c projects/diffused_head/sys/dev/cxgb/cxgb_offload.c projects/diffused_head/sys/dev/cxgb/t3cdev.h projects/diffused_head/sys/dev/cxgb/ulp/toecore/ projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_cpl_socket.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_ddp.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_defs.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_t3_ddp.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tcp.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tcp_offload.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tom_sysctl.c projects/diffused_head/sys/dev/netmap/head.diff projects/diffused_head/sys/i386/acpica/acpi_wakeup.c projects/diffused_head/sys/ia64/conf/SKI projects/diffused_head/sys/ia64/ia64/ssc.c projects/diffused_head/sys/ia64/ia64/sscdisk.c projects/diffused_head/sys/modules/cxgb/toecore/ projects/diffused_head/sys/netinet/toedev.h projects/diffused_head/sys/powerpc/mpc85xx/openpic_fdt.c projects/diffused_head/sys/vm/vm_contig.c projects/diffused_head/usr.bin/clang/llvm-ld/ projects/diffused_head/usr.bin/clang/llvm-stub/ projects/diffused_head/usr.bin/yacc/ACKNOWLEDGEMENTS projects/diffused_head/usr.bin/yacc/NEW_FEATURES projects/diffused_head/usr.bin/yacc/NOTES projects/diffused_head/usr.bin/yacc/README projects/diffused_head/usr.bin/yacc/closure.c projects/diffused_head/usr.bin/yacc/defs.h projects/diffused_head/usr.bin/yacc/error.c projects/diffused_head/usr.bin/yacc/lalr.c projects/diffused_head/usr.bin/yacc/lr0.c projects/diffused_head/usr.bin/yacc/main.c projects/diffused_head/usr.bin/yacc/mkpar.c projects/diffused_head/usr.bin/yacc/output.c projects/diffused_head/usr.bin/yacc/reader.c projects/diffused_head/usr.bin/yacc/skeleton.c projects/diffused_head/usr.bin/yacc/symtab.c projects/diffused_head/usr.bin/yacc/test/ projects/diffused_head/usr.bin/yacc/verbose.c projects/diffused_head/usr.bin/yacc/warshall.c projects/diffused_head/usr.bin/yacc/yacc.1 projects/diffused_head/usr.bin/yacc/yyfix.1 projects/diffused_head/usr.bin/yacc/yyfix.sh Modified: projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/cat/cat.c projects/diffused_head/bin/date/date.c projects/diffused_head/bin/dd/dd.c projects/diffused_head/bin/dd/misc.c projects/diffused_head/bin/ed/Makefile projects/diffused_head/bin/expr/expr.1 projects/diffused_head/bin/expr/expr.y projects/diffused_head/bin/kenv/kenv.1 projects/diffused_head/bin/kenv/kenv.c projects/diffused_head/bin/ls/Makefile projects/diffused_head/bin/mv/mv.1 projects/diffused_head/bin/mv/mv.c projects/diffused_head/bin/ps/keyword.c projects/diffused_head/bin/ps/print.c projects/diffused_head/bin/ps/ps.1 projects/diffused_head/bin/ps/ps.c projects/diffused_head/bin/rcp/rcp.1 projects/diffused_head/bin/rcp/rcp.c projects/diffused_head/bin/rm/rm.c projects/diffused_head/bin/sh/Makefile projects/diffused_head/bin/sh/eval.c projects/diffused_head/bin/sh/exec.c projects/diffused_head/bin/sh/exec.h projects/diffused_head/bin/sh/input.c projects/diffused_head/bin/sh/jobs.c projects/diffused_head/bin/sh/jobs.h projects/diffused_head/bin/sh/miscbltin.c projects/diffused_head/bin/sh/mkbuiltins projects/diffused_head/bin/sh/sh.1 projects/diffused_head/bin/sh/trap.c projects/diffused_head/bin/sh/trap.h projects/diffused_head/bin/stty/extern.h projects/diffused_head/bin/test/test.1 projects/diffused_head/bin/uuidgen/uuidgen.1 projects/diffused_head/cddl/compat/opensolaris/misc/deviceid.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zdb/zdb.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zdb/zdb.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zinject/zinject.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zstreamdump/zstreamdump.1 projects/diffused_head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_aggregate.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_consume.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_errtags.h projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_impl.h projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_open.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_printf.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_string.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_string.h projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dtrace.h projects/diffused_head/cddl/contrib/opensolaris/lib/libnvpair/libnvpair.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_config.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_status.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/diffused_head/cddl/lib/libdtrace/Makefile projects/diffused_head/cddl/lib/libdtrace/psinfo.d projects/diffused_head/cddl/lib/libnvpair/Makefile projects/diffused_head/cddl/lib/libzfs/Makefile projects/diffused_head/cddl/sbin/zpool/Makefile projects/diffused_head/cddl/usr.bin/ctfconvert/ctfconvert.1 projects/diffused_head/cddl/usr.bin/ctfmerge/ctfmerge.1 projects/diffused_head/cddl/usr.bin/ztest/Makefile projects/diffused_head/cddl/usr.sbin/Makefile projects/diffused_head/cddl/usr.sbin/dtruss/dtruss.1 projects/diffused_head/contrib/bind9/CHANGES projects/diffused_head/contrib/bind9/README projects/diffused_head/contrib/bind9/bin/named/builtin.c projects/diffused_head/contrib/bind9/bin/named/query.c projects/diffused_head/contrib/bind9/bin/named/server.c projects/diffused_head/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c projects/diffused_head/contrib/bind9/lib/bind9/api projects/diffused_head/contrib/bind9/lib/bind9/check.c projects/diffused_head/contrib/bind9/lib/dns/api projects/diffused_head/contrib/bind9/lib/dns/dnssec.c projects/diffused_head/contrib/bind9/lib/dns/include/dns/ecdb.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/rpz.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/sdb.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/stats.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/tsec.h projects/diffused_head/contrib/bind9/lib/dns/include/dns/view.h projects/diffused_head/contrib/bind9/lib/dns/rbtdb.c projects/diffused_head/contrib/bind9/lib/dns/rdata.c projects/diffused_head/contrib/bind9/lib/dns/rdataslab.c projects/diffused_head/contrib/bind9/lib/dns/resolver.c projects/diffused_head/contrib/bind9/lib/dns/sdb.c projects/diffused_head/contrib/bind9/lib/dns/tkey.c projects/diffused_head/contrib/bind9/lib/dns/zone.c projects/diffused_head/contrib/bind9/lib/isc/pthreads/mutex.c projects/diffused_head/contrib/bind9/lib/isccfg/api projects/diffused_head/contrib/bind9/lib/isccfg/parser.c projects/diffused_head/contrib/bind9/version projects/diffused_head/contrib/binutils/bfd/config.bfd projects/diffused_head/contrib/binutils/binutils/readelf.c projects/diffused_head/contrib/binutils/config.sub projects/diffused_head/contrib/binutils/gas/config/tc-arm.c projects/diffused_head/contrib/binutils/gas/config/tc-i386.c projects/diffused_head/contrib/binutils/include/elf/dwarf2.h projects/diffused_head/contrib/binutils/ld/emultempl/ppc32elf.em projects/diffused_head/contrib/binutils/opcodes/i386-dis.c projects/diffused_head/contrib/binutils/opcodes/i386-opc.h projects/diffused_head/contrib/binutils/opcodes/i386-opc.tbl projects/diffused_head/contrib/binutils/opcodes/i386-tbl.h projects/diffused_head/contrib/bsnmp/lib/bsnmpclient.3 projects/diffused_head/contrib/bsnmp/lib/bsnmplib.3 projects/diffused_head/contrib/bsnmp/snmp_mibII/mibII_tcp.c projects/diffused_head/contrib/bsnmp/snmp_target/snmp_target.3 projects/diffused_head/contrib/bsnmp/snmp_usm/snmp_usm.3 projects/diffused_head/contrib/bsnmp/snmp_vacm/snmp_vacm.3 projects/diffused_head/contrib/com_err/com_err.3 projects/diffused_head/contrib/compiler-rt/LICENSE.TXT projects/diffused_head/contrib/compiler-rt/lib/absvti2.c projects/diffused_head/contrib/compiler-rt/lib/adddf3.c projects/diffused_head/contrib/compiler-rt/lib/addsf3.c projects/diffused_head/contrib/compiler-rt/lib/addvti3.c projects/diffused_head/contrib/compiler-rt/lib/ashldi3.c projects/diffused_head/contrib/compiler-rt/lib/ashlti3.c projects/diffused_head/contrib/compiler-rt/lib/ashrdi3.c projects/diffused_head/contrib/compiler-rt/lib/ashrti3.c projects/diffused_head/contrib/compiler-rt/lib/assembly.h projects/diffused_head/contrib/compiler-rt/lib/clzti2.c projects/diffused_head/contrib/compiler-rt/lib/cmpti2.c projects/diffused_head/contrib/compiler-rt/lib/ctzti2.c projects/diffused_head/contrib/compiler-rt/lib/divdf3.c projects/diffused_head/contrib/compiler-rt/lib/divmoddi4.c projects/diffused_head/contrib/compiler-rt/lib/divsf3.c projects/diffused_head/contrib/compiler-rt/lib/divsi3.c projects/diffused_head/contrib/compiler-rt/lib/divti3.c projects/diffused_head/contrib/compiler-rt/lib/extendsfdf2.c projects/diffused_head/contrib/compiler-rt/lib/ffsti2.c projects/diffused_head/contrib/compiler-rt/lib/fixdfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixdfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixdfti.c projects/diffused_head/contrib/compiler-rt/lib/fixsfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixsfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixsfti.c projects/diffused_head/contrib/compiler-rt/lib/fixunsdfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixunsdfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixunsdfti.c projects/diffused_head/contrib/compiler-rt/lib/fixunssfdi.c projects/diffused_head/contrib/compiler-rt/lib/fixunssfsi.c projects/diffused_head/contrib/compiler-rt/lib/fixunssfti.c projects/diffused_head/contrib/compiler-rt/lib/fixunsxfti.c projects/diffused_head/contrib/compiler-rt/lib/fixxfti.c projects/diffused_head/contrib/compiler-rt/lib/floatdidf.c projects/diffused_head/contrib/compiler-rt/lib/floatdisf.c projects/diffused_head/contrib/compiler-rt/lib/floatsidf.c projects/diffused_head/contrib/compiler-rt/lib/floatsisf.c projects/diffused_head/contrib/compiler-rt/lib/floattidf.c projects/diffused_head/contrib/compiler-rt/lib/floattisf.c projects/diffused_head/contrib/compiler-rt/lib/floattixf.c projects/diffused_head/contrib/compiler-rt/lib/floatundidf.c projects/diffused_head/contrib/compiler-rt/lib/floatundisf.c projects/diffused_head/contrib/compiler-rt/lib/floatunsidf.c projects/diffused_head/contrib/compiler-rt/lib/floatunsisf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntidf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntisf.c projects/diffused_head/contrib/compiler-rt/lib/floatuntixf.c projects/diffused_head/contrib/compiler-rt/lib/fp_lib.h projects/diffused_head/contrib/compiler-rt/lib/int_endianness.h projects/diffused_head/contrib/compiler-rt/lib/int_util.c projects/diffused_head/contrib/compiler-rt/lib/int_util.h projects/diffused_head/contrib/compiler-rt/lib/lshrdi3.c projects/diffused_head/contrib/compiler-rt/lib/lshrti3.c projects/diffused_head/contrib/compiler-rt/lib/modti3.c projects/diffused_head/contrib/compiler-rt/lib/muldf3.c projects/diffused_head/contrib/compiler-rt/lib/muldi3.c projects/diffused_head/contrib/compiler-rt/lib/muloti4.c projects/diffused_head/contrib/compiler-rt/lib/mulsf3.c projects/diffused_head/contrib/compiler-rt/lib/multi3.c projects/diffused_head/contrib/compiler-rt/lib/mulvti3.c projects/diffused_head/contrib/compiler-rt/lib/negdf2.c projects/diffused_head/contrib/compiler-rt/lib/negsf2.c projects/diffused_head/contrib/compiler-rt/lib/negti2.c projects/diffused_head/contrib/compiler-rt/lib/negvti2.c projects/diffused_head/contrib/compiler-rt/lib/parityti2.c projects/diffused_head/contrib/compiler-rt/lib/popcountti2.c projects/diffused_head/contrib/compiler-rt/lib/powitf2.c projects/diffused_head/contrib/compiler-rt/lib/sparc64/divmod.m4 projects/diffused_head/contrib/compiler-rt/lib/sparc64/divsi3.S projects/diffused_head/contrib/compiler-rt/lib/sparc64/modsi3.S projects/diffused_head/contrib/compiler-rt/lib/subdf3.c projects/diffused_head/contrib/compiler-rt/lib/subsf3.c projects/diffused_head/contrib/compiler-rt/lib/subvti3.c projects/diffused_head/contrib/compiler-rt/lib/truncdfsf2.c projects/diffused_head/contrib/compiler-rt/lib/ucmpti2.c projects/diffused_head/contrib/compiler-rt/lib/udivmoddi4.c projects/diffused_head/contrib/compiler-rt/lib/udivmodti4.c projects/diffused_head/contrib/compiler-rt/lib/udivsi3.c projects/diffused_head/contrib/compiler-rt/lib/udivti3.c projects/diffused_head/contrib/compiler-rt/lib/umodti3.c projects/diffused_head/contrib/diff/src/context.c projects/diffused_head/contrib/diff/src/diff.c projects/diffused_head/contrib/dtc/Documentation/dts-format.txt projects/diffused_head/contrib/dtc/Documentation/manual.txt projects/diffused_head/contrib/dtc/Makefile projects/diffused_head/contrib/dtc/checks.c projects/diffused_head/contrib/dtc/data.c projects/diffused_head/contrib/dtc/dtc-lexer.l projects/diffused_head/contrib/dtc/dtc-parser.y projects/diffused_head/contrib/dtc/dtc.c projects/diffused_head/contrib/dtc/dtc.h projects/diffused_head/contrib/dtc/flattree.c projects/diffused_head/contrib/dtc/fstree.c projects/diffused_head/contrib/dtc/libfdt/Makefile.libfdt projects/diffused_head/contrib/dtc/libfdt/fdt.c projects/diffused_head/contrib/dtc/libfdt/fdt_ro.c projects/diffused_head/contrib/dtc/libfdt/fdt_rw.c projects/diffused_head/contrib/dtc/libfdt/libfdt.h projects/diffused_head/contrib/dtc/libfdt/libfdt_env.h projects/diffused_head/contrib/dtc/libfdt/libfdt_internal.h projects/diffused_head/contrib/dtc/livetree.c projects/diffused_head/contrib/dtc/srcpos.c projects/diffused_head/contrib/dtc/srcpos.h projects/diffused_head/contrib/dtc/treesource.c projects/diffused_head/contrib/dtc/util.c projects/diffused_head/contrib/dtc/util.h projects/diffused_head/contrib/file/apprentice.c projects/diffused_head/contrib/gcc/ChangeLog.gcc43 projects/diffused_head/contrib/gcc/config/arm/freebsd.h projects/diffused_head/contrib/gcc/config/i386/freebsd.h projects/diffused_head/contrib/gcc/config/i386/freebsd64.h projects/diffused_head/contrib/gcc/config/ia64/freebsd.h projects/diffused_head/contrib/gcc/config/mips/freebsd.h projects/diffused_head/contrib/gcc/config/rs6000/freebsd.h projects/diffused_head/contrib/gcc/config/rs6000/rs6000.md projects/diffused_head/contrib/gcc/config/sparc/freebsd.h projects/diffused_head/contrib/gcc/config/sparc/sparc.md projects/diffused_head/contrib/gcc/cse.c projects/diffused_head/contrib/gcc/expr.c projects/diffused_head/contrib/gcc/fold-const.c projects/diffused_head/contrib/gcc/gimplify.c projects/diffused_head/contrib/gcc/ipa-pure-const.c projects/diffused_head/contrib/gcc/ipa-utils.c projects/diffused_head/contrib/gcc/rtl.h projects/diffused_head/contrib/gcc/tree-ssa-ccp.c projects/diffused_head/contrib/gcc/tree-ssa-pre.c projects/diffused_head/contrib/gcc/var-tracking.c projects/diffused_head/contrib/gcc/varasm.c projects/diffused_head/contrib/gdb/gdb/dwarf2read.c projects/diffused_head/contrib/groff/tmac/doc-syms projects/diffused_head/contrib/groff/tmac/doc.tmac projects/diffused_head/contrib/groff/tmac/groff_mdoc.man projects/diffused_head/contrib/jemalloc/ChangeLog projects/diffused_head/contrib/jemalloc/FREEBSD-Xlist projects/diffused_head/contrib/jemalloc/FREEBSD-diffs projects/diffused_head/contrib/jemalloc/VERSION projects/diffused_head/contrib/jemalloc/doc/jemalloc.3 projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/arena.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/atomic.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/ctl.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/mutex.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/prof.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/tcache.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/tsd.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/util.h projects/diffused_head/contrib/jemalloc/include/jemalloc/jemalloc.h projects/diffused_head/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h projects/diffused_head/contrib/jemalloc/include/jemalloc/jemalloc_defs.h projects/diffused_head/contrib/jemalloc/src/arena.c projects/diffused_head/contrib/jemalloc/src/chunk.c projects/diffused_head/contrib/jemalloc/src/chunk_mmap.c projects/diffused_head/contrib/jemalloc/src/ctl.c projects/diffused_head/contrib/jemalloc/src/huge.c projects/diffused_head/contrib/jemalloc/src/jemalloc.c projects/diffused_head/contrib/jemalloc/src/mutex.c projects/diffused_head/contrib/jemalloc/src/prof.c projects/diffused_head/contrib/jemalloc/src/quarantine.c projects/diffused_head/contrib/jemalloc/src/stats.c projects/diffused_head/contrib/jemalloc/src/tcache.c projects/diffused_head/contrib/jemalloc/src/tsd.c projects/diffused_head/contrib/jemalloc/src/util.c projects/diffused_head/contrib/less/LICENSE projects/diffused_head/contrib/less/Makefile.aut projects/diffused_head/contrib/less/NEWS projects/diffused_head/contrib/less/README projects/diffused_head/contrib/less/brac.c projects/diffused_head/contrib/less/ch.c projects/diffused_head/contrib/less/charset.c projects/diffused_head/contrib/less/charset.h projects/diffused_head/contrib/less/cmd.h projects/diffused_head/contrib/less/cmdbuf.c projects/diffused_head/contrib/less/command.c projects/diffused_head/contrib/less/configure projects/diffused_head/contrib/less/configure.ac projects/diffused_head/contrib/less/cvt.c projects/diffused_head/contrib/less/decode.c projects/diffused_head/contrib/less/defines.ds projects/diffused_head/contrib/less/defines.h.in projects/diffused_head/contrib/less/defines.o2 projects/diffused_head/contrib/less/defines.o9 projects/diffused_head/contrib/less/defines.wn projects/diffused_head/contrib/less/edit.c projects/diffused_head/contrib/less/filename.c projects/diffused_head/contrib/less/forwback.c projects/diffused_head/contrib/less/funcs.h projects/diffused_head/contrib/less/help.c projects/diffused_head/contrib/less/ifile.c projects/diffused_head/contrib/less/input.c projects/diffused_head/contrib/less/jump.c projects/diffused_head/contrib/less/less.h projects/diffused_head/contrib/less/less.hlp projects/diffused_head/contrib/less/less.man projects/diffused_head/contrib/less/less.nro projects/diffused_head/contrib/less/lessecho.c projects/diffused_head/contrib/less/lessecho.man projects/diffused_head/contrib/less/lessecho.nro projects/diffused_head/contrib/less/lesskey.c projects/diffused_head/contrib/less/lesskey.h projects/diffused_head/contrib/less/lesskey.man projects/diffused_head/contrib/less/lesskey.nro projects/diffused_head/contrib/less/lglob.h projects/diffused_head/contrib/less/line.c projects/diffused_head/contrib/less/linenum.c projects/diffused_head/contrib/less/lsystem.c projects/diffused_head/contrib/less/main.c projects/diffused_head/contrib/less/mark.c projects/diffused_head/contrib/less/mkhelp.c projects/diffused_head/contrib/less/optfunc.c projects/diffused_head/contrib/less/option.c projects/diffused_head/contrib/less/option.h projects/diffused_head/contrib/less/opttbl.c projects/diffused_head/contrib/less/os.c projects/diffused_head/contrib/less/output.c projects/diffused_head/contrib/less/pattern.c projects/diffused_head/contrib/less/pattern.h projects/diffused_head/contrib/less/pckeys.h projects/diffused_head/contrib/less/position.c projects/diffused_head/contrib/less/position.h projects/diffused_head/contrib/less/prompt.c projects/diffused_head/contrib/less/screen.c projects/diffused_head/contrib/less/scrsize.c projects/diffused_head/contrib/less/search.c projects/diffused_head/contrib/less/signal.c projects/diffused_head/contrib/less/tags.c projects/diffused_head/contrib/less/ttyin.c projects/diffused_head/contrib/less/version.c projects/diffused_head/contrib/libarchive/FREEBSD-Xlist (contents, props changed) projects/diffused_head/contrib/libarchive/FREEBSD-upgrade projects/diffused_head/contrib/libarchive/NEWS projects/diffused_head/contrib/libarchive/README projects/diffused_head/contrib/libarchive/cpio/bsdcpio.1 projects/diffused_head/contrib/libarchive/cpio/cmdline.c projects/diffused_head/contrib/libarchive/cpio/cpio.c projects/diffused_head/contrib/libarchive/cpio/cpio.h projects/diffused_head/contrib/libarchive/cpio/test/main.c projects/diffused_head/contrib/libarchive/cpio/test/test.h projects/diffused_head/contrib/libarchive/libarchive/archive.h projects/diffused_head/contrib/libarchive/libarchive/archive_acl.c projects/diffused_head/contrib/libarchive/libarchive/archive_check_magic.c projects/diffused_head/contrib/libarchive/libarchive/archive_endian.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry.h projects/diffused_head/contrib/libarchive/libarchive/archive_entry_acl.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_link_resolver.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry_linkify.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_paths.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_perms.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_stat.3 projects/diffused_head/contrib/libarchive/libarchive/archive_entry_stat.c projects/diffused_head/contrib/libarchive/libarchive/archive_entry_time.3 projects/diffused_head/contrib/libarchive/libarchive/archive_ppmd7.c projects/diffused_head/contrib/libarchive/libarchive/archive_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_data.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_entry_from_file.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_posix.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_disk_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_extract.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_filter.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_format.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_free.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_header.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_new.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_open.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_fd.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_read_set_options.3 projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_filter_rpm.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_cab.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_cpio.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_iso9660.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_lha.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_rar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_tar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/archive_read_support_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_string.c projects/diffused_head/contrib/libarchive/libarchive/archive_string.h projects/diffused_head/contrib/libarchive/libarchive/archive_string_composition.h projects/diffused_head/contrib/libarchive/libarchive/archive_string_sprintf.c projects/diffused_head/contrib/libarchive/libarchive/archive_util.3 projects/diffused_head/contrib/libarchive/libarchive/archive_util.c projects/diffused_head/contrib/libarchive/libarchive/archive_write.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_bzip2.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_compress.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_gzip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_program.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_add_filter_xz.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_blocksize.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_data.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_posix.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_write_disk_set_standard_lookup.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_filter.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_finish_entry.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_format.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_free.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_header.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_new.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_open.3 projects/diffused_head/contrib/libarchive/libarchive/archive_write_open_filename.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_private.h projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_ar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_cpio.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_cpio_newc.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_gnutar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_iso9660.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_mtree.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_pax.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_ustar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_xar.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_format_zip.c projects/diffused_head/contrib/libarchive/libarchive/archive_write_set_options.3 projects/diffused_head/contrib/libarchive/libarchive/cpio.5 projects/diffused_head/contrib/libarchive/libarchive/libarchive-formats.5 projects/diffused_head/contrib/libarchive/libarchive/libarchive.3 projects/diffused_head/contrib/libarchive/libarchive/libarchive_changes.3 projects/diffused_head/contrib/libarchive/libarchive/libarchive_internals.3 projects/diffused_head/contrib/libarchive/libarchive/tar.5 projects/diffused_head/contrib/libarchive/libarchive/test/main.c projects/diffused_head/contrib/libarchive/libarchive/test/read_open_memory.c projects/diffused_head/contrib/libarchive/libarchive/test/test.h projects/diffused_head/contrib/libarchive/libarchive/test/test_archive_string_conversion.c projects/diffused_head/contrib/libarchive/libarchive/test/test_compat_zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_disk_directory_traversals.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_7zip.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cab.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_rar_unicode.rar.uu projects/diffused_head/contrib/libarchive/libarchive/test/test_read_format_tar_filename.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_pax_truncated.c projects/diffused_head/contrib/libarchive/libarchive/test/test_read_position.c projects/diffused_head/contrib/libarchive/libarchive/test/test_sparse_basic.c projects/diffused_head/contrib/libarchive/libarchive/test/test_write_format_zip.c projects/diffused_head/contrib/libarchive/libarchive_fe/err.c projects/diffused_head/contrib/libarchive/libarchive_fe/err.h projects/diffused_head/contrib/libarchive/tar/bsdtar.1 projects/diffused_head/contrib/libarchive/tar/bsdtar.c projects/diffused_head/contrib/libarchive/tar/bsdtar.h projects/diffused_head/contrib/libarchive/tar/read.c projects/diffused_head/contrib/libarchive/tar/test/main.c projects/diffused_head/contrib/libarchive/tar/test/test.h projects/diffused_head/contrib/libarchive/tar/test/test_basic.c projects/diffused_head/contrib/libarchive/tar/write.c projects/diffused_head/contrib/libc++/include/__bit_reference projects/diffused_head/contrib/libpcap/CHANGES projects/diffused_head/contrib/libpcap/CREDITS projects/diffused_head/contrib/libpcap/Makefile.in projects/diffused_head/contrib/libpcap/README projects/diffused_head/contrib/libpcap/VERSION projects/diffused_head/contrib/libpcap/bpf/net/bpf_filter.c projects/diffused_head/contrib/libpcap/config.h.in projects/diffused_head/contrib/libpcap/configure projects/diffused_head/contrib/libpcap/configure.in projects/diffused_head/contrib/libpcap/ethertype.h projects/diffused_head/contrib/libpcap/fad-getad.c projects/diffused_head/contrib/libpcap/gencode.c projects/diffused_head/contrib/libpcap/gencode.h projects/diffused_head/contrib/libpcap/grammar.y projects/diffused_head/contrib/libpcap/inet.c projects/diffused_head/contrib/libpcap/packaging/pcap.spec.in projects/diffused_head/contrib/libpcap/pcap-bpf.c projects/diffused_head/contrib/libpcap/pcap-bt-linux.c projects/diffused_head/contrib/libpcap/pcap-common.c projects/diffused_head/contrib/libpcap/pcap-config.in projects/diffused_head/contrib/libpcap/pcap-dag.c projects/diffused_head/contrib/libpcap/pcap-dlpi.c projects/diffused_head/contrib/libpcap/pcap-filter.manmisc projects/diffused_head/contrib/libpcap/pcap-filter.manmisc.in projects/diffused_head/contrib/libpcap/pcap-int.h projects/diffused_head/contrib/libpcap/pcap-libdlpi.c projects/diffused_head/contrib/libpcap/pcap-linktype.manmisc projects/diffused_head/contrib/libpcap/pcap-linktype.manmisc.in projects/diffused_head/contrib/libpcap/pcap-linux.c projects/diffused_head/contrib/libpcap/pcap-savefile.manfile projects/diffused_head/contrib/libpcap/pcap-stdinc.h projects/diffused_head/contrib/libpcap/pcap-usb-linux.c projects/diffused_head/contrib/libpcap/pcap-win32.c projects/diffused_head/contrib/libpcap/pcap.3pcap projects/diffused_head/contrib/libpcap/pcap.3pcap.in projects/diffused_head/contrib/libpcap/pcap.c projects/diffused_head/contrib/libpcap/pcap/bpf.h projects/diffused_head/contrib/libpcap/pcap/pcap.h projects/diffused_head/contrib/libpcap/pcap_activate.3pcap projects/diffused_head/contrib/libpcap/pcap_can_set_rfmon.3pcap projects/diffused_head/contrib/libpcap/pcap_compile.3pcap projects/diffused_head/contrib/libpcap/pcap_compile.3pcap.in projects/diffused_head/contrib/libpcap/pcap_datalink.3pcap projects/diffused_head/contrib/libpcap/pcap_datalink.3pcap.in projects/diffused_head/contrib/libpcap/pcap_datalink_name_to_val.3pcap projects/diffused_head/contrib/libpcap/pcap_datalink_val_to_name.3pcap projects/diffused_head/contrib/libpcap/pcap_dump_open.3pcap projects/diffused_head/contrib/libpcap/pcap_fileno.3pcap projects/diffused_head/contrib/libpcap/pcap_findalldevs.3pcap projects/diffused_head/contrib/libpcap/pcap_get_selectable_fd.3pcap projects/diffused_head/contrib/libpcap/pcap_list_datalinks.3pcap projects/diffused_head/contrib/libpcap/pcap_list_datalinks.3pcap.in projects/diffused_head/contrib/libpcap/pcap_loop.3pcap projects/diffused_head/contrib/libpcap/pcap_major_version.3pcap projects/diffused_head/contrib/libpcap/pcap_next_ex.3pcap projects/diffused_head/contrib/libpcap/pcap_open_dead.3pcap projects/diffused_head/contrib/libpcap/pcap_open_live.3pcap projects/diffused_head/contrib/libpcap/pcap_open_offline.3pcap projects/diffused_head/contrib/libpcap/pcap_set_datalink.3pcap projects/diffused_head/contrib/libpcap/savefile.c projects/diffused_head/contrib/libpcap/scanner.l projects/diffused_head/contrib/libpcap/sf-pcap-ng.c projects/diffused_head/contrib/libpcap/sf-pcap.c projects/diffused_head/contrib/libstdc++/include/bits/locale_facets.tcc projects/diffused_head/contrib/libstdc++/include/bits/stl_bvector.h projects/diffused_head/contrib/libstdc++/include/bits/stl_deque.h projects/diffused_head/contrib/libstdc++/include/bits/stl_list.h projects/diffused_head/contrib/libstdc++/include/bits/stl_map.h projects/diffused_head/contrib/libstdc++/include/bits/stl_multimap.h projects/diffused_head/contrib/libstdc++/include/bits/stl_multiset.h projects/diffused_head/contrib/libstdc++/include/bits/stl_set.h projects/diffused_head/contrib/libstdc++/include/bits/stl_tree.h projects/diffused_head/contrib/libstdc++/include/bits/stl_vector.h projects/diffused_head/contrib/llvm/include/llvm-c/Core.h projects/diffused_head/contrib/llvm/include/llvm-c/Disassembler.h projects/diffused_head/contrib/llvm/include/llvm-c/Target.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APFloat.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APInt.h projects/diffused_head/contrib/llvm/include/llvm/ADT/APSInt.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/diffused_head/contrib/llvm/include/llvm/ADT/BitVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DenseMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h projects/diffused_head/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Hashing.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/IndexedMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PointerUnion.h projects/diffused_head/contrib/llvm/include/llvm/ADT/PostOrderIterator.h projects/diffused_head/contrib/llvm/include/llvm/ADT/STLExtras.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallString.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SmallVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/SparseSet.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringRef.h projects/diffused_head/contrib/llvm/include/llvm/ADT/StringSwitch.h projects/diffused_head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/diffused_head/contrib/llvm/include/llvm/ADT/Triple.h projects/diffused_head/contrib/llvm/include/llvm/ADT/ValueMap.h projects/diffused_head/contrib/llvm/include/llvm/ADT/VariadicFunction.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/Dominators.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/LoopIterator.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ProfileInfoLoader.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/diffused_head/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/diffused_head/contrib/llvm/include/llvm/Attributes.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/Archive.h projects/diffused_head/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/GCStrategy.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/Passes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/diffused_head/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/diffused_head/contrib/llvm/include/llvm/Constant.h projects/diffused_head/contrib/llvm/include/llvm/Constants.h projects/diffused_head/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/JIT.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h projects/diffused_head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/diffused_head/contrib/llvm/include/llvm/Function.h projects/diffused_head/contrib/llvm/include/llvm/GlobalValue.h projects/diffused_head/contrib/llvm/include/llvm/GlobalVariable.h projects/diffused_head/contrib/llvm/include/llvm/InitializePasses.h projects/diffused_head/contrib/llvm/include/llvm/Instruction.h projects/diffused_head/contrib/llvm/include/llvm/Instructions.h projects/diffused_head/contrib/llvm/include/llvm/Intrinsics.h projects/diffused_head/contrib/llvm/include/llvm/Intrinsics.td projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsHexagon.td projects/diffused_head/contrib/llvm/include/llvm/IntrinsicsX86.td projects/diffused_head/contrib/llvm/include/llvm/LinkAllPasses.h projects/diffused_head/contrib/llvm/include/llvm/MC/EDInstInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCAssembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCContext.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDirectives.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCExpr.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCInstrItineraries.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCStreamer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h projects/diffused_head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/diffused_head/contrib/llvm/include/llvm/MC/MachineLocation.h projects/diffused_head/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/diffused_head/contrib/llvm/include/llvm/Metadata.h projects/diffused_head/contrib/llvm/include/llvm/Module.h projects/diffused_head/contrib/llvm/include/llvm/Object/Binary.h projects/diffused_head/contrib/llvm/include/llvm/Object/COFF.h projects/diffused_head/contrib/llvm/include/llvm/Object/ELF.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachOFormat.h projects/diffused_head/contrib/llvm/include/llvm/Object/MachOObject.h projects/diffused_head/contrib/llvm/include/llvm/Object/ObjectFile.h projects/diffused_head/contrib/llvm/include/llvm/PassManagers.h projects/diffused_head/contrib/llvm/include/llvm/Support/AlignOf.h projects/diffused_head/contrib/llvm/include/llvm/Support/COFF.h projects/diffused_head/contrib/llvm/include/llvm/Support/CallSite.h projects/diffused_head/contrib/llvm/include/llvm/Support/CommandLine.h projects/diffused_head/contrib/llvm/include/llvm/Support/Compiler.h projects/diffused_head/contrib/llvm/include/llvm/Support/ConstantRange.h projects/diffused_head/contrib/llvm/include/llvm/Support/DataTypes.h.in projects/diffused_head/contrib/llvm/include/llvm/Support/Debug.h projects/diffused_head/contrib/llvm/include/llvm/Support/DebugLoc.h projects/diffused_head/contrib/llvm/include/llvm/Support/ELF.h projects/diffused_head/contrib/llvm/include/llvm/Support/Endian.h projects/diffused_head/contrib/llvm/include/llvm/Support/FileSystem.h projects/diffused_head/contrib/llvm/include/llvm/Support/GCOV.h projects/diffused_head/contrib/llvm/include/llvm/Support/GraphWriter.h projects/diffused_head/contrib/llvm/include/llvm/Support/InstVisitor.h projects/diffused_head/contrib/llvm/include/llvm/Support/MachO.h projects/diffused_head/contrib/llvm/include/llvm/Support/MathExtras.h projects/diffused_head/contrib/llvm/include/llvm/Support/NoFolder.h projects/diffused_head/contrib/llvm/include/llvm/Support/PathV2.h projects/diffused_head/contrib/llvm/include/llvm/Support/Process.h projects/diffused_head/contrib/llvm/include/llvm/Support/SMLoc.h projects/diffused_head/contrib/llvm/include/llvm/Support/SourceMgr.h projects/diffused_head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/diffused_head/contrib/llvm/include/llvm/Support/ThreadLocal.h projects/diffused_head/contrib/llvm/include/llvm/Support/ValueHandle.h projects/diffused_head/contrib/llvm/include/llvm/Support/YAMLParser.h projects/diffused_head/contrib/llvm/include/llvm/Support/raw_ostream.h projects/diffused_head/contrib/llvm/include/llvm/Support/type_traits.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/Record.h projects/diffused_head/contrib/llvm/include/llvm/TableGen/TableGenBackend.h projects/diffused_head/contrib/llvm/include/llvm/Target/Target.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetData.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetLowering.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetMachine.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetOptions.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSchedule.td projects/diffused_head/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/diffused_head/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Scalar.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h projects/diffused_head/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/diffused_head/contrib/llvm/include/llvm/User.h projects/diffused_head/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/diffused_head/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/diffused_head/contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/diffused_head/contrib/llvm/lib/Analysis/IVUsers.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/diffused_head/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/LoopPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/diffused_head/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/PathNumbering.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/diffused_head/contrib/llvm/lib/Analysis/RegionPass.cpp projects/diffused_head/contrib/llvm/lib/Analysis/RegionPrinter.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/diffused_head/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/diffused_head/contrib/llvm/lib/Archive/ArchiveReader.cpp projects/diffused_head/contrib/llvm/lib/Archive/ArchiveWriter.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.cpp projects/diffused_head/contrib/llvm/lib/AsmParser/LLParser.h projects/diffused_head/contrib/llvm/lib/AsmParser/LLToken.h projects/diffused_head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/diffused_head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AllocationOrder.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Analysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/diffused_head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/diffused_head/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h projects/diffused_head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/diffused_head/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h projects/diffused_head/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/Passes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBase.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/diffused_head/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SpillPlacement.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/VirtRegMap.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/diffused_head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/diffused_head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/diffused_head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/diffused_head/contrib/llvm/lib/Linker/LinkModules.cpp projects/diffused_head/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCAssembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCContext.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp projects/diffused_head/contrib/llvm/lib/MC/MCDwarf.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCExpr.cpp projects/diffused_head/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/diffused_head/contrib/llvm/lib/MC/MCPureStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCSectionCOFF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCSectionELF.cpp projects/diffused_head/contrib/llvm/lib/MC/MCStreamer.cpp projects/diffused_head/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/diffused_head/contrib/llvm/lib/MC/MCSymbol.cpp projects/diffused_head/contrib/llvm/lib/MC/MCWin64EH.cpp projects/diffused_head/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/diffused_head/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/diffused_head/contrib/llvm/lib/Object/Archive.cpp projects/diffused_head/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObject.cpp projects/diffused_head/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Support/APFloat.cpp projects/diffused_head/contrib/llvm/lib/Support/APInt.cpp projects/diffused_head/contrib/llvm/lib/Support/CommandLine.cpp projects/diffused_head/contrib/llvm/lib/Support/ConstantRange.cpp projects/diffused_head/contrib/llvm/lib/Support/CrashRecoveryContext.cpp projects/diffused_head/contrib/llvm/lib/Support/Debug.cpp projects/diffused_head/contrib/llvm/lib/Support/Errno.cpp projects/diffused_head/contrib/llvm/lib/Support/GraphWriter.cpp projects/diffused_head/contrib/llvm/lib/Support/Host.cpp projects/diffused_head/contrib/llvm/lib/Support/Memory.cpp projects/diffused_head/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/diffused_head/contrib/llvm/lib/Support/Mutex.cpp projects/diffused_head/contrib/llvm/lib/Support/Path.cpp projects/diffused_head/contrib/llvm/lib/Support/PathV2.cpp projects/diffused_head/contrib/llvm/lib/Support/SourceMgr.cpp projects/diffused_head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/diffused_head/contrib/llvm/lib/Support/StringMap.cpp projects/diffused_head/contrib/llvm/lib/Support/StringRef.cpp projects/diffused_head/contrib/llvm/lib/Support/TargetRegistry.cpp projects/diffused_head/contrib/llvm/lib/Support/ThreadLocal.cpp projects/diffused_head/contrib/llvm/lib/Support/Triple.cpp projects/diffused_head/contrib/llvm/lib/Support/Unix/Path.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Signals.inc projects/diffused_head/contrib/llvm/lib/Support/Unix/Unix.h projects/diffused_head/contrib/llvm/lib/Support/Windows/Path.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/PathV2.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/Process.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/RWMutex.inc projects/diffused_head/contrib/llvm/lib/Support/Windows/ThreadLocal.inc projects/diffused_head/contrib/llvm/lib/Support/YAMLParser.cpp projects/diffused_head/contrib/llvm/lib/Support/raw_ostream.cpp projects/diffused_head/contrib/llvm/lib/TableGen/Main.cpp projects/diffused_head/contrib/llvm/lib/TableGen/Record.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TGParser.cpp projects/diffused_head/contrib/llvm/lib/TableGen/TGParser.h projects/diffused_head/contrib/llvm/lib/TableGen/TableGenBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARM.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSchedule.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/Hexagon.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/Hexagon.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonImmediates.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlaze.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.h projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips.td projects/diffused_head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsCondMov.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPC.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/diffused_head/contrib/llvm/lib/Target/TargetData.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetInstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/diffused_head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/diffused_head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrBuilder.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFPStack.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrVMX.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86JITInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86MCInstLower.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86Relocations.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86Schedule.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/diffused_head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp projects/diffused_head/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/diffused_head/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/diffused_head/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Attributes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Constants.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Core.cpp projects/diffused_head/contrib/llvm/lib/VMCore/DebugLoc.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Dominators.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Function.cpp projects/diffused_head/contrib/llvm/lib/VMCore/GCOV.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Globals.cpp projects/diffused_head/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instruction.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Instructions.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Metadata.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Module.cpp projects/diffused_head/contrib/llvm/lib/VMCore/PassManager.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Type.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Value.cpp projects/diffused_head/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/diffused_head/contrib/llvm/lib/VMCore/Verifier.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/diffused_head/contrib/llvm/tools/bugpoint/ToolRunner.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang-c/Index.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ABI.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OpenCL.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Version.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Arg.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Option.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Types.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Designator.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Sema/Weak.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/diffused_head/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/diffused_head/contrib/llvm/tools/clang/lib/AST/APValue.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CXXABI.h projects/diffused_head/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Mangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Edit/Commit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/float.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/stddef.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Headers/x86intrin.h projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp projects/diffused_head/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/diffused_head/contrib/llvm/tools/llc/llc.cpp projects/diffused_head/contrib/llvm/tools/lli/lli.cpp projects/diffused_head/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DiffConsumer.h projects/diffused_head/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp projects/diffused_head/contrib/llvm/tools/llvm-diff/DifferenceEngine.h projects/diffused_head/contrib/llvm/tools/llvm-diff/llvm-diff.cpp projects/diffused_head/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/diffused_head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/diffused_head/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/diffused_head/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/diffused_head/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/diffused_head/contrib/llvm/tools/llvm-prof/llvm-prof.cpp projects/diffused_head/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp projects/diffused_head/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/diffused_head/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/diffused_head/contrib/llvm/tools/macho-dump/macho-dump.cpp projects/diffused_head/contrib/llvm/tools/opt/opt.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/diffused_head/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/diffused_head/contrib/llvm/utils/TableGen/SetTheory.cpp projects/diffused_head/contrib/llvm/utils/TableGen/StringToOffsetTable.h projects/diffused_head/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/diffused_head/contrib/llvm/utils/TableGen/TableGen.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerShared.h projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86DisassemblerTables.h projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/diffused_head/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/diffused_head/contrib/ncurses/man/curs_threads.3x projects/diffused_head/contrib/netcat/FREEBSD-vendor projects/diffused_head/contrib/netcat/nc.1 projects/diffused_head/contrib/netcat/netcat.c projects/diffused_head/contrib/openpam/CREDITS projects/diffused_head/contrib/openpam/HISTORY projects/diffused_head/contrib/openpam/LICENSE projects/diffused_head/contrib/openpam/Makefile.am projects/diffused_head/contrib/openpam/Makefile.in projects/diffused_head/contrib/openpam/RELNOTES projects/diffused_head/contrib/openpam/aclocal.m4 projects/diffused_head/contrib/openpam/bin/Makefile.am projects/diffused_head/contrib/openpam/bin/Makefile.in projects/diffused_head/contrib/openpam/bin/pamtest/pamtest.1 projects/diffused_head/contrib/openpam/bin/pamtest/pamtest.c projects/diffused_head/contrib/openpam/bin/su/su.1 projects/diffused_head/contrib/openpam/config.h.in projects/diffused_head/contrib/openpam/configure projects/diffused_head/contrib/openpam/configure.ac projects/diffused_head/contrib/openpam/doc/man/Makefile.am projects/diffused_head/contrib/openpam/doc/man/Makefile.in projects/diffused_head/contrib/openpam/doc/man/openpam.3 projects/diffused_head/contrib/openpam/doc/man/openpam_borrow_cred.3 projects/diffused_head/contrib/openpam/doc/man/openpam_free_data.3 projects/diffused_head/contrib/openpam/doc/man/openpam_free_envlist.3 projects/diffused_head/contrib/openpam/doc/man/openpam_get_option.3 projects/diffused_head/contrib/openpam/doc/man/openpam_log.3 projects/diffused_head/contrib/openpam/doc/man/openpam_nullconv.3 projects/diffused_head/contrib/openpam/doc/man/openpam_readline.3 projects/diffused_head/contrib/openpam/doc/man/openpam_restore_cred.3 projects/diffused_head/contrib/openpam/doc/man/openpam_set_option.3 projects/diffused_head/contrib/openpam/doc/man/openpam_subst.3 projects/diffused_head/contrib/openpam/doc/man/openpam_ttyconv.3 projects/diffused_head/contrib/openpam/doc/man/pam.3 projects/diffused_head/contrib/openpam/doc/man/pam.conf.5 projects/diffused_head/contrib/openpam/doc/man/pam_acct_mgmt.3 projects/diffused_head/contrib/openpam/doc/man/pam_authenticate.3 projects/diffused_head/contrib/openpam/doc/man/pam_chauthtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_close_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_conv.3 projects/diffused_head/contrib/openpam/doc/man/pam_end.3 projects/diffused_head/contrib/openpam/doc/man/pam_error.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_authtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_data.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_item.3 projects/diffused_head/contrib/openpam/doc/man/pam_get_user.3 projects/diffused_head/contrib/openpam/doc/man/pam_getenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_getenvlist.3 projects/diffused_head/contrib/openpam/doc/man/pam_info.3 projects/diffused_head/contrib/openpam/doc/man/pam_open_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_prompt.3 projects/diffused_head/contrib/openpam/doc/man/pam_putenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_set_data.3 projects/diffused_head/contrib/openpam/doc/man/pam_set_item.3 projects/diffused_head/contrib/openpam/doc/man/pam_setcred.3 projects/diffused_head/contrib/openpam/doc/man/pam_setenv.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_acct_mgmt.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_authenticate.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_chauthtok.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_close_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_open_session.3 projects/diffused_head/contrib/openpam/doc/man/pam_sm_setcred.3 projects/diffused_head/contrib/openpam/doc/man/pam_start.3 projects/diffused_head/contrib/openpam/doc/man/pam_strerror.3 projects/diffused_head/contrib/openpam/doc/man/pam_verror.3 projects/diffused_head/contrib/openpam/doc/man/pam_vinfo.3 projects/diffused_head/contrib/openpam/doc/man/pam_vprompt.3 projects/diffused_head/contrib/openpam/include/security/openpam.h projects/diffused_head/contrib/openpam/include/security/openpam_version.h projects/diffused_head/contrib/openpam/lib/Makefile.am projects/diffused_head/contrib/openpam/lib/Makefile.in projects/diffused_head/contrib/openpam/lib/openpam_check_owner_perms.c projects/diffused_head/contrib/openpam/lib/openpam_configure.c projects/diffused_head/contrib/openpam/lib/openpam_constants.h projects/diffused_head/contrib/openpam/lib/openpam_debug.h projects/diffused_head/contrib/openpam/lib/openpam_dynamic.c projects/diffused_head/contrib/openpam/lib/openpam_get_option.c projects/diffused_head/contrib/openpam/lib/openpam_impl.h projects/diffused_head/contrib/openpam/lib/openpam_load.c projects/diffused_head/contrib/openpam/lib/openpam_log.c projects/diffused_head/contrib/openpam/lib/openpam_readline.c projects/diffused_head/contrib/openpam/lib/openpam_set_option.c projects/diffused_head/contrib/openpam/lib/openpam_strlcmp.h projects/diffused_head/contrib/openpam/lib/openpam_strlcpy.h projects/diffused_head/contrib/openpam/lib/openpam_subst.c projects/diffused_head/contrib/openpam/lib/openpam_ttyconv.c projects/diffused_head/contrib/openpam/lib/pam_get_authtok.c projects/diffused_head/contrib/openpam/lib/pam_putenv.c projects/diffused_head/contrib/openpam/lib/pam_setenv.c projects/diffused_head/contrib/openpam/ltmain.sh projects/diffused_head/contrib/openpam/misc/gendoc.pl projects/diffused_head/contrib/openresolv/resolvconf.conf.5.in projects/diffused_head/contrib/opie/libopie/hash.c projects/diffused_head/contrib/opie/libopie/hashlen.c projects/diffused_head/contrib/tcpdump/CHANGES projects/diffused_head/contrib/tcpdump/CREDITS projects/diffused_head/contrib/tcpdump/Makefile.in projects/diffused_head/contrib/tcpdump/VERSION projects/diffused_head/contrib/tcpdump/acconfig.h projects/diffused_head/contrib/tcpdump/addrtoname.c projects/diffused_head/contrib/tcpdump/addrtoname.h projects/diffused_head/contrib/tcpdump/bootp.h projects/diffused_head/contrib/tcpdump/config.h.in projects/diffused_head/contrib/tcpdump/configure projects/diffused_head/contrib/tcpdump/configure.in projects/diffused_head/contrib/tcpdump/cpack.c projects/diffused_head/contrib/tcpdump/cpack.h projects/diffused_head/contrib/tcpdump/ethertype.h projects/diffused_head/contrib/tcpdump/forces.h projects/diffused_head/contrib/tcpdump/ieee802_11_radio.h projects/diffused_head/contrib/tcpdump/interface.h projects/diffused_head/contrib/tcpdump/ip.h projects/diffused_head/contrib/tcpdump/ip6.h projects/diffused_head/contrib/tcpdump/ipproto.c projects/diffused_head/contrib/tcpdump/ipproto.h projects/diffused_head/contrib/tcpdump/netdissect.h projects/diffused_head/contrib/tcpdump/ospf.h projects/diffused_head/contrib/tcpdump/oui.c projects/diffused_head/contrib/tcpdump/oui.h projects/diffused_head/contrib/tcpdump/print-802_11.c projects/diffused_head/contrib/tcpdump/print-ap1394.c projects/diffused_head/contrib/tcpdump/print-arcnet.c projects/diffused_head/contrib/tcpdump/print-arp.c projects/diffused_head/contrib/tcpdump/print-atalk.c projects/diffused_head/contrib/tcpdump/print-atm.c projects/diffused_head/contrib/tcpdump/print-bgp.c projects/diffused_head/contrib/tcpdump/print-cdp.c projects/diffused_head/contrib/tcpdump/print-chdlc.c projects/diffused_head/contrib/tcpdump/print-dccp.c projects/diffused_head/contrib/tcpdump/print-dhcp6.c projects/diffused_head/contrib/tcpdump/print-enc.c projects/diffused_head/contrib/tcpdump/print-ether.c projects/diffused_head/contrib/tcpdump/print-forces.c projects/diffused_head/contrib/tcpdump/print-fr.c projects/diffused_head/contrib/tcpdump/print-gre.c projects/diffused_head/contrib/tcpdump/print-icmp.c projects/diffused_head/contrib/tcpdump/print-icmp6.c projects/diffused_head/contrib/tcpdump/print-igmp.c projects/diffused_head/contrib/tcpdump/print-ip.c projects/diffused_head/contrib/tcpdump/print-ip6.c projects/diffused_head/contrib/tcpdump/print-ipnet.c projects/diffused_head/contrib/tcpdump/print-ipx.c projects/diffused_head/contrib/tcpdump/print-isoclns.c projects/diffused_head/contrib/tcpdump/print-juniper.c projects/diffused_head/contrib/tcpdump/print-lane.c projects/diffused_head/contrib/tcpdump/print-llc.c projects/diffused_head/contrib/tcpdump/print-lldp.c projects/diffused_head/contrib/tcpdump/print-mobile.c projects/diffused_head/contrib/tcpdump/print-mpls.c projects/diffused_head/contrib/tcpdump/print-null.c projects/diffused_head/contrib/tcpdump/print-ospf.c projects/diffused_head/contrib/tcpdump/print-pflog.c projects/diffused_head/contrib/tcpdump/print-pgm.c projects/diffused_head/contrib/tcpdump/print-pim.c projects/diffused_head/contrib/tcpdump/print-ppp.c projects/diffused_head/contrib/tcpdump/print-rrcp.c projects/diffused_head/contrib/tcpdump/print-sctp.c projects/diffused_head/contrib/tcpdump/print-sflow.c projects/diffused_head/contrib/tcpdump/print-sl.c projects/diffused_head/contrib/tcpdump/print-sll.c projects/diffused_head/contrib/tcpdump/print-sunrpc.c projects/diffused_head/contrib/tcpdump/print-symantec.c projects/diffused_head/contrib/tcpdump/print-tcp.c projects/diffused_head/contrib/tcpdump/print-tftp.c projects/diffused_head/contrib/tcpdump/print-udp.c projects/diffused_head/contrib/tcpdump/print-vrrp.c projects/diffused_head/contrib/tcpdump/tcp.h projects/diffused_head/contrib/tcpdump/tcpdump-stdinc.h projects/diffused_head/contrib/tcpdump/tcpdump.1.in projects/diffused_head/contrib/tcpdump/tcpdump.c projects/diffused_head/contrib/tcpdump/udp.h projects/diffused_head/contrib/telnet/telnet/telnet.1 projects/diffused_head/contrib/top/display.c projects/diffused_head/contrib/top/layout.h projects/diffused_head/contrib/top/machine.h projects/diffused_head/contrib/top/top.c projects/diffused_head/contrib/traceroute/traceroute.8 projects/diffused_head/crypto/openssh/ssh-keyscan.1 projects/diffused_head/crypto/openssh/ssh-keyscan.c projects/diffused_head/crypto/openssh/ssh.c projects/diffused_head/crypto/openssh/sshconnect.c projects/diffused_head/crypto/openssh/sshd.c projects/diffused_head/crypto/openssh/version.c projects/diffused_head/crypto/openssh/version.h projects/diffused_head/crypto/openssl/CHANGES projects/diffused_head/crypto/openssl/CHANGES.SSLeay projects/diffused_head/crypto/openssl/Configure projects/diffused_head/crypto/openssl/FAQ projects/diffused_head/crypto/openssl/INSTALL projects/diffused_head/crypto/openssl/LICENSE projects/diffused_head/crypto/openssl/Makefile projects/diffused_head/crypto/openssl/Makefile.org projects/diffused_head/crypto/openssl/Makefile.shared projects/diffused_head/crypto/openssl/NEWS projects/diffused_head/crypto/openssl/README projects/diffused_head/crypto/openssl/apps/Makefile projects/diffused_head/crypto/openssl/apps/apps.c projects/diffused_head/crypto/openssl/apps/apps.h projects/diffused_head/crypto/openssl/apps/asn1pars.c projects/diffused_head/crypto/openssl/apps/ca.c projects/diffused_head/crypto/openssl/apps/ciphers.c projects/diffused_head/crypto/openssl/apps/client.pem projects/diffused_head/crypto/openssl/apps/cms.c projects/diffused_head/crypto/openssl/apps/crl2p7.c projects/diffused_head/crypto/openssl/apps/dgst.c projects/diffused_head/crypto/openssl/apps/dh.c projects/diffused_head/crypto/openssl/apps/dhparam.c projects/diffused_head/crypto/openssl/apps/dsa.c projects/diffused_head/crypto/openssl/apps/ec.c projects/diffused_head/crypto/openssl/apps/ecparam.c projects/diffused_head/crypto/openssl/apps/enc.c projects/diffused_head/crypto/openssl/apps/engine.c projects/diffused_head/crypto/openssl/apps/errstr.c projects/diffused_head/crypto/openssl/apps/gendh.c projects/diffused_head/crypto/openssl/apps/genrsa.c projects/diffused_head/crypto/openssl/apps/ocsp.c projects/diffused_head/crypto/openssl/apps/openssl.c projects/diffused_head/crypto/openssl/apps/openssl.cnf projects/diffused_head/crypto/openssl/apps/pkcs12.c projects/diffused_head/crypto/openssl/apps/pkcs7.c projects/diffused_head/crypto/openssl/apps/pkcs8.c projects/diffused_head/crypto/openssl/apps/prime.c projects/diffused_head/crypto/openssl/apps/progs.h projects/diffused_head/crypto/openssl/apps/progs.pl projects/diffused_head/crypto/openssl/apps/req.c projects/diffused_head/crypto/openssl/apps/rsa.c projects/diffused_head/crypto/openssl/apps/rsautl.c projects/diffused_head/crypto/openssl/apps/s_apps.h projects/diffused_head/crypto/openssl/apps/s_cb.c projects/diffused_head/crypto/openssl/apps/s_client.c projects/diffused_head/crypto/openssl/apps/s_server.c projects/diffused_head/crypto/openssl/apps/s_socket.c projects/diffused_head/crypto/openssl/apps/s_time.c projects/diffused_head/crypto/openssl/apps/server.pem projects/diffused_head/crypto/openssl/apps/server2.pem projects/diffused_head/crypto/openssl/apps/sess_id.c projects/diffused_head/crypto/openssl/apps/smime.c projects/diffused_head/crypto/openssl/apps/speed.c projects/diffused_head/crypto/openssl/apps/verify.c projects/diffused_head/crypto/openssl/apps/x509.c projects/diffused_head/crypto/openssl/config projects/diffused_head/crypto/openssl/crypto/Makefile projects/diffused_head/crypto/openssl/crypto/aes/Makefile projects/diffused_head/crypto/openssl/crypto/aes/aes.h projects/diffused_head/crypto/openssl/crypto/aes/aes_cbc.c projects/diffused_head/crypto/openssl/crypto/aes/aes_cfb.c projects/diffused_head/crypto/openssl/crypto/aes/aes_core.c projects/diffused_head/crypto/openssl/crypto/aes/aes_ctr.c projects/diffused_head/crypto/openssl/crypto/aes/aes_ige.c projects/diffused_head/crypto/openssl/crypto/aes/aes_misc.c projects/diffused_head/crypto/openssl/crypto/aes/aes_ofb.c projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-586.pl projects/diffused_head/crypto/openssl/crypto/aes/asm/aes-x86_64.pl projects/diffused_head/crypto/openssl/crypto/asn1/Makefile projects/diffused_head/crypto/openssl/crypto/asn1/a_bitstr.c projects/diffused_head/crypto/openssl/crypto/asn1/a_digest.c projects/diffused_head/crypto/openssl/crypto/asn1/a_dup.c projects/diffused_head/crypto/openssl/crypto/asn1/a_gentm.c projects/diffused_head/crypto/openssl/crypto/asn1/a_int.c projects/diffused_head/crypto/openssl/crypto/asn1/a_object.c projects/diffused_head/crypto/openssl/crypto/asn1/a_octet.c projects/diffused_head/crypto/openssl/crypto/asn1/a_set.c projects/diffused_head/crypto/openssl/crypto/asn1/a_sign.c projects/diffused_head/crypto/openssl/crypto/asn1/a_strex.c projects/diffused_head/crypto/openssl/crypto/asn1/a_strnid.c projects/diffused_head/crypto/openssl/crypto/asn1/a_time.c projects/diffused_head/crypto/openssl/crypto/asn1/a_type.c projects/diffused_head/crypto/openssl/crypto/asn1/a_utctm.c projects/diffused_head/crypto/openssl/crypto/asn1/a_verify.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1.h projects/diffused_head/crypto/openssl/crypto/asn1/asn1_err.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1_gen.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1_lib.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1_mac.h projects/diffused_head/crypto/openssl/crypto/asn1/asn1_par.c projects/diffused_head/crypto/openssl/crypto/asn1/asn1t.h projects/diffused_head/crypto/openssl/crypto/asn1/asn_mime.c projects/diffused_head/crypto/openssl/crypto/asn1/asn_pack.c projects/diffused_head/crypto/openssl/crypto/asn1/charmap.h projects/diffused_head/crypto/openssl/crypto/asn1/d2i_pr.c projects/diffused_head/crypto/openssl/crypto/asn1/d2i_pu.c projects/diffused_head/crypto/openssl/crypto/asn1/i2d_pr.c projects/diffused_head/crypto/openssl/crypto/asn1/n_pkey.c projects/diffused_head/crypto/openssl/crypto/asn1/nsseq.c projects/diffused_head/crypto/openssl/crypto/asn1/p5_pbe.c projects/diffused_head/crypto/openssl/crypto/asn1/p5_pbev2.c projects/diffused_head/crypto/openssl/crypto/asn1/p8_pkey.c projects/diffused_head/crypto/openssl/crypto/asn1/t_crl.c projects/diffused_head/crypto/openssl/crypto/asn1/t_pkey.c projects/diffused_head/crypto/openssl/crypto/asn1/t_req.c projects/diffused_head/crypto/openssl/crypto/asn1/t_spki.c projects/diffused_head/crypto/openssl/crypto/asn1/t_x509.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_dec.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_enc.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_fre.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_new.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_prn.c projects/diffused_head/crypto/openssl/crypto/asn1/tasn_typ.c projects/diffused_head/crypto/openssl/crypto/asn1/x_algor.c projects/diffused_head/crypto/openssl/crypto/asn1/x_crl.c projects/diffused_head/crypto/openssl/crypto/asn1/x_long.c projects/diffused_head/crypto/openssl/crypto/asn1/x_name.c projects/diffused_head/crypto/openssl/crypto/asn1/x_pubkey.c projects/diffused_head/crypto/openssl/crypto/asn1/x_req.c projects/diffused_head/crypto/openssl/crypto/asn1/x_x509.c projects/diffused_head/crypto/openssl/crypto/bf/Makefile projects/diffused_head/crypto/openssl/crypto/bf/asm/bf-586.pl projects/diffused_head/crypto/openssl/crypto/bf/bf_skey.c projects/diffused_head/crypto/openssl/crypto/bf/blowfish.h projects/diffused_head/crypto/openssl/crypto/bio/Makefile projects/diffused_head/crypto/openssl/crypto/bio/b_print.c projects/diffused_head/crypto/openssl/crypto/bio/b_sock.c projects/diffused_head/crypto/openssl/crypto/bio/bf_buff.c projects/diffused_head/crypto/openssl/crypto/bio/bio.h projects/diffused_head/crypto/openssl/crypto/bio/bio_cb.c projects/diffused_head/crypto/openssl/crypto/bio/bio_err.c projects/diffused_head/crypto/openssl/crypto/bio/bio_lcl.h projects/diffused_head/crypto/openssl/crypto/bio/bio_lib.c projects/diffused_head/crypto/openssl/crypto/bio/bss_acpt.c projects/diffused_head/crypto/openssl/crypto/bio/bss_bio.c projects/diffused_head/crypto/openssl/crypto/bio/bss_dgram.c projects/diffused_head/crypto/openssl/crypto/bio/bss_fd.c projects/diffused_head/crypto/openssl/crypto/bio/bss_file.c projects/diffused_head/crypto/openssl/crypto/bio/bss_log.c projects/diffused_head/crypto/openssl/crypto/bio/bss_mem.c projects/diffused_head/crypto/openssl/crypto/bn/Makefile projects/diffused_head/crypto/openssl/crypto/bn/asm/bn-586.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/co-586.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/ppc.pl projects/diffused_head/crypto/openssl/crypto/bn/asm/sparcv8plus.S projects/diffused_head/crypto/openssl/crypto/bn/asm/x86_64-gcc.c projects/diffused_head/crypto/openssl/crypto/bn/asm/x86_64-mont.pl projects/diffused_head/crypto/openssl/crypto/bn/bn.h projects/diffused_head/crypto/openssl/crypto/bn/bn_asm.c projects/diffused_head/crypto/openssl/crypto/bn/bn_blind.c projects/diffused_head/crypto/openssl/crypto/bn/bn_ctx.c projects/diffused_head/crypto/openssl/crypto/bn/bn_div.c projects/diffused_head/crypto/openssl/crypto/bn/bn_exp.c projects/diffused_head/crypto/openssl/crypto/bn/bn_gf2m.c projects/diffused_head/crypto/openssl/crypto/bn/bn_lcl.h projects/diffused_head/crypto/openssl/crypto/bn/bn_lib.c projects/diffused_head/crypto/openssl/crypto/bn/bn_mont.c projects/diffused_head/crypto/openssl/crypto/bn/bn_nist.c projects/diffused_head/crypto/openssl/crypto/bn/bn_print.c projects/diffused_head/crypto/openssl/crypto/bn/bn_shift.c projects/diffused_head/crypto/openssl/crypto/bn/bntest.c projects/diffused_head/crypto/openssl/crypto/bn/exptest.c projects/diffused_head/crypto/openssl/crypto/buffer/Makefile projects/diffused_head/crypto/openssl/crypto/buffer/buf_err.c projects/diffused_head/crypto/openssl/crypto/buffer/buf_str.c projects/diffused_head/crypto/openssl/crypto/buffer/buffer.c projects/diffused_head/crypto/openssl/crypto/buffer/buffer.h projects/diffused_head/crypto/openssl/crypto/camellia/Makefile projects/diffused_head/crypto/openssl/crypto/camellia/camellia.c projects/diffused_head/crypto/openssl/crypto/camellia/camellia.h projects/diffused_head/crypto/openssl/crypto/camellia/cmll_cbc.c projects/diffused_head/crypto/openssl/crypto/camellia/cmll_cfb.c projects/diffused_head/crypto/openssl/crypto/camellia/cmll_ctr.c projects/diffused_head/crypto/openssl/crypto/camellia/cmll_locl.h projects/diffused_head/crypto/openssl/crypto/camellia/cmll_misc.c projects/diffused_head/crypto/openssl/crypto/camellia/cmll_ofb.c projects/diffused_head/crypto/openssl/crypto/cast/Makefile projects/diffused_head/crypto/openssl/crypto/cast/asm/cast-586.pl projects/diffused_head/crypto/openssl/crypto/cast/c_skey.c projects/diffused_head/crypto/openssl/crypto/cast/cast.h projects/diffused_head/crypto/openssl/crypto/cms/Makefile projects/diffused_head/crypto/openssl/crypto/cms/cms.h projects/diffused_head/crypto/openssl/crypto/cms/cms_asn1.c projects/diffused_head/crypto/openssl/crypto/cms/cms_enc.c projects/diffused_head/crypto/openssl/crypto/cms/cms_env.c projects/diffused_head/crypto/openssl/crypto/cms/cms_err.c projects/diffused_head/crypto/openssl/crypto/cms/cms_ess.c projects/diffused_head/crypto/openssl/crypto/cms/cms_io.c projects/diffused_head/crypto/openssl/crypto/cms/cms_lcl.h projects/diffused_head/crypto/openssl/crypto/cms/cms_lib.c projects/diffused_head/crypto/openssl/crypto/cms/cms_sd.c projects/diffused_head/crypto/openssl/crypto/cms/cms_smime.c projects/diffused_head/crypto/openssl/crypto/comp/Makefile projects/diffused_head/crypto/openssl/crypto/comp/c_rle.c projects/diffused_head/crypto/openssl/crypto/comp/c_zlib.c projects/diffused_head/crypto/openssl/crypto/comp/comp_err.c projects/diffused_head/crypto/openssl/crypto/conf/Makefile projects/diffused_head/crypto/openssl/crypto/conf/README projects/diffused_head/crypto/openssl/crypto/conf/conf.h projects/diffused_head/crypto/openssl/crypto/conf/conf_api.c projects/diffused_head/crypto/openssl/crypto/conf/conf_def.c projects/diffused_head/crypto/openssl/crypto/conf/conf_err.c projects/diffused_head/crypto/openssl/crypto/conf/conf_lib.c projects/diffused_head/crypto/openssl/crypto/conf/conf_mall.c projects/diffused_head/crypto/openssl/crypto/conf/conf_mod.c projects/diffused_head/crypto/openssl/crypto/cpt_err.c projects/diffused_head/crypto/openssl/crypto/cryptlib.c projects/diffused_head/crypto/openssl/crypto/cryptlib.h projects/diffused_head/crypto/openssl/crypto/crypto.h projects/diffused_head/crypto/openssl/crypto/des/Makefile projects/diffused_head/crypto/openssl/crypto/des/asm/crypt586.pl projects/diffused_head/crypto/openssl/crypto/des/asm/des-586.pl projects/diffused_head/crypto/openssl/crypto/des/asm/des_enc.m4 projects/diffused_head/crypto/openssl/crypto/des/des.h projects/diffused_head/crypto/openssl/crypto/des/des_enc.c projects/diffused_head/crypto/openssl/crypto/des/des_locl.h projects/diffused_head/crypto/openssl/crypto/des/ecb_enc.c projects/diffused_head/crypto/openssl/crypto/des/enc_read.c projects/diffused_head/crypto/openssl/crypto/des/enc_writ.c projects/diffused_head/crypto/openssl/crypto/des/fcrypt_b.c projects/diffused_head/crypto/openssl/crypto/des/set_key.c projects/diffused_head/crypto/openssl/crypto/des/xcbc_enc.c projects/diffused_head/crypto/openssl/crypto/dh/Makefile projects/diffused_head/crypto/openssl/crypto/dh/dh.h projects/diffused_head/crypto/openssl/crypto/dh/dh_asn1.c projects/diffused_head/crypto/openssl/crypto/dh/dh_check.c projects/diffused_head/crypto/openssl/crypto/dh/dh_err.c projects/diffused_head/crypto/openssl/crypto/dh/dh_gen.c projects/diffused_head/crypto/openssl/crypto/dh/dh_key.c projects/diffused_head/crypto/openssl/crypto/dh/dh_lib.c projects/diffused_head/crypto/openssl/crypto/dsa/Makefile projects/diffused_head/crypto/openssl/crypto/dsa/dsa.h projects/diffused_head/crypto/openssl/crypto/dsa/dsa_asn1.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_err.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_gen.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_key.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_lib.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_ossl.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_sign.c projects/diffused_head/crypto/openssl/crypto/dsa/dsa_vrf.c projects/diffused_head/crypto/openssl/crypto/dsa/dsatest.c projects/diffused_head/crypto/openssl/crypto/dso/Makefile projects/diffused_head/crypto/openssl/crypto/dso/dso.h projects/diffused_head/crypto/openssl/crypto/dso/dso_dl.c projects/diffused_head/crypto/openssl/crypto/dso/dso_dlfcn.c projects/diffused_head/crypto/openssl/crypto/dso/dso_err.c projects/diffused_head/crypto/openssl/crypto/dso/dso_lib.c projects/diffused_head/crypto/openssl/crypto/dso/dso_null.c projects/diffused_head/crypto/openssl/crypto/dso/dso_openssl.c projects/diffused_head/crypto/openssl/crypto/ec/Makefile projects/diffused_head/crypto/openssl/crypto/ec/ec.h projects/diffused_head/crypto/openssl/crypto/ec/ec2_mult.c projects/diffused_head/crypto/openssl/crypto/ec/ec2_smpl.c projects/diffused_head/crypto/openssl/crypto/ec/ec_asn1.c projects/diffused_head/crypto/openssl/crypto/ec/ec_curve.c projects/diffused_head/crypto/openssl/crypto/ec/ec_cvt.c projects/diffused_head/crypto/openssl/crypto/ec/ec_err.c projects/diffused_head/crypto/openssl/crypto/ec/ec_key.c projects/diffused_head/crypto/openssl/crypto/ec/ec_lcl.h projects/diffused_head/crypto/openssl/crypto/ec/ec_lib.c projects/diffused_head/crypto/openssl/crypto/ec/ec_mult.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_mont.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_nist.c projects/diffused_head/crypto/openssl/crypto/ec/ecp_smpl.c projects/diffused_head/crypto/openssl/crypto/ec/ectest.c projects/diffused_head/crypto/openssl/crypto/ecdh/Makefile projects/diffused_head/crypto/openssl/crypto/ecdh/ecdh.h projects/diffused_head/crypto/openssl/crypto/ecdh/ecdhtest.c projects/diffused_head/crypto/openssl/crypto/ecdh/ech_err.c projects/diffused_head/crypto/openssl/crypto/ecdh/ech_lib.c projects/diffused_head/crypto/openssl/crypto/ecdh/ech_locl.h projects/diffused_head/crypto/openssl/crypto/ecdh/ech_ossl.c projects/diffused_head/crypto/openssl/crypto/ecdsa/Makefile projects/diffused_head/crypto/openssl/crypto/ecdsa/ecdsa.h projects/diffused_head/crypto/openssl/crypto/ecdsa/ecdsatest.c projects/diffused_head/crypto/openssl/crypto/ecdsa/ecs_err.c projects/diffused_head/crypto/openssl/crypto/ecdsa/ecs_lib.c projects/diffused_head/crypto/openssl/crypto/ecdsa/ecs_locl.h projects/diffused_head/crypto/openssl/crypto/ecdsa/ecs_ossl.c projects/diffused_head/crypto/openssl/crypto/engine/Makefile projects/diffused_head/crypto/openssl/crypto/engine/eng_all.c projects/diffused_head/crypto/openssl/crypto/engine/eng_cryptodev.c projects/diffused_head/crypto/openssl/crypto/engine/eng_dyn.c projects/diffused_head/crypto/openssl/crypto/engine/eng_err.c projects/diffused_head/crypto/openssl/crypto/engine/eng_fat.c projects/diffused_head/crypto/openssl/crypto/engine/eng_int.h projects/diffused_head/crypto/openssl/crypto/engine/eng_lib.c projects/diffused_head/crypto/openssl/crypto/engine/eng_list.c projects/diffused_head/crypto/openssl/crypto/engine/eng_openssl.c projects/diffused_head/crypto/openssl/crypto/engine/eng_table.c projects/diffused_head/crypto/openssl/crypto/engine/engine.h projects/diffused_head/crypto/openssl/crypto/engine/enginetest.c projects/diffused_head/crypto/openssl/crypto/err/Makefile projects/diffused_head/crypto/openssl/crypto/err/err.c projects/diffused_head/crypto/openssl/crypto/err/err.h projects/diffused_head/crypto/openssl/crypto/err/err_all.c projects/diffused_head/crypto/openssl/crypto/err/err_prn.c projects/diffused_head/crypto/openssl/crypto/evp/Makefile projects/diffused_head/crypto/openssl/crypto/evp/bio_enc.c projects/diffused_head/crypto/openssl/crypto/evp/bio_md.c projects/diffused_head/crypto/openssl/crypto/evp/bio_ok.c projects/diffused_head/crypto/openssl/crypto/evp/c_all.c projects/diffused_head/crypto/openssl/crypto/evp/c_allc.c projects/diffused_head/crypto/openssl/crypto/evp/c_alld.c projects/diffused_head/crypto/openssl/crypto/evp/digest.c projects/diffused_head/crypto/openssl/crypto/evp/e_aes.c projects/diffused_head/crypto/openssl/crypto/evp/e_camellia.c projects/diffused_head/crypto/openssl/crypto/evp/e_des.c projects/diffused_head/crypto/openssl/crypto/evp/e_des3.c projects/diffused_head/crypto/openssl/crypto/evp/e_idea.c projects/diffused_head/crypto/openssl/crypto/evp/e_null.c projects/diffused_head/crypto/openssl/crypto/evp/e_rc2.c projects/diffused_head/crypto/openssl/crypto/evp/e_rc4.c projects/diffused_head/crypto/openssl/crypto/evp/e_seed.c projects/diffused_head/crypto/openssl/crypto/evp/e_xcbc_d.c projects/diffused_head/crypto/openssl/crypto/evp/encode.c projects/diffused_head/crypto/openssl/crypto/evp/evp.h projects/diffused_head/crypto/openssl/crypto/evp/evp_enc.c projects/diffused_head/crypto/openssl/crypto/evp/evp_err.c projects/diffused_head/crypto/openssl/crypto/evp/evp_key.c projects/diffused_head/crypto/openssl/crypto/evp/evp_lib.c projects/diffused_head/crypto/openssl/crypto/evp/evp_locl.h projects/diffused_head/crypto/openssl/crypto/evp/evp_pbe.c projects/diffused_head/crypto/openssl/crypto/evp/evp_pkey.c projects/diffused_head/crypto/openssl/crypto/evp/evp_test.c projects/diffused_head/crypto/openssl/crypto/evp/evptests.txt projects/diffused_head/crypto/openssl/crypto/evp/m_dss.c projects/diffused_head/crypto/openssl/crypto/evp/m_dss1.c projects/diffused_head/crypto/openssl/crypto/evp/m_ecdsa.c projects/diffused_head/crypto/openssl/crypto/evp/m_md2.c projects/diffused_head/crypto/openssl/crypto/evp/m_md4.c projects/diffused_head/crypto/openssl/crypto/evp/m_md5.c projects/diffused_head/crypto/openssl/crypto/evp/m_mdc2.c projects/diffused_head/crypto/openssl/crypto/evp/m_ripemd.c projects/diffused_head/crypto/openssl/crypto/evp/m_sha.c projects/diffused_head/crypto/openssl/crypto/evp/m_sha1.c projects/diffused_head/crypto/openssl/crypto/evp/names.c projects/diffused_head/crypto/openssl/crypto/evp/p5_crpt.c projects/diffused_head/crypto/openssl/crypto/evp/p5_crpt2.c projects/diffused_head/crypto/openssl/crypto/evp/p_dec.c projects/diffused_head/crypto/openssl/crypto/evp/p_enc.c projects/diffused_head/crypto/openssl/crypto/evp/p_lib.c projects/diffused_head/crypto/openssl/crypto/evp/p_open.c projects/diffused_head/crypto/openssl/crypto/evp/p_seal.c projects/diffused_head/crypto/openssl/crypto/evp/p_sign.c projects/diffused_head/crypto/openssl/crypto/evp/p_verify.c projects/diffused_head/crypto/openssl/crypto/ex_data.c projects/diffused_head/crypto/openssl/crypto/fips_err.h projects/diffused_head/crypto/openssl/crypto/hmac/Makefile projects/diffused_head/crypto/openssl/crypto/hmac/hmac.c projects/diffused_head/crypto/openssl/crypto/hmac/hmac.h projects/diffused_head/crypto/openssl/crypto/ia64cpuid.S projects/diffused_head/crypto/openssl/crypto/idea/Makefile projects/diffused_head/crypto/openssl/crypto/idea/i_skey.c projects/diffused_head/crypto/openssl/crypto/idea/idea.h projects/diffused_head/crypto/openssl/crypto/jpake/Makefile projects/diffused_head/crypto/openssl/crypto/jpake/jpake.c projects/diffused_head/crypto/openssl/crypto/jpake/jpaketest.c projects/diffused_head/crypto/openssl/crypto/krb5/Makefile projects/diffused_head/crypto/openssl/crypto/lhash/Makefile projects/diffused_head/crypto/openssl/crypto/lhash/lh_stats.c projects/diffused_head/crypto/openssl/crypto/lhash/lhash.c projects/diffused_head/crypto/openssl/crypto/lhash/lhash.h projects/diffused_head/crypto/openssl/crypto/md2/Makefile projects/diffused_head/crypto/openssl/crypto/md2/md2_dgst.c projects/diffused_head/crypto/openssl/crypto/md32_common.h projects/diffused_head/crypto/openssl/crypto/md4/Makefile projects/diffused_head/crypto/openssl/crypto/md4/md4.h projects/diffused_head/crypto/openssl/crypto/md4/md4_dgst.c projects/diffused_head/crypto/openssl/crypto/md5/Makefile projects/diffused_head/crypto/openssl/crypto/md5/asm/md5-586.pl projects/diffused_head/crypto/openssl/crypto/md5/asm/md5-x86_64.pl projects/diffused_head/crypto/openssl/crypto/md5/md5.h projects/diffused_head/crypto/openssl/crypto/md5/md5_dgst.c projects/diffused_head/crypto/openssl/crypto/md5/md5_locl.h projects/diffused_head/crypto/openssl/crypto/mdc2/Makefile projects/diffused_head/crypto/openssl/crypto/mdc2/mdc2.h projects/diffused_head/crypto/openssl/crypto/mdc2/mdc2dgst.c projects/diffused_head/crypto/openssl/crypto/mem.c projects/diffused_head/crypto/openssl/crypto/mem_dbg.c projects/diffused_head/crypto/openssl/crypto/o_init.c projects/diffused_head/crypto/openssl/crypto/o_time.c projects/diffused_head/crypto/openssl/crypto/o_time.h projects/diffused_head/crypto/openssl/crypto/objects/Makefile projects/diffused_head/crypto/openssl/crypto/objects/o_names.c projects/diffused_head/crypto/openssl/crypto/objects/obj_dat.c projects/diffused_head/crypto/openssl/crypto/objects/obj_dat.h projects/diffused_head/crypto/openssl/crypto/objects/obj_dat.pl projects/diffused_head/crypto/openssl/crypto/objects/obj_err.c projects/diffused_head/crypto/openssl/crypto/objects/obj_lib.c projects/diffused_head/crypto/openssl/crypto/objects/obj_mac.h projects/diffused_head/crypto/openssl/crypto/objects/obj_mac.num projects/diffused_head/crypto/openssl/crypto/objects/objects.h projects/diffused_head/crypto/openssl/crypto/objects/objects.pl projects/diffused_head/crypto/openssl/crypto/objects/objects.txt projects/diffused_head/crypto/openssl/crypto/ocsp/Makefile projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp.h projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_cl.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_err.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_ext.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_ht.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_lib.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_prn.c projects/diffused_head/crypto/openssl/crypto/ocsp/ocsp_vfy.c projects/diffused_head/crypto/openssl/crypto/opensslconf.h projects/diffused_head/crypto/openssl/crypto/opensslconf.h.in projects/diffused_head/crypto/openssl/crypto/opensslv.h projects/diffused_head/crypto/openssl/crypto/ossl_typ.h projects/diffused_head/crypto/openssl/crypto/pem/Makefile projects/diffused_head/crypto/openssl/crypto/pem/pem.h projects/diffused_head/crypto/openssl/crypto/pem/pem_all.c projects/diffused_head/crypto/openssl/crypto/pem/pem_err.c projects/diffused_head/crypto/openssl/crypto/pem/pem_info.c projects/diffused_head/crypto/openssl/crypto/pem/pem_lib.c projects/diffused_head/crypto/openssl/crypto/pem/pem_pkey.c projects/diffused_head/crypto/openssl/crypto/pem/pem_x509.c projects/diffused_head/crypto/openssl/crypto/pem/pem_xaux.c projects/diffused_head/crypto/openssl/crypto/perlasm/cbc.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86_64-xlate.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86asm.pl projects/diffused_head/crypto/openssl/crypto/perlasm/x86nasm.pl projects/diffused_head/crypto/openssl/crypto/pkcs12/Makefile projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_add.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_attr.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_crpt.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_crt.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_decr.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_key.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_kiss.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_mutl.c projects/diffused_head/crypto/openssl/crypto/pkcs12/p12_utl.c projects/diffused_head/crypto/openssl/crypto/pkcs12/pk12err.c projects/diffused_head/crypto/openssl/crypto/pkcs12/pkcs12.h projects/diffused_head/crypto/openssl/crypto/pkcs7/Makefile projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_asn1.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_attr.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_doit.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_lib.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_mime.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pk7_smime.c projects/diffused_head/crypto/openssl/crypto/pkcs7/pkcs7.h projects/diffused_head/crypto/openssl/crypto/pkcs7/pkcs7err.c projects/diffused_head/crypto/openssl/crypto/pqueue/Makefile projects/diffused_head/crypto/openssl/crypto/pqueue/pqueue.c projects/diffused_head/crypto/openssl/crypto/pqueue/pqueue.h projects/diffused_head/crypto/openssl/crypto/rand/Makefile projects/diffused_head/crypto/openssl/crypto/rand/md_rand.c projects/diffused_head/crypto/openssl/crypto/rand/rand.h projects/diffused_head/crypto/openssl/crypto/rand/rand_egd.c projects/diffused_head/crypto/openssl/crypto/rand/rand_err.c projects/diffused_head/crypto/openssl/crypto/rand/rand_lcl.h projects/diffused_head/crypto/openssl/crypto/rand/rand_lib.c projects/diffused_head/crypto/openssl/crypto/rand/rand_unix.c projects/diffused_head/crypto/openssl/crypto/rand/randfile.c projects/diffused_head/crypto/openssl/crypto/rc2/Makefile projects/diffused_head/crypto/openssl/crypto/rc2/rc2_skey.c projects/diffused_head/crypto/openssl/crypto/rc4/Makefile projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-586.pl projects/diffused_head/crypto/openssl/crypto/rc4/asm/rc4-x86_64.pl projects/diffused_head/crypto/openssl/crypto/rc4/rc4.h projects/diffused_head/crypto/openssl/crypto/rc4/rc4_enc.c projects/diffused_head/crypto/openssl/crypto/rc4/rc4_skey.c projects/diffused_head/crypto/openssl/crypto/rc4/rc4test.c projects/diffused_head/crypto/openssl/crypto/rc5/Makefile projects/diffused_head/crypto/openssl/crypto/rc5/asm/rc5-586.pl projects/diffused_head/crypto/openssl/crypto/rc5/rc5.h projects/diffused_head/crypto/openssl/crypto/rc5/rc5_skey.c projects/diffused_head/crypto/openssl/crypto/ripemd/Makefile projects/diffused_head/crypto/openssl/crypto/ripemd/asm/rmd-586.pl projects/diffused_head/crypto/openssl/crypto/ripemd/ripemd.h projects/diffused_head/crypto/openssl/crypto/ripemd/rmd_dgst.c projects/diffused_head/crypto/openssl/crypto/ripemd/rmd_locl.h projects/diffused_head/crypto/openssl/crypto/rsa/Makefile projects/diffused_head/crypto/openssl/crypto/rsa/rsa.h projects/diffused_head/crypto/openssl/crypto/rsa/rsa_asn1.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_eay.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_err.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_gen.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_lib.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_oaep.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_pss.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_sign.c projects/diffused_head/crypto/openssl/crypto/rsa/rsa_test.c projects/diffused_head/crypto/openssl/crypto/seed/Makefile projects/diffused_head/crypto/openssl/crypto/seed/seed.c projects/diffused_head/crypto/openssl/crypto/seed/seed.h projects/diffused_head/crypto/openssl/crypto/seed/seed_cbc.c projects/diffused_head/crypto/openssl/crypto/seed/seed_cfb.c projects/diffused_head/crypto/openssl/crypto/seed/seed_ofb.c projects/diffused_head/crypto/openssl/crypto/sha/Makefile projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-586.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-ia64.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha1-x86_64.pl projects/diffused_head/crypto/openssl/crypto/sha/asm/sha512-x86_64.pl projects/diffused_head/crypto/openssl/crypto/sha/sha.h projects/diffused_head/crypto/openssl/crypto/sha/sha1_one.c projects/diffused_head/crypto/openssl/crypto/sha/sha1dgst.c projects/diffused_head/crypto/openssl/crypto/sha/sha256.c projects/diffused_head/crypto/openssl/crypto/sha/sha512.c projects/diffused_head/crypto/openssl/crypto/sha/sha_dgst.c projects/diffused_head/crypto/openssl/crypto/sha/sha_locl.h projects/diffused_head/crypto/openssl/crypto/sha/shatest.c projects/diffused_head/crypto/openssl/crypto/sparccpuid.S projects/diffused_head/crypto/openssl/crypto/stack/Makefile projects/diffused_head/crypto/openssl/crypto/stack/safestack.h projects/diffused_head/crypto/openssl/crypto/stack/stack.c projects/diffused_head/crypto/openssl/crypto/stack/stack.h projects/diffused_head/crypto/openssl/crypto/store/Makefile projects/diffused_head/crypto/openssl/crypto/store/store.h projects/diffused_head/crypto/openssl/crypto/store/str_err.c projects/diffused_head/crypto/openssl/crypto/store/str_lib.c projects/diffused_head/crypto/openssl/crypto/store/str_mem.c projects/diffused_head/crypto/openssl/crypto/symhacks.h projects/diffused_head/crypto/openssl/crypto/threads/mttest.c projects/diffused_head/crypto/openssl/crypto/txt_db/Makefile projects/diffused_head/crypto/openssl/crypto/txt_db/txt_db.c projects/diffused_head/crypto/openssl/crypto/txt_db/txt_db.h projects/diffused_head/crypto/openssl/crypto/ui/Makefile projects/diffused_head/crypto/openssl/crypto/ui/ui.h projects/diffused_head/crypto/openssl/crypto/ui/ui_err.c projects/diffused_head/crypto/openssl/crypto/ui/ui_lib.c projects/diffused_head/crypto/openssl/crypto/ui/ui_openssl.c projects/diffused_head/crypto/openssl/crypto/x509/Makefile projects/diffused_head/crypto/openssl/crypto/x509/by_dir.c projects/diffused_head/crypto/openssl/crypto/x509/by_file.c projects/diffused_head/crypto/openssl/crypto/x509/x509.h projects/diffused_head/crypto/openssl/crypto/x509/x509_cmp.c projects/diffused_head/crypto/openssl/crypto/x509/x509_err.c projects/diffused_head/crypto/openssl/crypto/x509/x509_lu.c projects/diffused_head/crypto/openssl/crypto/x509/x509_obj.c projects/diffused_head/crypto/openssl/crypto/x509/x509_req.c projects/diffused_head/crypto/openssl/crypto/x509/x509_set.c projects/diffused_head/crypto/openssl/crypto/x509/x509_trs.c projects/diffused_head/crypto/openssl/crypto/x509/x509_txt.c projects/diffused_head/crypto/openssl/crypto/x509/x509_vfy.c projects/diffused_head/crypto/openssl/crypto/x509/x509_vfy.h projects/diffused_head/crypto/openssl/crypto/x509/x509_vpm.c projects/diffused_head/crypto/openssl/crypto/x509/x509cset.c projects/diffused_head/crypto/openssl/crypto/x509/x509name.c projects/diffused_head/crypto/openssl/crypto/x509/x509type.c projects/diffused_head/crypto/openssl/crypto/x509/x_all.c projects/diffused_head/crypto/openssl/crypto/x509v3/Makefile projects/diffused_head/crypto/openssl/crypto/x509v3/ext_dat.h projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_cache.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_data.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_int.h projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_map.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_node.c projects/diffused_head/crypto/openssl/crypto/x509v3/pcy_tree.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_addr.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_alt.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_asid.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_conf.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_cpols.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_crld.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_enum.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_extku.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_genn.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_lib.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_ncons.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_ocsp.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_pci.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_pcons.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_pmaps.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_prn.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_purp.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_skey.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3_utl.c projects/diffused_head/crypto/openssl/crypto/x509v3/v3err.c projects/diffused_head/crypto/openssl/crypto/x509v3/x509v3.h projects/diffused_head/crypto/openssl/crypto/x86_64cpuid.pl projects/diffused_head/crypto/openssl/crypto/x86cpuid.pl projects/diffused_head/crypto/openssl/doc/HOWTO/proxy_certificates.txt projects/diffused_head/crypto/openssl/doc/apps/asn1parse.pod projects/diffused_head/crypto/openssl/doc/apps/ca.pod projects/diffused_head/crypto/openssl/doc/apps/ciphers.pod projects/diffused_head/crypto/openssl/doc/apps/config.pod projects/diffused_head/crypto/openssl/doc/apps/dgst.pod projects/diffused_head/crypto/openssl/doc/apps/dhparam.pod projects/diffused_head/crypto/openssl/doc/apps/dsa.pod projects/diffused_head/crypto/openssl/doc/apps/dsaparam.pod projects/diffused_head/crypto/openssl/doc/apps/ec.pod projects/diffused_head/crypto/openssl/doc/apps/ecparam.pod projects/diffused_head/crypto/openssl/doc/apps/enc.pod projects/diffused_head/crypto/openssl/doc/apps/gendsa.pod projects/diffused_head/crypto/openssl/doc/apps/genrsa.pod projects/diffused_head/crypto/openssl/doc/apps/ocsp.pod projects/diffused_head/crypto/openssl/doc/apps/openssl.pod projects/diffused_head/crypto/openssl/doc/apps/pkcs12.pod projects/diffused_head/crypto/openssl/doc/apps/pkcs7.pod projects/diffused_head/crypto/openssl/doc/apps/pkcs8.pod projects/diffused_head/crypto/openssl/doc/apps/req.pod projects/diffused_head/crypto/openssl/doc/apps/rsa.pod projects/diffused_head/crypto/openssl/doc/apps/s_client.pod projects/diffused_head/crypto/openssl/doc/apps/s_server.pod projects/diffused_head/crypto/openssl/doc/apps/smime.pod projects/diffused_head/crypto/openssl/doc/apps/speed.pod projects/diffused_head/crypto/openssl/doc/apps/spkac.pod projects/diffused_head/crypto/openssl/doc/apps/verify.pod projects/diffused_head/crypto/openssl/doc/apps/x509.pod projects/diffused_head/crypto/openssl/doc/apps/x509v3_config.pod projects/diffused_head/crypto/openssl/doc/crypto/ASN1_generate_nconf.pod projects/diffused_head/crypto/openssl/doc/crypto/BIO_f_md.pod projects/diffused_head/crypto/openssl/doc/crypto/BIO_f_ssl.pod projects/diffused_head/crypto/openssl/doc/crypto/BIO_s_file.pod projects/diffused_head/crypto/openssl/doc/crypto/BIO_s_mem.pod projects/diffused_head/crypto/openssl/doc/crypto/BN_BLINDING_new.pod projects/diffused_head/crypto/openssl/doc/crypto/DSA_get_ex_new_index.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_DigestInit.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_SignInit.pod projects/diffused_head/crypto/openssl/doc/crypto/EVP_VerifyInit.pod projects/diffused_head/crypto/openssl/doc/crypto/PKCS7_encrypt.pod projects/diffused_head/crypto/openssl/doc/crypto/PKCS7_sign.pod projects/diffused_head/crypto/openssl/doc/crypto/SMIME_write_PKCS7.pod projects/diffused_head/crypto/openssl/doc/crypto/d2i_RSAPublicKey.pod projects/diffused_head/crypto/openssl/doc/crypto/ecdsa.pod projects/diffused_head/crypto/openssl/doc/crypto/engine.pod projects/diffused_head/crypto/openssl/doc/crypto/evp.pod projects/diffused_head/crypto/openssl/doc/crypto/hmac.pod projects/diffused_head/crypto/openssl/doc/crypto/lhash.pod projects/diffused_head/crypto/openssl/doc/crypto/threads.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_new.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_set_mode.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_set_options.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_CTX_set_ssl_version.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_alert_type_string.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_clear.pod projects/diffused_head/crypto/openssl/doc/ssl/SSL_library_init.pod projects/diffused_head/crypto/openssl/doc/ssl/ssl.pod projects/diffused_head/crypto/openssl/doc/ssleay.txt projects/diffused_head/crypto/openssl/doc/standards.txt projects/diffused_head/crypto/openssl/e_os.h projects/diffused_head/crypto/openssl/e_os2.h projects/diffused_head/crypto/openssl/engines/Makefile projects/diffused_head/crypto/openssl/engines/e_4758cca.c projects/diffused_head/crypto/openssl/engines/e_aep.c projects/diffused_head/crypto/openssl/engines/e_capi.c projects/diffused_head/crypto/openssl/engines/e_capi_err.c projects/diffused_head/crypto/openssl/engines/e_capi_err.h projects/diffused_head/crypto/openssl/engines/e_chil.c projects/diffused_head/crypto/openssl/engines/e_gmp.c projects/diffused_head/crypto/openssl/engines/e_sureware.c projects/diffused_head/crypto/openssl/engines/e_ubsec.c projects/diffused_head/crypto/openssl/ssl/Makefile projects/diffused_head/crypto/openssl/ssl/bio_ssl.c projects/diffused_head/crypto/openssl/ssl/d1_both.c projects/diffused_head/crypto/openssl/ssl/d1_clnt.c projects/diffused_head/crypto/openssl/ssl/d1_enc.c projects/diffused_head/crypto/openssl/ssl/d1_lib.c projects/diffused_head/crypto/openssl/ssl/d1_meth.c projects/diffused_head/crypto/openssl/ssl/d1_pkt.c projects/diffused_head/crypto/openssl/ssl/d1_srvr.c projects/diffused_head/crypto/openssl/ssl/dtls1.h projects/diffused_head/crypto/openssl/ssl/kssl.c projects/diffused_head/crypto/openssl/ssl/kssl.h projects/diffused_head/crypto/openssl/ssl/kssl_lcl.h projects/diffused_head/crypto/openssl/ssl/s23_clnt.c projects/diffused_head/crypto/openssl/ssl/s23_lib.c projects/diffused_head/crypto/openssl/ssl/s23_meth.c projects/diffused_head/crypto/openssl/ssl/s23_srvr.c projects/diffused_head/crypto/openssl/ssl/s2_clnt.c projects/diffused_head/crypto/openssl/ssl/s2_enc.c projects/diffused_head/crypto/openssl/ssl/s2_lib.c projects/diffused_head/crypto/openssl/ssl/s2_meth.c projects/diffused_head/crypto/openssl/ssl/s2_pkt.c projects/diffused_head/crypto/openssl/ssl/s2_srvr.c projects/diffused_head/crypto/openssl/ssl/s3_both.c projects/diffused_head/crypto/openssl/ssl/s3_clnt.c projects/diffused_head/crypto/openssl/ssl/s3_enc.c projects/diffused_head/crypto/openssl/ssl/s3_lib.c projects/diffused_head/crypto/openssl/ssl/s3_meth.c projects/diffused_head/crypto/openssl/ssl/s3_pkt.c projects/diffused_head/crypto/openssl/ssl/s3_srvr.c projects/diffused_head/crypto/openssl/ssl/ssl.h projects/diffused_head/crypto/openssl/ssl/ssl2.h projects/diffused_head/crypto/openssl/ssl/ssl3.h projects/diffused_head/crypto/openssl/ssl/ssl_algs.c projects/diffused_head/crypto/openssl/ssl/ssl_asn1.c projects/diffused_head/crypto/openssl/ssl/ssl_cert.c projects/diffused_head/crypto/openssl/ssl/ssl_ciph.c projects/diffused_head/crypto/openssl/ssl/ssl_err.c projects/diffused_head/crypto/openssl/ssl/ssl_lib.c projects/diffused_head/crypto/openssl/ssl/ssl_locl.h projects/diffused_head/crypto/openssl/ssl/ssl_sess.c projects/diffused_head/crypto/openssl/ssl/ssl_stat.c projects/diffused_head/crypto/openssl/ssl/ssl_txt.c projects/diffused_head/crypto/openssl/ssl/ssltest.c projects/diffused_head/crypto/openssl/ssl/t1_clnt.c projects/diffused_head/crypto/openssl/ssl/t1_enc.c projects/diffused_head/crypto/openssl/ssl/t1_lib.c projects/diffused_head/crypto/openssl/ssl/t1_meth.c projects/diffused_head/crypto/openssl/ssl/t1_srvr.c projects/diffused_head/crypto/openssl/ssl/tls1.h projects/diffused_head/crypto/openssl/util/ck_errf.pl projects/diffused_head/crypto/openssl/util/clean-depend.pl projects/diffused_head/crypto/openssl/util/domd projects/diffused_head/crypto/openssl/util/libeay.num projects/diffused_head/crypto/openssl/util/mk1mf.pl projects/diffused_head/crypto/openssl/util/mkdef.pl projects/diffused_head/crypto/openssl/util/mkerr.pl projects/diffused_head/crypto/openssl/util/mkfiles.pl projects/diffused_head/crypto/openssl/util/mklink.pl projects/diffused_head/crypto/openssl/util/mkstack.pl projects/diffused_head/crypto/openssl/util/pl/BC-32.pl projects/diffused_head/crypto/openssl/util/pl/Mingw32.pl projects/diffused_head/crypto/openssl/util/pl/VC-32.pl projects/diffused_head/crypto/openssl/util/pl/netware.pl projects/diffused_head/crypto/openssl/util/point.sh projects/diffused_head/crypto/openssl/util/selftest.pl projects/diffused_head/crypto/openssl/util/shlib_wrap.sh projects/diffused_head/crypto/openssl/util/ssleay.num projects/diffused_head/etc/Makefile projects/diffused_head/etc/defaults/periodic.conf projects/diffused_head/etc/defaults/rc.conf projects/diffused_head/etc/devd.conf projects/diffused_head/etc/devd/usb.conf projects/diffused_head/etc/login.conf projects/diffused_head/etc/mtree/BSD.include.dist projects/diffused_head/etc/mtree/BSD.usr.dist projects/diffused_head/etc/ntp.conf projects/diffused_head/etc/pam.d/Makefile projects/diffused_head/etc/periodic/daily/400.status-disks projects/diffused_head/etc/periodic/daily/420.status-network projects/diffused_head/etc/rc.d/adjkerntz projects/diffused_head/etc/rc.d/bgfsck projects/diffused_head/etc/rc.d/bridge projects/diffused_head/etc/rc.d/cleanvar projects/diffused_head/etc/rc.d/devd projects/diffused_head/etc/rc.d/geli projects/diffused_head/etc/rc.d/geli2 projects/diffused_head/etc/rc.d/initrandom projects/diffused_head/etc/rc.d/ip6addrctl projects/diffused_head/etc/rc.d/ipfw projects/diffused_head/etc/rc.d/jail projects/diffused_head/etc/rc.d/kfd projects/diffused_head/etc/rc.d/kldxref projects/diffused_head/etc/rc.d/named projects/diffused_head/etc/rc.d/power_profile projects/diffused_head/etc/rc.d/random projects/diffused_head/etc/rc.d/rarpd projects/diffused_head/etc/rc.d/securelevel projects/diffused_head/etc/rc.d/tmp projects/diffused_head/etc/rc.firewall projects/diffused_head/etc/rc.subr projects/diffused_head/etc/syslog.conf projects/diffused_head/games/fortune/datfiles/fortunes projects/diffused_head/games/fortune/datfiles/freebsd-tips projects/diffused_head/gnu/lib/Makefile projects/diffused_head/gnu/lib/csu/Makefile projects/diffused_head/gnu/lib/libgcc/Makefile projects/diffused_head/gnu/lib/libgomp/config.h projects/diffused_head/gnu/lib/libstdc++/Makefile projects/diffused_head/gnu/lib/libstdc++/config.h projects/diffused_head/gnu/lib/libsupc++/Makefile projects/diffused_head/gnu/lib/libsupc++/Version.map projects/diffused_head/gnu/usr.bin/binutils/Makefile.inc0 projects/diffused_head/gnu/usr.bin/binutils/addr2line/addr2line.1 projects/diffused_head/gnu/usr.bin/binutils/as/Makefile projects/diffused_head/gnu/usr.bin/binutils/ld/Makefile.arm projects/diffused_head/gnu/usr.bin/binutils/libbfd/Makefile.arm projects/diffused_head/gnu/usr.bin/binutils/libbfd/Makefile.powerpc64 projects/diffused_head/gnu/usr.bin/binutils/ranlib/ranlib.1 projects/diffused_head/gnu/usr.bin/binutils/size/size.1 projects/diffused_head/gnu/usr.bin/binutils/strip/strip.1 projects/diffused_head/gnu/usr.bin/cc/Makefile.inc projects/diffused_head/gnu/usr.bin/cc/Makefile.tgt projects/diffused_head/gnu/usr.bin/cc/cc_tools/auto-host.h projects/diffused_head/gnu/usr.bin/diff/Makefile projects/diffused_head/gnu/usr.bin/gdb/Makefile.inc projects/diffused_head/gnu/usr.bin/gdb/arch/powerpc/config.h projects/diffused_head/gnu/usr.bin/gdb/gdb/gdb.1 projects/diffused_head/gnu/usr.bin/gdb/libgdb/Makefile projects/diffused_head/gnu/usr.bin/gdb/libgdb/fbsd-threads.c projects/diffused_head/gnu/usr.bin/groff/tmac/Makefile projects/diffused_head/gnu/usr.bin/groff/tmac/mdoc.local projects/diffused_head/gnu/usr.bin/sort/Makefile projects/diffused_head/include/Makefile projects/diffused_head/include/dirent.h projects/diffused_head/include/fmtmsg.h projects/diffused_head/include/gssapi/gssapi.h projects/diffused_head/include/malloc_np.h projects/diffused_head/include/paths.h projects/diffused_head/include/printf.h projects/diffused_head/include/protocols/dumprestore.h projects/diffused_head/include/rpc/auth.h projects/diffused_head/include/rpc/auth_unix.h projects/diffused_head/include/stdatomic.h projects/diffused_head/include/wchar.h projects/diffused_head/kerberos5/Makefile.inc projects/diffused_head/kerberos5/lib/libasn1/Makefile projects/diffused_head/kerberos5/lib/libgssapi_krb5/Makefile projects/diffused_head/kerberos5/lib/libgssapi_ntlm/Makefile projects/diffused_head/kerberos5/lib/libgssapi_spnego/Makefile projects/diffused_head/kerberos5/lib/libhdb/Makefile projects/diffused_head/kerberos5/lib/libheimbase/Makefile projects/diffused_head/kerberos5/lib/libheimipcc/Makefile projects/diffused_head/kerberos5/lib/libheimipcs/Makefile projects/diffused_head/kerberos5/lib/libhx509/Makefile projects/diffused_head/kerberos5/lib/libkadm5clnt/Makefile projects/diffused_head/kerberos5/lib/libkadm5srv/Makefile projects/diffused_head/kerberos5/lib/libkafs5/Makefile projects/diffused_head/kerberos5/lib/libkdc/Makefile projects/diffused_head/kerberos5/lib/libkrb5/Makefile projects/diffused_head/kerberos5/lib/libroken/Makefile projects/diffused_head/kerberos5/lib/libvers/Makefile projects/diffused_head/kerberos5/libexec/hprop/Makefile projects/diffused_head/kerberos5/libexec/kadmind/Makefile projects/diffused_head/kerberos5/libexec/kcm/Makefile projects/diffused_head/kerberos5/libexec/kdigest/Makefile projects/diffused_head/kerberos5/libexec/kfd/Makefile projects/diffused_head/kerberos5/tools/asn1_compile/Makefile projects/diffused_head/kerberos5/tools/slc/Makefile projects/diffused_head/kerberos5/usr.bin/hxtool/Makefile projects/diffused_head/kerberos5/usr.bin/kadmin/Makefile projects/diffused_head/kerberos5/usr.bin/kcc/Makefile projects/diffused_head/kerberos5/usr.bin/kf/Makefile projects/diffused_head/kerberos5/usr.bin/string2key/Makefile projects/diffused_head/kerberos5/usr.sbin/iprop-log/Makefile projects/diffused_head/kerberos5/usr.sbin/ktutil/Makefile projects/diffused_head/lib/Makefile projects/diffused_head/lib/bind/dns/code.h projects/diffused_head/lib/bind/dns/dns/enumtype.h projects/diffused_head/lib/bind/dns/dns/rdatastruct.h projects/diffused_head/lib/clang/Makefile projects/diffused_head/lib/clang/clang.build.mk projects/diffused_head/lib/clang/clang.lib.mk projects/diffused_head/lib/clang/include/Makefile projects/diffused_head/lib/clang/include/clang/Basic/Version.inc projects/diffused_head/lib/clang/include/llvm/Config/AsmParsers.def projects/diffused_head/lib/clang/include/llvm/Config/Disassemblers.def projects/diffused_head/lib/clang/include/llvm/Config/config.h projects/diffused_head/lib/clang/include/llvm/Config/llvm-config.h projects/diffused_head/lib/clang/libclanganalysis/Makefile projects/diffused_head/lib/clang/libclangarcmigrate/Makefile projects/diffused_head/lib/clang/libclangast/Makefile projects/diffused_head/lib/clang/libclangbasic/Makefile projects/diffused_head/lib/clang/libclangcodegen/Makefile projects/diffused_head/lib/clang/libclangdriver/Makefile projects/diffused_head/lib/clang/libclangedit/Makefile projects/diffused_head/lib/clang/libclangfrontend/Makefile projects/diffused_head/lib/clang/libclangfrontendtool/Makefile projects/diffused_head/lib/clang/libclangparse/Makefile projects/diffused_head/lib/clang/libclangrewrite/Makefile projects/diffused_head/lib/clang/libclangsema/Makefile projects/diffused_head/lib/clang/libclangserialization/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercheckers/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzercore/Makefile projects/diffused_head/lib/clang/libclangstaticanalyzerfrontend/Makefile projects/diffused_head/lib/clang/libllvmanalysis/Makefile projects/diffused_head/lib/clang/libllvmcodegen/Makefile projects/diffused_head/lib/clang/libllvmcore/Makefile projects/diffused_head/lib/clang/libllvminstrumentation/Makefile projects/diffused_head/lib/clang/libllvmmc/Makefile projects/diffused_head/lib/clang/libllvmmipscodegen/Makefile projects/diffused_head/lib/clang/libllvmmipsinstprinter/Makefile projects/diffused_head/lib/clang/libllvmpowerpccodegen/Makefile projects/diffused_head/lib/clang/libllvmtablegen/Makefile projects/diffused_head/lib/libarchive/Makefile projects/diffused_head/lib/libarchive/config_freebsd.h projects/diffused_head/lib/libarchive/test/Makefile projects/diffused_head/lib/libbluetooth/bluetooth.3 projects/diffused_head/lib/libc++/Makefile projects/diffused_head/lib/libc/Makefile projects/diffused_head/lib/libc/amd64/sys/Makefile.inc projects/diffused_head/lib/libc/arm/Symbol.map projects/diffused_head/lib/libc/arm/gen/__aeabi_read_tp.S projects/diffused_head/lib/libc/arm/gen/_set_tp.c projects/diffused_head/lib/libc/compat-43/sigpause.2 projects/diffused_head/lib/libc/gen/Makefile.inc projects/diffused_head/lib/libc/gen/Symbol.map projects/diffused_head/lib/libc/gen/arc4random.c projects/diffused_head/lib/libc/gen/closedir.c projects/diffused_head/lib/libc/gen/directory.3 projects/diffused_head/lib/libc/gen/fstab.c projects/diffused_head/lib/libc/gen/fts-compat.c projects/diffused_head/lib/libc/gen/fts.c projects/diffused_head/lib/libc/gen/ftw.c projects/diffused_head/lib/libc/gen/getcwd.c projects/diffused_head/lib/libc/gen/getnetgrent.c projects/diffused_head/lib/libc/gen/nftw.c projects/diffused_head/lib/libc/gen/opendir.c projects/diffused_head/lib/libc/gen/posix_spawnattr_getflags.3 projects/diffused_head/lib/libc/gen/readdir.c projects/diffused_head/lib/libc/gen/rewinddir.c projects/diffused_head/lib/libc/gen/seekdir.c projects/diffused_head/lib/libc/gen/signal.3 projects/diffused_head/lib/libc/gen/sysconf.c projects/diffused_head/lib/libc/gen/syslog.c projects/diffused_head/lib/libc/gen/telldir.c projects/diffused_head/lib/libc/gmon/moncontrol.3 projects/diffused_head/lib/libc/i386/gen/getcontextx.c projects/diffused_head/lib/libc/i386/sys/Makefile.inc projects/diffused_head/lib/libc/include/libc_private.h projects/diffused_head/lib/libc/include/port_before.h projects/diffused_head/lib/libc/locale/Makefile.inc projects/diffused_head/lib/libc/locale/collate.c projects/diffused_head/lib/libc/locale/ctype_l.3 projects/diffused_head/lib/libc/locale/duplocale.3 projects/diffused_head/lib/libc/locale/freelocale.3 projects/diffused_head/lib/libc/locale/isgraph.3 projects/diffused_head/lib/libc/locale/islower.3 projects/diffused_head/lib/libc/locale/ispunct.3 projects/diffused_head/lib/libc/locale/isspace.3 projects/diffused_head/lib/libc/locale/newlocale.3 projects/diffused_head/lib/libc/locale/nl_langinfo.3 projects/diffused_head/lib/libc/locale/querylocale.3 projects/diffused_head/lib/libc/locale/setrunelocale.c projects/diffused_head/lib/libc/locale/toupper.c projects/diffused_head/lib/libc/locale/uselocale.3 projects/diffused_head/lib/libc/locale/xlocale.3 projects/diffused_head/lib/libc/net/Makefile.inc projects/diffused_head/lib/libc/net/getaddrinfo.c projects/diffused_head/lib/libc/net/if_indextoname.c projects/diffused_head/lib/libc/net/if_nameindex.c projects/diffused_head/lib/libc/net/if_nametoindex.c projects/diffused_head/lib/libc/net/nsdispatch.3 projects/diffused_head/lib/libc/net/nsparser.y projects/diffused_head/lib/libc/net/sctp_connectx.3 projects/diffused_head/lib/libc/net/sctp_recvmsg.3 projects/diffused_head/lib/libc/net/sctp_sys_calls.c projects/diffused_head/lib/libc/net/sourcefilter.3 projects/diffused_head/lib/libc/net/sourcefilter.c projects/diffused_head/lib/libc/posix1e/acl_delete_entry.3 projects/diffused_head/lib/libc/posix1e/mac_prepare.3 projects/diffused_head/lib/libc/powerpc/Symbol.map projects/diffused_head/lib/libc/powerpc/gen/Makefile.inc projects/diffused_head/lib/libc/rpc/auth_des.c projects/diffused_head/lib/libc/rpc/auth_unix.c projects/diffused_head/lib/libc/rpc/authunix_prot.c projects/diffused_head/lib/libc/rpc/clnt_perror.c projects/diffused_head/lib/libc/rpc/clnt_vc.c projects/diffused_head/lib/libc/rpc/getnetpath.c projects/diffused_head/lib/libc/rpc/publickey.3 projects/diffused_head/lib/libc/rpc/rpc_generic.c projects/diffused_head/lib/libc/rpc/rpc_soc.3 projects/diffused_head/lib/libc/rpc/rpcb_clnt.c projects/diffused_head/lib/libc/rpc/svc_auth_des.c projects/diffused_head/lib/libc/rpc/svc_auth_unix.c projects/diffused_head/lib/libc/rpc/svc_run.c projects/diffused_head/lib/libc/stdio/Makefile.inc projects/diffused_head/lib/libc/stdio/fgets.3 projects/diffused_head/lib/libc/stdio/fpurge.c projects/diffused_head/lib/libc/stdio/scanf.3 projects/diffused_head/lib/libc/stdio/wscanf.3 projects/diffused_head/lib/libc/stdio/xprintf.c projects/diffused_head/lib/libc/stdlib/Makefile.inc projects/diffused_head/lib/libc/stdlib/at_quick_exit.3 projects/diffused_head/lib/libc/stdlib/getenv.3 projects/diffused_head/lib/libc/stdlib/getopt_long.c projects/diffused_head/lib/libc/stdlib/quick_exit.3 projects/diffused_head/lib/libc/stdlib/random.c projects/diffused_head/lib/libc/stdlib/realpath.3 projects/diffused_head/lib/libc/stdlib/realpath.c projects/diffused_head/lib/libc/stdlib/strfmon.3 projects/diffused_head/lib/libc/stdtime/Makefile.inc projects/diffused_head/lib/libc/stdtime/strftime.3 projects/diffused_head/lib/libc/stdtime/strftime.c projects/diffused_head/lib/libc/stdtime/strptime.3 projects/diffused_head/lib/libc/string/Makefile.inc projects/diffused_head/lib/libc/string/strcasecmp.3 projects/diffused_head/lib/libc/string/strcoll.3 projects/diffused_head/lib/libc/string/strerror.3 projects/diffused_head/lib/libc/string/strlcpy.3 projects/diffused_head/lib/libc/string/strstr.3 projects/diffused_head/lib/libc/string/strxfrm.3 projects/diffused_head/lib/libc/sys/Makefile.inc projects/diffused_head/lib/libc/sys/Symbol.map projects/diffused_head/lib/libc/sys/dup.2 projects/diffused_head/lib/libc/sys/fcntl.2 projects/diffused_head/lib/libc/sys/fcntl.c projects/diffused_head/lib/libc/sys/ffclock.2 projects/diffused_head/lib/libc/sys/ktrace.2 projects/diffused_head/lib/libc/sys/lseek.2 projects/diffused_head/lib/libc/sys/msgsnd.2 projects/diffused_head/lib/libc/sys/pathconf.2 projects/diffused_head/lib/libc/sys/posix_fadvise.2 projects/diffused_head/lib/libc/sys/rtprio.2 projects/diffused_head/lib/libc/sys/setfib.2 projects/diffused_head/lib/libc/sys/shm_open.2 projects/diffused_head/lib/libc/sys/sigqueue.2 projects/diffused_head/lib/libc/sys/stat.2 projects/diffused_head/lib/libc/sys/timer_create.2 projects/diffused_head/lib/libc/sys/timer_delete.2 projects/diffused_head/lib/libc/sys/timer_settime.2 projects/diffused_head/lib/libc/sys/unlink.2 projects/diffused_head/lib/libcompiler_rt/Makefile projects/diffused_head/lib/libcrypt/Makefile projects/diffused_head/lib/libcrypt/crypt.3 projects/diffused_head/lib/libcrypt/crypt.c projects/diffused_head/lib/libcxxrt/Makefile projects/diffused_head/lib/libcxxrt/Version.map projects/diffused_head/lib/libdwarf/dwarf.h projects/diffused_head/lib/libdwarf/dwarf_attrval.c projects/diffused_head/lib/libdwarf/dwarf_dump.c projects/diffused_head/lib/libdwarf/dwarf_init.c projects/diffused_head/lib/libedit/chared.c projects/diffused_head/lib/libedit/chared.h projects/diffused_head/lib/libedit/common.c projects/diffused_head/lib/libedit/editline.3 projects/diffused_head/lib/libedit/editrc.5 projects/diffused_head/lib/libedit/el.c projects/diffused_head/lib/libedit/el.h projects/diffused_head/lib/libedit/histedit.h projects/diffused_head/lib/libedit/history.c projects/diffused_head/lib/libedit/key.c projects/diffused_head/lib/libedit/key.h projects/diffused_head/lib/libedit/makelist projects/diffused_head/lib/libedit/prompt.c projects/diffused_head/lib/libedit/prompt.h projects/diffused_head/lib/libedit/read.c projects/diffused_head/lib/libedit/refresh.c projects/diffused_head/lib/libedit/search.c projects/diffused_head/lib/libedit/sig.c projects/diffused_head/lib/libedit/sig.h projects/diffused_head/lib/libedit/term.c projects/diffused_head/lib/libedit/term.h projects/diffused_head/lib/libedit/tokenizer.c projects/diffused_head/lib/libedit/tty.c projects/diffused_head/lib/libedit/vi.c projects/diffused_head/lib/libelf/Makefile projects/diffused_head/lib/libelf/elf.3 projects/diffused_head/lib/libelf/elf_begin.3 projects/diffused_head/lib/libelf/elf_getdata.3 projects/diffused_head/lib/libelf/elf_strptr.3 projects/diffused_head/lib/libelf/gelf.3 projects/diffused_head/lib/libelf/gelf_getphdr.3 projects/diffused_head/lib/libelf/gelf_newehdr.3 projects/diffused_head/lib/libfetch/common.c projects/diffused_head/lib/libfetch/common.h projects/diffused_head/lib/libgpib/gpib.3 projects/diffused_head/lib/libgssapi/gss_accept_sec_context.3 projects/diffused_head/lib/libgssapi/gss_acquire_cred.3 projects/diffused_head/lib/libgssapi/gss_add_cred.3 projects/diffused_head/lib/libgssapi/gss_add_oid_set_member.3 projects/diffused_head/lib/libgssapi/gss_canonicalize_name.3 projects/diffused_head/lib/libgssapi/gss_compare_name.3 projects/diffused_head/lib/libgssapi/gss_context_time.3 projects/diffused_head/lib/libgssapi/gss_create_empty_oid_set.3 projects/diffused_head/lib/libgssapi/gss_delete_sec_context.3 projects/diffused_head/lib/libgssapi/gss_display_name.3 projects/diffused_head/lib/libgssapi/gss_display_status.3 projects/diffused_head/lib/libgssapi/gss_duplicate_name.3 projects/diffused_head/lib/libgssapi/gss_export_name.3 projects/diffused_head/lib/libgssapi/gss_export_sec_context.3 projects/diffused_head/lib/libgssapi/gss_get_mic.3 projects/diffused_head/lib/libgssapi/gss_import_name.3 projects/diffused_head/lib/libgssapi/gss_import_sec_context.3 projects/diffused_head/lib/libgssapi/gss_indicate_mechs.3 projects/diffused_head/lib/libgssapi/gss_init_sec_context.3 projects/diffused_head/lib/libgssapi/gss_inquire_context.3 projects/diffused_head/lib/libgssapi/gss_inquire_cred.3 projects/diffused_head/lib/libgssapi/gss_inquire_cred_by_mech.3 projects/diffused_head/lib/libgssapi/gss_inquire_mechs_for_name.3 projects/diffused_head/lib/libgssapi/gss_inquire_names_for_mech.3 projects/diffused_head/lib/libgssapi/gss_process_context_token.3 projects/diffused_head/lib/libgssapi/gss_release_buffer.3 projects/diffused_head/lib/libgssapi/gss_release_cred.3 projects/diffused_head/lib/libgssapi/gss_release_name.3 projects/diffused_head/lib/libgssapi/gss_release_oid_set.3 projects/diffused_head/lib/libgssapi/gss_test_oid_set_member.3 projects/diffused_head/lib/libgssapi/gss_unwrap.3 projects/diffused_head/lib/libgssapi/gss_verify_mic.3 projects/diffused_head/lib/libgssapi/gss_wrap.3 projects/diffused_head/lib/libgssapi/gss_wrap_size_limit.3 projects/diffused_head/lib/libgssapi/gssapi.3 projects/diffused_head/lib/libgssapi/mech.5 projects/diffused_head/lib/libjail/jail.c projects/diffused_head/lib/libkiconv/Makefile projects/diffused_head/lib/libkiconv/xlat16_iconv.c projects/diffused_head/lib/libkvm/kvm_getpcpu.3 projects/diffused_head/lib/libmagic/Makefile projects/diffused_head/lib/libmagic/config.h projects/diffused_head/lib/libncp/ncpl_nls.c projects/diffused_head/lib/libpam/libpam/Makefile projects/diffused_head/lib/libpam/modules/pam_exec/pam_exec.8 projects/diffused_head/lib/libpam/modules/pam_krb5/pam_krb5.c projects/diffused_head/lib/libpam/modules/pam_ssh/pam_ssh.c projects/diffused_head/lib/libpam/modules/pam_unix/pam_unix.c projects/diffused_head/lib/libpcap/Makefile projects/diffused_head/lib/libpcap/config.h projects/diffused_head/lib/libpmc/pmc.3 projects/diffused_head/lib/libprocstat/cd9660.c projects/diffused_head/lib/libprocstat/common_kvm.c projects/diffused_head/lib/libprocstat/libprocstat.3 projects/diffused_head/lib/libprocstat/libprocstat.c projects/diffused_head/lib/libradius/libradius.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_get_error.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_get_mech_info.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_get_principal_name.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_get_versions.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_getcred.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_is_installed.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_max_data_length.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_mech_to_oid.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_oid_to_mech.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_qop_to_num.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_seccreate.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_set_callback.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_set_defaults.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_set_svc_name.3 projects/diffused_head/lib/librpcsec_gss/rpc_gss_svc_max_data_length.3 projects/diffused_head/lib/libstand/Makefile projects/diffused_head/lib/libstand/bswap.c projects/diffused_head/lib/libstand/stand.h projects/diffused_head/lib/libtacplus/libtacplus.3 projects/diffused_head/lib/libthr/arch/arm/include/pthread_md.h projects/diffused_head/lib/libthr/thread/thr_cond.c projects/diffused_head/lib/libthr/thread/thr_fork.c projects/diffused_head/lib/libthr/thread/thr_getcpuclockid.c projects/diffused_head/lib/libthr/thread/thr_getschedparam.c projects/diffused_head/lib/libthr/thread/thr_info.c projects/diffused_head/lib/libthr/thread/thr_init.c projects/diffused_head/lib/libthr/thread/thr_kern.c projects/diffused_head/lib/libthr/thread/thr_mutex.c projects/diffused_head/lib/libthr/thread/thr_private.h projects/diffused_head/lib/libthr/thread/thr_resume_np.c projects/diffused_head/lib/libthr/thread/thr_setprio.c projects/diffused_head/lib/libthr/thread/thr_setschedparam.c projects/diffused_head/lib/libthr/thread/thr_sig.c projects/diffused_head/lib/libthr/thread/thr_sleepq.c projects/diffused_head/lib/libthr/thread/thr_suspend_np.c projects/diffused_head/lib/libthr/thread/thr_umtx.h projects/diffused_head/lib/libusb/Makefile projects/diffused_head/lib/libusb/libusb.3 projects/diffused_head/lib/libusb/libusb.h projects/diffused_head/lib/libusb/libusb10.c projects/diffused_head/lib/libusb/libusb10_desc.c projects/diffused_head/lib/libusb/libusb10_io.c projects/diffused_head/lib/libusb/libusb20.3 projects/diffused_head/lib/libusb/libusb20.c projects/diffused_head/lib/libusb/libusb20.h projects/diffused_head/lib/libusb/libusb20_int.h projects/diffused_head/lib/libusb/libusb20_ugen20.c projects/diffused_head/lib/libusbhid/parse.c projects/diffused_head/lib/libutil/Makefile projects/diffused_head/lib/libutil/auth.c projects/diffused_head/lib/libutil/login.conf.5 projects/diffused_head/lib/libutil/property.3 projects/diffused_head/lib/libutil/pw_util.c projects/diffused_head/lib/libz/ChangeLog projects/diffused_head/lib/libz/FAQ projects/diffused_head/lib/libz/FREEBSD-upgrade (contents, props changed) projects/diffused_head/lib/libz/Makefile (contents, props changed) projects/diffused_head/lib/libz/README projects/diffused_head/lib/libz/Symbol.map (contents, props changed) projects/diffused_head/lib/libz/Versions.def (contents, props changed) projects/diffused_head/lib/libz/adler32.c projects/diffused_head/lib/libz/contrib/asm686/match.S (contents, props changed) projects/diffused_head/lib/libz/crc32.c projects/diffused_head/lib/libz/crc32.h projects/diffused_head/lib/libz/deflate.c projects/diffused_head/lib/libz/deflate.h projects/diffused_head/lib/libz/doc/algorithm.txt (contents, props changed) projects/diffused_head/lib/libz/gzguts.h (contents, props changed) projects/diffused_head/lib/libz/gzlib.c projects/diffused_head/lib/libz/gzread.c projects/diffused_head/lib/libz/gzwrite.c projects/diffused_head/lib/libz/infback.c projects/diffused_head/lib/libz/inffixed.h projects/diffused_head/lib/libz/inflate.c projects/diffused_head/lib/libz/inftrees.c projects/diffused_head/lib/libz/trees.c projects/diffused_head/lib/libz/zconf.h projects/diffused_head/lib/libz/zlib.3 projects/diffused_head/lib/libz/zlib.h projects/diffused_head/lib/libz/zopen.c (contents, props changed) projects/diffused_head/lib/libz/zutil.c projects/diffused_head/lib/libz/zutil.h projects/diffused_head/lib/msun/Makefile projects/diffused_head/lib/msun/Symbol.map projects/diffused_head/lib/msun/man/cexp.3 projects/diffused_head/lib/msun/man/complex.3 projects/diffused_head/lib/msun/man/exp.3 projects/diffused_head/lib/msun/src/e_exp.c projects/diffused_head/lib/msun/src/e_rem_pio2.c projects/diffused_head/lib/msun/src/e_rem_pio2f.c projects/diffused_head/lib/msun/src/k_cosf.c projects/diffused_head/lib/msun/src/k_sinf.c projects/diffused_head/lib/msun/src/k_tanf.c projects/diffused_head/lib/msun/src/math.h projects/diffused_head/lib/msun/src/math_private.h projects/diffused_head/lib/msun/src/s_cbrtl.c projects/diffused_head/libexec/rbootd/rbootd.8 projects/diffused_head/libexec/rbootd/rbootd.c projects/diffused_head/libexec/rbootd/rmpproto.c projects/diffused_head/libexec/revnetgroup/revnetgroup.8 projects/diffused_head/libexec/rpc.rstatd/rstat_proc.c projects/diffused_head/libexec/rshd/rshd.8 projects/diffused_head/libexec/rtld-elf/arm/reloc.c projects/diffused_head/libexec/rtld-elf/arm/rtld_start.S projects/diffused_head/libexec/rtld-elf/libmap.c projects/diffused_head/libexec/rtld-elf/map_object.c projects/diffused_head/libexec/rtld-elf/rtld.1 projects/diffused_head/libexec/rtld-elf/rtld.c projects/diffused_head/libexec/rtld-elf/rtld.h projects/diffused_head/libexec/tftpd/Makefile projects/diffused_head/libexec/tftpd/tftpd.8 projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/relnotes/article.sgml projects/diffused_head/release/doc/share/misc/dev.archlist.txt projects/diffused_head/release/picobsd/build/picobsd projects/diffused_head/release/picobsd/tinyware/login/pico-login.c projects/diffused_head/release/picobsd/tinyware/passwd/passwd.c projects/diffused_head/rescue/rescue/Makefile projects/diffused_head/sbin/Makefile projects/diffused_head/sbin/adjkerntz/adjkerntz.c projects/diffused_head/sbin/atacontrol/atacontrol.8 projects/diffused_head/sbin/camcontrol/Makefile projects/diffused_head/sbin/camcontrol/camcontrol.8 projects/diffused_head/sbin/camcontrol/camcontrol.c projects/diffused_head/sbin/camcontrol/camcontrol.h projects/diffused_head/sbin/camcontrol/fwdownload.c projects/diffused_head/sbin/devd/devd.cc projects/diffused_head/sbin/devd/parse.y projects/diffused_head/sbin/devfs/devfs.8 projects/diffused_head/sbin/dhclient/dhclient.c projects/diffused_head/sbin/dhclient/dhcpd.h projects/diffused_head/sbin/dump/dump.8 projects/diffused_head/sbin/fsck_ffs/suj.c projects/diffused_head/sbin/fsck_msdosfs/main.c projects/diffused_head/sbin/geom/class/eli/geli.8 projects/diffused_head/sbin/geom/class/multipath/geom_multipath.c projects/diffused_head/sbin/geom/class/multipath/gmultipath.8 projects/diffused_head/sbin/geom/class/part/geom_part.c projects/diffused_head/sbin/geom/class/part/gpart.8 projects/diffused_head/sbin/geom/class/raid/graid.8 projects/diffused_head/sbin/geom/class/sched/gsched.8 projects/diffused_head/sbin/geom/class/virstor/gvirstor.8 projects/diffused_head/sbin/ggate/shared/ggate.h projects/diffused_head/sbin/growfs/growfs.8 projects/diffused_head/sbin/growfs/growfs.c projects/diffused_head/sbin/gvinum/Makefile projects/diffused_head/sbin/gvinum/gvinum.8 projects/diffused_head/sbin/hastctl/hastctl.8 projects/diffused_head/sbin/hastd/hast.conf.5 projects/diffused_head/sbin/hastd/hast.h projects/diffused_head/sbin/hastd/hastd.8 projects/diffused_head/sbin/hastd/parse.y projects/diffused_head/sbin/hastd/primary.c projects/diffused_head/sbin/hastd/proto_common.c projects/diffused_head/sbin/hastd/synch.h projects/diffused_head/sbin/ifconfig/af_inet6.c projects/diffused_head/sbin/ifconfig/af_nd6.c projects/diffused_head/sbin/ifconfig/ifconfig.8 projects/diffused_head/sbin/ifconfig/ifconfig.c projects/diffused_head/sbin/ifconfig/iflagg.c projects/diffused_head/sbin/init/init.c projects/diffused_head/sbin/ipf/ipf/Makefile projects/diffused_head/sbin/ipfw/dummynet.c projects/diffused_head/sbin/ipfw/ipfw.8 projects/diffused_head/sbin/ipfw/ipfw2.c projects/diffused_head/sbin/ipfw/nat.c projects/diffused_head/sbin/iscontrol/iscsi.conf.5 projects/diffused_head/sbin/mca/Makefile projects/diffused_head/sbin/mca/mca.c projects/diffused_head/sbin/md5/Makefile projects/diffused_head/sbin/md5/md5.1 projects/diffused_head/sbin/md5/md5.c projects/diffused_head/sbin/mdconfig/Makefile projects/diffused_head/sbin/mdconfig/mdconfig.8 projects/diffused_head/sbin/mdconfig/mdconfig.c projects/diffused_head/sbin/mount/mount.8 projects/diffused_head/sbin/natd/natd.8 projects/diffused_head/sbin/ping/ping.c projects/diffused_head/sbin/restore/restore.8 projects/diffused_head/sbin/restore/utilities.c projects/diffused_head/sbin/setkey/setkey.8 projects/diffused_head/sbin/shutdown/shutdown.c projects/diffused_head/secure/lib/libcrypt/crypt-des.c projects/diffused_head/secure/lib/libcrypto/Makefile projects/diffused_head/secure/lib/libcrypto/Makefile.asm projects/diffused_head/secure/lib/libcrypto/Makefile.inc projects/diffused_head/secure/lib/libcrypto/Makefile.man projects/diffused_head/secure/lib/libcrypto/engines/Makefile projects/diffused_head/secure/lib/libcrypto/engines/Makefile.inc projects/diffused_head/secure/lib/libcrypto/i386/bf-586.s projects/diffused_head/secure/lib/libcrypto/i386/bf-686.s projects/diffused_head/secure/lib/libcrypto/i386/bn-586.s projects/diffused_head/secure/lib/libcrypto/i386/cast-586.s projects/diffused_head/secure/lib/libcrypto/i386/co-586.s projects/diffused_head/secure/lib/libcrypto/i386/crypt586.s projects/diffused_head/secure/lib/libcrypto/i386/des-586.s projects/diffused_head/secure/lib/libcrypto/i386/md5-586.s projects/diffused_head/secure/lib/libcrypto/i386/rc4-586.s projects/diffused_head/secure/lib/libcrypto/i386/rc5-586.s projects/diffused_head/secure/lib/libcrypto/i386/rmd-586.s projects/diffused_head/secure/lib/libcrypto/i386/sha1-586.s projects/diffused_head/secure/lib/libcrypto/man/ASN1_OBJECT_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ASN1_STRING_length.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ASN1_STRING_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ASN1_STRING_print_ex.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ASN1_generate_nconf.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_ctrl.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_base64.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_buffer.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_cipher.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_md.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_null.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_f_ssl.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_find_type.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_push.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_read.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_accept.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_bio.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_connect.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_fd.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_file.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_mem.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_null.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_s_socket.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_set_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BIO_should_retry.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_BLINDING_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_CTX_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_CTX_start.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_add.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_add_word.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_bn2bin.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_cmp.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_copy.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_generate_prime.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_mod_inverse.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_mod_mul_montgomery.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_mod_mul_reciprocal.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_num_bytes.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_rand.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_set_bit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_swap.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/BN_zero.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/CONF_modules_free.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/CONF_modules_load_file.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/CRYPTO_set_ex_data.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_generate_key.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_generate_parameters.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_set_method.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DH_size.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_SIG_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_do_sign.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_dup_DH.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_generate_key.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_generate_parameters.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_set_method.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_sign.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/DSA_size.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_GET_LIB.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_clear_error.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_error_string.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_get_error.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_load_crypto_strings.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_load_strings.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_print_errors.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_put_error.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_remove_state.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ERR_set_mark.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_BytesToKey.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_DigestInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_EncryptInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_OpenInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_PKEY_set1_RSA.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_SealInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_SignInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/EVP_VerifyInit.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OBJ_nid2obj.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OPENSSL_Applink.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OPENSSL_VERSION_NUMBER.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OPENSSL_config.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OPENSSL_ia32cap.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OPENSSL_load_builtin_modules.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/OpenSSL_add_all_algorithms.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS12_create.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS12_parse.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS7_decrypt.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS7_encrypt.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS7_sign.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/PKCS7_verify.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_add.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_bytes.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_cleanup.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_egd.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_load_file.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RAND_set_rand_method.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_blinding_on.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_check_key.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_generate_key.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_padding_add_PKCS1_type_1.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_print.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_private_encrypt.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_public_encrypt.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_set_method.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_sign.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_sign_ASN1_OCTET_STRING.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/RSA_size.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/SMIME_read_PKCS7.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/SMIME_write_PKCS7.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/X509_NAME_ENTRY_get_object.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/X509_NAME_add_entry_by_txt.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/X509_NAME_get_index_by_NID.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/X509_NAME_print_ex.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/X509_new.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/bio.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/blowfish.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/bn.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/bn_internal.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/buffer.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/crypto.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_ASN1_OBJECT.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_DHparams.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_DSAPublicKey.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_PKCS8PrivateKey.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_RSAPublicKey.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509_ALGOR.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509_CRL.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509_NAME.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509_REQ.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/d2i_X509_SIG.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/des.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/dh.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/dsa.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ecdsa.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/engine.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/err.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/evp.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/hmac.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/lh_stats.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/lhash.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/md5.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/mdc2.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/pem.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/rand.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/rc4.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ripemd.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/rsa.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/sha.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/threads.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ui.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/ui_compat.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/man/x509.3 (contents, props changed) projects/diffused_head/secure/lib/libcrypto/opensslconf-arm.h projects/diffused_head/secure/lib/libcrypto/opensslconf-ia64.h projects/diffused_head/secure/lib/libcrypto/opensslconf-mips.h projects/diffused_head/secure/lib/libcrypto/opensslconf-powerpc.h projects/diffused_head/secure/lib/libcrypto/opensslconf-sparc64.h projects/diffused_head/secure/lib/libssl/Makefile projects/diffused_head/secure/lib/libssl/Makefile.man projects/diffused_head/secure/lib/libssl/man/SSL_CIPHER_get_name.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_COMP_add_compression_method.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_add_extra_chain_cert.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_add_session.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_ctrl.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_flush_sessions.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_free.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_get_verify_mode.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_load_verify_locations.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_new.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_sess_number.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_sess_set_cache_size.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_sess_set_get_cb.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_sessions.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_cert_store.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_cert_verify_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_cipher_list.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_client_CA_list.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_client_cert_cb.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_default_passwd_cb.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_generate_session_id.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_info_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_max_cert_list.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_mode.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_msg_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_options.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_quiet_shutdown.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_session_cache_mode.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_session_id_context.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_ssl_version.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_timeout.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_tmp_dh_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_tmp_rsa_callback.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_set_verify.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_CTX_use_certificate.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_SESSION_free.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_SESSION_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_SESSION_get_time.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_accept.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_alert_type_string.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_clear.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_connect.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_do_handshake.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_free.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_SSL_CTX.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_ciphers.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_client_CA_list.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_current_cipher.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_default_timeout.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_error.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_ex_data_X509_STORE_CTX_idx.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_ex_new_index.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_fd.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_peer_cert_chain.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_peer_certificate.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_rbio.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_session.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_verify_result.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_get_version.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_library_init.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_load_client_CA_file.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_new.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_pending.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_read.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_rstate_string.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_session_reused.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_bio.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_connect_state.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_fd.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_session.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_shutdown.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_set_verify_result.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_shutdown.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_state_string.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_want.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/SSL_write.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/d2i_SSL_SESSION.3 (contents, props changed) projects/diffused_head/secure/lib/libssl/man/ssl.3 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/Makefile projects/diffused_head/secure/usr.bin/openssl/Makefile.man projects/diffused_head/secure/usr.bin/openssl/man/CA.pl.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/asn1parse.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/ca.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/ciphers.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/crl.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/crl2pkcs7.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/dgst.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/dhparam.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/dsa.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/dsaparam.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/ec.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/ecparam.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/enc.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/errstr.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/gendsa.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/genrsa.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/nseq.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/ocsp.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/openssl.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/passwd.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/pkcs12.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/pkcs7.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/pkcs8.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/rand.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/req.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/rsa.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/rsautl.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/s_client.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/s_server.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/s_time.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/sess_id.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/smime.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/speed.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/spkac.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/verify.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/version.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/x509.1 (contents, props changed) projects/diffused_head/secure/usr.bin/openssl/man/x509v3_config.1 (contents, props changed) projects/diffused_head/share/Makefile projects/diffused_head/share/doc/smm/Makefile projects/diffused_head/share/examples/Makefile projects/diffused_head/share/examples/csh/dot.cshrc projects/diffused_head/share/examples/etc/README.examples projects/diffused_head/share/examples/kld/dyn_sysctl/dyn_sysctl.c projects/diffused_head/share/examples/mdoc/example.4 projects/diffused_head/share/examples/pf/faq-example1 projects/diffused_head/share/examples/pf/pf.conf projects/diffused_head/share/examples/scsi_target/scsi_target.c projects/diffused_head/share/examples/ses/Makefile.inc projects/diffused_head/share/examples/ses/srcs/eltsub.c projects/diffused_head/share/examples/ses/srcs/getencstat.c projects/diffused_head/share/examples/ses/srcs/getnobj.c projects/diffused_head/share/examples/ses/srcs/getobjmap.c projects/diffused_head/share/examples/ses/srcs/getobjstat.c projects/diffused_head/share/examples/ses/srcs/inienc.c projects/diffused_head/share/examples/ses/srcs/sesd.c projects/diffused_head/share/examples/ses/srcs/setencstat.c projects/diffused_head/share/examples/ses/srcs/setobjstat.c projects/diffused_head/share/man/man3/ATOMIC_VAR_INIT.3 projects/diffused_head/share/man/man3/Makefile projects/diffused_head/share/man/man3/pthread.3 projects/diffused_head/share/man/man3/pthread_condattr.3 projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man4/acpi.4 projects/diffused_head/share/man/man4/acpi_asus.4 projects/diffused_head/share/man/man4/acpi_hp.4 projects/diffused_head/share/man/man4/acpi_ibm.4 projects/diffused_head/share/man/man4/acpi_panasonic.4 projects/diffused_head/share/man/man4/acpi_wmi.4 projects/diffused_head/share/man/man4/ahci.4 projects/diffused_head/share/man/man4/ata.4 projects/diffused_head/share/man/man4/ath.4 projects/diffused_head/share/man/man4/atp.4 projects/diffused_head/share/man/man4/bce.4 projects/diffused_head/share/man/man4/bpf.4 projects/diffused_head/share/man/man4/bridge.4 projects/diffused_head/share/man/man4/capsicum.4 projects/diffused_head/share/man/man4/carp.4 projects/diffused_head/share/man/man4/ch.4 projects/diffused_head/share/man/man4/cpuctl.4 projects/diffused_head/share/man/man4/cpufreq.4 projects/diffused_head/share/man/man4/cxgbe.4 projects/diffused_head/share/man/man4/dcons.4 projects/diffused_head/share/man/man4/ddb.4 projects/diffused_head/share/man/man4/divert.4 projects/diffused_head/share/man/man4/epair.4 projects/diffused_head/share/man/man4/fdt.4 projects/diffused_head/share/man/man4/fdtbus.4 projects/diffused_head/share/man/man4/firewire.4 projects/diffused_head/share/man/man4/gdb.4 projects/diffused_head/share/man/man4/gpib.4 projects/diffused_head/share/man/man4/gre.4 projects/diffused_head/share/man/man4/hptiop.4 projects/diffused_head/share/man/man4/hptrr.4 projects/diffused_head/share/man/man4/igb.4 projects/diffused_head/share/man/man4/io.4 projects/diffused_head/share/man/man4/ip.4 projects/diffused_head/share/man/man4/ipfirewall.4 projects/diffused_head/share/man/man4/ipmi.4 projects/diffused_head/share/man/man4/ipw.4 projects/diffused_head/share/man/man4/isci.4 projects/diffused_head/share/man/man4/isp.4 projects/diffused_head/share/man/man4/iwn.4 projects/diffused_head/share/man/man4/mac_lomac.4 projects/diffused_head/share/man/man4/mac_none.4 projects/diffused_head/share/man/man4/mac_stub.4 projects/diffused_head/share/man/man4/man4.i386/sbni.4 projects/diffused_head/share/man/man4/mk48txx.4 projects/diffused_head/share/man/man4/mps.4 projects/diffused_head/share/man/man4/mpt.4 projects/diffused_head/share/man/man4/mvs.4 projects/diffused_head/share/man/man4/mwl.4 projects/diffused_head/share/man/man4/net80211.4 projects/diffused_head/share/man/man4/netmap.4 projects/diffused_head/share/man/man4/ng_etf.4 projects/diffused_head/share/man/man4/ng_ksocket.4 projects/diffused_head/share/man/man4/ng_nat.4 projects/diffused_head/share/man/man4/ng_netflow.4 projects/diffused_head/share/man/man4/ng_patch.4 projects/diffused_head/share/man/man4/ng_socket.4 projects/diffused_head/share/man/man4/pcm.4 projects/diffused_head/share/man/man4/pcn.4 projects/diffused_head/share/man/man4/polling.4 projects/diffused_head/share/man/man4/psm.4 projects/diffused_head/share/man/man4/ral.4 projects/diffused_head/share/man/man4/rl.4 projects/diffused_head/share/man/man4/run.4 projects/diffused_head/share/man/man4/sched_ule.4 projects/diffused_head/share/man/man4/scsi.4 projects/diffused_head/share/man/man4/send.4 projects/diffused_head/share/man/man4/ses.4 projects/diffused_head/share/man/man4/siftr.4 projects/diffused_head/share/man/man4/siis.4 projects/diffused_head/share/man/man4/simplebus.4 projects/diffused_head/share/man/man4/sis.4 projects/diffused_head/share/man/man4/sk.4 projects/diffused_head/share/man/man4/snd_hda.4 projects/diffused_head/share/man/man4/snd_hdspe.4 projects/diffused_head/share/man/man4/splash.4 projects/diffused_head/share/man/man4/ste.4 projects/diffused_head/share/man/man4/termios.4 projects/diffused_head/share/man/man4/ti.4 projects/diffused_head/share/man/man4/tl.4 projects/diffused_head/share/man/man4/tws.4 projects/diffused_head/share/man/man4/ugen.4 projects/diffused_head/share/man/man4/uhso.4 projects/diffused_head/share/man/man4/ulpt.4 projects/diffused_head/share/man/man4/umcs.4 projects/diffused_head/share/man/man4/umodem.4 projects/diffused_head/share/man/man4/uplcom.4 projects/diffused_head/share/man/man4/usb.4 projects/diffused_head/share/man/man4/uslcom.4 projects/diffused_head/share/man/man4/vge.4 projects/diffused_head/share/man/man4/vlan.4 projects/diffused_head/share/man/man4/vr.4 projects/diffused_head/share/man/man4/watchdog.4 projects/diffused_head/share/man/man4/wb.4 projects/diffused_head/share/man/man4/witness.4 projects/diffused_head/share/man/man4/wpi.4 projects/diffused_head/share/man/man4/xl.4 projects/diffused_head/share/man/man4/xnb.4 projects/diffused_head/share/man/man5/Makefile projects/diffused_head/share/man/man5/devfs.conf.5 projects/diffused_head/share/man/man5/devfs.rules.5 projects/diffused_head/share/man/man5/device.hints.5 projects/diffused_head/share/man/man5/make.conf.5 projects/diffused_head/share/man/man5/moduli.5 projects/diffused_head/share/man/man5/nsmb.conf.5 projects/diffused_head/share/man/man5/passwd.5 projects/diffused_head/share/man/man5/periodic.conf.5 projects/diffused_head/share/man/man5/portsnap.conf.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man7/build.7 projects/diffused_head/share/man/man7/c99.7 projects/diffused_head/share/man/man7/development.7 projects/diffused_head/share/man/man7/release.7 projects/diffused_head/share/man/man7/tuning.7 projects/diffused_head/share/man/man8/picobsd.8 projects/diffused_head/share/man/man8/rc.8 projects/diffused_head/share/man/man9/BUF_ISLOCKED.9 projects/diffused_head/share/man/man9/DB_COMMAND.9 projects/diffused_head/share/man/man9/DECLARE_GEOM_CLASS.9 projects/diffused_head/share/man/man9/DRIVER_MODULE.9 projects/diffused_head/share/man/man9/EVENTHANDLER.9 projects/diffused_head/share/man/man9/Makefile projects/diffused_head/share/man/man9/VOP_GETACL.9 projects/diffused_head/share/man/man9/VOP_GETEXTATTR.9 projects/diffused_head/share/man/man9/VOP_GETPAGES.9 projects/diffused_head/share/man/man9/VOP_GETVOBJECT.9 projects/diffused_head/share/man/man9/VOP_SETACL.9 projects/diffused_head/share/man/man9/VOP_SETEXTATTR.9 projects/diffused_head/share/man/man9/acl.9 projects/diffused_head/share/man/man9/bpf.9 projects/diffused_head/share/man/man9/bus_dma.9 projects/diffused_head/share/man/man9/bus_generic_print_child.9 projects/diffused_head/share/man/man9/bus_release_resource.9 projects/diffused_head/share/man/man9/bus_space.9 projects/diffused_head/share/man/man9/byteorder.9 projects/diffused_head/share/man/man9/cd.9 projects/diffused_head/share/man/man9/devclass_get_maxunit.9 projects/diffused_head/share/man/man9/devfs_set_cdevpriv.9 projects/diffused_head/share/man/man9/device_find_child.9 projects/diffused_head/share/man/man9/disk.9 projects/diffused_head/share/man/man9/eventtimers.9 projects/diffused_head/share/man/man9/fail.9 projects/diffused_head/share/man/man9/firmware.9 projects/diffused_head/share/man/man9/hashinit.9 projects/diffused_head/share/man/man9/ieee80211_node.9 projects/diffused_head/share/man/man9/ieee80211_proto.9 projects/diffused_head/share/man/man9/ifnet.9 projects/diffused_head/share/man/man9/kernel_mount.9 projects/diffused_head/share/man/man9/kqueue.9 projects/diffused_head/share/man/man9/lock.9 projects/diffused_head/share/man/man9/locking.9 projects/diffused_head/share/man/man9/malloc.9 projects/diffused_head/share/man/man9/mbuf.9 projects/diffused_head/share/man/man9/mod_cc.9 projects/diffused_head/share/man/man9/namei.9 projects/diffused_head/share/man/man9/netisr.9 projects/diffused_head/share/man/man9/pci.9 projects/diffused_head/share/man/man9/rmlock.9 projects/diffused_head/share/man/man9/rtalloc.9 projects/diffused_head/share/man/man9/rwlock.9 projects/diffused_head/share/man/man9/spl.9 projects/diffused_head/share/man/man9/store.9 projects/diffused_head/share/man/man9/sysctl.9 projects/diffused_head/share/man/man9/taskqueue.9 projects/diffused_head/share/man/man9/usbdi.9 projects/diffused_head/share/man/man9/vm_page_aflag.9 projects/diffused_head/share/man/man9/vslock.9 projects/diffused_head/share/misc/bsd-family-tree projects/diffused_head/share/misc/committers-doc.dot projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/misc/organization.dot projects/diffused_head/share/mk/bsd.README projects/diffused_head/share/mk/bsd.cpu.mk projects/diffused_head/share/mk/bsd.crunchgen.mk projects/diffused_head/share/mk/bsd.dep.mk projects/diffused_head/share/mk/bsd.endian.mk projects/diffused_head/share/mk/bsd.lib.mk projects/diffused_head/share/mk/bsd.libnames.mk projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/share/mk/bsd.prog.mk projects/diffused_head/share/mk/bsd.sys.mk projects/diffused_head/share/mk/sys.mk projects/diffused_head/share/syscons/keymaps/INDEX.keymaps projects/diffused_head/share/syscons/keymaps/Makefile projects/diffused_head/share/termcap/termcap.5 projects/diffused_head/sys/amd64/acpica/acpi_machdep.c projects/diffused_head/sys/amd64/acpica/acpi_wakecode.S projects/diffused_head/sys/amd64/amd64/cpu_switch.S projects/diffused_head/sys/amd64/amd64/db_disasm.c projects/diffused_head/sys/amd64/amd64/elf_machdep.c projects/diffused_head/sys/amd64/amd64/fpu.c projects/diffused_head/sys/amd64/amd64/genassym.c projects/diffused_head/sys/amd64/amd64/initcpu.c projects/diffused_head/sys/amd64/amd64/machdep.c projects/diffused_head/sys/amd64/amd64/mem.c projects/diffused_head/sys/amd64/amd64/minidump_machdep.c projects/diffused_head/sys/amd64/amd64/mp_machdep.c projects/diffused_head/sys/amd64/amd64/pmap.c projects/diffused_head/sys/amd64/amd64/ptrace_machdep.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/amd64/vm_machdep.c projects/diffused_head/sys/amd64/conf/GENERIC projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/amd64/conf/XENHVM projects/diffused_head/sys/amd64/ia32/ia32_sigtramp.S projects/diffused_head/sys/amd64/ia32/ia32_syscall.c projects/diffused_head/sys/amd64/include/atomic.h projects/diffused_head/sys/amd64/include/cpufunc.h projects/diffused_head/sys/amd64/include/elf.h projects/diffused_head/sys/amd64/include/fpu.h projects/diffused_head/sys/amd64/include/in_cksum.h projects/diffused_head/sys/amd64/include/md_var.h projects/diffused_head/sys/amd64/include/param.h projects/diffused_head/sys/amd64/include/pcb.h projects/diffused_head/sys/amd64/include/pcpu.h projects/diffused_head/sys/amd64/include/pmap.h projects/diffused_head/sys/amd64/include/smp.h projects/diffused_head/sys/amd64/linux32/linux.h projects/diffused_head/sys/amd64/linux32/linux32_dummy.c projects/diffused_head/sys/amd64/linux32/linux32_proto.h projects/diffused_head/sys/amd64/linux32/linux32_syscall.h projects/diffused_head/sys/amd64/linux32/linux32_syscalls.c projects/diffused_head/sys/amd64/linux32/linux32_sysent.c projects/diffused_head/sys/amd64/linux32/linux32_systrace_args.c projects/diffused_head/sys/amd64/linux32/syscalls.master projects/diffused_head/sys/arm/arm/bcopyinout.S projects/diffused_head/sys/arm/arm/bcopyinout_xscale.S projects/diffused_head/sys/arm/arm/bootconfig.c projects/diffused_head/sys/arm/arm/bus_space_asm_generic.S projects/diffused_head/sys/arm/arm/busdma_machdep.c projects/diffused_head/sys/arm/arm/copystr.S projects/diffused_head/sys/arm/arm/cpufunc.c projects/diffused_head/sys/arm/arm/cpufunc_asm.S projects/diffused_head/sys/arm/arm/cpufunc_asm_arm10.S projects/diffused_head/sys/arm/arm/cpufunc_asm_arm11.S projects/diffused_head/sys/arm/arm/cpufunc_asm_arm7tdmi.S projects/diffused_head/sys/arm/arm/cpufunc_asm_arm8.S projects/diffused_head/sys/arm/arm/cpufunc_asm_arm9.S projects/diffused_head/sys/arm/arm/cpufunc_asm_armv4.S projects/diffused_head/sys/arm/arm/cpufunc_asm_armv5.S projects/diffused_head/sys/arm/arm/cpufunc_asm_sa1.S projects/diffused_head/sys/arm/arm/cpufunc_asm_xscale.S projects/diffused_head/sys/arm/arm/cpufunc_asm_xscale_c3.S projects/diffused_head/sys/arm/arm/db_disasm.c projects/diffused_head/sys/arm/arm/db_interface.c projects/diffused_head/sys/arm/arm/db_trace.c projects/diffused_head/sys/arm/arm/disassem.c projects/diffused_head/sys/arm/arm/dump_machdep.c projects/diffused_head/sys/arm/arm/elf_trampoline.c projects/diffused_head/sys/arm/arm/exception.S projects/diffused_head/sys/arm/arm/fusu.S projects/diffused_head/sys/arm/arm/gdb_machdep.c projects/diffused_head/sys/arm/arm/genassym.c projects/diffused_head/sys/arm/arm/identcpu.c projects/diffused_head/sys/arm/arm/in_cksum.c projects/diffused_head/sys/arm/arm/intr.c projects/diffused_head/sys/arm/arm/irq_dispatch.S projects/diffused_head/sys/arm/arm/locore.S projects/diffused_head/sys/arm/arm/machdep.c projects/diffused_head/sys/arm/arm/mem.c projects/diffused_head/sys/arm/arm/nexus.c projects/diffused_head/sys/arm/arm/pmap.c projects/diffused_head/sys/arm/arm/support.S projects/diffused_head/sys/arm/arm/swtch.S projects/diffused_head/sys/arm/arm/sys_machdep.c projects/diffused_head/sys/arm/arm/trap.c projects/diffused_head/sys/arm/arm/undefined.c projects/diffused_head/sys/arm/arm/vectors.S projects/diffused_head/sys/arm/arm/vm_machdep.c projects/diffused_head/sys/arm/at91/at91.c projects/diffused_head/sys/arm/at91/at91_machdep.c projects/diffused_head/sys/arm/at91/at91_mci.c projects/diffused_head/sys/arm/at91/at91_pio.c projects/diffused_head/sys/arm/at91/at91_pioreg.h projects/diffused_head/sys/arm/at91/at91_pit.c projects/diffused_head/sys/arm/at91/at91_pitreg.h projects/diffused_head/sys/arm/at91/at91_pmc.c projects/diffused_head/sys/arm/at91/at91_pmcreg.h projects/diffused_head/sys/arm/at91/at91_pmcvar.h projects/diffused_head/sys/arm/at91/at91_reset.S projects/diffused_head/sys/arm/at91/at91_rst.c projects/diffused_head/sys/arm/at91/at91_rstreg.h projects/diffused_head/sys/arm/at91/at91_spi.c projects/diffused_head/sys/arm/at91/at91_spireg.h projects/diffused_head/sys/arm/at91/at91_ssc.c projects/diffused_head/sys/arm/at91/at91_st.c projects/diffused_head/sys/arm/at91/at91_streg.h projects/diffused_head/sys/arm/at91/at91_twi.c projects/diffused_head/sys/arm/at91/at91_wdtreg.h projects/diffused_head/sys/arm/at91/at91board.h projects/diffused_head/sys/arm/at91/at91reg.h projects/diffused_head/sys/arm/at91/at91rm9200.c projects/diffused_head/sys/arm/at91/at91rm92reg.h projects/diffused_head/sys/arm/at91/at91sam9260.c projects/diffused_head/sys/arm/at91/at91sam9260reg.h projects/diffused_head/sys/arm/at91/at91sam9g20.c projects/diffused_head/sys/arm/at91/at91sam9g20reg.h projects/diffused_head/sys/arm/at91/at91var.h projects/diffused_head/sys/arm/at91/board_bwct.c projects/diffused_head/sys/arm/at91/board_hl200.c projects/diffused_head/sys/arm/at91/board_hl201.c projects/diffused_head/sys/arm/at91/board_kb920x.c projects/diffused_head/sys/arm/at91/board_qila9g20.c projects/diffused_head/sys/arm/at91/board_sam9g20ek.c projects/diffused_head/sys/arm/at91/board_tsc4370.c projects/diffused_head/sys/arm/at91/files.at91 projects/diffused_head/sys/arm/at91/if_ate.c projects/diffused_head/sys/arm/at91/if_macb.c projects/diffused_head/sys/arm/at91/std.at91 projects/diffused_head/sys/arm/at91/std.at91sam9 projects/diffused_head/sys/arm/at91/std.hl200 projects/diffused_head/sys/arm/at91/std.hl201 projects/diffused_head/sys/arm/at91/std.kb920x projects/diffused_head/sys/arm/at91/std.qila9g20 projects/diffused_head/sys/arm/at91/std.sam9g20ek projects/diffused_head/sys/arm/at91/uart_bus_at91usart.c projects/diffused_head/sys/arm/conf/AVILA projects/diffused_head/sys/arm/conf/AVILA.hints projects/diffused_head/sys/arm/conf/BWCT projects/diffused_head/sys/arm/conf/CAMBRIA projects/diffused_head/sys/arm/conf/CAMBRIA.hints projects/diffused_head/sys/arm/conf/CNS11XXNAS projects/diffused_head/sys/arm/conf/CRB projects/diffused_head/sys/arm/conf/DB-78XXX projects/diffused_head/sys/arm/conf/DB-88F6XXX projects/diffused_head/sys/arm/conf/DEFAULTS projects/diffused_head/sys/arm/conf/EP80219 projects/diffused_head/sys/arm/conf/GUMSTIX projects/diffused_head/sys/arm/conf/GUMSTIX-QEMU projects/diffused_head/sys/arm/conf/HL200 projects/diffused_head/sys/arm/conf/HL201 projects/diffused_head/sys/arm/conf/IQ31244 projects/diffused_head/sys/arm/conf/KB920X projects/diffused_head/sys/arm/conf/LN2410SBC projects/diffused_head/sys/arm/conf/NSLU projects/diffused_head/sys/arm/conf/QILA9G20 projects/diffused_head/sys/arm/conf/QILA9G20.hints projects/diffused_head/sys/arm/conf/SAM9G20EK projects/diffused_head/sys/arm/conf/SAM9G20EK.hints projects/diffused_head/sys/arm/conf/SHEEVAPLUG projects/diffused_head/sys/arm/conf/SIMICS projects/diffused_head/sys/arm/econa/econa.c projects/diffused_head/sys/arm/econa/econa_machdep.c projects/diffused_head/sys/arm/econa/std.econa projects/diffused_head/sys/arm/include/_stdint.h projects/diffused_head/sys/arm/include/_types.h projects/diffused_head/sys/arm/include/armreg.h projects/diffused_head/sys/arm/include/asm.h projects/diffused_head/sys/arm/include/asmacros.h projects/diffused_head/sys/arm/include/atomic.h projects/diffused_head/sys/arm/include/blockio.h projects/diffused_head/sys/arm/include/cpu.h projects/diffused_head/sys/arm/include/cpuconf.h projects/diffused_head/sys/arm/include/cpufunc.h projects/diffused_head/sys/arm/include/elf.h projects/diffused_head/sys/arm/include/endian.h projects/diffused_head/sys/arm/include/fdt.h projects/diffused_head/sys/arm/include/fp.h projects/diffused_head/sys/arm/include/frame.h projects/diffused_head/sys/arm/include/ieee.h projects/diffused_head/sys/arm/include/in_cksum.h projects/diffused_head/sys/arm/include/intr.h projects/diffused_head/sys/arm/include/katelib.h projects/diffused_head/sys/arm/include/kdb.h projects/diffused_head/sys/arm/include/machdep.h projects/diffused_head/sys/arm/include/md_var.h projects/diffused_head/sys/arm/include/param.h projects/diffused_head/sys/arm/include/pcb.h projects/diffused_head/sys/arm/include/pcpu.h projects/diffused_head/sys/arm/include/pmap.h projects/diffused_head/sys/arm/include/pmc_mdep.h projects/diffused_head/sys/arm/include/profile.h projects/diffused_head/sys/arm/include/pte.h projects/diffused_head/sys/arm/include/resource.h projects/diffused_head/sys/arm/include/smp.h projects/diffused_head/sys/arm/include/stack.h projects/diffused_head/sys/arm/include/sysarch.h projects/diffused_head/sys/arm/include/vmparam.h projects/diffused_head/sys/arm/mv/common.c projects/diffused_head/sys/arm/mv/discovery/discovery.c projects/diffused_head/sys/arm/mv/discovery/files.db78xxx projects/diffused_head/sys/arm/mv/files.mv projects/diffused_head/sys/arm/mv/gpio.c projects/diffused_head/sys/arm/mv/ic.c projects/diffused_head/sys/arm/mv/kirkwood/files.kirkwood projects/diffused_head/sys/arm/mv/kirkwood/kirkwood.c projects/diffused_head/sys/arm/mv/mv_machdep.c projects/diffused_head/sys/arm/mv/mv_pci.c projects/diffused_head/sys/arm/mv/mv_sata.c projects/diffused_head/sys/arm/mv/mvreg.h projects/diffused_head/sys/arm/mv/mvvar.h projects/diffused_head/sys/arm/mv/mvwin.h projects/diffused_head/sys/arm/mv/orion/files.db88f5xxx projects/diffused_head/sys/arm/mv/orion/files.ts7800 projects/diffused_head/sys/arm/mv/std.mv projects/diffused_head/sys/arm/mv/timer.c projects/diffused_head/sys/arm/mv/twsi.c projects/diffused_head/sys/arm/s3c2xx0/s3c2410reg.h projects/diffused_head/sys/arm/s3c2xx0/s3c2440reg.h projects/diffused_head/sys/arm/s3c2xx0/s3c24x0.c projects/diffused_head/sys/arm/s3c2xx0/s3c24x0_machdep.c projects/diffused_head/sys/arm/s3c2xx0/s3c24x0reg.h projects/diffused_head/sys/arm/s3c2xx0/std.ln2410sbc projects/diffused_head/sys/arm/s3c2xx0/std.s3c2410 projects/diffused_head/sys/arm/sa11x0/assabet_machdep.c projects/diffused_head/sys/arm/sa11x0/sa11x0.c projects/diffused_head/sys/arm/sa11x0/sa11x0_gpioreg.h projects/diffused_head/sys/arm/sa11x0/sa11x0_io_asm.S projects/diffused_head/sys/arm/sa11x0/sa11x0_irq.S projects/diffused_head/sys/arm/sa11x0/sa11x0_ost.c projects/diffused_head/sys/arm/sa11x0/sa11x0_ostreg.h projects/diffused_head/sys/arm/sa11x0/sa11x0_var.h projects/diffused_head/sys/arm/sa11x0/std.sa11x0 projects/diffused_head/sys/arm/sa11x0/uart_dev_sa1110.c projects/diffused_head/sys/arm/xscale/i80321/ep80219_machdep.c projects/diffused_head/sys/arm/xscale/i80321/i80321.c projects/diffused_head/sys/arm/xscale/i80321/i80321_aau.c projects/diffused_head/sys/arm/xscale/i80321/i80321_dma.c projects/diffused_head/sys/arm/xscale/i80321/i80321_intr.h projects/diffused_head/sys/arm/xscale/i80321/i80321_pci.c projects/diffused_head/sys/arm/xscale/i80321/i80321_space.c projects/diffused_head/sys/arm/xscale/i80321/i80321_timer.c projects/diffused_head/sys/arm/xscale/i80321/i80321reg.h projects/diffused_head/sys/arm/xscale/i80321/iq31244_7seg.c projects/diffused_head/sys/arm/xscale/i80321/iq31244_machdep.c projects/diffused_head/sys/arm/xscale/i80321/iq80321.c projects/diffused_head/sys/arm/xscale/i80321/obio.c projects/diffused_head/sys/arm/xscale/i80321/std.i80219 projects/diffused_head/sys/arm/xscale/i80321/std.i80321 projects/diffused_head/sys/arm/xscale/i8134x/crb_machdep.c projects/diffused_head/sys/arm/xscale/i8134x/i81342.c projects/diffused_head/sys/arm/xscale/i8134x/i81342_mcu.c projects/diffused_head/sys/arm/xscale/i8134x/i81342_pci.c projects/diffused_head/sys/arm/xscale/i8134x/i81342_space.c projects/diffused_head/sys/arm/xscale/i8134x/i81342reg.h projects/diffused_head/sys/arm/xscale/i8134x/iq81342_7seg.c projects/diffused_head/sys/arm/xscale/i8134x/obio.c projects/diffused_head/sys/arm/xscale/i8134x/std.i81342 projects/diffused_head/sys/arm/xscale/i8134x/uart_cpu_i81342.c projects/diffused_head/sys/arm/xscale/ixp425/avila_ata.c projects/diffused_head/sys/arm/xscale/ixp425/avila_gpio.c projects/diffused_head/sys/arm/xscale/ixp425/avila_machdep.c projects/diffused_head/sys/arm/xscale/ixp425/cambria_exp_space.c projects/diffused_head/sys/arm/xscale/ixp425/cambria_gpio.c projects/diffused_head/sys/arm/xscale/ixp425/if_npe.c projects/diffused_head/sys/arm/xscale/ixp425/if_npereg.h projects/diffused_head/sys/arm/xscale/ixp425/ixp425.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_iic.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_npe.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_npereg.h projects/diffused_head/sys/arm/xscale/ixp425/ixp425_pci.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_pci_space.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_qmgr.c projects/diffused_head/sys/arm/xscale/ixp425/ixp425_qmgr.h projects/diffused_head/sys/arm/xscale/ixp425/ixp425reg.h projects/diffused_head/sys/arm/xscale/ixp425/std.ixp425 projects/diffused_head/sys/arm/xscale/ixp425/std.ixp435 projects/diffused_head/sys/arm/xscale/pxa/if_smc_smi.c projects/diffused_head/sys/arm/xscale/pxa/pxa_machdep.c projects/diffused_head/sys/arm/xscale/pxa/pxa_obio.c projects/diffused_head/sys/arm/xscale/pxa/pxareg.h projects/diffused_head/sys/arm/xscale/pxa/std.pxa projects/diffused_head/sys/arm/xscale/std.xscale projects/diffused_head/sys/boot/Makefile.ia64 projects/diffused_head/sys/boot/Makefile.sparc64 projects/diffused_head/sys/boot/arm/at91/boot0spi/main.c projects/diffused_head/sys/boot/arm/at91/boot2/boot2.c projects/diffused_head/sys/boot/arm/at91/bootspi/ee.c projects/diffused_head/sys/boot/arm/at91/libat91/Makefile projects/diffused_head/sys/boot/arm/at91/libat91/at91rm9200.h projects/diffused_head/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.c projects/diffused_head/sys/boot/arm/at91/libat91/eeprom.c projects/diffused_head/sys/boot/arm/at91/libat91/emac_init.c projects/diffused_head/sys/boot/arm/at91/libat91/lib_AT91RM9200.h projects/diffused_head/sys/boot/arm/at91/libat91/spi_flash.c projects/diffused_head/sys/boot/arm/at91/linker.cfg projects/diffused_head/sys/boot/arm/ixp425/boot2/boot2.c projects/diffused_head/sys/boot/arm/uboot/Makefile projects/diffused_head/sys/boot/arm/uboot/conf.c projects/diffused_head/sys/boot/arm/uboot/ldscript.arm projects/diffused_head/sys/boot/arm/uboot/version projects/diffused_head/sys/boot/common/Makefile.inc projects/diffused_head/sys/boot/common/boot.c projects/diffused_head/sys/boot/common/bootstrap.h projects/diffused_head/sys/boot/common/disk.c projects/diffused_head/sys/boot/common/disk.h projects/diffused_head/sys/boot/common/load_elf.c projects/diffused_head/sys/boot/common/load_elf_obj.c projects/diffused_head/sys/boot/common/loader.8 projects/diffused_head/sys/boot/common/ufsread.c projects/diffused_head/sys/boot/fdt/dts/db78100.dts projects/diffused_head/sys/boot/fdt/dts/db88f6281.dts projects/diffused_head/sys/boot/fdt/dts/p3041ds.dts projects/diffused_head/sys/boot/fdt/dts/sheevaplug.dts projects/diffused_head/sys/boot/fdt/dts/xlp-basic.dts projects/diffused_head/sys/boot/fdt/fdt_loader_cmd.c projects/diffused_head/sys/boot/ficl/Makefile projects/diffused_head/sys/boot/forth/beastie.4th projects/diffused_head/sys/boot/forth/beastie.4th.8 projects/diffused_head/sys/boot/forth/brand.4th projects/diffused_head/sys/boot/forth/brand.4th.8 projects/diffused_head/sys/boot/forth/check-password.4th projects/diffused_head/sys/boot/forth/check-password.4th.8 projects/diffused_head/sys/boot/forth/color.4th projects/diffused_head/sys/boot/forth/color.4th.8 projects/diffused_head/sys/boot/forth/delay.4th projects/diffused_head/sys/boot/forth/delay.4th.8 projects/diffused_head/sys/boot/forth/menu-commands.4th projects/diffused_head/sys/boot/forth/menu.4th projects/diffused_head/sys/boot/forth/menu.4th.8 projects/diffused_head/sys/boot/forth/shortcuts.4th projects/diffused_head/sys/boot/forth/version.4th projects/diffused_head/sys/boot/forth/version.4th.8 projects/diffused_head/sys/boot/i386/boot2/boot2.c projects/diffused_head/sys/boot/i386/btx/btx/Makefile projects/diffused_head/sys/boot/i386/btx/btx/btx.S projects/diffused_head/sys/boot/i386/btx/btxldr/Makefile projects/diffused_head/sys/boot/i386/btx/btxldr/btxldr.S projects/diffused_head/sys/boot/i386/btx/lib/Makefile projects/diffused_head/sys/boot/i386/cdboot/Makefile projects/diffused_head/sys/boot/i386/efi/reloc.c projects/diffused_head/sys/boot/i386/gptboot/gptboot.c projects/diffused_head/sys/boot/i386/libi386/Makefile projects/diffused_head/sys/boot/i386/libi386/biosdisk.c projects/diffused_head/sys/boot/i386/libi386/biospnp.c projects/diffused_head/sys/boot/i386/libi386/devicename.c projects/diffused_head/sys/boot/i386/libi386/libi386.h projects/diffused_head/sys/boot/i386/loader/Makefile projects/diffused_head/sys/boot/i386/loader/conf.c projects/diffused_head/sys/boot/i386/loader/main.c projects/diffused_head/sys/boot/i386/pmbr/pmbr.s projects/diffused_head/sys/boot/i386/pxeldr/Makefile projects/diffused_head/sys/boot/i386/pxeldr/pxeldr.S projects/diffused_head/sys/boot/i386/zfsboot/zfsboot.c projects/diffused_head/sys/boot/ia64/Makefile projects/diffused_head/sys/boot/ofw/libofw/Makefile projects/diffused_head/sys/boot/ofw/libofw/devicename.c projects/diffused_head/sys/boot/ofw/libofw/libofw.h projects/diffused_head/sys/boot/ofw/libofw/ofw_disk.c projects/diffused_head/sys/boot/pc98/boot2/boot2.c projects/diffused_head/sys/boot/pc98/btx/btx/Makefile projects/diffused_head/sys/boot/pc98/btx/btx/btx.S projects/diffused_head/sys/boot/pc98/btx/btxldr/Makefile projects/diffused_head/sys/boot/pc98/btx/btxldr/btxldr.S projects/diffused_head/sys/boot/pc98/btx/lib/Makefile projects/diffused_head/sys/boot/pc98/cdboot/Makefile projects/diffused_head/sys/boot/pc98/libpc98/Makefile projects/diffused_head/sys/boot/pc98/libpc98/biosdisk.c projects/diffused_head/sys/boot/pc98/loader/main.c projects/diffused_head/sys/boot/powerpc/boot1.chrp/boot1.c projects/diffused_head/sys/boot/sparc64/boot1/Makefile projects/diffused_head/sys/boot/sparc64/boot1/boot1.c projects/diffused_head/sys/boot/sparc64/loader/Makefile projects/diffused_head/sys/boot/sparc64/loader/main.c projects/diffused_head/sys/boot/sparc64/zfsboot/Makefile projects/diffused_head/sys/boot/uboot/common/metadata.c projects/diffused_head/sys/boot/uboot/lib/api_public.h projects/diffused_head/sys/boot/uboot/lib/copy.c projects/diffused_head/sys/boot/uboot/lib/elf_freebsd.c projects/diffused_head/sys/boot/uboot/lib/glue.c projects/diffused_head/sys/boot/uboot/lib/libuboot.h projects/diffused_head/sys/boot/userboot/libstand/Makefile projects/diffused_head/sys/boot/userboot/test/test.c projects/diffused_head/sys/boot/userboot/userboot.h projects/diffused_head/sys/boot/userboot/userboot/Makefile projects/diffused_head/sys/boot/userboot/userboot/bootinfo32.c projects/diffused_head/sys/boot/userboot/userboot/copy.c projects/diffused_head/sys/boot/userboot/userboot/devicename.c projects/diffused_head/sys/boot/userboot/userboot/main.c projects/diffused_head/sys/boot/userboot/userboot/userboot_disk.c projects/diffused_head/sys/boot/zfs/Makefile projects/diffused_head/sys/boot/zfs/zfs.c projects/diffused_head/sys/boot/zfs/zfsimpl.c projects/diffused_head/sys/cam/ata/ata_all.c projects/diffused_head/sys/cam/ata/ata_all.h projects/diffused_head/sys/cam/ata/ata_da.c projects/diffused_head/sys/cam/ata/ata_pmp.c projects/diffused_head/sys/cam/ata/ata_xpt.c projects/diffused_head/sys/cam/cam.h projects/diffused_head/sys/cam/cam_ccb.h projects/diffused_head/sys/cam/cam_debug.h projects/diffused_head/sys/cam/cam_periph.c projects/diffused_head/sys/cam/cam_periph.h projects/diffused_head/sys/cam/cam_sim.h projects/diffused_head/sys/cam/cam_xpt.c projects/diffused_head/sys/cam/cam_xpt.h projects/diffused_head/sys/cam/cam_xpt_periph.h projects/diffused_head/sys/cam/cam_xpt_sim.h projects/diffused_head/sys/cam/ctl/ctl.c projects/diffused_head/sys/cam/ctl/ctl_backend.c projects/diffused_head/sys/cam/ctl/ctl_frontend_cam_sim.c projects/diffused_head/sys/cam/ctl/ctl_frontend_internal.c projects/diffused_head/sys/cam/ctl/scsi_ctl.c projects/diffused_head/sys/cam/scsi/scsi_all.c projects/diffused_head/sys/cam/scsi/scsi_all.h projects/diffused_head/sys/cam/scsi/scsi_cd.c projects/diffused_head/sys/cam/scsi/scsi_ch.c projects/diffused_head/sys/cam/scsi/scsi_da.c projects/diffused_head/sys/cam/scsi/scsi_da.h projects/diffused_head/sys/cam/scsi/scsi_pass.c projects/diffused_head/sys/cam/scsi/scsi_pt.c projects/diffused_head/sys/cam/scsi/scsi_sa.c projects/diffused_head/sys/cam/scsi/scsi_ses.h projects/diffused_head/sys/cam/scsi/scsi_sg.c projects/diffused_head/sys/cam/scsi/scsi_target.c projects/diffused_head/sys/cam/scsi/scsi_xpt.c projects/diffused_head/sys/cddl/boot/zfs/zfsimpl.h projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zpool_prop.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/Makefile.files projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/ddt.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deleg.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_config.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bpobj.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_traverse.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_scan.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_disk.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_missing.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_root.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/dtrace.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/nvpair.h projects/diffused_head/sys/cddl/dev/dtrace/amd64/dis_tables.c projects/diffused_head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c projects/diffused_head/sys/cddl/dev/dtrace/i386/dis_tables.c projects/diffused_head/sys/cddl/dev/dtrace/i386/dtrace_subr.c projects/diffused_head/sys/compat/freebsd32/freebsd32.h projects/diffused_head/sys/compat/freebsd32/freebsd32_misc.c projects/diffused_head/sys/compat/freebsd32/freebsd32_proto.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscall.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscalls.c projects/diffused_head/sys/compat/freebsd32/freebsd32_sysent.c projects/diffused_head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/diffused_head/sys/compat/freebsd32/syscalls.master projects/diffused_head/sys/compat/ia32/ia32_sysvec.c projects/diffused_head/sys/compat/ia32/ia32_util.h projects/diffused_head/sys/compat/linux/linux_emul.c projects/diffused_head/sys/compat/linux/linux_emul.h projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/compat/linux/linux_fork.c projects/diffused_head/sys/compat/linux/linux_futex.c projects/diffused_head/sys/compat/linux/linux_mib.c projects/diffused_head/sys/compat/linux/linux_misc.c projects/diffused_head/sys/compat/linux/linux_sysctl.c projects/diffused_head/sys/compat/linux/linux_time.c projects/diffused_head/sys/compat/linux/linux_uid16.c projects/diffused_head/sys/compat/linux/linux_util.c projects/diffused_head/sys/compat/linux/linux_util.h projects/diffused_head/sys/compat/ndis/subr_ntoskrnl.c projects/diffused_head/sys/conf/Makefile.arm projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.arm projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/files.ia64 projects/diffused_head/sys/conf/files.mips projects/diffused_head/sys/conf/files.powerpc projects/diffused_head/sys/conf/files.sparc64 projects/diffused_head/sys/conf/kern.mk projects/diffused_head/sys/conf/kern.post.mk projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/ldscript.arm projects/diffused_head/sys/conf/options projects/diffused_head/sys/conf/options.arm projects/diffused_head/sys/conf/options.ia64 projects/diffused_head/sys/conf/options.mips projects/diffused_head/sys/conf/options.powerpc projects/diffused_head/sys/contrib/dev/acpica/acpica_prep.sh projects/diffused_head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/adfile.c projects/diffused_head/sys/contrib/dev/acpica/common/adisasm.c projects/diffused_head/sys/contrib/dev/acpica/common/adwalk.c projects/diffused_head/sys/contrib/dev/acpica/common/dmextern.c projects/diffused_head/sys/contrib/dev/acpica/common/dmrestag.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtable.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtbdump.c projects/diffused_head/sys/contrib/dev/acpica/common/dmtbinfo.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompile.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.l projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.y projects/diffused_head/sys/contrib/dev/acpica/compiler/aslerror.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfiles.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfold.c projects/diffused_head/sys/contrib/dev/acpica/compiler/asllookup.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmain.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmap.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmessages.h projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstartup.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslsupport.l projects/diffused_head/sys/contrib/dev/acpica/compiler/asltree.c projects/diffused_head/sys/contrib/dev/acpica/compiler/aslutils.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dtio.c projects/diffused_head/sys/contrib/dev/acpica/compiler/dttemplate.c projects/diffused_head/sys/contrib/dev/acpica/compiler/prscan.c projects/diffused_head/sys/contrib/dev/acpica/compiler/prutils.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbcmds.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbdisply.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbexec.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbfileio.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbinput.c projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbutils.c projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmopcode.c projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmwalk.c projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsfield.c projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswload.c projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswload2.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpe.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpeutil.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evxface.c projects/diffused_head/sys/contrib/dev/acpica/components/events/evxfgpe.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exconfig.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exprep.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exresolv.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exstore.c projects/diffused_head/sys/contrib/dev/acpica/components/executer/exutils.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwesleep.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwgpe.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwsleep.c projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nspredef.c projects/diffused_head/sys/contrib/dev/acpica/components/parser/psxface.c projects/diffused_head/sys/contrib/dev/acpica/components/resources/rscreate.c projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsutils.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbfadt.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbutils.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxface.c projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxfroot.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utdecode.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utglobal.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utmisc.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utobject.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utosi.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utresrc.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxface.c projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxferror.c projects/diffused_head/sys/contrib/dev/acpica/include/acdebug.h projects/diffused_head/sys/contrib/dev/acpica/include/acdisasm.h projects/diffused_head/sys/contrib/dev/acpica/include/acexcep.h projects/diffused_head/sys/contrib/dev/acpica/include/acglobal.h projects/diffused_head/sys/contrib/dev/acpica/include/achware.h projects/diffused_head/sys/contrib/dev/acpica/include/aclocal.h projects/diffused_head/sys/contrib/dev/acpica/include/acmacros.h projects/diffused_head/sys/contrib/dev/acpica/include/acnames.h projects/diffused_head/sys/contrib/dev/acpica/include/acobject.h projects/diffused_head/sys/contrib/dev/acpica/include/acoutput.h projects/diffused_head/sys/contrib/dev/acpica/include/acpiosxf.h projects/diffused_head/sys/contrib/dev/acpica/include/acpixf.h projects/diffused_head/sys/contrib/dev/acpica/include/acpredef.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl1.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl2.h projects/diffused_head/sys/contrib/dev/acpica/include/actbl3.h projects/diffused_head/sys/contrib/dev/acpica/include/actypes.h projects/diffused_head/sys/contrib/dev/acpica/include/acutils.h projects/diffused_head/sys/contrib/dev/acpica/include/platform/acenv.h projects/diffused_head/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c projects/diffused_head/sys/contrib/libfdt/fdt.c projects/diffused_head/sys/contrib/libfdt/fdt_ro.c projects/diffused_head/sys/contrib/libfdt/fdt_rw.c projects/diffused_head/sys/contrib/libfdt/libfdt.h projects/diffused_head/sys/contrib/libfdt/libfdt_env.h projects/diffused_head/sys/contrib/libfdt/libfdt_internal.h projects/diffused_head/sys/contrib/pf/net/pf.c projects/diffused_head/sys/contrib/pf/net/pf_if.c projects/diffused_head/sys/contrib/pf/net/pf_ioctl.c projects/diffused_head/sys/contrib/pf/net/pf_table.c projects/diffused_head/sys/contrib/pf/net/pfvar.h projects/diffused_head/sys/contrib/rdma/krping/krping.c projects/diffused_head/sys/contrib/rdma/krping/krping.h projects/diffused_head/sys/contrib/rdma/krping/krping_dev.c projects/diffused_head/sys/contrib/rdma/rdma_addr.c projects/diffused_head/sys/contrib/rdma/rdma_cache.c projects/diffused_head/sys/dev/aac/aac_disk.c projects/diffused_head/sys/dev/acpi_support/acpi_ibm.c projects/diffused_head/sys/dev/acpica/Osd/OsdSchedule.c projects/diffused_head/sys/dev/acpica/Osd/OsdSynch.c projects/diffused_head/sys/dev/acpica/acpi.c projects/diffused_head/sys/dev/acpica/acpi_cpu.c projects/diffused_head/sys/dev/acpica/acpi_ec.c projects/diffused_head/sys/dev/acpica/acpi_powerres.c projects/diffused_head/sys/dev/acpica/acpi_smbat.c projects/diffused_head/sys/dev/acpica/acpi_video.c projects/diffused_head/sys/dev/acpica/acpivar.h projects/diffused_head/sys/dev/adb/adb_kbd.c projects/diffused_head/sys/dev/ae/if_ae.c projects/diffused_head/sys/dev/agp/agp.c projects/diffused_head/sys/dev/agp/agp_i810.c projects/diffused_head/sys/dev/agp/agp_if.m projects/diffused_head/sys/dev/agp/agppriv.h projects/diffused_head/sys/dev/agp/agpreg.h projects/diffused_head/sys/dev/agp/agpvar.h projects/diffused_head/sys/dev/ahci/ahci.c projects/diffused_head/sys/dev/ahci/ahci.h projects/diffused_head/sys/dev/aic7xxx/aic79xx.c projects/diffused_head/sys/dev/aic7xxx/aic79xx_osm.c projects/diffused_head/sys/dev/aic7xxx/aic7xxx.c projects/diffused_head/sys/dev/aic7xxx/aic7xxx_osm.c projects/diffused_head/sys/dev/aic7xxx/aic_osm_lib.c projects/diffused_head/sys/dev/aic7xxx/aicasm/Makefile projects/diffused_head/sys/dev/aic7xxx/aicasm/aicasm.c projects/diffused_head/sys/dev/amr/amr.c projects/diffused_head/sys/dev/amr/amrvar.h projects/diffused_head/sys/dev/ata/ata-all.c projects/diffused_head/sys/dev/ata/ata-lowlevel.c projects/diffused_head/sys/dev/ata/ata-pci.h projects/diffused_head/sys/dev/ata/chipsets/ata-ite.c projects/diffused_head/sys/dev/ata/chipsets/ata-jmicron.c projects/diffused_head/sys/dev/ata/chipsets/ata-via.c projects/diffused_head/sys/dev/ath/ah_osdep.c projects/diffused_head/sys/dev/ath/ah_osdep.h projects/diffused_head/sys/dev/ath/ath_dfs/null/dfs_null.c projects/diffused_head/sys/dev/ath/ath_hal/ah.c projects/diffused_head/sys/dev/ath/ath_hal/ah.h projects/diffused_head/sys/dev/ath/ath_hal/ah_debug.h projects/diffused_head/sys/dev/ath/ath_hal/ah_desc.h projects/diffused_head/sys/dev/ath/ath_hal/ah_devid.h projects/diffused_head/sys/dev/ath/ath_hal/ah_diagcodes.h projects/diffused_head/sys/dev/ath/ath_hal/ah_eeprom.h projects/diffused_head/sys/dev/ath/ath_hal/ah_eeprom_9287.c projects/diffused_head/sys/dev/ath/ath_hal/ah_internal.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211.h projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212phy.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_gpio.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c projects/diffused_head/sys/dev/ath/ath_rate/amrr/amrr.c projects/diffused_head/sys/dev/ath/ath_rate/onoe/onoe.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.h projects/diffused_head/sys/dev/ath/ath_rate/sample/tx_schedules.h projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_ath_ahb.c projects/diffused_head/sys/dev/ath/if_ath_debug.c projects/diffused_head/sys/dev/ath/if_ath_debug.h projects/diffused_head/sys/dev/ath/if_ath_led.c projects/diffused_head/sys/dev/ath/if_ath_misc.h projects/diffused_head/sys/dev/ath/if_ath_pci.c projects/diffused_head/sys/dev/ath/if_ath_sysctl.c projects/diffused_head/sys/dev/ath/if_ath_tx.c projects/diffused_head/sys/dev/ath/if_ath_tx.h projects/diffused_head/sys/dev/ath/if_ath_tx_ht.c projects/diffused_head/sys/dev/ath/if_athdfs.h projects/diffused_head/sys/dev/ath/if_athioctl.h projects/diffused_head/sys/dev/ath/if_athrate.h projects/diffused_head/sys/dev/ath/if_athvar.h projects/diffused_head/sys/dev/atkbdc/atkbdc_isa.c projects/diffused_head/sys/dev/bce/if_bce.c projects/diffused_head/sys/dev/bce/if_bcereg.h projects/diffused_head/sys/dev/bge/if_bge.c projects/diffused_head/sys/dev/bge/if_bgereg.h projects/diffused_head/sys/dev/bwi/bwimac.c projects/diffused_head/sys/dev/bwi/bwiphy.c projects/diffused_head/sys/dev/bwi/bwirf.c projects/diffused_head/sys/dev/bwi/if_bwi.c projects/diffused_head/sys/dev/bwi/if_bwi_pci.c projects/diffused_head/sys/dev/cesa/cesa.c projects/diffused_head/sys/dev/cxgb/common/cxgb_ctl_defs.h projects/diffused_head/sys/dev/cxgb/cxgb_adapter.h projects/diffused_head/sys/dev/cxgb/cxgb_main.c projects/diffused_head/sys/dev/cxgb/cxgb_offload.h projects/diffused_head/sys/dev/cxgb/cxgb_osdep.h projects/diffused_head/sys/dev/cxgb/cxgb_sge.c projects/diffused_head/sys/dev/cxgb/sys/mvec.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cm.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_cq.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_dbg.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_ev.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_hal.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_mem.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_qp.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_resource.c projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_user.h projects/diffused_head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_wr.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_l2t.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_l2t.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_listen.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_toepcb.h projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tom.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tom.h projects/diffused_head/sys/dev/cxgbe/adapter.h projects/diffused_head/sys/dev/cxgbe/common/common.h projects/diffused_head/sys/dev/cxgbe/common/t4_hw.c projects/diffused_head/sys/dev/cxgbe/common/t4_hw.h projects/diffused_head/sys/dev/cxgbe/common/t4_msg.h projects/diffused_head/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/diffused_head/sys/dev/cxgbe/firmware/t4fw_cfg_uwire.txt projects/diffused_head/sys/dev/cxgbe/firmware/t4fw_interface.h projects/diffused_head/sys/dev/cxgbe/offload.h projects/diffused_head/sys/dev/cxgbe/osdep.h projects/diffused_head/sys/dev/cxgbe/t4_l2t.c projects/diffused_head/sys/dev/cxgbe/t4_l2t.h projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/cxgbe/t4_sge.c projects/diffused_head/sys/dev/dc/if_dc.c projects/diffused_head/sys/dev/drm/drm_fops.c projects/diffused_head/sys/dev/e1000/e1000_82541.c projects/diffused_head/sys/dev/e1000/e1000_82543.c projects/diffused_head/sys/dev/e1000/e1000_82571.c projects/diffused_head/sys/dev/e1000/e1000_82575.c projects/diffused_head/sys/dev/e1000/e1000_api.c projects/diffused_head/sys/dev/e1000/e1000_api.h projects/diffused_head/sys/dev/e1000/e1000_defines.h projects/diffused_head/sys/dev/e1000/e1000_hw.h projects/diffused_head/sys/dev/e1000/e1000_ich8lan.c projects/diffused_head/sys/dev/e1000/e1000_mac.c projects/diffused_head/sys/dev/e1000/e1000_mac.h projects/diffused_head/sys/dev/e1000/e1000_manage.c projects/diffused_head/sys/dev/e1000/e1000_manage.h projects/diffused_head/sys/dev/e1000/e1000_phy.c projects/diffused_head/sys/dev/e1000/e1000_phy.h projects/diffused_head/sys/dev/e1000/e1000_regs.h projects/diffused_head/sys/dev/e1000/if_em.c projects/diffused_head/sys/dev/e1000/if_igb.c projects/diffused_head/sys/dev/e1000/if_lem.c projects/diffused_head/sys/dev/esp/ncr53c9x.c projects/diffused_head/sys/dev/fb/fbreg.h projects/diffused_head/sys/dev/fdt/fdt_common.c projects/diffused_head/sys/dev/fdt/fdt_common.h projects/diffused_head/sys/dev/fdt/fdt_pci.c projects/diffused_head/sys/dev/fdt/fdtbus.c projects/diffused_head/sys/dev/fdt/simplebus.c projects/diffused_head/sys/dev/firewire/sbp_targ.c projects/diffused_head/sys/dev/flash/at45d.c projects/diffused_head/sys/dev/flash/mx25l.c projects/diffused_head/sys/dev/fxp/if_fxp.c projects/diffused_head/sys/dev/gxemul/cons/gxemul_cons.c projects/diffused_head/sys/dev/hptiop/hptiop.c projects/diffused_head/sys/dev/hptmv/entry.c projects/diffused_head/sys/dev/hptrr/hptrr_osm_bsd.c projects/diffused_head/sys/dev/hwpmc/hwpmc_arm.c projects/diffused_head/sys/dev/hwpmc/hwpmc_intel.c projects/diffused_head/sys/dev/ida/ida.c projects/diffused_head/sys/dev/ida/ida_disk.c projects/diffused_head/sys/dev/ida/ida_eisa.c projects/diffused_head/sys/dev/ida/ida_pci.c projects/diffused_head/sys/dev/ida/idavar.h projects/diffused_head/sys/dev/iicbus/ad7417.c projects/diffused_head/sys/dev/iicbus/ds1374.c projects/diffused_head/sys/dev/iicbus/ds1775.c projects/diffused_head/sys/dev/iicbus/max6690.c projects/diffused_head/sys/dev/ipmi/ipmi.c projects/diffused_head/sys/dev/ipmi/ipmivars.h projects/diffused_head/sys/dev/isci/isci.c projects/diffused_head/sys/dev/isci/isci.h projects/diffused_head/sys/dev/isci/isci_controller.c projects/diffused_head/sys/dev/isci/isci_interrupt.c projects/diffused_head/sys/dev/isci/isci_io_request.c projects/diffused_head/sys/dev/isci/isci_remote_device.c projects/diffused_head/sys/dev/isci/scil/sati.c projects/diffused_head/sys/dev/isci/scil/sati_inquiry.c projects/diffused_head/sys/dev/isci/scil/sati_unmap.c projects/diffused_head/sys/dev/isci/scil/scif_sas_sati_binding.h projects/diffused_head/sys/dev/isci/scil/scif_sas_stp_io_request.c projects/diffused_head/sys/dev/isp/isp.c projects/diffused_head/sys/dev/isp/isp_freebsd.c projects/diffused_head/sys/dev/isp/isp_freebsd.h projects/diffused_head/sys/dev/isp/isp_library.c projects/diffused_head/sys/dev/isp/isp_library.h projects/diffused_head/sys/dev/isp/isp_pci.c projects/diffused_head/sys/dev/isp/isp_sbus.c projects/diffused_head/sys/dev/isp/isp_stds.h projects/diffused_head/sys/dev/isp/isp_target.c projects/diffused_head/sys/dev/isp/isp_target.h projects/diffused_head/sys/dev/isp/ispmbox.h projects/diffused_head/sys/dev/isp/ispreg.h projects/diffused_head/sys/dev/isp/ispvar.h projects/diffused_head/sys/dev/ispfw/asm_2300.h projects/diffused_head/sys/dev/ispfw/asm_2400.h projects/diffused_head/sys/dev/ispfw/asm_2500.h projects/diffused_head/sys/dev/iwn/if_iwn.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe.h projects/diffused_head/sys/dev/ixgbe/ixgbe_82598.c projects/diffused_head/sys/dev/ixgbe/ixgbe_82598.h projects/diffused_head/sys/dev/ixgbe/ixgbe_82599.c projects/diffused_head/sys/dev/ixgbe/ixgbe_api.c projects/diffused_head/sys/dev/ixgbe/ixgbe_api.h projects/diffused_head/sys/dev/ixgbe/ixgbe_common.c projects/diffused_head/sys/dev/ixgbe/ixgbe_common.h projects/diffused_head/sys/dev/ixgbe/ixgbe_osdep.h projects/diffused_head/sys/dev/ixgbe/ixgbe_phy.c projects/diffused_head/sys/dev/ixgbe/ixgbe_type.h projects/diffused_head/sys/dev/ixgbe/ixgbe_vf.c projects/diffused_head/sys/dev/ixgbe/ixgbe_x540.c projects/diffused_head/sys/dev/ixgbe/ixv.c projects/diffused_head/sys/dev/jme/if_jme.c projects/diffused_head/sys/dev/ksyms/ksyms.c projects/diffused_head/sys/dev/md/md.c projects/diffused_head/sys/dev/mfi/mfi.c projects/diffused_head/sys/dev/mfi/mfi_cam.c projects/diffused_head/sys/dev/mfi/mfi_debug.c projects/diffused_head/sys/dev/mfi/mfi_disk.c projects/diffused_head/sys/dev/mfi/mfi_tbolt.c projects/diffused_head/sys/dev/mfi/mfireg.h projects/diffused_head/sys/dev/mfi/mfivar.h projects/diffused_head/sys/dev/mge/if_mge.c projects/diffused_head/sys/dev/mge/if_mgevar.h projects/diffused_head/sys/dev/mii/ciphy.c projects/diffused_head/sys/dev/mii/e1000phy.c projects/diffused_head/sys/dev/mii/miidevs projects/diffused_head/sys/dev/mii/smcphy.c projects/diffused_head/sys/dev/mlx/mlxvar.h projects/diffused_head/sys/dev/mmc/mmc.c projects/diffused_head/sys/dev/mmc/mmcsd.c projects/diffused_head/sys/dev/mps/mpi/mpi2.h projects/diffused_head/sys/dev/mps/mpi/mpi2_cnfg.h projects/diffused_head/sys/dev/mps/mpi/mpi2_hbd.h projects/diffused_head/sys/dev/mps/mpi/mpi2_history.txt projects/diffused_head/sys/dev/mps/mpi/mpi2_init.h projects/diffused_head/sys/dev/mps/mpi/mpi2_ioc.h projects/diffused_head/sys/dev/mps/mpi/mpi2_ra.h projects/diffused_head/sys/dev/mps/mpi/mpi2_raid.h projects/diffused_head/sys/dev/mps/mpi/mpi2_sas.h projects/diffused_head/sys/dev/mps/mpi/mpi2_targ.h projects/diffused_head/sys/dev/mps/mpi/mpi2_tool.h projects/diffused_head/sys/dev/mps/mpi/mpi2_type.h projects/diffused_head/sys/dev/mps/mps.c projects/diffused_head/sys/dev/mps/mps_config.c projects/diffused_head/sys/dev/mps/mps_ioctl.h projects/diffused_head/sys/dev/mps/mps_mapping.c projects/diffused_head/sys/dev/mps/mps_mapping.h projects/diffused_head/sys/dev/mps/mps_sas.c projects/diffused_head/sys/dev/mps/mps_sas.h projects/diffused_head/sys/dev/mps/mps_sas_lsi.c projects/diffused_head/sys/dev/mps/mps_table.c projects/diffused_head/sys/dev/mps/mps_user.c projects/diffused_head/sys/dev/mps/mpsvar.h projects/diffused_head/sys/dev/mpt/mpt_cam.c projects/diffused_head/sys/dev/mvs/mvs.c projects/diffused_head/sys/dev/mvs/mvs.h projects/diffused_head/sys/dev/mvs/mvs_soc.c projects/diffused_head/sys/dev/mxge/eth_z8e.h projects/diffused_head/sys/dev/mxge/ethp_z8e.h projects/diffused_head/sys/dev/mxge/rss_eth_z8e.h projects/diffused_head/sys/dev/mxge/rss_ethp_z8e.h projects/diffused_head/sys/dev/netmap/if_em_netmap.h projects/diffused_head/sys/dev/netmap/if_igb_netmap.h projects/diffused_head/sys/dev/netmap/ixgbe_netmap.h projects/diffused_head/sys/dev/netmap/netmap.c projects/diffused_head/sys/dev/netmap/netmap_kern.h projects/diffused_head/sys/dev/netmap/netmap_mem2.c projects/diffused_head/sys/dev/ofw/ofw_bus_subr.c projects/diffused_head/sys/dev/ofw/ofw_bus_subr.h projects/diffused_head/sys/dev/ofw/ofw_iicbus.c projects/diffused_head/sys/dev/ofw/openfirm.c projects/diffused_head/sys/dev/ofw/openfirm.h projects/diffused_head/sys/dev/pccard/pccard.c projects/diffused_head/sys/dev/pccard/pccardvarp.h projects/diffused_head/sys/dev/pccbb/pccbb_pci.c projects/diffused_head/sys/dev/pci/pci.c projects/diffused_head/sys/dev/pci/pci_pci.c projects/diffused_head/sys/dev/pci/vga_pci.c projects/diffused_head/sys/dev/powermac_nvram/powermac_nvram.c projects/diffused_head/sys/dev/puc/pucdata.c projects/diffused_head/sys/dev/ral/if_ral_pci.c projects/diffused_head/sys/dev/re/if_re.c projects/diffused_head/sys/dev/sdhci/sdhci.c projects/diffused_head/sys/dev/sec/sec.c projects/diffused_head/sys/dev/sec/sec.h projects/diffused_head/sys/dev/sf/if_sf.c projects/diffused_head/sys/dev/siis/siis.c projects/diffused_head/sys/dev/sio/sio.c projects/diffused_head/sys/dev/sound/macio/snapper.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa_patches.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.h projects/diffused_head/sys/dev/sound/pci/hdspe.c projects/diffused_head/sys/dev/spibus/spi.h projects/diffused_head/sys/dev/sym/sym_conf.h projects/diffused_head/sys/dev/sym/sym_hipd.c projects/diffused_head/sys/dev/syscons/schistory.c projects/diffused_head/sys/dev/syscons/scterm-teken.c projects/diffused_head/sys/dev/syscons/syscons.c projects/diffused_head/sys/dev/tsec/if_tsec.c projects/diffused_head/sys/dev/twa/tw_osl_cam.c projects/diffused_head/sys/dev/twe/twe.c projects/diffused_head/sys/dev/twe/twe_compat.h projects/diffused_head/sys/dev/twe/twe_freebsd.c projects/diffused_head/sys/dev/twe/twevar.h projects/diffused_head/sys/dev/uart/uart.h projects/diffused_head/sys/dev/uart/uart_bus_fdt.c projects/diffused_head/sys/dev/uart/uart_subr.c projects/diffused_head/sys/dev/usb/controller/at91dci.c projects/diffused_head/sys/dev/usb/controller/at91dci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/atmegadci.c projects/diffused_head/sys/dev/usb/controller/avr32dci.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.h projects/diffused_head/sys/dev/usb/controller/ehci_pci.c projects/diffused_head/sys/dev/usb/controller/musb_otg.c projects/diffused_head/sys/dev/usb/controller/ohci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/ohci_pci.c projects/diffused_head/sys/dev/usb/controller/uss820dci.c projects/diffused_head/sys/dev/usb/controller/xhci.c projects/diffused_head/sys/dev/usb/controller/xhci.h projects/diffused_head/sys/dev/usb/controller/xhci_pci.c projects/diffused_head/sys/dev/usb/controller/xhcireg.h projects/diffused_head/sys/dev/usb/input/uhid.c projects/diffused_head/sys/dev/usb/input/ums.c projects/diffused_head/sys/dev/usb/net/if_rue.c projects/diffused_head/sys/dev/usb/net/if_udav.c projects/diffused_head/sys/dev/usb/net/if_udavreg.h projects/diffused_head/sys/dev/usb/net/if_usie.c projects/diffused_head/sys/dev/usb/net/uhso.c projects/diffused_head/sys/dev/usb/quirk/usb_quirk.c projects/diffused_head/sys/dev/usb/serial/u3g.c projects/diffused_head/sys/dev/usb/serial/uark.c projects/diffused_head/sys/dev/usb/serial/ubsa.c projects/diffused_head/sys/dev/usb/serial/ubser.c projects/diffused_head/sys/dev/usb/serial/uchcom.c projects/diffused_head/sys/dev/usb/serial/ucycom.c projects/diffused_head/sys/dev/usb/serial/ufoma.c projects/diffused_head/sys/dev/usb/serial/uftdi.c projects/diffused_head/sys/dev/usb/serial/uftdi_reg.h projects/diffused_head/sys/dev/usb/serial/ugensa.c projects/diffused_head/sys/dev/usb/serial/uipaq.c projects/diffused_head/sys/dev/usb/serial/ulpt.c projects/diffused_head/sys/dev/usb/serial/umcs.c projects/diffused_head/sys/dev/usb/serial/umct.c projects/diffused_head/sys/dev/usb/serial/umodem.c projects/diffused_head/sys/dev/usb/serial/umoscom.c projects/diffused_head/sys/dev/usb/serial/uplcom.c projects/diffused_head/sys/dev/usb/serial/usb_serial.c projects/diffused_head/sys/dev/usb/serial/usb_serial.h projects/diffused_head/sys/dev/usb/serial/uslcom.c projects/diffused_head/sys/dev/usb/serial/uvisor.c projects/diffused_head/sys/dev/usb/serial/uvscom.c projects/diffused_head/sys/dev/usb/usb.h projects/diffused_head/sys/dev/usb/usb_controller.h projects/diffused_head/sys/dev/usb/usb_core.h projects/diffused_head/sys/dev/usb/usb_debug.c projects/diffused_head/sys/dev/usb/usb_device.c projects/diffused_head/sys/dev/usb/usb_device.h projects/diffused_head/sys/dev/usb/usb_freebsd.h projects/diffused_head/sys/dev/usb/usb_generic.c projects/diffused_head/sys/dev/usb/usb_hid.c projects/diffused_head/sys/dev/usb/usb_hub.c projects/diffused_head/sys/dev/usb/usb_ioctl.h projects/diffused_head/sys/dev/usb/usb_msctest.c projects/diffused_head/sys/dev/usb/usb_pf.c projects/diffused_head/sys/dev/usb/usb_request.c projects/diffused_head/sys/dev/usb/usb_transfer.c projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/usb/usbdi.h projects/diffused_head/sys/dev/usb/wlan/if_rum.c projects/diffused_head/sys/dev/usb/wlan/if_run.c projects/diffused_head/sys/dev/usb/wlan/if_ural.c projects/diffused_head/sys/dev/viawd/viawd.c projects/diffused_head/sys/dev/virtio/balloon/virtio_balloon.c projects/diffused_head/sys/dev/virtio/balloon/virtio_balloon.h projects/diffused_head/sys/dev/virtio/block/virtio_blk.c projects/diffused_head/sys/dev/virtio/block/virtio_blk.h projects/diffused_head/sys/dev/virtio/network/if_vtnet.c projects/diffused_head/sys/dev/virtio/network/virtio_net.h projects/diffused_head/sys/dev/virtio/pci/virtio_pci.c projects/diffused_head/sys/dev/virtio/pci/virtio_pci.h projects/diffused_head/sys/dev/virtio/virtio.c projects/diffused_head/sys/dev/virtio/virtio.h projects/diffused_head/sys/dev/virtio/virtio_ring.h projects/diffused_head/sys/dev/virtio/virtqueue.c projects/diffused_head/sys/dev/virtio/virtqueue.h projects/diffused_head/sys/dev/vr/if_vr.c projects/diffused_head/sys/dev/vr/if_vrreg.h projects/diffused_head/sys/dev/vxge/vxgehal/vxgehal-channel.h projects/diffused_head/sys/dev/wbwd/wbwd.c projects/diffused_head/sys/dev/wpi/if_wpi.c projects/diffused_head/sys/dev/wtap/if_wtap.c projects/diffused_head/sys/dev/xen/balloon/balloon.c projects/diffused_head/sys/dev/xen/blkfront/blkfront.c projects/diffused_head/sys/dev/xl/if_xl.c projects/diffused_head/sys/fs/cd9660/cd9660_vfsops.c projects/diffused_head/sys/fs/devfs/devfs_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2_bmap.c projects/diffused_head/sys/fs/ext2fs/ext2_dinode.h projects/diffused_head/sys/fs/ext2fs/ext2_lookup.c projects/diffused_head/sys/fs/ext2fs/ext2_vfsops.c projects/diffused_head/sys/fs/ext2fs/ext2_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2fs.h projects/diffused_head/sys/fs/ext2fs/inode.h projects/diffused_head/sys/fs/fifofs/fifo_vnops.c projects/diffused_head/sys/fs/hpfs/hpfs_vnops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_lookup.c projects/diffused_head/sys/fs/nfs/nfs_commonacl.c projects/diffused_head/sys/fs/nfs/nfs_commonport.c projects/diffused_head/sys/fs/nfsclient/nfs_clbio.c projects/diffused_head/sys/fs/nfsclient/nfs_clnode.c projects/diffused_head/sys/fs/nfsclient/nfs_clvfsops.c projects/diffused_head/sys/fs/nfsclient/nfs_clvnops.c projects/diffused_head/sys/fs/nfsclient/nfsnode.h projects/diffused_head/sys/fs/nfsserver/nfs_nfsdport.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdstate.c projects/diffused_head/sys/fs/ntfs/ntfs.h projects/diffused_head/sys/fs/ntfs/ntfs_subr.c projects/diffused_head/sys/fs/ntfs/ntfs_subr.h projects/diffused_head/sys/fs/ntfs/ntfs_vfsops.c projects/diffused_head/sys/fs/ntfs/ntfs_vnops.c projects/diffused_head/sys/fs/nwfs/nwfs_io.c projects/diffused_head/sys/fs/portalfs/portal_vnops.c projects/diffused_head/sys/fs/smbfs/smbfs_io.c projects/diffused_head/sys/fs/smbfs/smbfs_node.c projects/diffused_head/sys/fs/tmpfs/tmpfs_subr.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vnops.c projects/diffused_head/sys/fs/udf/udf_vfsops.c projects/diffused_head/sys/fs/unionfs/union_subr.c projects/diffused_head/sys/geom/bde/g_bde.c projects/diffused_head/sys/geom/eli/g_eli.c projects/diffused_head/sys/geom/eli/g_eli.h projects/diffused_head/sys/geom/eli/g_eli_ctl.c projects/diffused_head/sys/geom/eli/g_eli_integrity.c projects/diffused_head/sys/geom/eli/g_eli_key.c projects/diffused_head/sys/geom/eli/g_eli_key_cache.c projects/diffused_head/sys/geom/gate/g_gate.c projects/diffused_head/sys/geom/gate/g_gate.h projects/diffused_head/sys/geom/geom.h projects/diffused_head/sys/geom/geom_aes.c projects/diffused_head/sys/geom/geom_dev.c projects/diffused_head/sys/geom/geom_disk.c projects/diffused_head/sys/geom/geom_disk.h projects/diffused_head/sys/geom/geom_event.c projects/diffused_head/sys/geom/geom_io.c projects/diffused_head/sys/geom/geom_map.c projects/diffused_head/sys/geom/geom_slice.c projects/diffused_head/sys/geom/geom_subr.c projects/diffused_head/sys/geom/label/g_label_ufs.c projects/diffused_head/sys/geom/mirror/g_mirror.c projects/diffused_head/sys/geom/mirror/g_mirror.h projects/diffused_head/sys/geom/mirror/g_mirror_ctl.c projects/diffused_head/sys/geom/mountver/g_mountver.c projects/diffused_head/sys/geom/multipath/g_multipath.c projects/diffused_head/sys/geom/nop/g_nop.c projects/diffused_head/sys/geom/nop/g_nop.h projects/diffused_head/sys/geom/part/g_part.c projects/diffused_head/sys/geom/part/g_part.h projects/diffused_head/sys/geom/part/g_part_apm.c projects/diffused_head/sys/geom/part/g_part_bsd.c projects/diffused_head/sys/geom/part/g_part_gpt.c projects/diffused_head/sys/geom/part/g_part_vtoc8.c projects/diffused_head/sys/geom/raid/g_raid.c projects/diffused_head/sys/geom/raid/g_raid.h projects/diffused_head/sys/geom/raid/md_ddf.c projects/diffused_head/sys/geom/raid/md_promise.c projects/diffused_head/sys/geom/raid/tr_raid1.c projects/diffused_head/sys/geom/raid/tr_raid1e.c projects/diffused_head/sys/geom/raid/tr_raid5.c projects/diffused_head/sys/geom/uncompress/g_uncompress.c projects/diffused_head/sys/geom/uzip/g_uzip.c projects/diffused_head/sys/geom/virstor/g_virstor.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_buf.c projects/diffused_head/sys/i386/acpica/acpi_machdep.c projects/diffused_head/sys/i386/acpica/acpi_wakecode.S projects/diffused_head/sys/i386/bios/smapi_bios.S projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/conf/PAE projects/diffused_head/sys/i386/conf/XEN projects/diffused_head/sys/i386/conf/XENHVM (contents, props changed) projects/diffused_head/sys/i386/i386/apic_vector.s projects/diffused_head/sys/i386/i386/bios.c projects/diffused_head/sys/i386/i386/elf_machdep.c projects/diffused_head/sys/i386/i386/genassym.c projects/diffused_head/sys/i386/i386/initcpu.c projects/diffused_head/sys/i386/i386/machdep.c projects/diffused_head/sys/i386/i386/mem.c projects/diffused_head/sys/i386/i386/minidump_machdep.c projects/diffused_head/sys/i386/i386/mp_machdep.c projects/diffused_head/sys/i386/i386/pmap.c projects/diffused_head/sys/i386/i386/ptrace_machdep.c projects/diffused_head/sys/i386/i386/swtch.s projects/diffused_head/sys/i386/i386/trap.c projects/diffused_head/sys/i386/i386/vm86.c projects/diffused_head/sys/i386/i386/vm_machdep.c projects/diffused_head/sys/i386/include/apicvar.h projects/diffused_head/sys/i386/include/atomic.h projects/diffused_head/sys/i386/include/bootinfo.h projects/diffused_head/sys/i386/include/cpufunc.h projects/diffused_head/sys/i386/include/elf.h projects/diffused_head/sys/i386/include/in_cksum.h projects/diffused_head/sys/i386/include/md_var.h projects/diffused_head/sys/i386/include/npx.h projects/diffused_head/sys/i386/include/param.h projects/diffused_head/sys/i386/include/pcb.h projects/diffused_head/sys/i386/include/pcpu.h projects/diffused_head/sys/i386/include/pmap.h projects/diffused_head/sys/i386/include/smp.h projects/diffused_head/sys/i386/include/vmparam.h projects/diffused_head/sys/i386/isa/npx.c projects/diffused_head/sys/i386/linux/linux.h projects/diffused_head/sys/i386/linux/linux_dummy.c projects/diffused_head/sys/i386/linux/linux_proto.h projects/diffused_head/sys/i386/linux/linux_syscall.h projects/diffused_head/sys/i386/linux/linux_syscalls.c projects/diffused_head/sys/i386/linux/linux_sysent.c projects/diffused_head/sys/i386/linux/linux_systrace_args.c projects/diffused_head/sys/i386/linux/syscalls.master projects/diffused_head/sys/i386/xen/pmap.c projects/diffused_head/sys/ia64/acpica/acpi_wakeup.c projects/diffused_head/sys/ia64/conf/NOTES projects/diffused_head/sys/ia64/ia64/busdma_machdep.c projects/diffused_head/sys/ia64/ia64/machdep.c projects/diffused_head/sys/ia64/ia64/mem.c projects/diffused_head/sys/ia64/ia64/mp_machdep.c projects/diffused_head/sys/ia64/ia64/nexus.c projects/diffused_head/sys/ia64/ia64/pmap.c projects/diffused_head/sys/ia64/include/_stdint.h projects/diffused_head/sys/ia64/include/_types.h projects/diffused_head/sys/ia64/include/elf.h projects/diffused_head/sys/ia64/include/in_cksum.h projects/diffused_head/sys/ia64/include/md_var.h projects/diffused_head/sys/ia64/include/param.h projects/diffused_head/sys/ia64/include/pmap.h projects/diffused_head/sys/kern/bus_if.m projects/diffused_head/sys/kern/capabilities.conf projects/diffused_head/sys/kern/imgact_aout.c projects/diffused_head/sys/kern/imgact_elf.c projects/diffused_head/sys/kern/imgact_gzip.c projects/diffused_head/sys/kern/init_main.c projects/diffused_head/sys/kern/init_sysent.c projects/diffused_head/sys/kern/kern_clock.c projects/diffused_head/sys/kern/kern_clocksource.c projects/diffused_head/sys/kern/kern_conf.c projects/diffused_head/sys/kern/kern_cpuset.c projects/diffused_head/sys/kern/kern_descrip.c projects/diffused_head/sys/kern/kern_environment.c projects/diffused_head/sys/kern/kern_event.c projects/diffused_head/sys/kern/kern_exec.c projects/diffused_head/sys/kern/kern_fork.c projects/diffused_head/sys/kern/kern_intr.c projects/diffused_head/sys/kern/kern_jail.c projects/diffused_head/sys/kern/kern_kthread.c projects/diffused_head/sys/kern/kern_ktr.c projects/diffused_head/sys/kern/kern_malloc.c projects/diffused_head/sys/kern/kern_mbuf.c projects/diffused_head/sys/kern/kern_mib.c projects/diffused_head/sys/kern/kern_module.c projects/diffused_head/sys/kern/kern_ntptime.c projects/diffused_head/sys/kern/kern_proc.c projects/diffused_head/sys/kern/kern_racct.c projects/diffused_head/sys/kern/kern_shutdown.c projects/diffused_head/sys/kern/kern_sig.c projects/diffused_head/sys/kern/kern_synch.c projects/diffused_head/sys/kern/kern_tc.c projects/diffused_head/sys/kern/kern_thr.c projects/diffused_head/sys/kern/kern_thread.c projects/diffused_head/sys/kern/kern_time.c projects/diffused_head/sys/kern/kern_umtx.c projects/diffused_head/sys/kern/ksched.c projects/diffused_head/sys/kern/sched_4bsd.c projects/diffused_head/sys/kern/sched_ule.c projects/diffused_head/sys/kern/subr_bus.c projects/diffused_head/sys/kern/subr_devstat.c projects/diffused_head/sys/kern/subr_firmware.c projects/diffused_head/sys/kern/subr_param.c projects/diffused_head/sys/kern/subr_rman.c projects/diffused_head/sys/kern/subr_sleepqueue.c projects/diffused_head/sys/kern/subr_smp.c projects/diffused_head/sys/kern/subr_syscall.c projects/diffused_head/sys/kern/subr_taskqueue.c projects/diffused_head/sys/kern/subr_trap.c projects/diffused_head/sys/kern/subr_turnstile.c projects/diffused_head/sys/kern/subr_uio.c projects/diffused_head/sys/kern/subr_witness.c projects/diffused_head/sys/kern/sys_capability.c projects/diffused_head/sys/kern/sys_generic.c projects/diffused_head/sys/kern/sys_pipe.c projects/diffused_head/sys/kern/sys_procdesc.c projects/diffused_head/sys/kern/sys_process.c projects/diffused_head/sys/kern/syscalls.c projects/diffused_head/sys/kern/syscalls.master projects/diffused_head/sys/kern/systrace_args.c projects/diffused_head/sys/kern/tty.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_syscalls.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_bio.c projects/diffused_head/sys/kern/vfs_cluster.c projects/diffused_head/sys/kern/vfs_default.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/kern/vfs_syscalls.c projects/diffused_head/sys/kern/vfs_vnops.c projects/diffused_head/sys/libkern/iconv.c projects/diffused_head/sys/libkern/iconv_ucs.c projects/diffused_head/sys/mips/atheros/ar71xx_gpio.c projects/diffused_head/sys/mips/atheros/ar724x_pci.c projects/diffused_head/sys/mips/cavium/octeon_gpio.c projects/diffused_head/sys/mips/cavium/uart_bus_octeonusart.c projects/diffused_head/sys/mips/conf/AP96 projects/diffused_head/sys/mips/conf/AP96.hints projects/diffused_head/sys/mips/conf/GXEMUL projects/diffused_head/sys/mips/conf/OCTEON1 projects/diffused_head/sys/mips/conf/PB47 projects/diffused_head/sys/mips/conf/PB92 projects/diffused_head/sys/mips/conf/ROUTERSTATION projects/diffused_head/sys/mips/conf/RSPRO projects/diffused_head/sys/mips/conf/RSPRO.hints projects/diffused_head/sys/mips/conf/RSPRO_STANDALONE projects/diffused_head/sys/mips/conf/TP-WN1043ND projects/diffused_head/sys/mips/conf/TP-WN1043ND.hints projects/diffused_head/sys/mips/gxemul/files.gxemul projects/diffused_head/sys/mips/gxemul/gxemul_machdep.c projects/diffused_head/sys/mips/include/_stdint.h projects/diffused_head/sys/mips/include/_types.h projects/diffused_head/sys/mips/include/elf.h projects/diffused_head/sys/mips/include/in_cksum.h projects/diffused_head/sys/mips/include/pmap.h projects/diffused_head/sys/mips/include/pte.h projects/diffused_head/sys/mips/mips/machdep.c projects/diffused_head/sys/mips/mips/pmap.c projects/diffused_head/sys/mips/mips/trap.c projects/diffused_head/sys/mips/mips/uma_machdep.c projects/diffused_head/sys/mips/nlm/board.c projects/diffused_head/sys/mips/nlm/bus_space_rmi.c projects/diffused_head/sys/mips/nlm/dev/net/mdio.c projects/diffused_head/sys/mips/nlm/hal/mdio.h projects/diffused_head/sys/mips/nlm/xlp.h projects/diffused_head/sys/mips/nlm/xlp_machdep.c projects/diffused_head/sys/mips/nlm/xlp_pci.c projects/diffused_head/sys/mips/rmi/rootfs_list.txt projects/diffused_head/sys/mips/rt305x/rt305x_gpio.c projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/acpi/Makefile projects/diffused_head/sys/modules/acpi/acpi/Makefile projects/diffused_head/sys/modules/aesni/Makefile projects/diffused_head/sys/modules/agp/Makefile projects/diffused_head/sys/modules/ahci/Makefile projects/diffused_head/sys/modules/ath/Makefile projects/diffused_head/sys/modules/bwi/Makefile projects/diffused_head/sys/modules/bwn/Makefile projects/diffused_head/sys/modules/cam/Makefile projects/diffused_head/sys/modules/cxgb/Makefile projects/diffused_head/sys/modules/cxgb/cxgb/Makefile projects/diffused_head/sys/modules/cxgb/iw_cxgb/Makefile projects/diffused_head/sys/modules/cxgb/tom/Makefile projects/diffused_head/sys/modules/cxgbe/Makefile projects/diffused_head/sys/modules/cxgbe/if_cxgbe/Makefile projects/diffused_head/sys/modules/dtrace/Makefile projects/diffused_head/sys/modules/dtrace/dtraceall/Makefile projects/diffused_head/sys/modules/dtrace/dtraceall/dtraceall.c projects/diffused_head/sys/modules/em/Makefile projects/diffused_head/sys/modules/igb/Makefile projects/diffused_head/sys/modules/ips/Makefile projects/diffused_head/sys/modules/ixgbe/Makefile projects/diffused_head/sys/modules/linux/Makefile projects/diffused_head/sys/modules/mii/Makefile projects/diffused_head/sys/modules/mps/Makefile projects/diffused_head/sys/modules/ral/Makefile projects/diffused_head/sys/modules/rdma/krping/Makefile projects/diffused_head/sys/modules/wpi/Makefile projects/diffused_head/sys/modules/xfs/Makefile projects/diffused_head/sys/modules/zfs/Makefile projects/diffused_head/sys/net/bpf.c projects/diffused_head/sys/net/bpf.h projects/diffused_head/sys/net/bpf_buffer.c projects/diffused_head/sys/net/bpf_buffer.h projects/diffused_head/sys/net/bpf_zerocopy.c projects/diffused_head/sys/net/bpfdesc.h projects/diffused_head/sys/net/flowtable.c projects/diffused_head/sys/net/ieee8023ad_lacp.c projects/diffused_head/sys/net/if.h projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_clone.c projects/diffused_head/sys/net/if_dl.h projects/diffused_head/sys/net/if_epair.c projects/diffused_head/sys/net/if_gif.c projects/diffused_head/sys/net/if_lagg.c projects/diffused_head/sys/net/if_llatbl.c projects/diffused_head/sys/net/if_llatbl.h projects/diffused_head/sys/net/if_loop.c projects/diffused_head/sys/net/if_stf.c projects/diffused_head/sys/net/if_tap.c projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/net/if_vlan.c projects/diffused_head/sys/net/route.h projects/diffused_head/sys/net80211/_ieee80211.h projects/diffused_head/sys/net80211/ieee80211.h projects/diffused_head/sys/net80211/ieee80211_ht.c projects/diffused_head/sys/net80211/ieee80211_hwmp.c projects/diffused_head/sys/net80211/ieee80211_node.c projects/diffused_head/sys/net80211/ieee80211_node.h projects/diffused_head/sys/net80211/ieee80211_output.c projects/diffused_head/sys/net80211/ieee80211_radiotap.c projects/diffused_head/sys/net80211/ieee80211_var.h projects/diffused_head/sys/netgraph/netflow/netflow.c projects/diffused_head/sys/netgraph/netflow/netflow_v9.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.h projects/diffused_head/sys/netgraph/ng_ether.c projects/diffused_head/sys/netgraph/ng_ksocket.c projects/diffused_head/sys/netgraph/ng_pptpgre.c projects/diffused_head/sys/netinet/icmp_var.h projects/diffused_head/sys/netinet/if_ether.c projects/diffused_head/sys/netinet/if_ether.h projects/diffused_head/sys/netinet/igmp.c projects/diffused_head/sys/netinet/in.c projects/diffused_head/sys/netinet/in.h projects/diffused_head/sys/netinet/in_cksum.c projects/diffused_head/sys/netinet/in_pcb.c projects/diffused_head/sys/netinet/in_pcb.h projects/diffused_head/sys/netinet/in_var.h projects/diffused_head/sys/netinet/ip.h projects/diffused_head/sys/netinet/ip_carp.c projects/diffused_head/sys/netinet/ip_dummynet.h projects/diffused_head/sys/netinet/ip_icmp.c projects/diffused_head/sys/netinet/ip_input.c projects/diffused_head/sys/netinet/ip_mroute.c projects/diffused_head/sys/netinet/ip_mroute.h projects/diffused_head/sys/netinet/ip_output.c projects/diffused_head/sys/netinet/ipfw/dummynet.txt projects/diffused_head/sys/netinet/ipfw/ip_dn_io.c projects/diffused_head/sys/netinet/ipfw/ip_dummynet.c projects/diffused_head/sys/netinet/ipfw/ip_fw2.c projects/diffused_head/sys/netinet/ipfw/ip_fw_dynamic.c projects/diffused_head/sys/netinet/ipfw/ip_fw_log.c projects/diffused_head/sys/netinet/ipfw/ip_fw_table.c projects/diffused_head/sys/netinet/khelp/h_ertt.c projects/diffused_head/sys/netinet/libalias/alias_sctp.h projects/diffused_head/sys/netinet/libalias/libalias.3 projects/diffused_head/sys/netinet/sctp.h projects/diffused_head/sys/netinet/sctp_asconf.c projects/diffused_head/sys/netinet/sctp_asconf.h projects/diffused_head/sys/netinet/sctp_auth.c projects/diffused_head/sys/netinet/sctp_auth.h projects/diffused_head/sys/netinet/sctp_bsd_addr.c projects/diffused_head/sys/netinet/sctp_bsd_addr.h projects/diffused_head/sys/netinet/sctp_cc_functions.c projects/diffused_head/sys/netinet/sctp_constants.h projects/diffused_head/sys/netinet/sctp_crc32.c projects/diffused_head/sys/netinet/sctp_crc32.h projects/diffused_head/sys/netinet/sctp_dtrace_declare.h projects/diffused_head/sys/netinet/sctp_dtrace_define.h projects/diffused_head/sys/netinet/sctp_header.h projects/diffused_head/sys/netinet/sctp_indata.c projects/diffused_head/sys/netinet/sctp_indata.h projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_input.h projects/diffused_head/sys/netinet/sctp_lock_bsd.h projects/diffused_head/sys/netinet/sctp_os.h projects/diffused_head/sys/netinet/sctp_os_bsd.h projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_output.h projects/diffused_head/sys/netinet/sctp_pcb.c projects/diffused_head/sys/netinet/sctp_pcb.h projects/diffused_head/sys/netinet/sctp_peeloff.c projects/diffused_head/sys/netinet/sctp_peeloff.h projects/diffused_head/sys/netinet/sctp_ss_functions.c projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_sysctl.c projects/diffused_head/sys/netinet/sctp_sysctl.h projects/diffused_head/sys/netinet/sctp_timer.c projects/diffused_head/sys/netinet/sctp_timer.h projects/diffused_head/sys/netinet/sctp_uio.h projects/diffused_head/sys/netinet/sctp_usrreq.c projects/diffused_head/sys/netinet/sctp_var.h projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/sctputil.h projects/diffused_head/sys/netinet/tcp_hostcache.c projects/diffused_head/sys/netinet/tcp_input.c projects/diffused_head/sys/netinet/tcp_lro.c projects/diffused_head/sys/netinet/tcp_lro.h projects/diffused_head/sys/netinet/tcp_offload.c projects/diffused_head/sys/netinet/tcp_offload.h projects/diffused_head/sys/netinet/tcp_output.c projects/diffused_head/sys/netinet/tcp_subr.c projects/diffused_head/sys/netinet/tcp_syncache.c projects/diffused_head/sys/netinet/tcp_syncache.h projects/diffused_head/sys/netinet/tcp_timer.c projects/diffused_head/sys/netinet/tcp_timewait.c projects/diffused_head/sys/netinet/tcp_usrreq.c projects/diffused_head/sys/netinet/tcp_var.h projects/diffused_head/sys/netinet/udp_usrreq.c projects/diffused_head/sys/netinet6/frag6.c projects/diffused_head/sys/netinet6/icmp6.c projects/diffused_head/sys/netinet6/in6.c projects/diffused_head/sys/netinet6/in6.h projects/diffused_head/sys/netinet6/in6_cksum.c projects/diffused_head/sys/netinet6/in6_src.c projects/diffused_head/sys/netinet6/ip6_forward.c projects/diffused_head/sys/netinet6/ip6_input.c projects/diffused_head/sys/netinet6/ip6_ipsec.c projects/diffused_head/sys/netinet6/ip6_mroute.c projects/diffused_head/sys/netinet6/ip6_mroute.h projects/diffused_head/sys/netinet6/ip6_output.c projects/diffused_head/sys/netinet6/ip6_var.h projects/diffused_head/sys/netinet6/mld6.c projects/diffused_head/sys/netinet6/nd6.c projects/diffused_head/sys/netinet6/nd6.h projects/diffused_head/sys/netinet6/nd6_nbr.c projects/diffused_head/sys/netinet6/route6.c projects/diffused_head/sys/netinet6/scope6.c projects/diffused_head/sys/netinet6/scope6_var.h projects/diffused_head/sys/netinet6/sctp6_usrreq.c projects/diffused_head/sys/netinet6/sctp6_var.h projects/diffused_head/sys/netinet6/udp6_usrreq.c projects/diffused_head/sys/netipsec/ipsec_output.c projects/diffused_head/sys/netipsec/key.c projects/diffused_head/sys/netncp/ncp_nls.h projects/diffused_head/sys/netsmb/smb_dev.c projects/diffused_head/sys/netsmb/smb_trantcp.c projects/diffused_head/sys/nfs/bootp_subr.c projects/diffused_head/sys/nfsclient/nfs_bio.c projects/diffused_head/sys/nfsclient/nfs_node.c projects/diffused_head/sys/nfsclient/nfs_subs.c projects/diffused_head/sys/nfsclient/nfs_vfsops.c projects/diffused_head/sys/nfsclient/nfs_vnops.c projects/diffused_head/sys/nfsclient/nfsnode.h projects/diffused_head/sys/nlm/nlm_advlock.c projects/diffused_head/sys/ofed/drivers/infiniband/core/cma.c projects/diffused_head/sys/ofed/drivers/infiniband/core/iwcm.c projects/diffused_head/sys/ofed/include/linux/gfp.h projects/diffused_head/sys/ofed/include/linux/linux_compat.c projects/diffused_head/sys/ofed/include/linux/net.h projects/diffused_head/sys/ofed/include/linux/workqueue.h projects/diffused_head/sys/ofed/include/net/netevent.h projects/diffused_head/sys/ofed/include/rdma/iw_cm.h projects/diffused_head/sys/pc98/conf/GENERIC projects/diffused_head/sys/pc98/pc98/machdep.c projects/diffused_head/sys/powerpc/aim/locore32.S projects/diffused_head/sys/powerpc/aim/locore64.S projects/diffused_head/sys/powerpc/aim/machdep.c projects/diffused_head/sys/powerpc/aim/mmu_oea.c projects/diffused_head/sys/powerpc/aim/mmu_oea64.c projects/diffused_head/sys/powerpc/aim/swtch32.S projects/diffused_head/sys/powerpc/aim/swtch64.S projects/diffused_head/sys/powerpc/booke/locore.S projects/diffused_head/sys/powerpc/booke/machdep.c projects/diffused_head/sys/powerpc/booke/platform_bare.c projects/diffused_head/sys/powerpc/booke/pmap.c projects/diffused_head/sys/powerpc/booke/trap.c projects/diffused_head/sys/powerpc/booke/trap_subr.S projects/diffused_head/sys/powerpc/conf/DEFAULTS projects/diffused_head/sys/powerpc/conf/GENERIC projects/diffused_head/sys/powerpc/conf/GENERIC64 projects/diffused_head/sys/powerpc/conf/MPC85XX projects/diffused_head/sys/powerpc/conf/NOTES projects/diffused_head/sys/powerpc/include/_stdint.h projects/diffused_head/sys/powerpc/include/_types.h projects/diffused_head/sys/powerpc/include/atomic.h projects/diffused_head/sys/powerpc/include/elf.h projects/diffused_head/sys/powerpc/include/hid.h projects/diffused_head/sys/powerpc/include/in_cksum.h projects/diffused_head/sys/powerpc/include/pcpu.h projects/diffused_head/sys/powerpc/include/pio.h projects/diffused_head/sys/powerpc/include/pmap.h projects/diffused_head/sys/powerpc/include/profile.h projects/diffused_head/sys/powerpc/include/psl.h projects/diffused_head/sys/powerpc/include/pte.h projects/diffused_head/sys/powerpc/include/spr.h projects/diffused_head/sys/powerpc/include/tlb.h projects/diffused_head/sys/powerpc/include/trap.h projects/diffused_head/sys/powerpc/include/vmparam.h projects/diffused_head/sys/powerpc/mpc85xx/i2c.c projects/diffused_head/sys/powerpc/mpc85xx/lbc.c projects/diffused_head/sys/powerpc/mpc85xx/lbc.h projects/diffused_head/sys/powerpc/mpc85xx/mpc85xx.c projects/diffused_head/sys/powerpc/mpc85xx/nexus.c projects/diffused_head/sys/powerpc/mpc85xx/pci_fdt.c projects/diffused_head/sys/powerpc/ofw/ofw_syscons.c projects/diffused_head/sys/powerpc/powermac/atibl.c projects/diffused_head/sys/powerpc/powermac/hrowpic.c projects/diffused_head/sys/powerpc/powerpc/busdma_machdep.c projects/diffused_head/sys/powerpc/powerpc/cpu.c projects/diffused_head/sys/powerpc/powerpc/db_trace.c projects/diffused_head/sys/powerpc/powerpc/gdb_machdep.c projects/diffused_head/sys/powerpc/powerpc/genassym.c projects/diffused_head/sys/powerpc/powerpc/mmu_if.m projects/diffused_head/sys/powerpc/powerpc/platform.c projects/diffused_head/sys/powerpc/powerpc/pmap_dispatch.c projects/diffused_head/sys/rpc/auth.h projects/diffused_head/sys/rpc/clnt_vc.c projects/diffused_head/sys/rpc/rpcb_clnt.c projects/diffused_head/sys/sparc64/conf/GENERIC projects/diffused_head/sys/sparc64/include/_stdint.h projects/diffused_head/sys/sparc64/include/_types.h projects/diffused_head/sys/sparc64/include/elf.h projects/diffused_head/sys/sparc64/include/fsr.h projects/diffused_head/sys/sparc64/include/in_cksum.h projects/diffused_head/sys/sparc64/include/intr_machdep.h projects/diffused_head/sys/sparc64/include/pmap.h projects/diffused_head/sys/sparc64/include/smp.h projects/diffused_head/sys/sparc64/pci/fire.c projects/diffused_head/sys/sparc64/pci/schizo.c projects/diffused_head/sys/sparc64/sparc64/intr_machdep.c projects/diffused_head/sys/sparc64/sparc64/mp_machdep.c projects/diffused_head/sys/sparc64/sparc64/pmap.c projects/diffused_head/sys/sparc64/sparc64/support.S projects/diffused_head/sys/sparc64/sparc64/tick.c projects/diffused_head/sys/sparc64/sparc64/tsb.c projects/diffused_head/sys/sys/_cpuset.h projects/diffused_head/sys/sys/_types.h projects/diffused_head/sys/sys/agpio.h projects/diffused_head/sys/sys/apm.h projects/diffused_head/sys/sys/ata.h projects/diffused_head/sys/sys/buf.h projects/diffused_head/sys/sys/bus.h projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/conf.h projects/diffused_head/sys/sys/disklabel.h projects/diffused_head/sys/sys/dtrace_bsd.h projects/diffused_head/sys/sys/elf_common.h projects/diffused_head/sys/sys/fcntl.h projects/diffused_head/sys/sys/file.h projects/diffused_head/sys/sys/filedesc.h projects/diffused_head/sys/sys/gpt.h projects/diffused_head/sys/sys/iconv.h projects/diffused_head/sys/sys/imgact_aout.h projects/diffused_head/sys/sys/kernel.h projects/diffused_head/sys/sys/mbuf.h projects/diffused_head/sys/sys/mdioctl.h projects/diffused_head/sys/sys/mount.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/pipe.h projects/diffused_head/sys/sys/pmckern.h projects/diffused_head/sys/sys/proc.h projects/diffused_head/sys/sys/refcount.h projects/diffused_head/sys/sys/sdt.h projects/diffused_head/sys/sys/smp.h projects/diffused_head/sys/sys/stat.h projects/diffused_head/sys/sys/stdint.h projects/diffused_head/sys/sys/syscall.h projects/diffused_head/sys/sys/syscall.mk projects/diffused_head/sys/sys/syscallsubr.h projects/diffused_head/sys/sys/sysent.h projects/diffused_head/sys/sys/sysproto.h projects/diffused_head/sys/sys/time.h projects/diffused_head/sys/sys/unistd.h projects/diffused_head/sys/sys/user.h projects/diffused_head/sys/sys/vmmeter.h projects/diffused_head/sys/sys/vnode.h projects/diffused_head/sys/sys/vtoc.h projects/diffused_head/sys/ufs/ffs/ffs_alloc.c projects/diffused_head/sys/ufs/ffs/ffs_snapshot.c projects/diffused_head/sys/ufs/ffs/ffs_softdep.c projects/diffused_head/sys/ufs/ffs/ffs_vfsops.c projects/diffused_head/sys/ufs/ffs/ffs_vnops.c projects/diffused_head/sys/ufs/ufs/inode.h projects/diffused_head/sys/ufs/ufs/ufs_bmap.c projects/diffused_head/sys/ufs/ufs/ufs_vnops.c projects/diffused_head/sys/vm/device_pager.c projects/diffused_head/sys/vm/memguard.c projects/diffused_head/sys/vm/memguard.h projects/diffused_head/sys/vm/pmap.h projects/diffused_head/sys/vm/sg_pager.c projects/diffused_head/sys/vm/swap_pager.c projects/diffused_head/sys/vm/uma_core.c projects/diffused_head/sys/vm/vm.h projects/diffused_head/sys/vm/vm_fault.c projects/diffused_head/sys/vm/vm_glue.c projects/diffused_head/sys/vm/vm_kern.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_map.h projects/diffused_head/sys/vm/vm_mmap.c projects/diffused_head/sys/vm/vm_object.c projects/diffused_head/sys/vm/vm_object.h projects/diffused_head/sys/vm/vm_page.c projects/diffused_head/sys/vm/vm_page.h projects/diffused_head/sys/vm/vm_pageout.c projects/diffused_head/sys/vm/vm_pageout.h projects/diffused_head/sys/vm/vm_pager.c projects/diffused_head/sys/vm/vm_pager.h projects/diffused_head/sys/vm/vm_phys.c projects/diffused_head/sys/vm/vm_phys.h projects/diffused_head/sys/vm/vm_reserv.c projects/diffused_head/sys/vm/vnode_pager.c projects/diffused_head/sys/x86/include/_limits.h projects/diffused_head/sys/x86/include/_stdint.h projects/diffused_head/sys/x86/include/_types.h projects/diffused_head/sys/x86/include/float.h projects/diffused_head/sys/x86/include/ptrace.h projects/diffused_head/sys/x86/include/specialreg.h projects/diffused_head/sys/x86/x86/busdma_machdep.c projects/diffused_head/sys/x86/x86/dump_machdep.c projects/diffused_head/sys/x86/x86/local_apic.c projects/diffused_head/sys/x86/x86/tsc.c projects/diffused_head/tools/bsdbox/Makefile projects/diffused_head/tools/bsdbox/Makefile.base projects/diffused_head/tools/bsdbox/Makefile.fs projects/diffused_head/tools/bsdbox/Makefile.hostapd projects/diffused_head/tools/build/make_check/Makefile projects/diffused_head/tools/build/mk/OptionalObsoleteFiles.inc projects/diffused_head/tools/build/options/WITHOUT_BINUTILS projects/diffused_head/tools/build/options/WITHOUT_ZONEINFO projects/diffused_head/tools/build/options/WITH_CLANG_IS_CC projects/diffused_head/tools/build/options/WITH_SHARED_TOOLCHAIN projects/diffused_head/tools/build/options/makeman projects/diffused_head/tools/regression/bin/sh/builtins/wait3.0 projects/diffused_head/tools/regression/lib/libc/gen/Makefile projects/diffused_head/tools/regression/pjdfstest/pjdfstest.c projects/diffused_head/tools/regression/sysvmsg/msgtest.c projects/diffused_head/tools/regression/sysvsem/semtest.c projects/diffused_head/tools/regression/sysvshm/shmtest.c projects/diffused_head/tools/regression/usr.bin/make/common.sh projects/diffused_head/tools/test/auxinfo/auxinfo.c projects/diffused_head/tools/tools/ath/Makefile projects/diffused_head/tools/tools/ath/ath_prom_read/Makefile projects/diffused_head/tools/tools/ath/athdebug/athdebug.c projects/diffused_head/tools/tools/ath/athrd/athrd.1 projects/diffused_head/tools/tools/ath/athstats/Makefile projects/diffused_head/tools/tools/ath/common/ah_osdep.h projects/diffused_head/tools/tools/ath/common/diag.h projects/diffused_head/tools/tools/ath/common/dumpregs_5416.c projects/diffused_head/tools/tools/net80211/w00t/redir/buddy.c projects/diffused_head/tools/tools/net80211/wesside/dics/dics.c projects/diffused_head/tools/tools/net80211/wlanstats/main.c projects/diffused_head/tools/tools/netmap/bridge.c projects/diffused_head/tools/tools/netmap/pcap.c projects/diffused_head/tools/tools/netmap/pkt-gen.c projects/diffused_head/tools/tools/sysbuild/sysbuild.sh projects/diffused_head/tools/tools/syscall_timing/syscall_timing.c projects/diffused_head/tools/tools/tinybsd/README projects/diffused_head/tools/tools/track/track.sh projects/diffused_head/tools/tools/zfsboottest/zfsboottest.c projects/diffused_head/tools/tools/zfsboottest/zfsboottest.sh projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/ar/acpyacc.y projects/diffused_head/usr.bin/bc/bc.y projects/diffused_head/usr.bin/calendar/calendar.1 projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/chat/chat.c projects/diffused_head/usr.bin/clang/Makefile projects/diffused_head/usr.bin/clang/bugpoint/bugpoint.1 projects/diffused_head/usr.bin/clang/clang-tblgen/Makefile projects/diffused_head/usr.bin/clang/clang.prog.mk projects/diffused_head/usr.bin/clang/clang/Makefile projects/diffused_head/usr.bin/clang/clang/clang.1 projects/diffused_head/usr.bin/clang/llc/Makefile projects/diffused_head/usr.bin/clang/llc/llc.1 projects/diffused_head/usr.bin/clang/lli/lli.1 projects/diffused_head/usr.bin/clang/llvm-ar/llvm-ar.1 projects/diffused_head/usr.bin/clang/llvm-as/llvm-as.1 projects/diffused_head/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 projects/diffused_head/usr.bin/clang/llvm-diff/llvm-diff.1 projects/diffused_head/usr.bin/clang/llvm-dis/Makefile projects/diffused_head/usr.bin/clang/llvm-dis/llvm-dis.1 projects/diffused_head/usr.bin/clang/llvm-extract/Makefile projects/diffused_head/usr.bin/clang/llvm-extract/llvm-extract.1 projects/diffused_head/usr.bin/clang/llvm-link/Makefile projects/diffused_head/usr.bin/clang/llvm-link/llvm-link.1 projects/diffused_head/usr.bin/clang/llvm-mc/Makefile projects/diffused_head/usr.bin/clang/llvm-nm/llvm-nm.1 projects/diffused_head/usr.bin/clang/llvm-objdump/Makefile projects/diffused_head/usr.bin/clang/llvm-prof/Makefile projects/diffused_head/usr.bin/clang/llvm-prof/llvm-prof.1 projects/diffused_head/usr.bin/clang/llvm-ranlib/llvm-ranlib.1 projects/diffused_head/usr.bin/clang/llvm-rtdyld/Makefile projects/diffused_head/usr.bin/clang/opt/opt.1 projects/diffused_head/usr.bin/clang/tblgen/Makefile projects/diffused_head/usr.bin/clang/tblgen/tblgen.1 projects/diffused_head/usr.bin/cpio/Makefile projects/diffused_head/usr.bin/cpio/test/Makefile projects/diffused_head/usr.bin/csup/csup.1 projects/diffused_head/usr.bin/ctlstat/ctlstat.8 projects/diffused_head/usr.bin/cut/cut.1 projects/diffused_head/usr.bin/cut/cut.c projects/diffused_head/usr.bin/dc/dc.1 projects/diffused_head/usr.bin/du/du.1 projects/diffused_head/usr.bin/du/du.c projects/diffused_head/usr.bin/fetch/fetch.1 projects/diffused_head/usr.bin/find/extern.h projects/diffused_head/usr.bin/find/find.1 projects/diffused_head/usr.bin/find/find.c projects/diffused_head/usr.bin/find/function.c projects/diffused_head/usr.bin/find/getdate.y projects/diffused_head/usr.bin/find/main.c projects/diffused_head/usr.bin/find/option.c projects/diffused_head/usr.bin/fstat/Makefile projects/diffused_head/usr.bin/fstat/fstat.c projects/diffused_head/usr.bin/gprof/gprof.1 projects/diffused_head/usr.bin/gprof/lookup.c projects/diffused_head/usr.bin/gzip/zmore.1 projects/diffused_head/usr.bin/ipcrm/ipcrm.1 projects/diffused_head/usr.bin/kdump/kdump.1 projects/diffused_head/usr.bin/kdump/kdump.c projects/diffused_head/usr.bin/kdump/mkioctls projects/diffused_head/usr.bin/killall/killall.1 projects/diffused_head/usr.bin/killall/killall.c projects/diffused_head/usr.bin/ktrace/ktrace.1 projects/diffused_head/usr.bin/ktrace/ktrace.h projects/diffused_head/usr.bin/lastcomm/lastcomm.1 projects/diffused_head/usr.bin/lastcomm/lastcomm.c projects/diffused_head/usr.bin/less/defines.h projects/diffused_head/usr.bin/lex/lex.1 projects/diffused_head/usr.bin/limits/limits.1 projects/diffused_head/usr.bin/lock/lock.c projects/diffused_head/usr.bin/login/login.1 projects/diffused_head/usr.bin/m4/parser.y projects/diffused_head/usr.bin/mail/popen.c projects/diffused_head/usr.bin/mail/util.c projects/diffused_head/usr.bin/make/Makefile projects/diffused_head/usr.bin/make/make.1 projects/diffused_head/usr.bin/make/var.c projects/diffused_head/usr.bin/makewhatis/makewhatis.c projects/diffused_head/usr.bin/man/man.conf.5 projects/diffused_head/usr.bin/minigzip/Makefile projects/diffused_head/usr.bin/minigzip/minigzip.1 projects/diffused_head/usr.bin/mkcsmapper/ldef.h projects/diffused_head/usr.bin/mkcsmapper/lex.l projects/diffused_head/usr.bin/mkesdb/ldef.h projects/diffused_head/usr.bin/mkesdb/lex.l projects/diffused_head/usr.bin/mklocale/extern.h projects/diffused_head/usr.bin/mklocale/mklocale.1 projects/diffused_head/usr.bin/ncplogin/ncplogout.1 projects/diffused_head/usr.bin/netstat/Makefile projects/diffused_head/usr.bin/netstat/inet.c projects/diffused_head/usr.bin/netstat/sctp.c projects/diffused_head/usr.bin/nfsstat/nfsstat.c projects/diffused_head/usr.bin/passwd/passwd.1 projects/diffused_head/usr.bin/procstat/Makefile projects/diffused_head/usr.bin/procstat/procstat.1 projects/diffused_head/usr.bin/procstat/procstat_rlimit.c projects/diffused_head/usr.bin/procstat/procstat_vm.c projects/diffused_head/usr.bin/rctl/rctl.8 projects/diffused_head/usr.bin/rlogin/rlogin.1 projects/diffused_head/usr.bin/rpcinfo/rpcinfo.c projects/diffused_head/usr.bin/rsh/rsh.1 projects/diffused_head/usr.bin/script/script.1 projects/diffused_head/usr.bin/script/script.c projects/diffused_head/usr.bin/sockstat/sockstat.1 projects/diffused_head/usr.bin/sockstat/sockstat.c projects/diffused_head/usr.bin/stdbuf/stdbuf.1 projects/diffused_head/usr.bin/stdbuf/stdbuf.c projects/diffused_head/usr.bin/systat/ifstat.c projects/diffused_head/usr.bin/tar/Makefile projects/diffused_head/usr.bin/tar/test/Makefile projects/diffused_head/usr.bin/tftp/tftp.1 projects/diffused_head/usr.bin/time/time.c projects/diffused_head/usr.bin/top/machine.c projects/diffused_head/usr.bin/top/top.local.1 projects/diffused_head/usr.bin/touch/touch.1 projects/diffused_head/usr.bin/touch/touch.c projects/diffused_head/usr.bin/truss/extern.h projects/diffused_head/usr.bin/truss/ia64-fbsd.c projects/diffused_head/usr.bin/truss/powerpc-fbsd.c projects/diffused_head/usr.bin/truss/powerpc64-fbsd.c projects/diffused_head/usr.bin/truss/setup.c projects/diffused_head/usr.bin/truss/syscalls.c projects/diffused_head/usr.bin/truss/truss.h projects/diffused_head/usr.bin/unzip/unzip.1 projects/diffused_head/usr.bin/unzip/unzip.c projects/diffused_head/usr.bin/usbhidctl/usbhid.c projects/diffused_head/usr.bin/usbhidctl/usbhidctl.1 projects/diffused_head/usr.bin/who/who.1 projects/diffused_head/usr.bin/whois/whois.1 projects/diffused_head/usr.bin/xinstall/xinstall.c projects/diffused_head/usr.bin/xlint/Makefile.inc projects/diffused_head/usr.bin/yacc/Makefile projects/diffused_head/usr.sbin/Makefile projects/diffused_head/usr.sbin/ac/Makefile projects/diffused_head/usr.sbin/ac/ac.8 projects/diffused_head/usr.sbin/ac/ac.c projects/diffused_head/usr.sbin/acpi/acpidb/Makefile projects/diffused_head/usr.sbin/acpi/acpidump/acpi.c projects/diffused_head/usr.sbin/acpi/iasl/Makefile projects/diffused_head/usr.sbin/adduser/rmuser.8 projects/diffused_head/usr.sbin/ancontrol/ancontrol.c projects/diffused_head/usr.sbin/apmd/apmd.8 projects/diffused_head/usr.sbin/arp/arp.4 projects/diffused_head/usr.sbin/bluetooth/bthidcontrol/bthidcontrol.8 projects/diffused_head/usr.sbin/bluetooth/bthidd/parser.y projects/diffused_head/usr.sbin/bluetooth/btpand/btpand.8 projects/diffused_head/usr.sbin/bluetooth/hccontrol/hccontrol.8 projects/diffused_head/usr.sbin/bluetooth/hcsecd/parser.y projects/diffused_head/usr.sbin/bluetooth/l2control/l2control.8 projects/diffused_head/usr.sbin/bluetooth/sdpcontrol/sdpcontrol.8 projects/diffused_head/usr.sbin/bsdinstall/bsdinstall projects/diffused_head/usr.sbin/bsdinstall/partedit/diskeditor.c projects/diffused_head/usr.sbin/bsdinstall/partedit/part_wizard.c projects/diffused_head/usr.sbin/bsdinstall/scripts/mirrorselect projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_netgraph/snmp_netgraph.3 projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 projects/diffused_head/usr.sbin/config/config.h projects/diffused_head/usr.sbin/config/main.c projects/diffused_head/usr.sbin/cpucontrol/amd.c projects/diffused_head/usr.sbin/cpucontrol/cpucontrol.8 projects/diffused_head/usr.sbin/cpucontrol/cpucontrol.c projects/diffused_head/usr.sbin/cron/crontab/crontab.c projects/diffused_head/usr.sbin/crunch/crunchgen/crunched_main.c projects/diffused_head/usr.sbin/crunch/crunchgen/crunchgen.c projects/diffused_head/usr.sbin/crunch/crunchide/crunchide.c projects/diffused_head/usr.sbin/crunch/crunchide/exec_elf32.c projects/diffused_head/usr.sbin/ctladm/ctladm.8 projects/diffused_head/usr.sbin/ctladm/ctladm.c projects/diffused_head/usr.sbin/daemon/daemon.8 projects/diffused_head/usr.sbin/daemon/daemon.c projects/diffused_head/usr.sbin/digictl/digictl.8 projects/diffused_head/usr.sbin/fifolog/lib/getdate.y projects/diffused_head/usr.sbin/flowctl/flowctl.8 projects/diffused_head/usr.sbin/flowctl/flowctl.c projects/diffused_head/usr.sbin/freebsd-update/freebsd-update.8 projects/diffused_head/usr.sbin/fwcontrol/fwcontrol.8 projects/diffused_head/usr.sbin/gssd/gssd.8 projects/diffused_head/usr.sbin/i2c/i2c.8 projects/diffused_head/usr.sbin/ifmcstat/ifmcstat.c projects/diffused_head/usr.sbin/inetd/builtins.c projects/diffused_head/usr.sbin/inetd/inetd.c projects/diffused_head/usr.sbin/inetd/inetd.h projects/diffused_head/usr.sbin/ipfwpcap/ipfwpcap.8 projects/diffused_head/usr.sbin/jail/command.c projects/diffused_head/usr.sbin/jail/config.c projects/diffused_head/usr.sbin/jail/jail.8 projects/diffused_head/usr.sbin/jail/jail.c projects/diffused_head/usr.sbin/jail/jail.conf.5 projects/diffused_head/usr.sbin/jail/jailp.h projects/diffused_head/usr.sbin/kbdmap/kbdmap.c projects/diffused_head/usr.sbin/keyserv/keyserv.c projects/diffused_head/usr.sbin/kldxref/ef.c projects/diffused_head/usr.sbin/lmcconfig/lmcconfig.c projects/diffused_head/usr.sbin/lpr/common_source/common.c projects/diffused_head/usr.sbin/lpr/lpd/lpd.8 projects/diffused_head/usr.sbin/lpr/lpr/lpr.c projects/diffused_head/usr.sbin/makefs/ffs.c projects/diffused_head/usr.sbin/makefs/ffs/ffs_extern.h projects/diffused_head/usr.sbin/makefs/ffs/ufs_bmap.c projects/diffused_head/usr.sbin/makefs/makefs.8 projects/diffused_head/usr.sbin/makefs/makefs.c projects/diffused_head/usr.sbin/makefs/makefs.h projects/diffused_head/usr.sbin/mfiutil/Makefile projects/diffused_head/usr.sbin/mfiutil/mfi_cmd.c projects/diffused_head/usr.sbin/mfiutil/mfi_config.c projects/diffused_head/usr.sbin/mfiutil/mfi_drive.c projects/diffused_head/usr.sbin/mfiutil/mfi_evt.c projects/diffused_head/usr.sbin/mfiutil/mfi_flash.c projects/diffused_head/usr.sbin/mfiutil/mfi_patrol.c projects/diffused_head/usr.sbin/mfiutil/mfi_show.c projects/diffused_head/usr.sbin/mfiutil/mfi_volume.c projects/diffused_head/usr.sbin/mfiutil/mfiutil.c projects/diffused_head/usr.sbin/mfiutil/mfiutil.h projects/diffused_head/usr.sbin/mountd/mountd.c projects/diffused_head/usr.sbin/mptutil/mpt_show.c projects/diffused_head/usr.sbin/ndiscvt/ndiscvt.8 projects/diffused_head/usr.sbin/ndp/ndp.8 projects/diffused_head/usr.sbin/ndp/ndp.c projects/diffused_head/usr.sbin/newsyslog/newsyslog.8 projects/diffused_head/usr.sbin/newsyslog/newsyslog.c projects/diffused_head/usr.sbin/newsyslog/newsyslog.conf.5 projects/diffused_head/usr.sbin/nfsd/nfsv4.4 projects/diffused_head/usr.sbin/nscd/cachelib.c projects/diffused_head/usr.sbin/nscd/cachelib.h projects/diffused_head/usr.sbin/nscd/config.c projects/diffused_head/usr.sbin/nscd/config.h projects/diffused_head/usr.sbin/nscd/nscd.conf.5 projects/diffused_head/usr.sbin/nscd/parser.c projects/diffused_head/usr.sbin/ntp/doc/ntp.conf.5 projects/diffused_head/usr.sbin/nvram/nvram.c projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-disk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-localize.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions.sh projects/diffused_head/usr.sbin/pciconf/Makefile projects/diffused_head/usr.sbin/pciconf/cap.c projects/diffused_head/usr.sbin/pciconf/pciconf.8 projects/diffused_head/usr.sbin/pciconf/pciconf.c projects/diffused_head/usr.sbin/pciconf/pciconf.h projects/diffused_head/usr.sbin/pkg/pkg.c projects/diffused_head/usr.sbin/pkg_install/add/main.c projects/diffused_head/usr.sbin/pkg_install/add/perform.c projects/diffused_head/usr.sbin/pkg_install/add/pkg_add.1 projects/diffused_head/usr.sbin/pkg_install/lib/exec.c projects/diffused_head/usr.sbin/pkg_install/lib/file.c projects/diffused_head/usr.sbin/pkg_install/lib/lib.h projects/diffused_head/usr.sbin/pkg_install/lib/msg.c projects/diffused_head/usr.sbin/pkg_install/lib/plist.c projects/diffused_head/usr.sbin/pkg_install/lib/url.c projects/diffused_head/usr.sbin/pkg_install/updating/pkg_updating.1 projects/diffused_head/usr.sbin/pmcstat/pmcstat.8 projects/diffused_head/usr.sbin/pmcstat/pmcstat.c projects/diffused_head/usr.sbin/pmcstat/pmcstat_log.c projects/diffused_head/usr.sbin/portsnap/portsnap/portsnap.8 projects/diffused_head/usr.sbin/portsnap/portsnap/portsnap.sh projects/diffused_head/usr.sbin/ppp/throughput.c projects/diffused_head/usr.sbin/rarpd/Makefile projects/diffused_head/usr.sbin/rarpd/rarpd.8 projects/diffused_head/usr.sbin/rarpd/rarpd.c projects/diffused_head/usr.sbin/rpc.lockd/kern.c projects/diffused_head/usr.sbin/rtadvctl/rtadvctl.8 projects/diffused_head/usr.sbin/rtadvd/rtadvd.8 projects/diffused_head/usr.sbin/rtprio/rtprio.c projects/diffused_head/usr.sbin/setfib/setfib.1 projects/diffused_head/usr.sbin/smbmsg/smbmsg.8 projects/diffused_head/usr.sbin/syslogd/syslogd.8 projects/diffused_head/usr.sbin/tcpdump/tcpdump/Makefile projects/diffused_head/usr.sbin/tcpdump/tcpdump/config.h projects/diffused_head/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/diffused_head/usr.sbin/timed/timed/master.c projects/diffused_head/usr.sbin/timed/timed/measure.c projects/diffused_head/usr.sbin/timed/timed/readmsg.c projects/diffused_head/usr.sbin/timed/timed/slave.c projects/diffused_head/usr.sbin/timed/timed/timed.c projects/diffused_head/usr.sbin/timed/timedc/cmds.c projects/diffused_head/usr.sbin/traceroute6/traceroute6.c projects/diffused_head/usr.sbin/usbdump/usbdump.c projects/diffused_head/usr.sbin/utx/utx.8 projects/diffused_head/usr.sbin/vidcontrol/vidcontrol.c projects/diffused_head/usr.sbin/watchdogd/watchdogd.c projects/diffused_head/usr.sbin/wpa/hostapd/hostapd.8 projects/diffused_head/usr.sbin/wpa/hostapd/hostapd.conf.5 projects/diffused_head/usr.sbin/wpa/ndis_events/ndis_events.8 projects/diffused_head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.conf.5 Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/diffused_head/contrib/bind9/ (props changed) projects/diffused_head/contrib/binutils/ (props changed) projects/diffused_head/contrib/com_err/ (props changed) projects/diffused_head/contrib/compiler-rt/ (props changed) projects/diffused_head/contrib/dtc/ (props changed) projects/diffused_head/contrib/file/ (props changed) projects/diffused_head/contrib/gcc/ (props changed) projects/diffused_head/contrib/gdb/ (props changed) projects/diffused_head/contrib/groff/ (props changed) projects/diffused_head/contrib/less/ (props changed) projects/diffused_head/contrib/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/cpio/ (props changed) projects/diffused_head/contrib/libarchive/libarchive/ (props changed) projects/diffused_head/contrib/libarchive/libarchive_fe/ (props changed) projects/diffused_head/contrib/libarchive/tar/ (props changed) projects/diffused_head/contrib/libc++/ (props changed) projects/diffused_head/contrib/libpcap/ (props changed) projects/diffused_head/contrib/libstdc++/ (props changed) projects/diffused_head/contrib/llvm/ (props changed) projects/diffused_head/contrib/llvm/tools/clang/ (props changed) projects/diffused_head/contrib/ncurses/ (props changed) projects/diffused_head/contrib/netcat/ (props changed) projects/diffused_head/contrib/openpam/ (props changed) projects/diffused_head/contrib/openresolv/ (props changed) projects/diffused_head/contrib/tcpdump/ (props changed) projects/diffused_head/contrib/top/ (props changed) projects/diffused_head/crypto/openssh/ (props changed) projects/diffused_head/crypto/openssl/ (props changed) projects/diffused_head/gnu/lib/ (props changed) projects/diffused_head/gnu/usr.bin/binutils/ (props changed) projects/diffused_head/gnu/usr.bin/cc/cc_tools/ (props changed) projects/diffused_head/gnu/usr.bin/gdb/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libc/stdtime/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/lib/libz/ (props changed) projects/diffused_head/lib/libz/contrib/ (props changed) projects/diffused_head/lib/libz/contrib/README.contrib (props changed) projects/diffused_head/lib/libz/contrib/asm686/ (props changed) projects/diffused_head/lib/libz/contrib/asm686/README.686 (props changed) projects/diffused_head/lib/libz/contrib/gcc_gvmat64/ (props changed) projects/diffused_head/lib/libz/contrib/gcc_gvmat64/gvmat64.S (props changed) projects/diffused_head/lib/libz/doc/ (props changed) projects/diffused_head/lib/libz/doc/rfc1950.txt (props changed) projects/diffused_head/lib/libz/doc/rfc1951.txt (props changed) projects/diffused_head/lib/libz/doc/rfc1952.txt (props changed) projects/diffused_head/lib/libz/doc/txtvsbin.txt (props changed) projects/diffused_head/lib/libz/gzclose.c (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/boot/i386/efi/ (props changed) projects/diffused_head/sys/boot/powerpc/boot1.chrp/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/common/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/os_specific/ (props changed) projects/diffused_head/sys/contrib/libfdt/ (props changed) projects/diffused_head/sys/contrib/pf/ (props changed) projects/diffused_head/tools/regression/usr.bin/make/all.sh (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/csup/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) projects/diffused_head/usr.sbin/jail/ (props changed) projects/diffused_head/usr.sbin/ndiscvt/ (props changed) projects/diffused_head/usr.sbin/rtadvctl/ (props changed) projects/diffused_head/usr.sbin/rtadvd/ (props changed) Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/Makefile Tue Nov 27 03:36:15 2012 (r243595) @@ -92,7 +92,7 @@ TGTS= all all-man buildenv buildenvvars delete-old delete-old-dirs delete-old-files delete-old-libs \ depend distribute distributekernel distributekernel.debug \ distributeworld distrib-dirs distribution doxygen \ - everything hierarchy install installcheck installkernel \ + everything hier hierarchy install installcheck installkernel \ installkernel.debug packagekernel packageworld \ reinstallkernel reinstallkernel.debug \ installworld kernel-toolchain libraries lint maninstall \ @@ -135,7 +135,7 @@ _MAKE= PATH=${PATH} ${BINMAKE} -f Makefi _TARGET_ARCH= ${TARGET:S/pc98/i386/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/} .endif # Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1 .if defined(TARGET) && defined(TARGET_ARCH) && \ @@ -329,7 +329,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 +TARGET_ARCHES_arm?= arm armeb armv6 armv6eb TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/Makefile.inc1 Tue Nov 27 03:36:15 2012 (r243595) @@ -15,6 +15,7 @@ # -DNO_WWWUPDATE do not update www in ${MAKE} update # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list +# LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target # LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools # list # TARGET="machine" to crossbuild world for a different machine type @@ -88,7 +89,7 @@ SUBDIR+=etc # These are last, since it is nice to at least get the base system # rebuilt before you do them. -.for _DIR in ${LOCAL_DIRS} +.for _DIR in ${LOCAL_LIB_DIRS} ${LOCAL_DIRS} .if exists(${.CURDIR}/${_DIR}/Makefile) SUBDIR+= ${_DIR} .endif @@ -136,7 +137,7 @@ VERSION!= uname -srp VERSION+= ${OSRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/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 armv6eb/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 @@ -223,9 +224,6 @@ CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ MACHINE_ARCH=${TARGET_ARCH} \ MACHINE=${TARGET} \ CPUTYPE=${TARGET_CPUTYPE} -.if ${OSRELDATE} < 700044 -CROSSENV+= AR=gnu-ar RANLIB=gnu-ranlib -.endif .if ${MK_GROFF} != "no" CROSSENV+= GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \ GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \ @@ -245,7 +243,7 @@ BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ SSP_CFLAGS= \ -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \ -DNO_PIC -DNO_PROFILE -DNO_SHARED \ - -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF + -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF -DEARLY_BUILD # build-tools stage TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ @@ -255,7 +253,7 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ -DNO_LINT \ - -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF + -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF -DEARLY_BUILD # cross-tools stage XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ @@ -265,6 +263,7 @@ XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE # world stage WMAKEENV= ${CROSSENV} \ _SHLIBDIRPREFIX=${WORLDTMP} \ + _LDSCRIPTROOT= \ VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} @@ -307,6 +306,7 @@ LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMP # Yes, the flags are redundant. LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \ _SHLIBDIRPREFIX=${LIB32TMP} \ + _LDSCRIPTROOT=${LIB32TMP} \ VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ @@ -319,11 +319,11 @@ LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DN -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ DESTDIR=${LIB32TMP} -LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS +LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS .endif # install stage -IMAKEENV= ${CROSSENV} +IMAKEENV= ${CROSSENV:N_LDSCRIPTROOT=*} IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 .if empty(.MAKEFLAGS:M-n) IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ @@ -488,7 +488,8 @@ build32: .for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic cd ${.CURDIR}/${_dir}; \ MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ - DIRPRFX=${_dir}/ build-tools + DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF \ + -DEARLY_BUILD build-tools .endfor cd ${.CURDIR}; \ ${LIB32WMAKE} -f Makefile.inc1 libraries @@ -830,7 +831,7 @@ buildkernel: cd ${KRNLOBJDIR}/${_kernel}; \ PATH=${BPATH}:${PATH} \ MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ - ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \ + ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF -DEARLY_BUILD \ -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile # XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case. .if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules) @@ -838,7 +839,7 @@ buildkernel: cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \ PATH=${BPATH}:${PATH} \ MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \ - ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target} + ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF -DEARLY_BUILD ${target} .endfor .endif .if !defined(NO_KERNELDEPEND) @@ -979,8 +980,8 @@ update: # legacy: Build compatibility shims for the next three targets # legacy: -.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0 - @echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \ +.if ${BOOTSTRAPPING} < 700055 && ${BOOTSTRAPPING} != 0 + @echo "ERROR: Source upgrades from versions prior to 7.0 not supported."; \ false .endif .for _tool in tools/build @@ -1008,7 +1009,7 @@ _gperf= gnu/usr.bin/gperf _groff= gnu/usr.bin/groff .endif -.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022 +.if ${BOOTSTRAPPING} < 800022 _ar= usr.bin/ar .endif @@ -1022,6 +1023,9 @@ _sed= usr.bin/sed .if ${BOOTSTRAPPING} < 900006 _lex= usr.bin/lex +.endif + +.if ${BOOTSTRAPPING} < 1000013 _yacc= usr.bin/yacc .endif @@ -1029,16 +1033,10 @@ _yacc= usr.bin/yacc _awk= usr.bin/awk .endif -.if ${MK_BSNMP} != "no" && \ - (${BOOTSTRAPPING} < 700018 || !exists(/usr/sbin/gensnmptree)) +.if ${MK_BSNMP} != "no" && !exists(/usr/sbin/gensnmptree) _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif -.if ${MK_RESCUE} != "no" && \ - ${BOOTSTRAPPING} < 700026 -_crunchgen= usr.sbin/crunch/crunchgen -.endif - .if ${MK_CLANG} != "no" _clang_tblgen= \ lib/clang/libllvmsupport \ @@ -1088,12 +1086,11 @@ bootstrap-tools: ${_mklocale} \ usr.bin/rpcgen \ ${_sed} \ - ${_lex} \ ${_yacc} \ + ${_lex} \ usr.bin/xinstall \ ${_gensnmptree} \ - usr.sbin/config \ - ${_crunchgen} + usr.sbin/config ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ cd ${.CURDIR}/${_tool}; \ ${MAKE} DIRPRFX=${_tool}/ obj; \ @@ -1200,7 +1197,7 @@ cross-tools: # # hierarchy - ensure that all the needed directories are present # -hierarchy: +hierarchy hier: cd ${.CURDIR}/etc; ${MAKE} distrib-dirs # @@ -1263,7 +1260,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 lib/ncurses/ncurses lib/ncurses/ncursesw \ lib/libopie lib/libpam ${_lib_libthr} \ lib/libradius lib/libsbuf lib/libtacplus \ - ${_cddl_lib_libumem} \ + ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} @@ -1277,11 +1274,17 @@ _ofed_lib= contrib/ofed/usr.lib/ .endif _generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib} +.for _DIR in ${LOCAL_LIB_DIRS} +.if exists(${.CURDIR}/${_DIR}/Makefile) +_generic_libs+= ${_DIR} +.endif +.endfor lib/libopie__L lib/libtacplus__L: lib/libmd__L .if ${MK_CDDL} != "no" _cddl_lib_libumem= cddl/lib/libumem +_cddl_lib_libnvpair= cddl/lib/libnvpair _cddl_lib= cddl/lib .endif Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 03:36:15 2012 (r243595) @@ -38,9 +38,75 @@ # xargs -n1 | sort | uniq -d; # done +# 20120816: new clang import which bumps version from 3.1 to 3.2 +OLD_FILES+=usr/bin/llvm-ld +OLD_FILES+=usr/bin/llvm-stub +OLD_FILES+=usr/include/clang/3.1/altivec.h +OLD_FILES+=usr/include/clang/3.1/avx2intrin.h +OLD_FILES+=usr/include/clang/3.1/avxintrin.h +OLD_FILES+=usr/include/clang/3.1/bmi2intrin.h +OLD_FILES+=usr/include/clang/3.1/bmiintrin.h +OLD_FILES+=usr/include/clang/3.1/cpuid.h +OLD_FILES+=usr/include/clang/3.1/emmintrin.h +OLD_FILES+=usr/include/clang/3.1/fma4intrin.h +OLD_FILES+=usr/include/clang/3.1/immintrin.h +OLD_FILES+=usr/include/clang/3.1/lzcntintrin.h +OLD_FILES+=usr/include/clang/3.1/mm3dnow.h +OLD_FILES+=usr/include/clang/3.1/mm_malloc.h +OLD_FILES+=usr/include/clang/3.1/mmintrin.h +OLD_FILES+=usr/include/clang/3.1/module.map +OLD_FILES+=usr/include/clang/3.1/nmmintrin.h +OLD_FILES+=usr/include/clang/3.1/pmmintrin.h +OLD_FILES+=usr/include/clang/3.1/popcntintrin.h +OLD_FILES+=usr/include/clang/3.1/smmintrin.h +OLD_FILES+=usr/include/clang/3.1/tmmintrin.h +OLD_FILES+=usr/include/clang/3.1/unwind.h +OLD_FILES+=usr/include/clang/3.1/wmmintrin.h +OLD_FILES+=usr/include/clang/3.1/x86intrin.h +OLD_FILES+=usr/include/clang/3.1/xmmintrin.h +OLD_DIRS+=usr/include/clang/3.1 +OLD_FILES+=usr/share/man/man1/llvm-ld.1.gz +# 20120712: OpenSSL 1.0.1c import +OLD_LIBS+=lib/libcrypto.so.6 +OLD_LIBS+=usr/lib/libssl.so.6 +OLD_LIBS+=usr/lib32/libcrypto.so.6 +OLD_LIBS+=usr/lib32/libssl.so.6 +OLD_FILES+=usr/include/openssl/aes_locl.h +OLD_FILES+=usr/include/openssl/bio_lcl.h +OLD_FILES+=usr/include/openssl/e_os.h +OLD_FILES+=usr/include/openssl/fips.h +OLD_FILES+=usr/include/openssl/fips_rand.h +OLD_FILES+=usr/include/openssl/md2.h +OLD_FILES+=usr/include/openssl/pq_compat.h +OLD_FILES+=usr/include/openssl/store.h +OLD_FILES+=usr/include/openssl/tmdiff.h +OLD_FILES+=usr/include/openssl/ui_locl.h +OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz +# 20120621: remove old man page +OLD_FILES+=usr/share/man/man8/vnconfig.8.gz +# 20120613: auth.conf removed +OLD_FILES+=etc/auth.conf +OLD_FILES+=usr/share/examples/etc/auth.conf +OLD_FILES+=usr/share/man/man3/auth.3.gz +OLD_FILES+=usr/share/man/man5/auth.conf.5.gz +# 20120530: kde pam lives now in ports +OLD_FILES+=etc/pam.d/kde +# 20120505: new clang import installed a redundant internal header +OLD_FILES+=usr/include/clang/3.1/stdalign.h +# 20120428: MD2 removed from libmd +OLD_FILES+=usr/include/md2.h +OLD_FILES+=usr/share/man/man3/MD2Data.3.gz +OLD_FILES+=usr/share/man/man3/MD2End.3.gz +OLD_FILES+=usr/share/man/man3/MD2File.3.gz +OLD_FILES+=usr/share/man/man3/MD2FileChunk.3.gz +OLD_FILES+=usr/share/man/man3/MD2Final.3.gz +OLD_FILES+=usr/share/man/man3/MD2Init.3.gz +OLD_FILES+=usr/share/man/man3/MD2Update.3.gz +OLD_FILES+=usr/share/man/man3/md2.3.gz # 20120425: libusb version bump (r234684) OLD_LIBS+=usr/lib/libusb.so.2 OLD_LIBS+=usr/lib32/libusb.so.2 +OLD_FILES+=usr/share/man/man3/libsub_get_active_config_descriptor.3.gz # 20120415: new clang import which bumps version from 3.0 to 3.1 OLD_FILES+=usr/include/clang/3.0/altivec.h OLD_FILES+=usr/include/clang/3.0/avxintrin.h @@ -57,6 +123,17 @@ OLD_FILES+=usr/include/clang/3.0/wmmintr OLD_FILES+=usr/include/clang/3.0/x86intrin.h OLD_FILES+=usr/include/clang/3.0/xmmintrin.h OLD_DIRS+=usr/include/clang/3.0 +# 20120412: BIND 9.8.1 release notes removed +OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.pdf +OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.txt +OLD_FILES+=usr/share/doc/bind9/RELEASE-NOTES-BIND-9.8.1.html +OLD_FILES+=usr/share/doc/bind9/release-notes.css +# 20120330: legacy(4) moved to x86 +OLD_FILES+=usr/include/machine/legacyvar.h +# 20120324: MPI headers updated +OLD_FILES+=usr/include/dev/mpt/mpilib/mpi_inb.h +# 20120322: hwpmc_mips24k.h removed +OLD_FILES+=usr/include/dev/hwpmc/hwpmc_mips24k.h # 20120322: Update heimdal to 1.5.1. OLD_FILES+=usr/include/krb5-v4compat.h \ usr/include/krb_err.h \ @@ -101,6 +178,8 @@ OLD_LIBS+=usr/lib/libasn1.so.10 \ # 20120309: Remove fifofs header files. OLD_FILES+=usr/include/fs/fifofs/fifo.h OLD_DIRS+=usr/include/fs/fifofs +# 20120304: xlocale cleanup +OLD_FILES+=usr/include/_xlocale_ctype.h # 20120225: libarchive 3.0.3 OLD_FILES+=usr/share/man/man3/archive_read_data_into_buffer.3.gz \ usr/share/man/man3/archive_read_support_compression_all.3.gz \ @@ -1307,6 +1386,11 @@ OLD_FILES+=usr/share/man/man2/kse_thr_in OLD_FILES+=usr/share/man/man2/kse_wakeup.2.gz OLD_FILES+=usr/lib32/libkse.so OLD_LIBS+=usr/lib32/libkse.so.3 +# 20080225: bsdar/bsdranlib rename to ar/ranlib +OLD_FILES+=usr/bin/bsdar +OLD_FILES+=usr/bin/bsdranlib +OLD_FILES+=usr/share/man/man1/bsdar.1.gz +OLD_FILES+=usr/share/man/man1/bsdranlib.1.gz # 20080220: geom_lvm rename to geom_linux_lvm OLD_FILES+=usr/share/man/man4/geom_lvm.4.gz # 20080126: oldcard.4 removal Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/UPDATING Tue Nov 27 03:36:15 2012 (r243595) @@ -24,6 +24,46 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20120828: + A new ZFS feature flag "com.delphix:empty_bpobj" has been merged + to -HEAD. Pools that have empty_bpobj in active state can not be + imported read-write with ZFS implementations that do not support + this feature. For more information read the zpool-features(5) + manual page. + +20120727: + The sparc64 ZFS loader has been changed to no longer try to auto- + detect ZFS providers based on diskN aliases but now requires these + to be explicitly listed in the OFW boot-device environment variable. + +20120712: + The OpenSSL has been upgraded to 1.0.1c. Any binaries requiring + libcrypto.so.6 or libssl.so.6 must be recompiled. Also, there are + configuration changes. Make sure to merge /etc/ssl/openssl.cnf. + +20120712: + The following sysctls and tunables have been renamed for consistency + with other variables: + kern.cam.da.da_send_ordered -> kern.cam.da.send_ordered + kern.cam.ada.ada_send_ordered -> kern.cam.ada.send_ordered + +20120628: + The sort utility has been replaced with BSD sort. For now, GNU sort + is also available as "gnusort" or the default can be set back to + GNU sort by setting WITH_GNU_SORT. In this case, BSD sort will be + installed as "bsdsort". + +20120611: + A new version of ZFS (pool version 5000) has been merged to -HEAD. + Starting with this version the old system of ZFS pool versioning + is superseded by "feature flags". This concept enables forward + compatibility against certain future changes in functionality of ZFS + pools. The first read-only compatible "feature flag" for ZFS pools + is named "com.delphix:async_destroy". For more information + read the new zpool-features(5) manual page. + Please refer to the "ZFS notes" section of this file for information + on upgrading boot ZFS pools. + 20120417: The malloc(3) implementation embedded in libc now uses sources imported as contrib/jemalloc. The most disruptive API change is to Modified: projects/diffused_head/bin/cat/cat.c ============================================================================== --- projects/diffused_head/bin/cat/cat.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/cat/cat.c Tue Nov 27 03:36:15 2012 (r243595) @@ -58,11 +58,11 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include #include -#include static int bflag, eflag, nflag, sflag, tflag, vflag; static int rval; @@ -77,16 +77,20 @@ static void raw_cat(int); static int udom_open(const char *path, int flags); #endif -/* Memory strategy threshold, in pages: if physmem is larger then this, use a - * large buffer */ -#define PHYSPAGES_THRESHOLD (32*1024) - -/* Maximum buffer size in bytes - do not allow it to grow larger than this */ -#define BUFSIZE_MAX (2*1024*1024) - -/* Small (default) buffer size in bytes. It's inefficient for this to be - * smaller than MAXPHYS */ -#define BUFSIZE_SMALL (MAXPHYS) +/* + * Memory strategy threshold, in pages: if physmem is larger than this, + * use a large buffer. + */ +#define PHYSPAGES_THRESHOLD (32 * 1024) + +/* Maximum buffer size in bytes - do not allow it to grow larger than this. */ +#define BUFSIZE_MAX (2 * 1024 * 1024) + +/* + * Small (default) buffer size in bytes. It's inefficient for this to be + * smaller than MAXPHYS. + */ +#define BUFSIZE_SMALL (MAXPHYS) int main(int argc, char *argv[]) @@ -144,13 +148,12 @@ usage(void) static void scanfiles(char *argv[], int cooked) { - int i = 0; + int fd, i; char *path; FILE *fp; + i = 0; while ((path = argv[i]) != NULL || i == 0) { - int fd; - if (path == NULL || strcmp(path, "-") == 0) { filename = "stdin"; fd = STDIN_FILENO; @@ -257,16 +260,16 @@ raw_cat(int rfd) wfd = fileno(stdout); if (buf == NULL) { if (fstat(wfd, &sbuf)) - err(1, "%s", filename); + err(1, "stdout"); if (S_ISREG(sbuf.st_mode)) { /* If there's plenty of RAM, use a large copy buffer */ if (sysconf(_SC_PHYS_PAGES) > PHYSPAGES_THRESHOLD) - bsize = MIN(BUFSIZE_MAX, MAXPHYS*8); + bsize = MIN(BUFSIZE_MAX, MAXPHYS * 8); else bsize = BUFSIZE_SMALL; } else - bsize = MAX(sbuf.st_blksize, - (blksize_t)sysconf(_SC_PAGESIZE)); + bsize = MAX(sbuf.st_blksize, + (blksize_t)sysconf(_SC_PAGESIZE)); if ((buf = malloc(bsize)) == NULL) err(1, "malloc() failure of IO buffer"); } @@ -327,7 +330,7 @@ udom_open(const char *path, int flags) break; } } - return(fd); + return (fd); } #endif Modified: projects/diffused_head/bin/date/date.c ============================================================================== --- projects/diffused_head/bin/date/date.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/date/date.c Tue Nov 27 03:36:15 2012 (r243595) @@ -137,7 +137,7 @@ main(int argc, char *argv[]) * If -d or -t, set the timezone or daylight savings time; this * doesn't belong here; the kernel should not know about either. */ - if (set_timezone && settimeofday((struct timeval *)NULL, &tz)) + if (set_timezone && settimeofday(NULL, &tz) != 0) err(1, "settimeofday (timezone)"); if (!rflag && time(&tval) == -1) @@ -273,14 +273,14 @@ setthetime(const char *fmt, const char * /* set the time */ if (nflag || netsettime(tval)) { utx.ut_type = OLD_TIME; - gettimeofday(&utx.ut_tv, NULL); + (void)gettimeofday(&utx.ut_tv, NULL); pututxline(&utx); tv.tv_sec = tval; tv.tv_usec = 0; - if (settimeofday(&tv, (struct timezone *)NULL)) + if (settimeofday(&tv, NULL) != 0) err(1, "settimeofday (timeval)"); utx.ut_type = NEW_TIME; - gettimeofday(&utx.ut_tv, NULL); + (void)gettimeofday(&utx.ut_tv, NULL); pututxline(&utx); } Modified: projects/diffused_head/bin/dd/dd.c ============================================================================== --- projects/diffused_head/bin/dd/dd.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/dd/dd.c Tue Nov 27 03:36:15 2012 (r243595) @@ -232,8 +232,8 @@ setup(void) ctab = casetab; } - (void)gettimeofday(&tv, (struct timezone *)NULL); - st.start = tv.tv_sec + tv.tv_usec * 1e-6; + (void)gettimeofday(&tv, NULL); + st.start = tv.tv_sec + tv.tv_usec * 1e-6; } static void Modified: projects/diffused_head/bin/dd/misc.c ============================================================================== --- projects/diffused_head/bin/dd/misc.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/dd/misc.c Tue Nov 27 03:36:15 2012 (r243595) @@ -59,7 +59,7 @@ summary(void) double secs; char buf[100]; - (void)gettimeofday(&tv, (struct timezone *)NULL); + (void)gettimeofday(&tv, NULL); secs = tv.tv_sec + tv.tv_usec * 1e-6 - st.start; if (secs < 1e-6) secs = 1e-6; Modified: projects/diffused_head/bin/ed/Makefile ============================================================================== --- projects/diffused_head/bin/ed/Makefile Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ed/Makefile Tue Nov 27 03:36:15 2012 (r243595) @@ -7,12 +7,12 @@ SRCS= buf.c cbc.c glbl.c io.c main.c re. LINKS= ${BINDIR}/ed ${BINDIR}/red MLINKS= ed.1 red.1 -.if !defined(RELEASE_CRUNCH) -.if ${MK_OPENSSL} != "no" +.if !defined(RELEASE_CRUNCH) && \ + ${MK_OPENSSL} != "no" && \ + ${MK_ED_CRYPTO} != "no" CFLAGS+=-DDES DPADD= ${LIBCRYPTO} LDADD= -lcrypto .endif -.endif .include Modified: projects/diffused_head/bin/expr/expr.1 ============================================================================== --- projects/diffused_head/bin/expr/expr.1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/expr/expr.1 Tue Nov 27 03:36:15 2012 (r243595) @@ -77,7 +77,7 @@ Operators with equal precedence are grou and .Ql } . .Bl -tag -width indent -.It Ar expr1 Li | Ar expr2 +.It Ar expr1 Li \&| Ar expr2 Return the evaluation of .Ar expr1 if it is neither an empty string nor zero; Modified: projects/diffused_head/bin/expr/expr.y ============================================================================== --- projects/diffused_head/bin/expr/expr.y Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/expr/expr.y Tue Nov 27 03:36:15 2012 (r243595) @@ -74,7 +74,6 @@ int to_integer(struct val *); void to_string(struct val *); int yyerror(const char *); int yylex(void); -int yyparse(void); %} Modified: projects/diffused_head/bin/kenv/kenv.1 ============================================================================== --- projects/diffused_head/bin/kenv/kenv.1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/kenv/kenv.1 Tue Nov 27 03:36:15 2012 (r243595) @@ -24,7 +24,7 @@ .\" .\" $FreeBSD$ .\" -.Dd January 13, 2009 +.Dd May 11, 2012 .Dt KENV 1 .Os .Sh NAME @@ -32,9 +32,9 @@ .Nd dump or modify the kernel environment .Sh SYNOPSIS .Nm -.Op Fl hq +.Op Fl hNq .Nm -.Op Fl q +.Op Fl qv .Ar variable Ns Op = Ns Ar value .Nm .Op Fl q @@ -54,6 +54,11 @@ name is specified, .Nm will only report that value. If the +.Fl N +option is specified, +.Nm +will only display variable names and not their values. +If the .Fl u option is specified, .Nm @@ -68,6 +73,13 @@ If the option is set, warnings normally printed as a result of being unable to perform the requested operation will be suppressed. .Pp +If the +.Fl v +option is set, the variable name will be printed out for the +environment variable in addition to the value when +.Nm +is executed with a variable name. +.Pp Variables can be added to the kernel environment using the .Pa /boot/loader.conf file, or also statically compiled into the kernel using the statement Modified: projects/diffused_head/bin/kenv/kenv.c ============================================================================== --- projects/diffused_head/bin/kenv/kenv.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/kenv/kenv.c Tue Nov 27 03:36:15 2012 (r243595) @@ -42,15 +42,17 @@ static int ksetenv(char *, char *); static int kunsetenv(char *); static int hflag = 0; +static int Nflag = 0; static int qflag = 0; static int uflag = 0; +static int vflag = 0; static void usage(void) { (void)fprintf(stderr, "%s\n%s\n%s\n", - "usage: kenv [-hq]", - " kenv [-q] variable[=value]", + "usage: kenv [-hNq]", + " kenv [-qv] variable[=value]", " kenv [-q] -u variable"); exit(1); } @@ -64,17 +66,23 @@ main(int argc, char **argv) error = 0; val = NULL; env = NULL; - while ((ch = getopt(argc, argv, "hqu")) != -1) { + while ((ch = getopt(argc, argv, "hNquv")) != -1) { switch (ch) { case 'h': hflag++; break; + case 'N': + Nflag++; + break; case 'q': qflag++; break; case 'u': uflag++; break; + case 'v': + vflag++; + break; default: usage(); } @@ -91,9 +99,9 @@ main(int argc, char **argv) argv++; argc--; } - if (hflag && (env != NULL)) + if ((hflag || Nflag) && env != NULL) usage(); - if ((argc > 0) || (uflag && (env == NULL))) + if (argc > 0 || ((uflag || vflag) && env == NULL)) usage(); if (env == NULL) { error = kdumpenv(); @@ -152,7 +160,10 @@ kdumpenv(void) if (cp == NULL) continue; *cp++ = '\0'; - printf("%s=\"%s\"\n", buf, cp); + if (Nflag) + printf("%s\n", buf); + else + printf("%s=\"%s\"\n", buf, cp); buf = cp; } return (0); @@ -167,7 +178,10 @@ kgetenv(char *env) ret = kenv(KENV_GET, env, buf, sizeof(buf)); if (ret == -1) return (ret); - printf("%s\n", buf); + if (vflag) + printf("%s=\"%s\"\n", env, buf); + else + printf("%s\n", buf); return (0); } Modified: projects/diffused_head/bin/ls/Makefile ============================================================================== --- projects/diffused_head/bin/ls/Makefile Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ls/Makefile Tue Nov 27 03:36:15 2012 (r243595) @@ -1,12 +1,15 @@ # @(#)Makefile 8.1 (Berkeley) 6/2/93 # $FreeBSD$ +.include + PROG= ls SRCS= cmp.c ls.c print.c util.c DPADD= ${LIBUTIL} LDADD= -lutil -.if !defined(RELEASE_CRUNCH) +.if !defined(RELEASE_CRUNCH) && \ + ${MK_LS_COLORS} != no CFLAGS+= -DCOLORLS DPADD+= ${LIBTERMCAP} LDADD+= -ltermcap Modified: projects/diffused_head/bin/mv/mv.1 ============================================================================== --- projects/diffused_head/bin/mv/mv.1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/mv/mv.1 Tue Nov 27 03:36:15 2012 (r243595) @@ -32,7 +32,7 @@ .\" @(#)mv.1 8.1 (Berkeley) 5/31/93 .\" $FreeBSD$ .\" -.Dd May 12, 2007 +.Dd August 28, 2012 .Dt MV 1 .Os .Sh NAME @@ -41,7 +41,7 @@ .Sh SYNOPSIS .Nm .Op Fl f | i | n -.Op Fl v +.Op Fl hv .Ar source target .Nm .Op Fl f | i | n @@ -81,6 +81,21 @@ option overrides any previous or .Fl n options.) +.It Fl h +If the +.Ar target +operand is a symbolic link to a directory, +do not follow it. +This causes the +.Nm +utility to rename the file +.Ar source +to the destination path +.Ar target +rather than moving +.Ar source +into the directory referenced by +.Ar target . .It Fl i Cause .Nm @@ -142,7 +157,8 @@ rm -rf source_file .Ex -std .Sh COMPATIBILITY The -.Fl n +.Fl h , +.Fl n , and .Fl v options are non-standard and their use in scripts is not recommended. Modified: projects/diffused_head/bin/mv/mv.c ============================================================================== --- projects/diffused_head/bin/mv/mv.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/mv/mv.c Tue Nov 27 03:36:15 2012 (r243595) @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); /* Exit code for a failed exec. */ #define EXEC_FAILED 127 -static int fflg, iflg, nflg, vflg; +static int fflg, hflg, iflg, nflg, vflg; static int copy(const char *, const char *); static int do_move(const char *, const char *); @@ -87,8 +87,11 @@ main(int argc, char *argv[]) int ch; char path[PATH_MAX]; - while ((ch = getopt(argc, argv, "finv")) != -1) + while ((ch = getopt(argc, argv, "fhinv")) != -1) switch (ch) { + case 'h': + hflg = 1; + break; case 'i': iflg = 1; fflg = nflg = 0; @@ -123,6 +126,17 @@ main(int argc, char *argv[]) exit(do_move(argv[0], argv[1])); } + /* + * If -h was specified, treat the target as a symlink instead of + * directory. + */ + if (hflg) { + if (argc > 2) + usage(); + if (lstat(argv[1], &sb) == 0 && S_ISLNK(sb.st_mode)) + exit(do_move(argv[0], argv[1])); + } + /* It's a directory, move each file into it. */ if (strlen(argv[argc - 1]) > sizeof(path) - 1) errx(1, "%s: destination pathname too long", *argv); @@ -483,7 +497,7 @@ usage(void) { (void)fprintf(stderr, "%s\n%s\n", - "usage: mv [-f | -i | -n] [-v] source target", + "usage: mv [-f | -i | -n] [-hv] source target", " mv [-f | -i | -n] [-v] source ... directory"); exit(EX_USAGE); } Modified: projects/diffused_head/bin/ps/keyword.c ============================================================================== --- projects/diffused_head/bin/ps/keyword.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ps/keyword.c Tue Nov 27 03:36:15 2012 (r243595) @@ -76,6 +76,7 @@ static VAR var[] = { {"comm", "COMMAND", NULL, LJUST, ucomm, 0, CHAR, NULL, 0}, {"command", "COMMAND", NULL, COMM|LJUST|USER, command, 0, CHAR, NULL, 0}, + {"cow", "COW", NULL, 0, kvar, KOFF(ki_cow), UINT, "u", 0}, {"cpu", "CPU", NULL, 0, kvar, KOFF(ki_estcpu), UINT, "d", 0}, {"cputime", "", "time", 0, NULL, 0, CHAR, NULL, 0}, {"egid", "", "gid", 0, NULL, 0, CHAR, NULL, 0}, Modified: projects/diffused_head/bin/ps/print.c ============================================================================== --- projects/diffused_head/bin/ps/print.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ps/print.c Tue Nov 27 03:36:15 2012 (r243595) @@ -387,12 +387,13 @@ started(KINFO *k, VARENT *ve __unused) size_t buflen = 100; char *buf; + if (!k->ki_valid) + return (NULL); + buf = malloc(buflen); if (buf == NULL) errx(1, "malloc failed"); - if (!k->ki_valid) - return (NULL); if (use_ampm < 0) use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0'); then = k->ki_p->ki_start.tv_sec; @@ -415,12 +416,13 @@ lstarted(KINFO *k, VARENT *ve __unused) char *buf; size_t buflen = 100; + if (!k->ki_valid) + return (NULL); + buf = malloc(buflen); if (buf == NULL) errx(1, "malloc failed"); - if (!k->ki_valid) - return (NULL); then = k->ki_p->ki_start.tv_sec; (void)strftime(buf, buflen, "%c", localtime(&then)); return (buf); Modified: projects/diffused_head/bin/ps/ps.1 ============================================================================== --- projects/diffused_head/bin/ps/ps.1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ps/ps.1 Tue Nov 27 03:36:15 2012 (r243595) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd March 8, 2012 +.Dd May 20, 2012 .Dt PS 1 .Os .Sh NAME @@ -496,6 +496,8 @@ login class command .It Cm command command and arguments +.It Cm cow +number of copy-on-write faults .It Cm cpu short-term CPU usage factor (for scheduling) .It Cm emul Modified: projects/diffused_head/bin/ps/ps.c ============================================================================== --- projects/diffused_head/bin/ps/ps.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/ps/ps.c Tue Nov 27 03:36:15 2012 (r243595) @@ -889,8 +889,8 @@ add_list(struct listinfo *inf, const cha int toolong; char elemcopy[PATH_MAX]; - if (*argp == 0) - inf->addelem(inf, elemcopy); + if (*argp == '\0') + inf->addelem(inf, argp); while (*argp != '\0') { while (*argp != '\0' && strchr(W_SEP, *argp) != NULL) argp++; Modified: projects/diffused_head/bin/rcp/rcp.1 ============================================================================== --- projects/diffused_head/bin/rcp/rcp.1 Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/rcp/rcp.1 Tue Nov 27 03:36:15 2012 (r243595) @@ -116,17 +116,11 @@ The .Nm utility handles third party copies, where neither source nor target files are on the current machine. -.Sh FILES -.Bl -tag -width ".Pa /etc/auth.conf" -compact -.It Pa /etc/auth.conf -configure authentication services -.El .Sh SEE ALSO .Xr cp 1 , .Xr ftp 1 , .Xr rlogin 1 , .Xr rsh 1 , -.Xr auth.conf 5 , .Xr hosts.equiv 5 .Sh HISTORY The Modified: projects/diffused_head/bin/rcp/rcp.c ============================================================================== --- projects/diffused_head/bin/rcp/rcp.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/rcp/rcp.c Tue Nov 27 03:36:15 2012 (r243595) @@ -61,7 +61,6 @@ __FBSDID("$FreeBSD$"); #include #include #include -#include #include #include #include Modified: projects/diffused_head/bin/rm/rm.c ============================================================================== --- projects/diffused_head/bin/rm/rm.c Tue Nov 27 03:04:24 2012 (r243594) +++ projects/diffused_head/bin/rm/rm.c Tue Nov 27 03:36:15 2012 (r243595) @@ -301,10 +301,16 @@ rm_tree(char **argv) if (fflag) continue; /* FALLTHROUGH */ - default: + + case FTS_F: + case FTS_NSOK: if (Pflag) - if (!rm_overwrite(p->fts_accpath, NULL)) + if (!rm_overwrite(p->fts_accpath, p->fts_info == + FTS_NSOK ? NULL : p->fts_statp)) continue; + /* FALLTHROUGH */ + + default: rval = unlink(p->fts_accpath); if (rval == 0 || (fflag && errno == ENOENT)) { if (rval == 0 && vflag) @@ -408,7 +414,7 @@ rm_file(char **argv) int rm_overwrite(char *file, struct stat *sbp) { - struct stat sb; + struct stat sb, sb2; struct statfs fsb; off_t len; int bsize, fd, wlen; @@ -427,8 +433,15 @@ rm_overwrite(char *file, struct stat *sb file, sbp->st_ino); return (0); } - if ((fd = open(file, O_WRONLY, 0)) == -1) + if ((fd = open(file, O_WRONLY|O_NONBLOCK|O_NOFOLLOW, 0)) == -1) + goto err; + if (fstat(fd, &sb2)) goto err; + if (sb2.st_dev != sbp->st_dev || sb2.st_ino != sbp->st_ino || + !S_ISREG(sb2.st_mode)) { + errno = EPERM; + goto err; + } if (fstatfs(fd, &fsb) == -1) goto err; bsize = MAX(fsb.f_iosize, 1024); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 05:48:38 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B4D8E4D; Tue, 27 Nov 2012 05:48:38 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 3E0428FC13; Tue, 27 Nov 2012 05:48:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAR5mckw090329; Tue, 27 Nov 2012 05:48:38 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAR5mbwg090312; Tue, 27 Nov 2012 05:48:37 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211270548.qAR5mbwg090312@svn.freebsd.org> From: Lawrence Stewart Date: Tue, 27 Nov 2012 05:48:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243596 - in projects/diffused_head: . bin/cat bin/cp bin/getfacl bin/setfacl bin/sh cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/cmd/zte... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 05:48:38 -0000 Author: lstewart Date: Tue Nov 27 05:48:36 2012 New Revision: 243596 URL: http://svnweb.freebsd.org/changeset/base/243596 Log: Merge revs 240000:240493 from head. Added: - copied from r240493, head/contrib/atf/ projects/diffused_head/lib/libpmc/pmc.ivybridge.3 - copied unchanged from r240493, head/lib/libpmc/pmc.ivybridge.3 projects/diffused_head/share/mk/bsd.compiler.mk - copied unchanged from r240493, head/share/mk/bsd.compiler.mk projects/diffused_head/sys/arm/broadcom/bcm2835/dwc_otg_brcm.c - copied unchanged from r240493, head/sys/arm/broadcom/bcm2835/dwc_otg_brcm.c projects/diffused_head/sys/boot/fdt/dts/db78460.dts - copied unchanged from r240493, head/sys/boot/fdt/dts/db78460.dts projects/diffused_head/sys/cddl/compat/opensolaris/sys/assfail.h - copied unchanged from r240493, head/sys/cddl/compat/opensolaris/sys/assfail.h projects/diffused_head/sys/dev/cxgbe/firmware/t4fw-1.6.2.0.bin.uu - copied unchanged from r240493, head/sys/dev/cxgbe/firmware/t4fw-1.6.2.0.bin.uu projects/diffused_head/sys/dev/random/ivy.c - copied unchanged from r240493, head/sys/dev/random/ivy.c projects/diffused_head/sys/libkern/jenkins_hash.c - copied unchanged from r240493, head/sys/libkern/jenkins_hash.c projects/diffused_head/sys/modules/ct/ - copied from r240493, head/sys/modules/ct/ Directory Properties: projects/diffused_head/contrib/atf/ (props changed) Deleted: projects/diffused_head/contrib/bzip2/Makefile projects/diffused_head/contrib/bzip2/Makefile-libbz2_so projects/diffused_head/contrib/bzip2/dlltest.c projects/diffused_head/contrib/bzip2/makefile.msc projects/diffused_head/crypto/openssh/version.c projects/diffused_head/share/examples/cvsup/doc-supfile projects/diffused_head/share/examples/cvsup/www-supfile projects/diffused_head/sys/boot/fdt/dts/db88f78160.dts projects/diffused_head/sys/cam/scsi/scsi_low_pisa.c projects/diffused_head/sys/cam/scsi/scsi_low_pisa.h projects/diffused_head/sys/compat/netbsd/physio_proc.h projects/diffused_head/sys/contrib/pf/net/if_pflow.h projects/diffused_head/sys/dev/random/nehemiah.h projects/diffused_head/sys/libkern/jenkins.h projects/diffused_head/sys/sys/device_port.h projects/diffused_head/tools/diag/ac/ projects/diffused_head/tools/tools/backout_commit/ projects/diffused_head/tools/tools/mfc/ Modified: projects/diffused_head/MAINTAINERS (contents, props changed) projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/cat/cat.1 projects/diffused_head/bin/cp/cp.1 projects/diffused_head/bin/getfacl/getfacl.1 projects/diffused_head/bin/setfacl/merge.c projects/diffused_head/bin/setfacl/setfacl.1 projects/diffused_head/bin/setfacl/setfacl.c projects/diffused_head/bin/sh/options.c projects/diffused_head/bin/sh/sh.1 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/diffused_head/cddl/contrib/opensolaris/lib/libuutil/common/uu_misc.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/diffused_head/cddl/lib/libzpool/Makefile projects/diffused_head/cddl/usr.bin/ztest/Makefile projects/diffused_head/cddl/usr.sbin/plockstat/plockstat.1 projects/diffused_head/cddl/usr.sbin/zdb/Makefile projects/diffused_head/cddl/usr.sbin/zhack/Makefile projects/diffused_head/contrib/bsnmp/snmpd/main.c projects/diffused_head/contrib/bsnmp/snmpd/trans_lsock.c projects/diffused_head/contrib/bsnmp/snmpd/trans_udp.c projects/diffused_head/contrib/bsnmp/snmpd/trap.c projects/diffused_head/contrib/bzip2/FREEBSD-Xlist projects/diffused_head/contrib/gdb/gdb/dwarf2loc.h projects/diffused_head/contrib/pf/man/pf.4 projects/diffused_head/contrib/pf/man/pf.conf.5 projects/diffused_head/contrib/pf/pfctl/parse.y projects/diffused_head/contrib/pf/pfctl/pf_print_state.c projects/diffused_head/contrib/pf/pfctl/pfctl.c projects/diffused_head/contrib/pf/pfctl/pfctl_parser.c projects/diffused_head/contrib/pf/pfctl/pfctl_table.c projects/diffused_head/contrib/sendmail/include/libmilter/mfapi.h projects/diffused_head/contrib/tzdata/africa projects/diffused_head/contrib/tzdata/antarctica projects/diffused_head/contrib/tzdata/asia projects/diffused_head/contrib/tzdata/australasia projects/diffused_head/contrib/tzdata/backward projects/diffused_head/contrib/tzdata/etcetera projects/diffused_head/contrib/tzdata/europe projects/diffused_head/contrib/tzdata/factory projects/diffused_head/contrib/tzdata/leapseconds projects/diffused_head/contrib/tzdata/northamerica projects/diffused_head/contrib/tzdata/pacificnew projects/diffused_head/contrib/tzdata/southamerica projects/diffused_head/contrib/tzdata/systemv projects/diffused_head/contrib/tzdata/yearistype.sh projects/diffused_head/contrib/tzdata/zone.tab projects/diffused_head/crypto/openssh/ChangeLog projects/diffused_head/crypto/openssh/INSTALL projects/diffused_head/crypto/openssh/LICENCE projects/diffused_head/crypto/openssh/PROTOCOL.certkeys projects/diffused_head/crypto/openssh/PROTOCOL.mux projects/diffused_head/crypto/openssh/README projects/diffused_head/crypto/openssh/addrmatch.c projects/diffused_head/crypto/openssh/audit-bsm.c projects/diffused_head/crypto/openssh/auth-krb5.c projects/diffused_head/crypto/openssh/auth-options.c projects/diffused_head/crypto/openssh/auth-passwd.c projects/diffused_head/crypto/openssh/auth.c projects/diffused_head/crypto/openssh/auth2-pubkey.c projects/diffused_head/crypto/openssh/auth2.c projects/diffused_head/crypto/openssh/authfile.c projects/diffused_head/crypto/openssh/channels.c projects/diffused_head/crypto/openssh/channels.h projects/diffused_head/crypto/openssh/clientloop.c projects/diffused_head/crypto/openssh/clientloop.h projects/diffused_head/crypto/openssh/compat.c projects/diffused_head/crypto/openssh/compat.h projects/diffused_head/crypto/openssh/config.h.in projects/diffused_head/crypto/openssh/defines.h projects/diffused_head/crypto/openssh/dh.c projects/diffused_head/crypto/openssh/dns.c projects/diffused_head/crypto/openssh/dns.h projects/diffused_head/crypto/openssh/entropy.c projects/diffused_head/crypto/openssh/entropy.h projects/diffused_head/crypto/openssh/jpake.c projects/diffused_head/crypto/openssh/kex.c projects/diffused_head/crypto/openssh/key.c projects/diffused_head/crypto/openssh/key.h projects/diffused_head/crypto/openssh/mac.c projects/diffused_head/crypto/openssh/misc.c projects/diffused_head/crypto/openssh/moduli projects/diffused_head/crypto/openssh/moduli.c projects/diffused_head/crypto/openssh/monitor.c projects/diffused_head/crypto/openssh/mux.c projects/diffused_head/crypto/openssh/myproposal.h projects/diffused_head/crypto/openssh/openbsd-compat/bsd-cygwin_util.c projects/diffused_head/crypto/openssh/openbsd-compat/bsd-cygwin_util.h projects/diffused_head/crypto/openssh/openbsd-compat/bsd-misc.h projects/diffused_head/crypto/openssh/openbsd-compat/getcwd.c projects/diffused_head/crypto/openssh/openbsd-compat/getgrouplist.c projects/diffused_head/crypto/openssh/openbsd-compat/getrrsetbyname.c projects/diffused_head/crypto/openssh/openbsd-compat/glob.c projects/diffused_head/crypto/openssh/openbsd-compat/inet_ntop.c projects/diffused_head/crypto/openssh/openbsd-compat/mktemp.c projects/diffused_head/crypto/openssh/openbsd-compat/openbsd-compat.h projects/diffused_head/crypto/openssh/openbsd-compat/openssl-compat.h projects/diffused_head/crypto/openssh/openbsd-compat/port-linux.c projects/diffused_head/crypto/openssh/openbsd-compat/setenv.c projects/diffused_head/crypto/openssh/openbsd-compat/sha2.c projects/diffused_head/crypto/openssh/openbsd-compat/sha2.h projects/diffused_head/crypto/openssh/openbsd-compat/strlcpy.c projects/diffused_head/crypto/openssh/packet.c projects/diffused_head/crypto/openssh/packet.h projects/diffused_head/crypto/openssh/readconf.c projects/diffused_head/crypto/openssh/readconf.h projects/diffused_head/crypto/openssh/roaming.h projects/diffused_head/crypto/openssh/roaming_client.c projects/diffused_head/crypto/openssh/roaming_common.c projects/diffused_head/crypto/openssh/sandbox-rlimit.c projects/diffused_head/crypto/openssh/sandbox-systrace.c projects/diffused_head/crypto/openssh/scp.1 projects/diffused_head/crypto/openssh/scp.c projects/diffused_head/crypto/openssh/servconf.c projects/diffused_head/crypto/openssh/servconf.h projects/diffused_head/crypto/openssh/serverloop.c projects/diffused_head/crypto/openssh/session.c projects/diffused_head/crypto/openssh/sftp-client.c projects/diffused_head/crypto/openssh/sftp-glob.c projects/diffused_head/crypto/openssh/sftp.1 projects/diffused_head/crypto/openssh/sftp.c projects/diffused_head/crypto/openssh/ssh-add.1 projects/diffused_head/crypto/openssh/ssh-add.c projects/diffused_head/crypto/openssh/ssh-ecdsa.c projects/diffused_head/crypto/openssh/ssh-keygen.1 projects/diffused_head/crypto/openssh/ssh-keygen.c projects/diffused_head/crypto/openssh/ssh-pkcs11-client.c projects/diffused_head/crypto/openssh/ssh-pkcs11-helper.c projects/diffused_head/crypto/openssh/ssh.1 projects/diffused_head/crypto/openssh/ssh.c projects/diffused_head/crypto/openssh/ssh_config projects/diffused_head/crypto/openssh/ssh_config.5 projects/diffused_head/crypto/openssh/ssh_namespace.h projects/diffused_head/crypto/openssh/sshconnect.c projects/diffused_head/crypto/openssh/sshconnect2.c projects/diffused_head/crypto/openssh/sshd.8 projects/diffused_head/crypto/openssh/sshd.c projects/diffused_head/crypto/openssh/sshd_config projects/diffused_head/crypto/openssh/sshd_config.5 projects/diffused_head/crypto/openssh/umac.c projects/diffused_head/crypto/openssh/version.h projects/diffused_head/crypto/openssl/crypto/opensslv.h projects/diffused_head/etc/rc.d/FILESYSTEMS projects/diffused_head/etc/rc.d/Makefile projects/diffused_head/etc/rc.d/addswap projects/diffused_head/etc/rc.d/amd projects/diffused_head/etc/rc.d/cleanvar projects/diffused_head/etc/rc.d/cron projects/diffused_head/etc/rc.d/dmesg projects/diffused_head/etc/rc.d/ftpd projects/diffused_head/etc/rc.d/inetd projects/diffused_head/etc/rc.d/initrandom projects/diffused_head/etc/rc.d/ipmon projects/diffused_head/etc/rc.d/jail projects/diffused_head/etc/rc.d/ldconfig projects/diffused_head/etc/rc.d/mixer projects/diffused_head/etc/rc.d/mountcritremote projects/diffused_head/etc/rc.d/moused projects/diffused_head/etc/rc.d/mrouted projects/diffused_head/etc/rc.d/named projects/diffused_head/etc/rc.d/netif projects/diffused_head/etc/rc.d/newsyslog projects/diffused_head/etc/rc.d/ntpd projects/diffused_head/etc/rc.d/pflog projects/diffused_head/etc/rc.d/postrandom projects/diffused_head/etc/rc.d/power_profile projects/diffused_head/etc/rc.d/random projects/diffused_head/etc/rc.d/rarpd projects/diffused_head/etc/rc.d/resolv projects/diffused_head/etc/rc.d/sendmail projects/diffused_head/etc/rc.d/sshd projects/diffused_head/etc/rc.d/syslogd projects/diffused_head/etc/rc.d/utx projects/diffused_head/etc/rc.d/var projects/diffused_head/etc/rc.d/watchdogd projects/diffused_head/include/mqueue.h projects/diffused_head/include/rpc/xdr.h projects/diffused_head/include/time.h projects/diffused_head/include/unistd.h projects/diffused_head/lib/libc/amd64/SYS.h projects/diffused_head/lib/libc/amd64/Symbol.map projects/diffused_head/lib/libc/amd64/gen/rfork_thread.S projects/diffused_head/lib/libc/amd64/sys/brk.S projects/diffused_head/lib/libc/amd64/sys/exect.S projects/diffused_head/lib/libc/amd64/sys/getcontext.S projects/diffused_head/lib/libc/amd64/sys/pipe.S projects/diffused_head/lib/libc/amd64/sys/ptrace.S projects/diffused_head/lib/libc/amd64/sys/reboot.S projects/diffused_head/lib/libc/amd64/sys/sbrk.S projects/diffused_head/lib/libc/amd64/sys/setlogin.S projects/diffused_head/lib/libc/amd64/sys/vfork.S projects/diffused_head/lib/libc/gen/rand48.3 projects/diffused_head/lib/libc/gen/sysctl.c projects/diffused_head/lib/libc/i386/SYS.h projects/diffused_head/lib/libc/i386/Symbol.map projects/diffused_head/lib/libc/i386/gen/rfork_thread.S projects/diffused_head/lib/libc/i386/sys/Ovfork.S projects/diffused_head/lib/libc/i386/sys/brk.S projects/diffused_head/lib/libc/i386/sys/cerror.S projects/diffused_head/lib/libc/i386/sys/exect.S projects/diffused_head/lib/libc/i386/sys/getcontext.S projects/diffused_head/lib/libc/i386/sys/ptrace.S projects/diffused_head/lib/libc/i386/sys/sbrk.S projects/diffused_head/lib/libc/i386/sys/syscall.S projects/diffused_head/lib/libc/stdlib/ptsname.3 projects/diffused_head/lib/libc/stdlib/ptsname.c projects/diffused_head/lib/libc/stdlib/rand.3 projects/diffused_head/lib/libc/stdlib/random.3 projects/diffused_head/lib/libc/stdlib/realpath.c projects/diffused_head/lib/libc/sys/recv.2 projects/diffused_head/lib/libc/sys/wait.2 projects/diffused_head/lib/libkvm/kvm_i386.c projects/diffused_head/lib/libmagic/Makefile projects/diffused_head/lib/libmagic/config.h projects/diffused_head/lib/libpmc/Makefile projects/diffused_head/lib/libpmc/libpmc.c projects/diffused_head/lib/libpmc/pmc.sandybridge.3 projects/diffused_head/lib/libproc/Makefile projects/diffused_head/lib/libproc/proc_sym.c projects/diffused_head/lib/libproc/test/t1-bkpt/t1-bkpt.c projects/diffused_head/lib/libproc/test/t3-name2sym/t3-name2sym.c projects/diffused_head/lib/libprocstat/libprocstat.h projects/diffused_head/lib/libutil/humanize_number.c projects/diffused_head/lib/msun/man/cexp.3 projects/diffused_head/libexec/save-entropy/save-entropy.sh projects/diffused_head/sbin/fsck_ffs/fsck.h projects/diffused_head/sbin/fsck_ffs/fsutil.c projects/diffused_head/sbin/fsck_ffs/main.c projects/diffused_head/sbin/fsck_ffs/suj.c projects/diffused_head/sbin/geom/class/raid/graid.8 projects/diffused_head/sbin/ipfw/nat.c projects/diffused_head/secure/lib/libssh/Makefile projects/diffused_head/share/examples/Makefile projects/diffused_head/share/examples/cvsup/cvs-supfile projects/diffused_head/share/examples/cvsup/refuse projects/diffused_head/share/examples/cvsup/refuse.README projects/diffused_head/share/examples/cvsup/stable-supfile projects/diffused_head/share/examples/etc/make.conf projects/diffused_head/share/man/man3/Makefile projects/diffused_head/share/man/man3/queue.3 projects/diffused_head/share/man/man4/acpi.4 projects/diffused_head/share/man/man4/arcmsr.4 projects/diffused_head/share/man/man4/ip.4 projects/diffused_head/share/man/man4/random.4 projects/diffused_head/share/man/man5/make.conf.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man9/VFS.9 projects/diffused_head/share/man/man9/hash.9 projects/diffused_head/share/misc/committers-doc.dot projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/misc/organization.dot projects/diffused_head/share/mk/Makefile projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/share/mk/bsd.sys.mk projects/diffused_head/sys/amd64/amd64/pmap.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/conf/GENERIC projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/arm/arm/busdma_machdep.c projects/diffused_head/sys/arm/arm/cpufunc.c projects/diffused_head/sys/arm/arm/identcpu.c projects/diffused_head/sys/arm/arm/pmap-v6.c projects/diffused_head/sys/arm/arm/pmap.c projects/diffused_head/sys/arm/broadcom/bcm2835/files.bcm2835 projects/diffused_head/sys/arm/conf/ARMADAXP projects/diffused_head/sys/arm/conf/RPI-B projects/diffused_head/sys/arm/include/armreg.h projects/diffused_head/sys/arm/include/intr.h projects/diffused_head/sys/arm/include/pmap.h projects/diffused_head/sys/arm/mv/armadaxp/armadaxp.c projects/diffused_head/sys/arm/mv/common.c projects/diffused_head/sys/arm/mv/mpic.c projects/diffused_head/sys/arm/mv/mv_pci.c projects/diffused_head/sys/arm/mv/mvreg.h projects/diffused_head/sys/arm/mv/mvvar.h projects/diffused_head/sys/arm/mv/mvwin.h projects/diffused_head/sys/arm/mv/timer.c projects/diffused_head/sys/boot/arm/uboot/Makefile projects/diffused_head/sys/boot/common/load_elf.c projects/diffused_head/sys/boot/common/module.c projects/diffused_head/sys/boot/common/part.c projects/diffused_head/sys/boot/i386/libi386/pxe.c projects/diffused_head/sys/boot/i386/libi386/pxe.h projects/diffused_head/sys/boot/i386/loader/conf.c projects/diffused_head/sys/boot/i386/loader/main.c projects/diffused_head/sys/boot/powerpc/uboot/Makefile projects/diffused_head/sys/boot/sparc64/loader/main.c projects/diffused_head/sys/boot/uboot/common/main.c projects/diffused_head/sys/boot/uboot/lib/Makefile projects/diffused_head/sys/boot/uboot/lib/devicename.c projects/diffused_head/sys/boot/uboot/lib/disk.c projects/diffused_head/sys/boot/uboot/lib/libuboot.h projects/diffused_head/sys/boot/zfs/zfs.c projects/diffused_head/sys/boot/zfs/zfsimpl.c projects/diffused_head/sys/cam/scsi/scsi_low.c projects/diffused_head/sys/cam/scsi/scsi_low.h projects/diffused_head/sys/cddl/boot/zfs/zfsimpl.h projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/diffused_head/sys/cddl/compat/opensolaris/sys/debug.h projects/diffused_head/sys/cddl/compat/opensolaris/sys/sid.h projects/diffused_head/sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/conf/Makefile.amd64 projects/diffused_head/sys/conf/Makefile.arm projects/diffused_head/sys/conf/Makefile.powerpc projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/kern.mk projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/options.amd64 projects/diffused_head/sys/conf/options.i386 projects/diffused_head/sys/contrib/altq/altq/altq_cbq.c projects/diffused_head/sys/contrib/altq/altq/altq_hfsc.c projects/diffused_head/sys/contrib/altq/altq/altq_priq.c projects/diffused_head/sys/contrib/altq/altq/altq_subr.c projects/diffused_head/sys/contrib/pf/net/if_pflog.c projects/diffused_head/sys/contrib/pf/net/if_pflog.h projects/diffused_head/sys/contrib/pf/net/if_pfsync.c projects/diffused_head/sys/contrib/pf/net/if_pfsync.h projects/diffused_head/sys/contrib/pf/net/pf.c projects/diffused_head/sys/contrib/pf/net/pf_if.c projects/diffused_head/sys/contrib/pf/net/pf_ioctl.c projects/diffused_head/sys/contrib/pf/net/pf_lb.c projects/diffused_head/sys/contrib/pf/net/pf_mtag.h projects/diffused_head/sys/contrib/pf/net/pf_norm.c projects/diffused_head/sys/contrib/pf/net/pf_osfp.c projects/diffused_head/sys/contrib/pf/net/pf_ruleset.c projects/diffused_head/sys/contrib/pf/net/pf_table.c projects/diffused_head/sys/contrib/pf/net/pfvar.h projects/diffused_head/sys/dev/acpica/acpi_hpet.c projects/diffused_head/sys/dev/ahci/ahci.c projects/diffused_head/sys/dev/arcmsr/arcmsr.c projects/diffused_head/sys/dev/arcmsr/arcmsr.h projects/diffused_head/sys/dev/ath/ath_dfs/null/dfs_null.c projects/diffused_head/sys/dev/ath/ath_hal/ah.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_ath_tx.c projects/diffused_head/sys/dev/ath/if_ath_tx_ht.c projects/diffused_head/sys/dev/atkbdc/psm.c projects/diffused_head/sys/dev/bxe/if_bxe.c projects/diffused_head/sys/dev/ct/bshw_machdep.c projects/diffused_head/sys/dev/ct/ct.c projects/diffused_head/sys/dev/ct/ct_isa.c projects/diffused_head/sys/dev/ct/ct_machdep.h projects/diffused_head/sys/dev/ct/ctvar.h projects/diffused_head/sys/dev/cxgbe/common/common.h projects/diffused_head/sys/dev/cxgbe/firmware/t4fw_interface.h projects/diffused_head/sys/dev/cxgbe/osdep.h projects/diffused_head/sys/dev/cxgbe/t4_l2t.h projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/cxgbe/tom/t4_ddp.c projects/diffused_head/sys/dev/fdt/fdt_common.c projects/diffused_head/sys/dev/fdt/fdt_common.h projects/diffused_head/sys/dev/fdt/fdt_pci.c projects/diffused_head/sys/dev/gxemul/disk/gxemul_disk.c projects/diffused_head/sys/dev/hptmv/entry.c projects/diffused_head/sys/dev/hwpmc/hwpmc_arm.c projects/diffused_head/sys/dev/hwpmc/hwpmc_core.c projects/diffused_head/sys/dev/hwpmc/hwpmc_core.h projects/diffused_head/sys/dev/hwpmc/hwpmc_intel.c projects/diffused_head/sys/dev/hwpmc/hwpmc_x86.c projects/diffused_head/sys/dev/hwpmc/pmc_events.h projects/diffused_head/sys/dev/isp/isp_pci.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe_82599.c projects/diffused_head/sys/dev/ixgbe/ixgbe_osdep.h projects/diffused_head/sys/dev/ncv/ncr53c500.c projects/diffused_head/sys/dev/ncv/ncr53c500_pccard.c projects/diffused_head/sys/dev/ncv/ncr53c500hw.h projects/diffused_head/sys/dev/ncv/ncr53c500var.h projects/diffused_head/sys/dev/nsp/nsp.c projects/diffused_head/sys/dev/nsp/nsp_pccard.c projects/diffused_head/sys/dev/nsp/nspvar.h projects/diffused_head/sys/dev/pci/pcireg.h projects/diffused_head/sys/dev/random/nehemiah.c projects/diffused_head/sys/dev/random/probe.c projects/diffused_head/sys/dev/sound/usb/uaudioreg.h projects/diffused_head/sys/dev/stg/tmc18c30.c projects/diffused_head/sys/dev/stg/tmc18c30_isa.c projects/diffused_head/sys/dev/stg/tmc18c30_pccard.c projects/diffused_head/sys/dev/stg/tmc18c30_pci.c projects/diffused_head/sys/dev/stg/tmc18c30_subr.c projects/diffused_head/sys/dev/stg/tmc18c30var.h projects/diffused_head/sys/dev/twe/twe.c projects/diffused_head/sys/dev/twe/twe_compat.h projects/diffused_head/sys/dev/twe/twe_freebsd.c projects/diffused_head/sys/dev/twe/twevar.h projects/diffused_head/sys/dev/usb/controller/at91dci.c projects/diffused_head/sys/dev/usb/controller/at91dci_atmelarm.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.h projects/diffused_head/sys/dev/usb/controller/dwc_otgreg.h projects/diffused_head/sys/dev/usb/controller/usb_controller.c projects/diffused_head/sys/dev/usb/serial/uchcom.c projects/diffused_head/sys/dev/usb/serial/ufoma.c projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/virtio/virtio.h projects/diffused_head/sys/dev/virtio/virtqueue.c projects/diffused_head/sys/fs/deadfs/dead_vnops.c projects/diffused_head/sys/fs/ext2fs/ext2_inode.c projects/diffused_head/sys/fs/nandfs/bmap.c projects/diffused_head/sys/fs/nfs/nfs_commonport.c projects/diffused_head/sys/fs/nfs/nfscl.h projects/diffused_head/sys/fs/nfsclient/nfs_clrpcops.c projects/diffused_head/sys/fs/ntfs/ntfs_vfsops.c projects/diffused_head/sys/fs/nullfs/null.h projects/diffused_head/sys/fs/nullfs/null_subr.c projects/diffused_head/sys/fs/nullfs/null_vfsops.c projects/diffused_head/sys/fs/nullfs/null_vnops.c projects/diffused_head/sys/geom/mirror/g_mirror.c projects/diffused_head/sys/geom/raid/g_raid.c projects/diffused_head/sys/geom/raid/g_raid.h projects/diffused_head/sys/geom/raid/md_ddf.c projects/diffused_head/sys/geom/raid/md_intel.c projects/diffused_head/sys/geom/raid/md_jmicron.c projects/diffused_head/sys/geom/raid/md_nvidia.c projects/diffused_head/sys/geom/raid/md_promise.c projects/diffused_head/sys/geom/raid/md_sii.c projects/diffused_head/sys/geom/raid/tr_concat.c projects/diffused_head/sys/geom/raid/tr_raid0.c projects/diffused_head/sys/geom/raid/tr_raid1.c projects/diffused_head/sys/geom/raid/tr_raid1e.c projects/diffused_head/sys/geom/raid/tr_raid5.c projects/diffused_head/sys/geom/raid3/g_raid3.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_ioctl.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_stats.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_super.c projects/diffused_head/sys/gnu/fs/xfs/xfs_alloc.c projects/diffused_head/sys/gnu/fs/xfs/xfs_vfsops.c projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/i386/pmap.c projects/diffused_head/sys/i386/i386/trap.c projects/diffused_head/sys/i386/xen/pmap.c projects/diffused_head/sys/ia64/ia32/ia32_trap.c projects/diffused_head/sys/ia64/ia64/trap.c projects/diffused_head/sys/kern/kern_condvar.c projects/diffused_head/sys/kern/kern_exit.c projects/diffused_head/sys/kern/kern_fork.c projects/diffused_head/sys/kern/kern_lock.c projects/diffused_head/sys/kern/kern_mutex.c projects/diffused_head/sys/kern/kern_rmlock.c projects/diffused_head/sys/kern/kern_rwlock.c projects/diffused_head/sys/kern/kern_sig.c projects/diffused_head/sys/kern/kern_sx.c projects/diffused_head/sys/kern/kern_thread.c projects/diffused_head/sys/kern/subr_hints.c projects/diffused_head/sys/kern/subr_param.c projects/diffused_head/sys/kern/subr_sleepqueue.c projects/diffused_head/sys/kern/subr_syscall.c projects/diffused_head/sys/kern/subr_trap.c projects/diffused_head/sys/kern/subr_turnstile.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_lookup.c projects/diffused_head/sys/kern/vfs_mount.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/mips/conf/BERI_DE4_MDROOT projects/diffused_head/sys/mips/conf/BERI_SIM_MDROOT projects/diffused_head/sys/mips/mips/busdma_machdep.c projects/diffused_head/sys/mips/mips/pmap.c projects/diffused_head/sys/mips/mips/trap.c projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/cxgbe/firmware/Makefile projects/diffused_head/sys/modules/pf/Makefile projects/diffused_head/sys/modules/random/Makefile projects/diffused_head/sys/modules/scsi_low/Makefile projects/diffused_head/sys/modules/xfs/Makefile projects/diffused_head/sys/net/flowtable.c projects/diffused_head/sys/net/if.c projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_ethersubr.c projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/netinet/if_ether.c projects/diffused_head/sys/netinet/in_gif.c projects/diffused_head/sys/netinet/ip_icmp.c projects/diffused_head/sys/netinet/ip_var.h projects/diffused_head/sys/netinet/ipfw/ip_fw2.c projects/diffused_head/sys/netinet/ipfw/ip_fw_pfil.c projects/diffused_head/sys/netinet/ipfw/ip_fw_private.h projects/diffused_head/sys/netinet/raw_ip.c projects/diffused_head/sys/netinet/sctp_asconf.c projects/diffused_head/sys/netinet/sctp_auth.c projects/diffused_head/sys/netinet/sctp_cc_functions.c projects/diffused_head/sys/netinet/sctp_header.h projects/diffused_head/sys/netinet/sctp_indata.c projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_input.h projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_pcb.c projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_timer.c projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/tcp_subr.c projects/diffused_head/sys/netinet6/icmp6.c projects/diffused_head/sys/netinet6/in6_gif.c projects/diffused_head/sys/netipsec/ipsec_input.c projects/diffused_head/sys/netipsec/ipsec_output.c projects/diffused_head/sys/netipsec/key.c projects/diffused_head/sys/netipsec/xform_ipip.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h projects/diffused_head/sys/powerpc/aim/trap.c projects/diffused_head/sys/powerpc/booke/trap.c projects/diffused_head/sys/powerpc/wii/wii_bus.c projects/diffused_head/sys/rpc/rpc_com.h projects/diffused_head/sys/rpc/xdr.h projects/diffused_head/sys/sparc64/include/vmparam.h projects/diffused_head/sys/sparc64/sparc64/trap.c projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/hash.h projects/diffused_head/sys/sys/mbuf.h projects/diffused_head/sys/sys/mount.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/pmc.h projects/diffused_head/sys/sys/queue.h projects/diffused_head/sys/vm/swap_pager.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_mmap.c projects/diffused_head/tools/build/Makefile projects/diffused_head/tools/diag/README projects/diffused_head/tools/test/hwpmc/pmctest.py projects/diffused_head/tools/tools/README projects/diffused_head/tools/tools/ath/athratestats/Makefile projects/diffused_head/tools/tools/ath/athratestats/main.c projects/diffused_head/tools/tools/netmap/pkt-gen.c projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/chat/chat.8 projects/diffused_head/usr.bin/find/find.1 projects/diffused_head/usr.bin/last/last.c projects/diffused_head/usr.bin/mkcsmapper/lex.l projects/diffused_head/usr.bin/mkesdb/lex.l projects/diffused_head/usr.bin/netstat/if.c projects/diffused_head/usr.bin/procstat/procstat_files.c projects/diffused_head/usr.bin/sort/sort.1.in projects/diffused_head/usr.bin/stdbuf/Makefile projects/diffused_head/usr.bin/truss/amd64-fbsd.c projects/diffused_head/usr.bin/truss/amd64-fbsd32.c projects/diffused_head/usr.bin/truss/amd64-linux32.c projects/diffused_head/usr.bin/truss/i386-fbsd.c projects/diffused_head/usr.bin/truss/i386-linux.c projects/diffused_head/usr.bin/truss/ia64-fbsd.c projects/diffused_head/usr.bin/truss/main.c projects/diffused_head/usr.bin/truss/mips-fbsd.c projects/diffused_head/usr.bin/truss/powerpc-fbsd.c projects/diffused_head/usr.bin/truss/powerpc64-fbsd.c projects/diffused_head/usr.bin/truss/setup.c projects/diffused_head/usr.bin/truss/sparc64-fbsd.c projects/diffused_head/usr.bin/truss/syscall.h projects/diffused_head/usr.bin/truss/syscalls.c projects/diffused_head/usr.bin/truss/truss.h projects/diffused_head/usr.bin/xlint/lint1/makeman projects/diffused_head/usr.sbin/arp/arp.4 projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_scalars.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_swrun_tbl.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_pf/BEGEMOT-PF-MIB.txt projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_pf/pf_tree.def projects/diffused_head/usr.sbin/lpr/lpd/printjob.c projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-disk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-mountdisk.sh projects/diffused_head/usr.sbin/pc-sysinstall/backend/functions-newfs.sh projects/diffused_head/usr.sbin/pciconf/cap.c projects/diffused_head/usr.sbin/pciconf/err.c projects/diffused_head/usr.sbin/pkg_install/add/add.h projects/diffused_head/usr.sbin/pkg_install/add/extract.c projects/diffused_head/usr.sbin/pkg_install/add/futil.c projects/diffused_head/usr.sbin/pkg_install/add/perform.c projects/diffused_head/usr.sbin/pkg_install/lib/lib.h projects/diffused_head/usr.sbin/ppp/ppp.8.m4 projects/diffused_head/usr.sbin/rpc.lockd/lockd_lock.c projects/diffused_head/usr.sbin/syslogd/syslog.conf.5 projects/diffused_head/usr.sbin/syslogd/syslogd.c projects/diffused_head/usr.sbin/timed/timed/timed.c Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/diffused_head/contrib/bzip2/ (props changed) projects/diffused_head/contrib/gdb/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/contrib/sendmail/ (props changed) projects/diffused_head/contrib/tzdata/ (props changed) projects/diffused_head/crypto/openssh/ (props changed) projects/diffused_head/crypto/openssl/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/pf/ (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) Modified: projects/diffused_head/MAINTAINERS ============================================================================== --- projects/diffused_head/MAINTAINERS Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/MAINTAINERS Tue Nov 27 05:48:36 2012 (r243596) @@ -3,7 +3,7 @@ $FreeBSD$ Please note that the content of this file is strictly advisory. No locks listed here are valid. The only strict review requirements are granted by core. These are documented in head/LOCKS and enforced -by CVSROOT/approvers. +by svnadmin/conf/approvers. The source tree is a community effort. However, some folks go to the trouble of looking after particular areas of the tree. In return for Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/Makefile Tue Nov 27 05:48:36 2012 (r243596) @@ -216,7 +216,7 @@ ${TGTS}: .MAIN: all STARTTIME!= LC_ALL=C date -CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s +CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo .if !empty(CHECK_TIME) .error check your date/time: ${STARTTIME} .endif Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/Makefile.inc1 Tue Nov 27 05:48:36 2012 (r243596) @@ -46,6 +46,7 @@ TARGET_ARCH=${TARGET} .include .include +.include # We must do share/info early so that installation of info `dir' # entries works correctly. Do it first since it is less likely to @@ -235,7 +236,8 @@ BMAKEENV= INSTALL="sh ${.CURDIR}/tools/i PATH=${BPATH}:${PATH} \ WORLDTMP=${WORLDTMP} \ VERSION="${VERSION}" \ - MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" + MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ + COMPILER_TYPE=${COMPILER_TYPE} BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ DESTDIR= \ @@ -270,6 +272,16 @@ WMAKEENV= ${CROSSENV} \ .if ${MK_CDDL} == "no" WMAKEENV+= NO_CTF=1 .endif +.if ${CC:T:Mgcc} == "gcc" +WMAKE_COMPILER_TYPE= gcc +.elif ${CC:T:Mclang} == "clang" +WMAKE_COMPILER_TYPE= clang +.elif ${MK_CLANG_IS_CC} == "no" +WMAKE_COMPILER_TYPE= gcc +.else +WMAKE_COMPILER_TYPE= clang +.endif +WMAKEENV+= COMPILER_TYPE=${WMAKE_COMPILER_TYPE} WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" @@ -313,7 +325,8 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR CC="${CC} ${LIB32FLAGS}" \ CXX="${CXX} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ - SHLIBDIR=/usr/lib32 + SHLIBDIR=/usr/lib32 \ + COMPILER_TYPE=${WMAKE_COMPILER_TYPE} LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ @@ -636,7 +649,10 @@ ITOOLS= [ awk cap_mkdb cat chflags chmod # # Non-base distributions produced by the base system -EXTRA_DISTRIBUTIONS= doc games +EXTRA_DISTRIBUTIONS= doc +.if ${MK_GAMES} != "no" +EXTRA_DISTRIBUTIONS+= games +.endif .if defined(LIB32TMP) && ${MK_LIB32} != "no" EXTRA_DISTRIBUTIONS+= lib32 .endif @@ -1555,7 +1571,7 @@ DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF} .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) .if exists(${KERNCONFDIR}/${KERNCONF}) FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ - ${KERNCONFDIR}/${KERNCONF} + ${KERNCONFDIR}/${KERNCONF} ; echo .endif .endif Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/ObsoleteFiles.inc Tue Nov 27 05:48:36 2012 (r243596) @@ -38,6 +38,8 @@ # xargs -n1 | sort | uniq -d; # done +# 20120908: pf cleanup +OLD_FILES+=usr/include/net/if_pflow.h # 20120816: new clang import which bumps version from 3.1 to 3.2 OLD_FILES+=usr/bin/llvm-ld OLD_FILES+=usr/bin/llvm-stub Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/UPDATING Tue Nov 27 05:48:36 2012 (r243596) @@ -24,6 +24,10 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20120908: + The pf(4) packet filter ABI has been changed. pfctl(8) and + snmp_pf module need to be recompiled to work with new kernel. + 20120828: A new ZFS feature flag "com.delphix:empty_bpobj" has been merged to -HEAD. Pools that have empty_bpobj in active state can not be Modified: projects/diffused_head/bin/cat/cat.1 ============================================================================== --- projects/diffused_head/bin/cat/cat.1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/cat/cat.1 Tue Nov 27 05:48:36 2012 (r243596) @@ -127,7 +127,7 @@ to the file truncating .Pa file3 if it already exists. -See the manual page for your shell (i.e., +See the manual page for your shell (e.g., .Xr sh 1 ) for more information on redirection. .Pp Modified: projects/diffused_head/bin/cp/cp.1 ============================================================================== --- projects/diffused_head/bin/cp/cp.1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/cp/cp.1 Tue Nov 27 05:48:36 2012 (r243596) @@ -32,7 +32,7 @@ .\" @(#)cp.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd January 17, 2010 +.Dd September 4, 2012 .Dt CP 1 .Os .Sh NAME @@ -164,7 +164,7 @@ Cause .Nm to preserve the following attributes of each source file in the copy: modification time, access time, -file flags, file mode, user ID, and group ID, as allowed by permissions. +file flags, file mode, ACL, user ID, and group ID, as allowed by permissions. .Pp If the user ID and group ID cannot be preserved, no error message is displayed and the exit value is not altered. Modified: projects/diffused_head/bin/getfacl/getfacl.1 ============================================================================== --- projects/diffused_head/bin/getfacl/getfacl.1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/getfacl/getfacl.1 Tue Nov 27 05:48:36 2012 (r243596) @@ -97,6 +97,10 @@ then reads a list of pathnames, each terminated by one newline character, from the standard input. .El +.Pp +For an explanation of the ACL syntax, see the +.Xr setfacl 1 +manual page. .Sh EXIT STATUS .Ex -std .Sh EXAMPLES Modified: projects/diffused_head/bin/setfacl/merge.c ============================================================================== --- projects/diffused_head/bin/setfacl/merge.c Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/setfacl/merge.c Tue Nov 27 05:48:36 2012 (r243596) @@ -94,7 +94,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co acl_tag_t tag, tag_new; acl_entry_type_t entry_type, entry_type_new; acl_flagset_t flagset; - int entry_id, entry_id_new, have_entry, entry_number = 0; + int entry_id, entry_id_new, have_entry, had_entry, entry_number = 0; int acl_brand, prev_acl_brand; acl_get_brand_np(acl, &acl_brand); @@ -116,6 +116,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co while (acl_get_entry(acl, entry_id, &entry) == 1) { entry_id = ACL_NEXT_ENTRY; have_entry = 0; + had_entry = 0; /* keep track of existing ACL_MASK entries */ if (acl_get_tag_type(entry, &tag) == -1) @@ -187,7 +188,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co err(1, "%s: acl_set_flagset_np() failed", filename); } - have_entry = 1; + had_entry = have_entry = 1; break; default: /* should never be here */ @@ -197,7 +198,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co } /* if this entry has not been found, it must be new */ - if (have_entry == 0) { + if (had_entry == 0) { /* * NFSv4 ACL entries must be prepended to the ACL. Modified: projects/diffused_head/bin/setfacl/setfacl.1 ============================================================================== --- projects/diffused_head/bin/setfacl/setfacl.1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/setfacl/setfacl.1 Tue Nov 27 05:48:36 2012 (r243596) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 9, 2011 +.Dd September 2, 2012 .Dt SETFACL 1 .Os .Sh NAME @@ -337,7 +337,7 @@ read_acl write_acl .It o write_owner -.It S +.It s synchronize .El .Pp Modified: projects/diffused_head/bin/setfacl/setfacl.c ============================================================================== --- projects/diffused_head/bin/setfacl/setfacl.c Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/setfacl/setfacl.c Tue Nov 27 05:48:36 2012 (r243596) @@ -73,6 +73,7 @@ main(int argc, char *argv[]) { acl_t acl; acl_type_t acl_type; + acl_entry_t unused_entry; char filename[PATH_MAX]; int local_error, carried_error, ch, i, entry_number, ret; int h_flag; @@ -263,6 +264,17 @@ main(int argc, char *argv[]) need_mask = 1; break; case OP_REMOVE_EXT: + /* + * Don't try to call remove_ext() for empty + * default ACL. + */ + if (acl_type == ACL_TYPE_DEFAULT && + acl_get_entry(acl, ACL_FIRST_ENTRY, + &unused_entry) == 0) { + local_error += remove_default(&acl, + file->filename); + break; + } remove_ext(&acl, file->filename); need_mask = 0; break; @@ -296,6 +308,20 @@ main(int argc, char *argv[]) } } + /* + * Don't try to set an empty default ACL; it will always fail. + * Use acl_delete_def_file(3) instead. + */ + if (acl_type == ACL_TYPE_DEFAULT && + acl_get_entry(acl, ACL_FIRST_ENTRY, &unused_entry) == 0) { + if (acl_delete_def_file(file->filename) == -1) { + warn("%s: acl_delete_def_file() failed", + file->filename); + carried_error++; + } + continue; + } + /* don't bother setting the ACL if something is broken */ if (local_error) { carried_error++; Modified: projects/diffused_head/bin/sh/options.c ============================================================================== --- projects/diffused_head/bin/sh/options.c Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/sh/options.c Tue Nov 27 05:48:36 2012 (r243596) @@ -531,10 +531,6 @@ out: } /* - * XXX - should get rid of. have all builtins use getopt(3). the - * library getopt must have the BSD extension static variable "optreset" - * otherwise it can't be used within the shell safely. - * * Standard option processing (a la getopt) for builtin routines. The * only argument that is passed to nextopt is the option string; the * other arguments are unnecessary. It return the character, or '\0' on Modified: projects/diffused_head/bin/sh/sh.1 ============================================================================== --- projects/diffused_head/bin/sh/sh.1 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/bin/sh/sh.1 Tue Nov 27 05:48:36 2012 (r243596) @@ -487,8 +487,9 @@ and backslash The backslash inside double quotes is historically weird. It remains literal unless it precedes the following characters, which it serves to quote: +.Pp .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact -.It Li $ Ta Li ` Ta Li \&" Ta Li \e\ Ta Li \en +.It Li $ Ta Li ` Ta Li \&" Ta Li \e Ta Li \en .El .It Backslash A backslash preserves the literal meaning of the following Modified: projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 ============================================================================== --- projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Tue Nov 27 05:48:36 2012 (r243596) @@ -22,10 +22,12 @@ .\" Copyright (c) 2012 Nexenta Systems, Inc. All Rights Reserved. .\" Copyright (c) 2012, Joyent, Inc. All rights reserved. .\" Copyright (c) 2011, Pawel Jakub Dawidek +.\" Copyright (c) 2012, Glen Barber +.\" Copyright (c) 2012, Bryan Drewery .\" .\" $FreeBSD$ .\" -.Dd August 12, 2012 +.Dd September 5, 2012 .Dt ZFS 8 .Os .Sh NAME @@ -135,17 +137,21 @@ .Fl a | Ar filesystem .Nm .Cm userspace -.Op Fl niHp +.Op Fl Hinp .Op Fl o Ar field Ns Op , Ns Ar ... -.Op Fl sS Ar field +.Op Fl s Ar field +.Ar ... +.Op Fl S Ar field .Ar ... .Op Fl t Ar type Ns Op , Ns Ar ... .Ar filesystem Ns | Ns Ar snapshot .Nm .Cm groupspace -.Op Fl niHp +.Op Fl Hinp .Op Fl o Ar field Ns Op , Ns Ar ... -.Op Fl sS Ar field +.Op Fl s Ar field +.Ar ... +.Op Fl S Ar field .Ar ... .Op Fl t Ar type Ns Op , Ns Ar ... .Ar filesystem Ns | Ns Ar snapshot @@ -1082,7 +1088,7 @@ bit is respected for the file system. Th .It Sy sharesmb Ns = Ns Cm on | off | Ar opts The .Sy sharesmb -property has currently no effect o +property currently has no effect on .Fx . .It Sy sharenfs Ns = Ns Cm on | off | Ar opts Controls whether the file system is shared via @@ -1985,9 +1991,11 @@ Upgrade the specified file system. .It Xo .Nm .Cm userspace -.Op Fl niHp +.Op Fl Hinp .Op Fl o Ar field Ns Op , Ns Ar ... -.Op Fl sS Ar field +.Op Fl s Ar field +.Ar ... +.Op Fl S Ar field .Ar ... .Op Fl t Ar type Ns Op , Ns Ar ... .Ar filesystem Ns | Ns Ar snapshot @@ -2005,9 +2013,9 @@ Print numeric ID instead of user/group n .It Fl H Do not print headers, use tab-delimited output. .It Fl p -Use exact (parseable) numeric output. +Use exact (parsable) numeric output. .It Fl o Ar field Ns Op , Ns Ar ... -Display only the specified fields from the following set, +Display only the specified fields from the following set: .Sy type,name,used,quota . The default is to display all fields. .It Fl s Ar field @@ -2022,7 +2030,7 @@ another. The default is Sort by this field in reverse order. See .Fl s . .It Fl t Ar type Ns Op , Ns Ar ... -Print only the specified types from the following set, +Print only the specified types from the following set: .Sy all,posixuser,smbuser,posixgroup,smbgroup . .Pp The default is @@ -2030,15 +2038,17 @@ The default is .Pp The default can be changed to include group types. .It Fl i -Translate SID to POSIX ID. This flag has currently no effect on +Translate SID to POSIX ID. This flag currently has no effect on .Fx . .El .It Xo .Nm .Cm groupspace -.Op Fl niHp +.Op Fl Hinp .Op Fl o Ar field Ns Op , Ns Ar ... -.Op Fl sS Ar field +.Op Fl s Ar field +.Ar ... +.Op Fl S Ar field .Ar ... .Op Fl t Ar type Ns Op , Ns Ar ... .Ar filesystem Ns | Ns Ar snapshot Modified: projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c ============================================================================== --- projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c Tue Nov 27 03:36:15 2012 (r243595) +++ projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c Tue Nov 27 05:48:36 2012 (r243596) @@ -304,13 +304,13 @@ get_usage(zfs_help_t idx) "\tunallow [-r] -s @setname [[,...]] " "\n")); case HELP_USERSPACE: - return (gettext("\tuserspace [-niHp] [-o field[,...]] " - "[-sS field] ... [-t type[,...]]\n" - "\t \n")); + return (gettext("\tuserspace [-Hinp] [-o field[,...]] " + "[-s field] ...\n\t[-S field] ... " + "[-t type[,...]] \n")); case HELP_GROUPSPACE: - return (gettext("\tgroupspace [-niHp] [-o field[,...]] " - "[-sS field] ... [-t type[,...]]\n" - "\t \n")); + return (gettext("\tgroupspace [-Hinp] [-o field[,...]] " + "[-s field] ...\n\t[-S field] ... " + "[-t type[,...]] \n")); case HELP_HOLD: return (gettext("\thold [-r] ...\n")); case HELP_HOLDS: @@ -2068,30 +2068,52 @@ zfs_do_upgrade(int argc, char **argv) return (ret); } -#define USTYPE_USR_BIT (0) -#define USTYPE_GRP_BIT (1) -#define USTYPE_PSX_BIT (2) -#define USTYPE_SMB_BIT (3) - -#define USTYPE_USR (1 << USTYPE_USR_BIT) -#define USTYPE_GRP (1 << USTYPE_GRP_BIT) - -#define USTYPE_PSX (1 << USTYPE_PSX_BIT) -#define USTYPE_SMB (1 << USTYPE_SMB_BIT) - -#define USTYPE_PSX_USR (USTYPE_PSX | USTYPE_USR) -#define USTYPE_SMB_USR (USTYPE_SMB | USTYPE_USR) -#define USTYPE_PSX_GRP (USTYPE_PSX | USTYPE_GRP) -#define USTYPE_SMB_GRP (USTYPE_SMB | USTYPE_GRP) -#define USTYPE_ALL (USTYPE_PSX_USR | USTYPE_SMB_USR \ - | USTYPE_PSX_GRP | USTYPE_SMB_GRP) +/* + * zfs userspace [-Hinp] [-o field[,...]] [-s field [-s field]...] + * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot + * zfs groupspace [-Hinp] [-o field[,...]] [-s field [-s field]...] + * [-S field [-S field]...] [-t type[,...]] filesystem | snapshot + * + * -H Scripted mode; elide headers and separate columns by tabs. + * -i Translate SID to POSIX ID. + * -n Print numeric ID instead of user/group name. + * -o Control which fields to display. + * -p Use exact (parseable) numeric output. + * -s Specify sort columns, descending order. + * -S Specify sort columns, ascending order. + * -t Control which object types to display. + * + * Displays space consumed by, and quotas on, each user in the specified + * filesystem or snapshot. + */ +/* us_field_types, us_field_hdr and us_field_names should be kept in sync */ +enum us_field_types { + USFIELD_TYPE, + USFIELD_NAME, + USFIELD_USED, + USFIELD_QUOTA +}; +static char *us_field_hdr[] = { "TYPE", "NAME", "USED", "QUOTA" }; +static char *us_field_names[] = { "type", "name", "used", "quota" }; +#define USFIELD_LAST (sizeof (us_field_names) / sizeof (char *)) -#define USPROP_USED_BIT (0) -#define USPROP_QUOTA_BIT (1) +#define USTYPE_PSX_GRP (1 << 0) +#define USTYPE_PSX_USR (1 << 1) +#define USTYPE_SMB_GRP (1 << 2) +#define USTYPE_SMB_USR (1 << 3) +#define USTYPE_ALL \ + (USTYPE_PSX_GRP | USTYPE_PSX_USR | USTYPE_SMB_GRP | USTYPE_SMB_USR) -#define USPROP_USED (1 << USPROP_USED_BIT) -#define USPROP_QUOTA (1 << USPROP_QUOTA_BIT) +static int us_type_bits[] = { + USTYPE_PSX_GRP, + USTYPE_PSX_USR, + USTYPE_SMB_GRP, + USTYPE_SMB_USR, + USTYPE_ALL +}; +static char *us_type_names[] = { "posixgroup", "posxiuser", "smbgroup", + "smbuser", "all" }; typedef struct us_node { nvlist_t *usn_nvl; @@ -2100,37 +2122,49 @@ typedef struct us_node { } us_node_t; typedef struct us_cbdata { - nvlist_t **cb_nvlp; - uu_avl_pool_t *cb_avl_pool; - uu_avl_t *cb_avl; - boolean_t cb_numname; - boolean_t cb_nicenum; - boolean_t cb_sid2posix; - zfs_userquota_prop_t cb_prop; - zfs_sort_column_t *cb_sortcol; - size_t cb_max_typelen; - size_t cb_max_namelen; - size_t cb_max_usedlen; - size_t cb_max_quotalen; + nvlist_t **cb_nvlp; + uu_avl_pool_t *cb_avl_pool; + uu_avl_t *cb_avl; + boolean_t cb_numname; + boolean_t cb_nicenum; + boolean_t cb_sid2posix; + zfs_userquota_prop_t cb_prop; + zfs_sort_column_t *cb_sortcol; + size_t cb_width[USFIELD_LAST]; } us_cbdata_t; +static boolean_t us_populated = B_FALSE; + typedef struct { zfs_sort_column_t *si_sortcol; - boolean_t si_num_name; - boolean_t si_parsable; + boolean_t si_numname; } us_sort_info_t; static int +us_field_index(char *field) +{ + int i; + + for (i = 0; i < USFIELD_LAST; i++) { + if (strcmp(field, us_field_names[i]) == 0) + return (i); + } + + return (-1); +} + +static int us_compare(const void *larg, const void *rarg, void *unused) { const us_node_t *l = larg; const us_node_t *r = rarg; - int rc = 0; us_sort_info_t *si = (us_sort_info_t *)unused; zfs_sort_column_t *sortcol = si->si_sortcol; - boolean_t num_name = si->si_num_name; + boolean_t numname = si->si_numname; nvlist_t *lnvl = l->usn_nvl; nvlist_t *rnvl = r->usn_nvl; + int rc = 0; + boolean_t lvb, rvb; for (; sortcol != NULL; sortcol = sortcol->sc_next) { char *lvstr = ""; @@ -2149,17 +2183,17 @@ us_compare(const void *larg, const void (void) nvlist_lookup_uint32(lnvl, propname, &lv32); (void) nvlist_lookup_uint32(rnvl, propname, &rv32); if (rv32 != lv32) - rc = (rv32 > lv32) ? 1 : -1; + rc = (rv32 < lv32) ? 1 : -1; break; case ZFS_PROP_NAME: propname = "name"; - if (num_name) { - (void) nvlist_lookup_uint32(lnvl, propname, - &lv32); - (void) nvlist_lookup_uint32(rnvl, propname, - &rv32); - if (rv32 != lv32) - rc = (rv32 > lv32) ? 1 : -1; + if (numname) { + (void) nvlist_lookup_uint64(lnvl, propname, + &lv64); + (void) nvlist_lookup_uint64(rnvl, propname, + &rv64); + if (rv64 != lv64) + rc = (rv64 < lv64) ? 1 : -1; } else { (void) nvlist_lookup_string(lnvl, propname, &lvstr); @@ -2168,27 +2202,40 @@ us_compare(const void *larg, const void rc = strcmp(lvstr, rvstr); } break; - case ZFS_PROP_USED: case ZFS_PROP_QUOTA: - if (ZFS_PROP_USED == prop) + if (!us_populated) + break; + if (prop == ZFS_PROP_USED) propname = "used"; else propname = "quota"; (void) nvlist_lookup_uint64(lnvl, propname, &lv64); (void) nvlist_lookup_uint64(rnvl, propname, &rv64); if (rv64 != lv64) - rc = (rv64 > lv64) ? 1 : -1; + rc = (rv64 < lv64) ? 1 : -1; + break; } - if (rc) + if (rc != 0) { if (rc < 0) return (reverse ? 1 : -1); else return (reverse ? -1 : 1); + } } - return (rc); + /* + * If entries still seem to be the same, check if they are of the same + * type (smbentity is added only if we are doing SID to POSIX ID + * translation where we can have duplicate type/name combinations). + */ + if (nvlist_lookup_boolean_value(lnvl, "smbentity", &lvb) == 0 && + nvlist_lookup_boolean_value(rnvl, "smbentity", &rvb) == 0 && + lvb != rvb) + return (lvb < rvb ? -1 : 1); + + return (0); } static inline const char * @@ -2208,9 +2255,6 @@ us_type2str(unsigned field_type) } } -/* - * zfs userspace - */ static int userspace_cb(void *arg, const char *domain, uid_t rid, uint64_t space) { @@ -2218,7 +2262,6 @@ userspace_cb(void *arg, const char *doma zfs_userquota_prop_t prop = cb->cb_prop; char *name = NULL; char *propname; - char namebuf[32]; char sizebuf[32]; us_node_t *node; uu_avl_pool_t *avl_pool = cb->cb_avl_pool; @@ -2232,32 +2275,30 @@ userspace_cb(void *arg, const char *doma size_t namelen; size_t typelen; size_t sizelen; + int typeidx, nameidx, sizeidx; us_sort_info_t sortinfo = { sortcol, cb->cb_numname }; + boolean_t smbentity = B_FALSE; - if (domain == NULL || domain[0] == '\0') { - /* POSIX */ - if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) { - type = USTYPE_PSX_GRP; - struct group *g = getgrgid(rid); - if (g) - name = g->gr_name; - } else { - type = USTYPE_PSX_USR; - struct passwd *p = getpwuid(rid); - if (p) - name = p->pw_name; - } - } else { - char sid[ZFS_MAXNAMELEN+32]; + if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) + nomem(); + node = safe_malloc(sizeof (us_node_t)); + uu_avl_node_init(node, &node->usn_avlnode, avl_pool); + node->usn_nvl = props; + + if (domain != NULL && domain[0] != '\0') { + /* SMB */ + char sid[ZFS_MAXNAMELEN + 32]; uid_t id; uint64_t classes; #ifdef sun - int err = 0; + int err; directory_error_t e; #endif + smbentity = B_TRUE; + (void) snprintf(sid, sizeof (sid), "%s-%u", domain, rid); - /* SMB */ + if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) { type = USTYPE_SMB_GRP; #ifdef sun @@ -2273,217 +2314,139 @@ userspace_cb(void *arg, const char *doma #ifdef sun if (err == 0) { rid = id; - - e = directory_name_from_sid(NULL, sid, &name, &classes); - if (e != NULL) { - directory_error_free(e); - return (NULL); + if (!cb->cb_sid2posix) { + e = directory_name_from_sid(NULL, sid, &name, + &classes); + if (e != NULL) + directory_error_free(e); + if (name == NULL) + name = sid; } - - if (name == NULL) - name = sid; } #endif } -/* - * if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) - * ug = "group"; - * else - * ug = "user"; - */ - - if (prop == ZFS_PROP_USERUSED || prop == ZFS_PROP_GROUPUSED) - propname = "used"; - else - propname = "quota"; - - (void) snprintf(namebuf, sizeof (namebuf), "%u", rid); - if (name == NULL) - name = namebuf; - - if (cb->cb_nicenum) - zfs_nicenum(space, sizebuf, sizeof (sizebuf)); - else - (void) sprintf(sizebuf, "%llu", space); + if (cb->cb_sid2posix || domain == NULL || domain[0] == '\0') { + /* POSIX or -i */ + if (prop == ZFS_PROP_GROUPUSED || prop == ZFS_PROP_GROUPQUOTA) { + type = USTYPE_PSX_GRP; + if (!cb->cb_numname) { + struct group *g; - node = safe_malloc(sizeof (us_node_t)); - uu_avl_node_init(node, &node->usn_avlnode, avl_pool); + if ((g = getgrgid(rid)) != NULL) + name = g->gr_name; + } + } else { + type = USTYPE_PSX_USR; + if (!cb->cb_numname) { + struct passwd *p; - if (nvlist_alloc(&props, NV_UNIQUE_NAME, 0) != 0) { - free(node); - return (-1); + if ((p = getpwuid(rid)) != NULL) + name = p->pw_name; + } + } } + /* + * Make sure that the type/name combination is unique when doing + * SID to POSIX ID translation (hence changing the type from SMB to + * POSIX). + */ + if (cb->cb_sid2posix && + nvlist_add_boolean_value(props, "smbentity", smbentity) != 0) + nomem(); + + /* Calculate/update width of TYPE field */ + typestr = us_type2str(type); + typelen = strlen(gettext(typestr)); + typeidx = us_field_index("type"); + if (typelen > cb->cb_width[typeidx]) + cb->cb_width[typeidx] = typelen; if (nvlist_add_uint32(props, "type", type) != 0) nomem(); - if (cb->cb_numname) { - if (nvlist_add_uint32(props, "name", rid) != 0) + /* Calculate/update width of NAME field */ + if ((cb->cb_numname && cb->cb_sid2posix) || name == NULL) { + if (nvlist_add_uint64(props, "name", rid) != 0) nomem(); - namelen = strlen(namebuf); + namelen = snprintf(NULL, 0, "%u", rid); } else { if (nvlist_add_string(props, "name", name) != 0) nomem(); namelen = strlen(name); } + nameidx = us_field_index("name"); + if (namelen > cb->cb_width[nameidx]) + cb->cb_width[nameidx] = namelen; - typestr = us_type2str(type); - typelen = strlen(gettext(typestr)); - if (typelen > cb->cb_max_typelen) - cb->cb_max_typelen = typelen; - - if (namelen > cb->cb_max_namelen) - cb->cb_max_namelen = namelen; - - sizelen = strlen(sizebuf); - if (0 == strcmp(propname, "used")) { - if (sizelen > cb->cb_max_usedlen) - cb->cb_max_usedlen = sizelen; - } else { - if (sizelen > cb->cb_max_quotalen) - cb->cb_max_quotalen = sizelen; - } - - node->usn_nvl = props; - - n = uu_avl_find(avl, node, &sortinfo, &idx); - if (n == NULL) + /* + * Check if this type/name combination is in the list and update it; + * otherwise add new node to the list. + */ + if ((n = uu_avl_find(avl, node, &sortinfo, &idx)) == NULL) { uu_avl_insert(avl, node, idx); - else { + } else { nvlist_free(props); free(node); node = n; props = node->usn_nvl; } + /* Calculate/update width of USED/QUOTA fields */ + if (cb->cb_nicenum) + zfs_nicenum(space, sizebuf, sizeof (sizebuf)); + else + (void) snprintf(sizebuf, sizeof (sizebuf), "%llu", space); + sizelen = strlen(sizebuf); + if (prop == ZFS_PROP_USERUSED || prop == ZFS_PROP_GROUPUSED) { + propname = "used"; + if (!nvlist_exists(props, "quota")) + (void) nvlist_add_uint64(props, "quota", 0); + } else { + propname = "quota"; + if (!nvlist_exists(props, "used")) + (void) nvlist_add_uint64(props, "used", 0); + } + sizeidx = us_field_index(propname); + if (sizelen > cb->cb_width[sizeidx]) + cb->cb_width[sizeidx] = sizelen; + if (nvlist_add_uint64(props, propname, space) != 0) nomem(); return (0); } -static inline boolean_t -usprop_check(zfs_userquota_prop_t p, unsigned types, unsigned props) -{ - unsigned type; - unsigned prop; - - switch (p) { - case ZFS_PROP_USERUSED: - type = USTYPE_USR; - prop = USPROP_USED; - break; - case ZFS_PROP_USERQUOTA: - type = USTYPE_USR; - prop = USPROP_QUOTA; - break; - case ZFS_PROP_GROUPUSED: - type = USTYPE_GRP; - prop = USPROP_USED; - break; - case ZFS_PROP_GROUPQUOTA: - type = USTYPE_GRP; - prop = USPROP_QUOTA; - break; - default: /* ALL */ - return (B_TRUE); - }; - - return (type & types && prop & props); -} - -#define USFIELD_TYPE (1 << 0) -#define USFIELD_NAME (1 << 1) -#define USFIELD_USED (1 << 2) -#define USFIELD_QUOTA (1 << 3) -#define USFIELD_ALL (USFIELD_TYPE | USFIELD_NAME | USFIELD_USED | USFIELD_QUOTA) - -static int -parsefields(unsigned *fieldsp, char **names, unsigned *bits, size_t len) -{ - char *field = optarg; - char *delim; - - do { - int i; - boolean_t found = B_FALSE; - delim = strchr(field, ','); - if (delim != NULL) - *delim = '\0'; - - for (i = 0; i < len; i++) - if (0 == strcmp(field, names[i])) { - found = B_TRUE; - *fieldsp |= bits[i]; - break; - } - - if (!found) { - (void) fprintf(stderr, gettext("invalid type '%s'" - "for -t option\n"), field); - return (-1); - } - - field = delim + 1; - } while (delim); - - return (0); -} - - -static char *type_names[] = { "posixuser", "smbuser", "posixgroup", "smbgroup", - "all" }; -static unsigned type_bits[] = { - USTYPE_PSX_USR, - USTYPE_SMB_USR, - USTYPE_PSX_GRP, - USTYPE_SMB_GRP, - USTYPE_ALL -}; - -static char *us_field_names[] = { "type", "name", "used", "quota" }; -static unsigned us_field_bits[] = { - USFIELD_TYPE, - USFIELD_NAME, - USFIELD_USED, - USFIELD_QUOTA -}; - static void -print_us_node(boolean_t scripted, boolean_t parseable, unsigned fields, - size_t type_width, size_t name_width, size_t used_width, - size_t quota_width, us_node_t *node) +print_us_node(boolean_t scripted, boolean_t parsable, int *fields, int types, + size_t *width, us_node_t *node) { nvlist_t *nvl = node->usn_nvl; - nvpair_t *nvp = NULL; char valstr[ZFS_MAXNAMELEN]; boolean_t first = B_TRUE; - boolean_t quota_found = B_FALSE; - - if (fields & USFIELD_QUOTA && !nvlist_exists(nvl, "quota")) - if (nvlist_add_string(nvl, "quota", "none") != 0) - nomem(); + int cfield = 0; + int field; + uint32_t ustype; + + /* Check type */ + (void) nvlist_lookup_uint32(nvl, "type", &ustype); + if (!(ustype & types)) + return; - while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { - char *pname = nvpair_name(nvp); - data_type_t type = nvpair_type(nvp); - uint32_t val32 = 0; - uint64_t val64 = 0; + while ((field = fields[cfield]) != USFIELD_LAST) { + nvpair_t *nvp = NULL; + data_type_t type; + uint32_t val32; + uint64_t val64; char *strval = NULL; - unsigned field = 0; - unsigned width = 0; - int i; - for (i = 0; i < 4; i++) { - if (0 == strcmp(pname, us_field_names[i])) { - field = us_field_bits[i]; + + while ((nvp = nvlist_next_nvpair(nvl, nvp)) != NULL) { + if (strcmp(nvpair_name(nvp), + us_field_names[field]) == 0) break; - } } - if (!(field & fields)) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 06:01:02 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C64F04DD; Tue, 27 Nov 2012 06:01:02 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id A84CD8FC13; Tue, 27 Nov 2012 06:01:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAR6128j092584; Tue, 27 Nov 2012 06:01:02 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAR612pg092579; Tue, 27 Nov 2012 06:01:02 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211270601.qAR612pg092579@svn.freebsd.org> From: Lawrence Stewart Date: Tue, 27 Nov 2012 06:01:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243598 - in projects/diffused_head: contrib/pf/man contrib/pf/pfctl include sbin/pfctl sbin/pfctl/missing share/man/man4 share/man/man5 sys/conf sys/contrib/pf sys/modules/dummynet sys... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 06:01:02 -0000 Author: lstewart Date: Tue Nov 27 06:01:02 2012 New Revision: 243598 URL: http://svnweb.freebsd.org/changeset/base/243598 Log: Merge r240494 from head. Added: projects/diffused_head/sbin/pfctl/parse.y - copied unchanged from r240494, head/sbin/pfctl/parse.y projects/diffused_head/sbin/pfctl/pf_print_state.c - copied unchanged from r240494, head/sbin/pfctl/pf_print_state.c projects/diffused_head/sbin/pfctl/pfctl.8 - copied unchanged from r240494, head/sbin/pfctl/pfctl.8 projects/diffused_head/sbin/pfctl/pfctl.c - copied unchanged from r240494, head/sbin/pfctl/pfctl.c projects/diffused_head/sbin/pfctl/pfctl.h - copied unchanged from r240494, head/sbin/pfctl/pfctl.h projects/diffused_head/sbin/pfctl/pfctl_altq.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_altq.c projects/diffused_head/sbin/pfctl/pfctl_optimize.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_optimize.c projects/diffused_head/sbin/pfctl/pfctl_osfp.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_osfp.c projects/diffused_head/sbin/pfctl/pfctl_parser.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_parser.c projects/diffused_head/sbin/pfctl/pfctl_parser.h - copied unchanged from r240494, head/sbin/pfctl/pfctl_parser.h projects/diffused_head/sbin/pfctl/pfctl_qstats.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_qstats.c projects/diffused_head/sbin/pfctl/pfctl_radix.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_radix.c projects/diffused_head/sbin/pfctl/pfctl_table.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_table.c projects/diffused_head/share/man/man4/pf.4 - copied unchanged from r240494, head/share/man/man4/pf.4 projects/diffused_head/share/man/man4/pflog.4 - copied unchanged from r240494, head/share/man/man4/pflog.4 projects/diffused_head/share/man/man4/pfsync.4 - copied unchanged from r240494, head/share/man/man4/pfsync.4 projects/diffused_head/share/man/man5/pf.conf.5 - copied unchanged from r240494, head/share/man/man5/pf.conf.5 projects/diffused_head/share/man/man5/pf.os.5 - copied unchanged from r240494, head/share/man/man5/pf.os.5 projects/diffused_head/sys/net/if_pflog.h - copied unchanged from r240494, head/sys/net/if_pflog.h projects/diffused_head/sys/net/if_pfsync.h - copied unchanged from r240494, head/sys/net/if_pfsync.h projects/diffused_head/sys/net/pf_mtag.h - copied unchanged from r240494, head/sys/net/pf_mtag.h projects/diffused_head/sys/net/pfvar.h - copied unchanged from r240494, head/sys/net/pfvar.h projects/diffused_head/sys/netpfil/ - copied from r240494, head/sys/netpfil/ Deleted: projects/diffused_head/contrib/pf/man/ projects/diffused_head/contrib/pf/pfctl/ projects/diffused_head/sbin/pfctl/missing/ projects/diffused_head/sys/contrib/pf/ projects/diffused_head/sys/netinet/ipfw/ Modified: projects/diffused_head/include/Makefile projects/diffused_head/sbin/pfctl/Makefile projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man5/Makefile projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/modules/dummynet/Makefile projects/diffused_head/sys/modules/ipfw/Makefile projects/diffused_head/sys/modules/ipfw_nat/Makefile projects/diffused_head/sys/modules/pf/Makefile projects/diffused_head/sys/modules/pflog/Makefile projects/diffused_head/sys/modules/pfsync/Makefile projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/usr.sbin/authpf/Makefile projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/conf/ (props changed) Modified: projects/diffused_head/include/Makefile ============================================================================== --- projects/diffused_head/include/Makefile Tue Nov 27 05:52:08 2012 (r243597) +++ projects/diffused_head/include/Makefile Tue Nov 27 06:01:02 2012 (r243598) @@ -186,9 +186,6 @@ copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/netinet .endif - cd ${.CURDIR}/../sys/contrib/pf/net; \ - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ - ${DESTDIR}${INCLUDEDIR}/net cd ${.CURDIR}/../sys/crypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -281,11 +278,6 @@ symlinks: ${DESTDIR}${INCLUDEDIR}/netinet; \ done .endif - cd ${.CURDIR}/../sys/contrib/pf/net; \ - for h in *.h; do \ - ln -fs ../../../sys/contrib/pf/net/$$h \ - ${DESTDIR}${INCLUDEDIR}/net; \ - done cd ${.CURDIR}/../sys/crypto; \ for h in rijndael/rijndael.h; do \ ln -fs ../../../sys/crypto/$$h \ Modified: projects/diffused_head/sbin/pfctl/Makefile ============================================================================== --- projects/diffused_head/sbin/pfctl/Makefile Tue Nov 27 05:52:08 2012 (r243597) +++ projects/diffused_head/sbin/pfctl/Makefile Tue Nov 27 06:01:02 2012 (r243598) @@ -1,11 +1,10 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/pf/pfctl -.PATH: ${.CURDIR}/../../sys/contrib/pf/net -.PATH: ${.CURDIR}/../../contrib/pf/man +# pf_ruleset.c is shared between kernel and pfctl +.PATH: ${.CURDIR}/../../sys/netpfil/pf PROG= pfctl -MAN= pfctl.8 pf.4 pflog.4 pfsync.4 pf.conf.5 pf.os.5 +MAN= pfctl.8 SRCS = pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c SRCS+= pfctl_osfp.c pfctl_radix.c pfctl_table.c pfctl_qstats.c @@ -14,11 +13,8 @@ SRCS+= pf_ruleset.c WARNS?= 2 CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized -CFLAGS+= -Wstrict-prototypes -I${.CURDIR}/../../contrib/pf/pfctl - -# XXX ALTQ -CFLAGS+= -DENABLE_ALTQ -#CFLAGS+= -I${.CURDIR}/missing +CFLAGS+= -Wstrict-prototypes +CFLAGS+= -DENABLE_ALTQ -I${.CURDIR} YFLAGS= Copied: projects/diffused_head/sbin/pfctl/parse.y (from r240494, head/sbin/pfctl/parse.y) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/diffused_head/sbin/pfctl/parse.y Tue Nov 27 06:01:02 2012 (r243598, copy of r240494, head/sbin/pfctl/parse.y) @@ -0,0 +1,6038 @@ +/* $OpenBSD: parse.y,v 1.554 2008/10/17 12:59:53 henning Exp $ */ + +/* + * Copyright (c) 2001 Markus Friedl. All rights reserved. + * Copyright (c) 2001 Daniel Hartmeier. All rights reserved. + * Copyright (c) 2001 Theo de Raadt. All rights reserved. + * Copyright (c) 2002,2003 Henning Brauer. 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 ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +%{ +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#ifdef __FreeBSD__ +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "pfctl_parser.h" +#include "pfctl.h" + +static struct pfctl *pf = NULL; +static int debug = 0; +static int rulestate = 0; +static u_int16_t returnicmpdefault = + (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT; +static u_int16_t returnicmp6default = + (ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT; +static int blockpolicy = PFRULE_DROP; +static int require_order = 1; +static int default_statelock; + +TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files); +static struct file { + TAILQ_ENTRY(file) entry; + FILE *stream; + char *name; + int lineno; + int errors; +} *file; +struct file *pushfile(const char *, int); +int popfile(void); +int check_file_secrecy(int, const char *); +int yyparse(void); +int yylex(void); +int yyerror(const char *, ...); +int kw_cmp(const void *, const void *); +int lookup(char *); +int lgetc(int); +int lungetc(int); +int findeol(void); + +TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead); +struct sym { + TAILQ_ENTRY(sym) entry; + int used; + int persist; + char *nam; + char *val; +}; +int symset(const char *, const char *, int); +char *symget(const char *); + +int atoul(char *, u_long *); + +enum { + PFCTL_STATE_NONE, + PFCTL_STATE_OPTION, + PFCTL_STATE_SCRUB, + PFCTL_STATE_QUEUE, + PFCTL_STATE_NAT, + PFCTL_STATE_FILTER +}; + +struct node_proto { + u_int8_t proto; + struct node_proto *next; + struct node_proto *tail; +}; + +struct node_port { + u_int16_t port[2]; + u_int8_t op; + struct node_port *next; + struct node_port *tail; +}; + +struct node_uid { + uid_t uid[2]; + u_int8_t op; + struct node_uid *next; + struct node_uid *tail; +}; + +struct node_gid { + gid_t gid[2]; + u_int8_t op; + struct node_gid *next; + struct node_gid *tail; +}; + +struct node_icmp { + u_int8_t code; + u_int8_t type; + u_int8_t proto; + struct node_icmp *next; + struct node_icmp *tail; +}; + +enum { PF_STATE_OPT_MAX, PF_STATE_OPT_NOSYNC, PF_STATE_OPT_SRCTRACK, + PF_STATE_OPT_MAX_SRC_STATES, PF_STATE_OPT_MAX_SRC_CONN, + PF_STATE_OPT_MAX_SRC_CONN_RATE, PF_STATE_OPT_MAX_SRC_NODES, + PF_STATE_OPT_OVERLOAD, PF_STATE_OPT_STATELOCK, + PF_STATE_OPT_TIMEOUT, PF_STATE_OPT_SLOPPY, }; + +enum { PF_SRCTRACK_NONE, PF_SRCTRACK, PF_SRCTRACK_GLOBAL, PF_SRCTRACK_RULE }; + +struct node_state_opt { + int type; + union { + u_int32_t max_states; + u_int32_t max_src_states; + u_int32_t max_src_conn; + struct { + u_int32_t limit; + u_int32_t seconds; + } max_src_conn_rate; + struct { + u_int8_t flush; + char tblname[PF_TABLE_NAME_SIZE]; + } overload; + u_int32_t max_src_nodes; + u_int8_t src_track; + u_int32_t statelock; + struct { + int number; + u_int32_t seconds; + } timeout; + } data; + struct node_state_opt *next; + struct node_state_opt *tail; +}; + +struct peer { + struct node_host *host; + struct node_port *port; +}; + +struct node_queue { + char queue[PF_QNAME_SIZE]; + char parent[PF_QNAME_SIZE]; + char ifname[IFNAMSIZ]; + int scheduler; + struct node_queue *next; + struct node_queue *tail; +} *queues = NULL; + +struct node_qassign { + char *qname; + char *pqname; +}; + +struct filter_opts { + int marker; +#define FOM_FLAGS 0x01 +#define FOM_ICMP 0x02 +#define FOM_TOS 0x04 +#define FOM_KEEP 0x08 +#define FOM_SRCTRACK 0x10 + struct node_uid *uid; + struct node_gid *gid; + struct { + u_int8_t b1; + u_int8_t b2; + u_int16_t w; + u_int16_t w2; + } flags; + struct node_icmp *icmpspec; + u_int32_t tos; + u_int32_t prob; + struct { + int action; + struct node_state_opt *options; + } keep; + int fragment; + int allowopts; + char *label; + struct node_qassign queues; + char *tag; + char *match_tag; + u_int8_t match_tag_not; + u_int rtableid; + struct { + struct node_host *addr; + u_int16_t port; + } divert; +} filter_opts; + +struct antispoof_opts { + char *label; + u_int rtableid; +} antispoof_opts; + +struct scrub_opts { + int marker; +#define SOM_MINTTL 0x01 +#define SOM_MAXMSS 0x02 +#define SOM_FRAGCACHE 0x04 +#define SOM_SETTOS 0x08 + int nodf; + int minttl; + int maxmss; + int settos; + int fragcache; + int randomid; + int reassemble_tcp; + char *match_tag; + u_int8_t match_tag_not; + u_int rtableid; +} scrub_opts; + +struct queue_opts { + int marker; +#define QOM_BWSPEC 0x01 +#define QOM_SCHEDULER 0x02 +#define QOM_PRIORITY 0x04 +#define QOM_TBRSIZE 0x08 +#define QOM_QLIMIT 0x10 + struct node_queue_bw queue_bwspec; + struct node_queue_opt scheduler; + int priority; + int tbrsize; + int qlimit; +} queue_opts; + +struct table_opts { + int flags; + int init_addr; + struct node_tinithead init_nodes; +} table_opts; + +struct pool_opts { + int marker; +#define POM_TYPE 0x01 +#define POM_STICKYADDRESS 0x02 + u_int8_t opts; + int type; + int staticport; + struct pf_poolhashkey *key; + +} pool_opts; + + +struct node_hfsc_opts hfsc_opts; +struct node_state_opt *keep_state_defaults = NULL; + +int disallow_table(struct node_host *, const char *); +int disallow_urpf_failed(struct node_host *, const char *); +int disallow_alias(struct node_host *, const char *); +int rule_consistent(struct pf_rule *, int); +int filter_consistent(struct pf_rule *, int); +int nat_consistent(struct pf_rule *); +int rdr_consistent(struct pf_rule *); +int process_tabledef(char *, struct table_opts *); +void expand_label_str(char *, size_t, const char *, const char *); +void expand_label_if(const char *, char *, size_t, const char *); +void expand_label_addr(const char *, char *, size_t, u_int8_t, + struct node_host *); +void expand_label_port(const char *, char *, size_t, + struct node_port *); +void expand_label_proto(const char *, char *, size_t, u_int8_t); +void expand_label_nr(const char *, char *, size_t); +void expand_label(char *, size_t, const char *, u_int8_t, + struct node_host *, struct node_port *, struct node_host *, + struct node_port *, u_int8_t); +void expand_rule(struct pf_rule *, struct node_if *, + struct node_host *, struct node_proto *, struct node_os *, + struct node_host *, struct node_port *, struct node_host *, + struct node_port *, struct node_uid *, struct node_gid *, + struct node_icmp *, const char *); +int expand_altq(struct pf_altq *, struct node_if *, + struct node_queue *, struct node_queue_bw bwspec, + struct node_queue_opt *); +int expand_queue(struct pf_altq *, struct node_if *, + struct node_queue *, struct node_queue_bw, + struct node_queue_opt *); +int expand_skip_interface(struct node_if *); + +int check_rulestate(int); +int getservice(char *); +int rule_label(struct pf_rule *, char *); +int rt_tableid_max(void); + +void mv_rules(struct pf_ruleset *, struct pf_ruleset *); +void decide_address_family(struct node_host *, sa_family_t *); +void remove_invalid_hosts(struct node_host **, sa_family_t *); +int invalid_redirect(struct node_host *, sa_family_t); +u_int16_t parseicmpspec(char *, sa_family_t); + +TAILQ_HEAD(loadanchorshead, loadanchors) + loadanchorshead = TAILQ_HEAD_INITIALIZER(loadanchorshead); + +struct loadanchors { + TAILQ_ENTRY(loadanchors) entries; + char *anchorname; + char *filename; +}; + +typedef struct { + union { + int64_t number; + double probability; + int i; + char *string; + u_int rtableid; + struct { + u_int8_t b1; + u_int8_t b2; + u_int16_t w; + u_int16_t w2; + } b; + struct range { + int a; + int b; + int t; + } range; + struct node_if *interface; + struct node_proto *proto; + struct node_icmp *icmp; + struct node_host *host; + struct node_os *os; + struct node_port *port; + struct node_uid *uid; + struct node_gid *gid; + struct node_state_opt *state_opt; + struct peer peer; + struct { + struct peer src, dst; + struct node_os *src_os; + } fromto; + struct { + struct node_host *host; + u_int8_t rt; + u_int8_t pool_opts; + sa_family_t af; + struct pf_poolhashkey *key; + } route; + struct redirection { + struct node_host *host; + struct range rport; + } *redirection; + struct { + int action; + struct node_state_opt *options; + } keep_state; + struct { + u_int8_t log; + u_int8_t logif; + u_int8_t quick; + } logquick; + struct { + int neg; + char *name; + } tagged; + struct pf_poolhashkey *hashkey; + struct node_queue *queue; + struct node_queue_opt queue_options; + struct node_queue_bw queue_bwspec; + struct node_qassign qassign; + struct filter_opts filter_opts; + struct antispoof_opts antispoof_opts; + struct queue_opts queue_opts; + struct scrub_opts scrub_opts; + struct table_opts table_opts; + struct pool_opts pool_opts; + struct node_hfsc_opts hfsc_opts; + } v; + int lineno; +} YYSTYPE; + +#define PPORT_RANGE 1 +#define PPORT_STAR 2 +int parseport(char *, struct range *r, int); + +#define DYNIF_MULTIADDR(addr) ((addr).type == PF_ADDR_DYNIFTL && \ + (!((addr).iflags & PFI_AFLAG_NOALIAS) || \ + !isdigit((addr).v.ifname[strlen((addr).v.ifname)-1]))) + +%} + +%token PASS BLOCK SCRUB RETURN IN OS OUT LOG QUICK ON FROM TO FLAGS +%token RETURNRST RETURNICMP RETURNICMP6 PROTO INET INET6 ALL ANY ICMPTYPE +%token ICMP6TYPE CODE KEEP MODULATE STATE PORT RDR NAT BINAT ARROW NODF +%token MINTTL ERROR ALLOWOPTS FASTROUTE FILENAME ROUTETO DUPTO REPLYTO NO LABEL +%token NOROUTE URPFFAILED FRAGMENT USER GROUP MAXMSS MAXIMUM TTL TOS DROP TABLE +%token REASSEMBLE FRAGDROP FRAGCROP ANCHOR NATANCHOR RDRANCHOR BINATANCHOR +%token SET OPTIMIZATION TIMEOUT LIMIT LOGINTERFACE BLOCKPOLICY RANDOMID +%token REQUIREORDER SYNPROXY FINGERPRINTS NOSYNC DEBUG SKIP HOSTID +%token ANTISPOOF FOR INCLUDE +%token BITMASK RANDOM SOURCEHASH ROUNDROBIN STATICPORT PROBABILITY +%token ALTQ CBQ PRIQ HFSC BANDWIDTH TBRSIZE LINKSHARE REALTIME UPPERLIMIT +%token QUEUE PRIORITY QLIMIT RTABLE +%token LOAD RULESET_OPTIMIZATION +%token STICKYADDRESS MAXSRCSTATES MAXSRCNODES SOURCETRACK GLOBAL RULE +%token MAXSRCCONN MAXSRCCONNRATE OVERLOAD FLUSH SLOPPY +%token TAGGED TAG IFBOUND FLOATING STATEPOLICY STATEDEFAULTS ROUTE SETTOS +%token DIVERTTO DIVERTREPLY +%token STRING +%token NUMBER +%token PORTBINARY +%type interface if_list if_item_not if_item +%type number icmptype icmp6type uid gid +%type tos not yesno +%type probability +%type no dir af fragcache optimizer +%type sourcetrack flush unaryop statelock +%type action nataction natpasslog scrubaction +%type flags flag blockspec +%type portplain portstar portrange +%type hashkey +%type proto proto_list proto_item +%type protoval +%type icmpspec +%type icmp_list icmp_item +%type icmp6_list icmp6_item +%type reticmpspec reticmp6spec +%type fromto +%type ipportspec from to +%type ipspec toipspec xhost host dynaddr host_list +%type redir_host_list redirspec +%type route_host route_host_list routespec +%type os xos os_list +%type portspec port_list port_item +%type uids uid_list uid_item +%type gids gid_list gid_item +%type route +%type redirection redirpool +%type label stringall tag anchorname +%type string varstring numberstring +%type keep +%type state_opt_spec state_opt_list state_opt_item +%type logquick quick log logopts logopt +%type antispoof_ifspc antispoof_iflst antispoof_if +%type qname +%type qassign qassign_list qassign_item +%type scheduler +%type cbqflags_list cbqflags_item +%type priqflags_list priqflags_item +%type hfscopts_list hfscopts_item hfsc_opts +%type bandwidth +%type filter_opts filter_opt filter_opts_l +%type antispoof_opts antispoof_opt antispoof_opts_l +%type queue_opts queue_opt queue_opts_l +%type scrub_opts scrub_opt scrub_opts_l +%type table_opts table_opt table_opts_l +%type pool_opts pool_opt pool_opts_l +%type tagged +%type rtable +%% + +ruleset : /* empty */ + | ruleset include '\n' + | ruleset '\n' + | ruleset option '\n' + | ruleset scrubrule '\n' + | ruleset natrule '\n' + | ruleset binatrule '\n' + | ruleset pfrule '\n' + | ruleset anchorrule '\n' + | ruleset loadrule '\n' + | ruleset altqif '\n' + | ruleset queuespec '\n' + | ruleset varset '\n' + | ruleset antispoof '\n' + | ruleset tabledef '\n' + | '{' fakeanchor '}' '\n'; + | ruleset error '\n' { file->errors++; } + ; + +include : INCLUDE STRING { + struct file *nfile; + + if ((nfile = pushfile($2, 0)) == NULL) { + yyerror("failed to include file %s", $2); + free($2); + YYERROR; + } + free($2); + + file = nfile; + lungetc('\n'); + } + ; + +/* + * apply to previouslys specified rule: must be careful to note + * what that is: pf or nat or binat or rdr + */ +fakeanchor : fakeanchor '\n' + | fakeanchor anchorrule '\n' + | fakeanchor binatrule '\n' + | fakeanchor natrule '\n' + | fakeanchor pfrule '\n' + | fakeanchor error '\n' + ; + +optimizer : string { + if (!strcmp($1, "none")) + $$ = 0; + else if (!strcmp($1, "basic")) + $$ = PF_OPTIMIZE_BASIC; + else if (!strcmp($1, "profile")) + $$ = PF_OPTIMIZE_BASIC | PF_OPTIMIZE_PROFILE; + else { + yyerror("unknown ruleset-optimization %s", $1); + YYERROR; + } + } + ; + +option : SET OPTIMIZATION STRING { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_optimization(pf, $3) != 0) { + yyerror("unknown optimization %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET RULESET_OPTIMIZATION optimizer { + if (!(pf->opts & PF_OPT_OPTIMIZE)) { + pf->opts |= PF_OPT_OPTIMIZE; + pf->optimize = $3; + } + } + | SET TIMEOUT timeout_spec + | SET TIMEOUT '{' optnl timeout_list '}' + | SET LIMIT limit_spec + | SET LIMIT '{' optnl limit_list '}' + | SET LOGINTERFACE stringall { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_logif(pf, $3) != 0) { + yyerror("error setting loginterface %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET HOSTID number { + if ($3 == 0 || $3 > UINT_MAX) { + yyerror("hostid must be non-zero"); + YYERROR; + } + if (pfctl_set_hostid(pf, $3) != 0) { + yyerror("error setting hostid %08x", $3); + YYERROR; + } + } + | SET BLOCKPOLICY DROP { + if (pf->opts & PF_OPT_VERBOSE) + printf("set block-policy drop\n"); + if (check_rulestate(PFCTL_STATE_OPTION)) + YYERROR; + blockpolicy = PFRULE_DROP; + } + | SET BLOCKPOLICY RETURN { + if (pf->opts & PF_OPT_VERBOSE) + printf("set block-policy return\n"); + if (check_rulestate(PFCTL_STATE_OPTION)) + YYERROR; + blockpolicy = PFRULE_RETURN; + } + | SET REQUIREORDER yesno { + if (pf->opts & PF_OPT_VERBOSE) + printf("set require-order %s\n", + $3 == 1 ? "yes" : "no"); + require_order = $3; + } + | SET FINGERPRINTS STRING { + if (pf->opts & PF_OPT_VERBOSE) + printf("set fingerprints \"%s\"\n", $3); + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (!pf->anchor->name[0]) { + if (pfctl_file_fingerprints(pf->dev, + pf->opts, $3)) { + yyerror("error loading " + "fingerprints %s", $3); + free($3); + YYERROR; + } + } + free($3); + } + | SET STATEPOLICY statelock { + if (pf->opts & PF_OPT_VERBOSE) + switch ($3) { + case 0: + printf("set state-policy floating\n"); + break; + case PFRULE_IFBOUND: + printf("set state-policy if-bound\n"); + break; + } + default_statelock = $3; + } + | SET DEBUG STRING { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_debug(pf, $3) != 0) { + yyerror("error setting debuglevel %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET SKIP interface { + if (expand_skip_interface($3) != 0) { + yyerror("error setting skip interface(s)"); + YYERROR; + } + } + | SET STATEDEFAULTS state_opt_list { + if (keep_state_defaults != NULL) { + yyerror("cannot redefine state-defaults"); + YYERROR; + } + keep_state_defaults = $3; + } + ; + +stringall : STRING { $$ = $1; } + | ALL { + if (($$ = strdup("all")) == NULL) { + err(1, "stringall: strdup"); + } + } + ; + +string : STRING string { + if (asprintf(&$$, "%s %s", $1, $2) == -1) + err(1, "string: asprintf"); + free($1); + free($2); + } + | STRING + ; + +varstring : numberstring varstring { + if (asprintf(&$$, "%s %s", $1, $2) == -1) + err(1, "string: asprintf"); + free($1); + free($2); + } + | numberstring + ; + +numberstring : NUMBER { + char *s; + if (asprintf(&s, "%lld", (long long)$1) == -1) { + yyerror("string: asprintf"); + YYERROR; + } + $$ = s; + } + | STRING + ; + +varset : STRING '=' varstring { + if (pf->opts & PF_OPT_VERBOSE) + printf("%s = \"%s\"\n", $1, $3); + if (symset($1, $3, 0) == -1) + err(1, "cannot store variable %s", $1); + free($1); + free($3); + } + ; + +anchorname : STRING { $$ = $1; } + | /* empty */ { $$ = NULL; } + ; + +pfa_anchorlist : /* empty */ + | pfa_anchorlist '\n' + | pfa_anchorlist pfrule '\n' + | pfa_anchorlist anchorrule '\n' + ; + +pfa_anchor : '{' + { + char ta[PF_ANCHOR_NAME_SIZE]; + struct pf_ruleset *rs; + + /* steping into a brace anchor */ + pf->asd++; + pf->bn++; + pf->brace = 1; + + /* create a holding ruleset in the root */ + snprintf(ta, PF_ANCHOR_NAME_SIZE, "_%d", pf->bn); + rs = pf_find_or_create_ruleset(ta); + if (rs == NULL) + err(1, "pfa_anchor: pf_find_or_create_ruleset"); + pf->astack[pf->asd] = rs->anchor; + pf->anchor = rs->anchor; + } '\n' pfa_anchorlist '}' + { + pf->alast = pf->anchor; + pf->asd--; + pf->anchor = pf->astack[pf->asd]; + } + | /* empty */ + ; + +anchorrule : ANCHOR anchorname dir quick interface af proto fromto + filter_opts pfa_anchor + { + struct pf_rule r; + struct node_proto *proto; + + if (check_rulestate(PFCTL_STATE_FILTER)) { + if ($2) + free($2); + YYERROR; + } + + if ($2 && ($2[0] == '_' || strstr($2, "/_") != NULL)) { + free($2); + yyerror("anchor names beginning with '_' " + "are reserved for internal use"); + YYERROR; + } + + memset(&r, 0, sizeof(r)); + if (pf->astack[pf->asd + 1]) { + /* move inline rules into relative location */ + pf_anchor_setup(&r, + &pf->astack[pf->asd]->ruleset, + $2 ? $2 : pf->alast->name); + + if (r.anchor == NULL) + err(1, "anchorrule: unable to " + "create ruleset"); + + if (pf->alast != r.anchor) { + if (r.anchor->match) { + yyerror("inline anchor '%s' " + "already exists", + r.anchor->name); + YYERROR; + } + mv_rules(&pf->alast->ruleset, + &r.anchor->ruleset); + } + pf_remove_if_empty_ruleset(&pf->alast->ruleset); + pf->alast = r.anchor; + } else { + if (!$2) { + yyerror("anchors without explicit " + "rules must specify a name"); + YYERROR; + } + } + r.direction = $3; + r.quick = $4.quick; + r.af = $6; + r.prob = $9.prob; + r.rtableid = $9.rtableid; + + if ($9.tag) + if (strlcpy(r.tagname, $9.tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + if ($9.match_tag) + if (strlcpy(r.match_tagname, $9.match_tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + r.match_tag_not = $9.match_tag_not; + if (rule_label(&r, $9.label)) + YYERROR; + free($9.label); + r.flags = $9.flags.b1; + r.flagset = $9.flags.b2; + if (($9.flags.b1 & $9.flags.b2) != $9.flags.b1) { + yyerror("flags always false"); + YYERROR; + } + if ($9.flags.b1 || $9.flags.b2 || $8.src_os) { + for (proto = $7; proto != NULL && + proto->proto != IPPROTO_TCP; + proto = proto->next) + ; /* nothing */ + if (proto == NULL && $7 != NULL) { + if ($9.flags.b1 || $9.flags.b2) + yyerror( + "flags only apply to tcp"); + if ($8.src_os) + yyerror( + "OS fingerprinting only " + "applies to tcp"); + YYERROR; + } + } + + r.tos = $9.tos; + + if ($9.keep.action) { + yyerror("cannot specify state handling " + "on anchors"); + YYERROR; + } + + if ($9.match_tag) + if (strlcpy(r.match_tagname, $9.match_tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + r.match_tag_not = $9.match_tag_not; + + decide_address_family($8.src.host, &r.af); + decide_address_family($8.dst.host, &r.af); + + expand_rule(&r, $5, NULL, $7, $8.src_os, + $8.src.host, $8.src.port, $8.dst.host, $8.dst.port, + $9.uid, $9.gid, $9.icmpspec, + pf->astack[pf->asd + 1] ? pf->alast->name : $2); + free($2); + pf->astack[pf->asd + 1] = NULL; + } + | NATANCHOR string interface af proto fromto rtable { + struct pf_rule r; + + if (check_rulestate(PFCTL_STATE_NAT)) { + free($2); + YYERROR; + } + + memset(&r, 0, sizeof(r)); + r.action = PF_NAT; + r.af = $4; + r.rtableid = $7; + + decide_address_family($6.src.host, &r.af); + decide_address_family($6.dst.host, &r.af); + + expand_rule(&r, $3, NULL, $5, $6.src_os, + $6.src.host, $6.src.port, $6.dst.host, $6.dst.port, + 0, 0, 0, $2); + free($2); + } + | RDRANCHOR string interface af proto fromto rtable { + struct pf_rule r; + + if (check_rulestate(PFCTL_STATE_NAT)) { + free($2); + YYERROR; + } + + memset(&r, 0, sizeof(r)); + r.action = PF_RDR; + r.af = $4; + r.rtableid = $7; + + decide_address_family($6.src.host, &r.af); + decide_address_family($6.dst.host, &r.af); + + if ($6.src.port != NULL) { + yyerror("source port parameter not supported" + " in rdr-anchor"); + YYERROR; + } + if ($6.dst.port != NULL) { + if ($6.dst.port->next != NULL) { + yyerror("destination port list " + "expansion not supported in " + "rdr-anchor"); *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 06:20:41 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7C30BB66; Tue, 27 Nov 2012 06:20:41 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 5F0B18FC12; Tue, 27 Nov 2012 06:20:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAR6KfF1096707; Tue, 27 Nov 2012 06:20:41 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAR6KelE096690; Tue, 27 Nov 2012 06:20:40 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211270620.qAR6KelE096690@svn.freebsd.org> From: Lawrence Stewart Date: Tue, 27 Nov 2012 06:20:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243600 - in projects/diffused_head: contrib/pf/man contrib/pf/pfctl include sbin/pfctl sbin/pfctl/missing share/man/man4 share/man/man5 sys/conf sys/modules/dummynet sys/modules/ipfw s... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 06:20:41 -0000 Author: lstewart Date: Tue Nov 27 06:20:40 2012 New Revision: 243600 URL: http://svnweb.freebsd.org/changeset/base/243600 Log: Reverse the merge of r240494 from head. It needs to be done again, but this time remembering to move the DIFFUSE code to its new home. Added: projects/diffused_head/contrib/pf/man/ - copied from r243597, projects/diffused_head/contrib/pf/man/ projects/diffused_head/contrib/pf/pfctl/ - copied from r243597, projects/diffused_head/contrib/pf/pfctl/ projects/diffused_head/sbin/pfctl/missing/ - copied from r243597, projects/diffused_head/sbin/pfctl/missing/ - copied from r243597, projects/diffused_head/sys/contrib/pf/ projects/diffused_head/sys/netinet/ipfw/ - copied from r243597, projects/diffused_head/sys/netinet/ipfw/ Directory Properties: projects/diffused_head/sys/contrib/pf/ (props changed) Deleted: projects/diffused_head/sbin/pfctl/parse.y projects/diffused_head/sbin/pfctl/pf_print_state.c projects/diffused_head/sbin/pfctl/pfctl.8 projects/diffused_head/sbin/pfctl/pfctl.c projects/diffused_head/sbin/pfctl/pfctl.h projects/diffused_head/sbin/pfctl/pfctl_altq.c projects/diffused_head/sbin/pfctl/pfctl_optimize.c projects/diffused_head/sbin/pfctl/pfctl_osfp.c projects/diffused_head/sbin/pfctl/pfctl_parser.c projects/diffused_head/sbin/pfctl/pfctl_parser.h projects/diffused_head/sbin/pfctl/pfctl_qstats.c projects/diffused_head/sbin/pfctl/pfctl_radix.c projects/diffused_head/sbin/pfctl/pfctl_table.c projects/diffused_head/share/man/man4/pf.4 projects/diffused_head/share/man/man4/pflog.4 projects/diffused_head/share/man/man4/pfsync.4 projects/diffused_head/share/man/man5/pf.conf.5 projects/diffused_head/share/man/man5/pf.os.5 projects/diffused_head/sys/net/if_pflog.h projects/diffused_head/sys/net/if_pfsync.h projects/diffused_head/sys/net/pf_mtag.h projects/diffused_head/sys/net/pfvar.h projects/diffused_head/sys/netpfil/ Modified: projects/diffused_head/include/Makefile projects/diffused_head/sbin/pfctl/Makefile projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man5/Makefile projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/modules/dummynet/Makefile projects/diffused_head/sys/modules/ipfw/Makefile projects/diffused_head/sys/modules/ipfw_nat/Makefile projects/diffused_head/sys/modules/pf/Makefile projects/diffused_head/sys/modules/pflog/Makefile projects/diffused_head/sys/modules/pfsync/Makefile projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/usr.sbin/authpf/Makefile projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/conf/ (props changed) Modified: projects/diffused_head/include/Makefile ============================================================================== --- projects/diffused_head/include/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/include/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -186,6 +186,9 @@ copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/netinet .endif + cd ${.CURDIR}/../sys/contrib/pf/net; \ + ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ + ${DESTDIR}${INCLUDEDIR}/net cd ${.CURDIR}/../sys/crypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -278,6 +281,11 @@ symlinks: ${DESTDIR}${INCLUDEDIR}/netinet; \ done .endif + cd ${.CURDIR}/../sys/contrib/pf/net; \ + for h in *.h; do \ + ln -fs ../../../sys/contrib/pf/net/$$h \ + ${DESTDIR}${INCLUDEDIR}/net; \ + done cd ${.CURDIR}/../sys/crypto; \ for h in rijndael/rijndael.h; do \ ln -fs ../../../sys/crypto/$$h \ Modified: projects/diffused_head/sbin/pfctl/Makefile ============================================================================== --- projects/diffused_head/sbin/pfctl/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sbin/pfctl/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -1,10 +1,11 @@ # $FreeBSD$ -# pf_ruleset.c is shared between kernel and pfctl -.PATH: ${.CURDIR}/../../sys/netpfil/pf +.PATH: ${.CURDIR}/../../contrib/pf/pfctl +.PATH: ${.CURDIR}/../../sys/contrib/pf/net +.PATH: ${.CURDIR}/../../contrib/pf/man PROG= pfctl -MAN= pfctl.8 +MAN= pfctl.8 pf.4 pflog.4 pfsync.4 pf.conf.5 pf.os.5 SRCS = pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c SRCS+= pfctl_osfp.c pfctl_radix.c pfctl_table.c pfctl_qstats.c @@ -13,8 +14,11 @@ SRCS+= pf_ruleset.c WARNS?= 2 CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized -CFLAGS+= -Wstrict-prototypes -CFLAGS+= -DENABLE_ALTQ -I${.CURDIR} +CFLAGS+= -Wstrict-prototypes -I${.CURDIR}/../../contrib/pf/pfctl + +# XXX ALTQ +CFLAGS+= -DENABLE_ALTQ +#CFLAGS+= -I${.CURDIR}/missing YFLAGS= Modified: projects/diffused_head/share/man/man4/Makefile ============================================================================== --- projects/diffused_head/share/man/man4/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/share/man/man4/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -355,9 +355,6 @@ MAN= aac.4 \ pcii.4 \ pcm.4 \ pcn.4 \ - pf.4 \ - pflog.4 \ - pfsync.4 \ pim.4 \ polling.4 \ ppbus.4 \ Modified: projects/diffused_head/share/man/man5/Makefile ============================================================================== --- projects/diffused_head/share/man/man5/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/share/man/man5/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -50,8 +50,6 @@ MAN= acct.5 \ passwd.5 \ pbm.5 \ periodic.conf.5 \ - pf.conf.5 \ - pf.os.5 \ phones.5 \ portindex.5 \ portsnap.conf.5 \ Modified: projects/diffused_head/sys/conf/files ============================================================================== --- projects/diffused_head/sys/conf/files Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/conf/files Tue Nov 27 06:20:40 2012 (r243600) @@ -270,19 +270,19 @@ cddl/contrib/opensolaris/uts/common/zmod cddl/contrib/opensolaris/uts/common/zmod/zmod_subr.c optional zfs compile-with "${ZFS_C}" cddl/contrib/opensolaris/uts/common/zmod/zutil.c optional zfs compile-with "${ZFS_C}" contrib/altq/altq/altq_cbq.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/altq/altq/altq_cdnr.c optional altq contrib/altq/altq/altq_hfsc.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/altq/altq/altq_priq.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/altq/altq/altq_red.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/altq/altq/altq_rio.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/altq/altq/altq_rmclass.c optional altq contrib/altq/altq/altq_subr.c optional altq \ - compile-with "${NORMAL_C}" + compile-with "${NORMAL_C} -I$S/contrib/pf" contrib/dev/acpica/components/debugger/dbcmds.c optional acpi acpi_debug contrib/dev/acpica/components/debugger/dbdisply.c optional acpi acpi_debug contrib/dev/acpica/components/debugger/dbexec.c optional acpi acpi_debug @@ -513,6 +513,27 @@ contrib/ngatm/netnatm/sig/sig_unimsgcpy. compile-with "${NORMAL_C} -I$S/contrib/ngatm" contrib/ngatm/netnatm/sig/sig_verify.c optional ngatm_uni \ compile-with "${NORMAL_C} -I$S/contrib/ngatm" +contrib/pf/net/if_pflog.c optional pflog pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/if_pfsync.c optional pfsync pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_if.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_ioctl.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_lb.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_norm.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_osfp.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_ruleset.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/net/pf_table.c optional pf inet \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +contrib/pf/netinet/in4_cksum.c optional pf inet crypto/blowfish/bf_ecb.c optional ipsec crypto/blowfish/bf_skey.c optional crypto | ipsec crypto/camellia/camellia.c optional crypto | ipsec @@ -2860,7 +2881,8 @@ net/if_edsc.c optional edsc net/if_ef.c optional ef net/if_enc.c optional enc ipsec inet | enc ipsec inet6 net/if_epair.c optional epair -net/if_ethersubr.c optional ether +net/if_ethersubr.c optional ether \ + compile-with "${NORMAL_C} -I$S/contrib/pf" net/if_faith.c optional faith net/if_fddisubr.c optional fddi net/if_fwsubr.c optional fwip @@ -3039,12 +3061,30 @@ netinet/ip_id.c optional inet netinet/in_mcast.c optional inet netinet/in_pcb.c optional inet | inet6 netinet/in_pcbgroup.c optional inet pcbgroup | inet6 pcbgroup -netinet/in_proto.c optional inet | inet6 +netinet/in_proto.c optional inet | inet6 \ + compile-with "${NORMAL_C} -I$S/contrib/pf" netinet/in_rmx.c optional inet netinet/ip_divert.c optional inet ipdivert ipfirewall +netinet/ipfw/dn_heap.c optional inet dummynet +netinet/ipfw/dn_sched_fifo.c optional inet dummynet +netinet/ipfw/dn_sched_prio.c optional inet dummynet +netinet/ipfw/dn_sched_qfq.c optional inet dummynet +netinet/ipfw/dn_sched_rr.c optional inet dummynet +netinet/ipfw/dn_sched_wf2q.c optional inet dummynet +netinet/ipfw/ip_dummynet.c optional inet dummynet +netinet/ipfw/ip_dn_io.c optional inet dummynet +netinet/ipfw/ip_dn_glue.c optional inet dummynet netinet/ip_ecn.c optional inet | inet6 netinet/ip_encap.c optional inet | inet6 netinet/ip_fastfwd.c optional inet +netinet/ipfw/ip_fw2.c optional inet ipfirewall \ + compile-with "${NORMAL_C} -I$S/contrib/pf" +netinet/ipfw/ip_fw_dynamic.c optional inet ipfirewall +netinet/ipfw/ip_fw_log.c optional inet ipfirewall +netinet/ipfw/ip_fw_pfil.c optional inet ipfirewall +netinet/ipfw/ip_fw_sockopt.c optional inet ipfirewall +netinet/ipfw/ip_fw_table.c optional inet ipfirewall +netinet/ipfw/ip_fw_nat.c optional inet ipfirewall_nat netinet/ip_icmp.c optional inet | inet6 netinet/ip_input.c optional inet netinet/ip_ipsec.c optional inet ipsec @@ -3152,33 +3192,6 @@ netncp/ncp_nls.c optional ncp netncp/ncp_rq.c optional ncp netncp/ncp_sock.c optional ncp netncp/ncp_subr.c optional ncp -netpfil/ipfw/dn_heap.c optional inet dummynet -netpfil/ipfw/dn_sched_fifo.c optional inet dummynet -netpfil/ipfw/dn_sched_prio.c optional inet dummynet -netpfil/ipfw/dn_sched_qfq.c optional inet dummynet -netpfil/ipfw/dn_sched_rr.c optional inet dummynet -netpfil/ipfw/dn_sched_wf2q.c optional inet dummynet -netpfil/ipfw/ip_dummynet.c optional inet dummynet -netpfil/ipfw/ip_dn_io.c optional inet dummynet -netpfil/ipfw/ip_dn_glue.c optional inet dummynet -netpfil/ipfw/ip_fw2.c optional inet ipfirewall -netpfil/ipfw/ip_fw_dynamic.c optional inet ipfirewall -netpfil/ipfw/ip_fw_log.c optional inet ipfirewall -netpfil/ipfw/ip_fw_pfil.c optional inet ipfirewall -netpfil/ipfw/ip_fw_sockopt.c optional inet ipfirewall -netpfil/ipfw/ip_fw_table.c optional inet ipfirewall -netpfil/ipfw/ip_fw_nat.c optional inet ipfirewall_nat -netpfil/pf/if_pflog.c optional pflog pf inet -netpfil/pf/if_pfsync.c optional pfsync pf inet -netpfil/pf/pf.c optional pf inet -netpfil/pf/pf_if.c optional pf inet -netpfil/pf/pf_ioctl.c optional pf inet -netpfil/pf/pf_lb.c optional pf inet -netpfil/pf/pf_norm.c optional pf inet -netpfil/pf/pf_osfp.c optional pf inet -netpfil/pf/pf_ruleset.c optional pf inet -netpfil/pf/pf_table.c optional pf inet -netpfil/pf/in4_cksum.c optional pf inet netsmb/smb_conn.c optional netsmb netsmb/smb_crypt.c optional netsmb netsmb/smb_dev.c optional netsmb Modified: projects/diffused_head/sys/conf/kern.pre.mk ============================================================================== --- projects/diffused_head/sys/conf/kern.pre.mk Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/conf/kern.pre.mk Tue Nov 27 06:20:40 2012 (r243600) @@ -64,6 +64,9 @@ INCLUDES+= -I$S/contrib/altq # ... and the same for ipfilter INCLUDES+= -I$S/contrib/ipfilter +# ... and the same for pf +INCLUDES+= -I$S/contrib/pf + # ... and the same for ath INCLUDES+= -I$S/dev/ath -I$S/dev/ath/ath_hal Modified: projects/diffused_head/sys/modules/dummynet/Makefile ============================================================================== --- projects/diffused_head/sys/modules/dummynet/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/dummynet/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -2,7 +2,7 @@ .include -.PATH: ${.CURDIR}/../../netpfil/ipfw +.PATH: ${.CURDIR}/../../netinet/ipfw KMOD= dummynet SRCS= ip_dummynet.c SRCS+= ip_dn_glue.c ip_dn_io.c Modified: projects/diffused_head/sys/modules/ipfw/Makefile ============================================================================== --- projects/diffused_head/sys/modules/ipfw/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/ipfw/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -2,7 +2,7 @@ .include -.PATH: ${.CURDIR}/../../netpfil/ipfw +.PATH: ${.CURDIR}/../../netinet/ipfw KMOD= ipfw SRCS= ip_fw2.c ip_fw_pfil.c @@ -11,6 +11,7 @@ SRCS+= ip_fw_sockopt.c ip_fw_table.c SRCS+= opt_inet.h opt_inet6.h opt_ipdivert.h opt_ipfw.h opt_ipsec.h CFLAGS+= -DIPFIREWALL +CFLAGS+= -I${.CURDIR}/../../contrib/pf # #If you want it verbose #CFLAGS+= -DIPFIREWALL_VERBOSE Modified: projects/diffused_head/sys/modules/ipfw_nat/Makefile ============================================================================== --- projects/diffused_head/sys/modules/ipfw_nat/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/ipfw_nat/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -1,6 +1,6 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../netpfil/ipfw +.PATH: ${.CURDIR}/../../netinet/ipfw KMOD= ipfw_nat SRCS= ip_fw_nat.c Modified: projects/diffused_head/sys/modules/pf/Makefile ============================================================================== --- projects/diffused_head/sys/modules/pf/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/pf/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -2,7 +2,8 @@ .include -.PATH: ${.CURDIR}/../../netpfil/pf +.PATH: ${.CURDIR}/../../contrib/pf/net +.PATH: ${.CURDIR}/../../contrib/pf/netinet KMOD= pf SRCS= pf.c pf_if.c pf_lb.c pf_osfp.c pf_ioctl.c pf_norm.c pf_table.c \ @@ -10,6 +11,8 @@ SRCS= pf.c pf_if.c pf_lb.c pf_osfp.c pf_ bus_if.h device_if.h \ opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h opt_global.h +CFLAGS+= -I${.CURDIR}/../../contrib/pf + .if !defined(KERNBUILDDIR) .if ${MK_INET_SUPPORT} != "no" opt_inet.h: Modified: projects/diffused_head/sys/modules/pflog/Makefile ============================================================================== --- projects/diffused_head/sys/modules/pflog/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/pflog/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -2,11 +2,13 @@ .include -.PATH: ${.CURDIR}/../../netpfil/pf +.PATH: ${.CURDIR}/../../contrib/pf/net KMOD= pflog SRCS= if_pflog.c \ opt_pf.h opt_inet.h opt_inet6.h opt_bpf.h + +CFLAGS+= -I${.CURDIR}/../../contrib/pf SRCS+= bus_if.h device_if.h .if defined(KERNBUILDDIR) Modified: projects/diffused_head/sys/modules/pfsync/Makefile ============================================================================== --- projects/diffused_head/sys/modules/pfsync/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/modules/pfsync/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -2,11 +2,13 @@ .include -.PATH: ${.CURDIR}/../../netpfil/pf +.PATH: ${.CURDIR}/../../contrib/pf/net KMOD= pfsync SRCS= if_pfsync.c \ opt_pf.h opt_inet.h opt_inet6.h + +CFLAGS+= -I${.CURDIR}/../../contrib/pf SRCS+= bus_if.h device_if.h .if defined(KERNBUILDDIR) Modified: projects/diffused_head/sys/netgraph/ng_ipfw.c ============================================================================== --- projects/diffused_head/sys/netgraph/ng_ipfw.c Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/sys/netgraph/ng_ipfw.c Tue Nov 27 06:20:40 2012 (r243600) @@ -48,12 +48,11 @@ #include #include #include +#include #include #include #include -#include - #include #include #include Modified: projects/diffused_head/usr.sbin/authpf/Makefile ============================================================================== --- projects/diffused_head/usr.sbin/authpf/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/usr.sbin/authpf/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -1,6 +1,7 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../../contrib/pf/authpf +.PATH: ${.CURDIR}/../../contrib/pf/pfctl PROG= authpf MAN= authpf.8 @@ -10,6 +11,8 @@ BINMODE= 6555 SRCS= authpf.c +CFLAGS+= -I${.CURDIR}/../../contrib/pf/pfctl + # XXX ALTQ: CFLAGS+= -DENABLE_ALTQ Modified: projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile ============================================================================== --- projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile Tue Nov 27 06:07:58 2012 (r243599) +++ projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile Tue Nov 27 06:20:40 2012 (r243600) @@ -8,6 +8,7 @@ MAN= ftp-proxy.8 SRCS= ftp-proxy.c filter.c CFLAGS+= -I${.CURDIR}/../../../contrib/pf/libevent +CFLAGS+= -I${.CURDIR}/../../../sys/contrib/pf LDADD+= ${LIBEVENT} DPADD+= ${LIBEVENT} From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 18:38:54 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C4CACFDB; Tue, 27 Nov 2012 18:38:54 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9E5618FC12; Tue, 27 Nov 2012 18:38:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qARIcs46030617; Tue, 27 Nov 2012 18:38:54 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qARIcrEt030587; Tue, 27 Nov 2012 18:38:53 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201211271838.qARIcrEt030587@svn.freebsd.org> From: Alexander Motin Date: Tue, 27 Nov 2012 18:38:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243619 - in projects/zfsd/head: . bin/cat bin/cp bin/date bin/dd bin/getfacl bin/ls bin/mv bin/ps bin/rm bin/setfacl bin/sh bin/stty cddl/contrib/dtracetoolkit cddl/contrib/opensolaris... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 18:38:54 -0000 Author: mav Date: Tue Nov 27 18:38:50 2012 New Revision: 243619 URL: http://svnweb.freebsd.org/changeset/base/243619 Log: MFC @ r241285 Added: projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/include/ - copied from r241285, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/include/ projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.libdepsepdir.ksh - copied unchanged from r241285, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/pragma/tst.libdepsepdir.ksh projects/zfsd/head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sizeof/err.D_SIZEOF_TYPE.badstruct.d - copied unchanged from r241285, head/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/sizeof/err.D_SIZEOF_TYPE.badstruct.d - copied from r241285, head/contrib/atf/ projects/zfsd/head/contrib/bmake/ - copied from r241285, head/contrib/bmake/ projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_idivmod.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_idivmod.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_ldivmod.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_ldivmod.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_memcmp.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_memcmp.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_memcpy.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_memcpy.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_memmove.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_memmove.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_memset.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_memset.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_uidivmod.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_uidivmod.S projects/zfsd/head/contrib/compiler-rt/lib/arm/aeabi_uldivmod.S - copied unchanged from r241285, head/contrib/compiler-rt/lib/arm/aeabi_uldivmod.S projects/zfsd/head/contrib/compiler-rt/lib/atomic.c - copied unchanged from r241285, head/contrib/compiler-rt/lib/atomic.c projects/zfsd/head/contrib/dtc/dtdiff - copied unchanged from r241285, head/contrib/dtc/dtdiff projects/zfsd/head/contrib/dtc/fdtdump.c - copied unchanged from r241285, head/contrib/dtc/fdtdump.c projects/zfsd/head/contrib/dtc/fdtget.c - copied unchanged from r241285, head/contrib/dtc/fdtget.c projects/zfsd/head/contrib/dtc/fdtput.c - copied unchanged from r241285, head/contrib/dtc/fdtput.c projects/zfsd/head/contrib/dtc/libfdt/fdt_empty_tree.c - copied unchanged from r241285, head/contrib/dtc/libfdt/fdt_empty_tree.c projects/zfsd/head/contrib/libarchive/libarchive/archive_getdate.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_getdate.c projects/zfsd/head/contrib/libarchive/libarchive/archive_match.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_match.c projects/zfsd/head/contrib/libarchive/libarchive/archive_pathmatch.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_pathmatch.c projects/zfsd/head/contrib/libarchive/libarchive/archive_pathmatch.h - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_pathmatch.h projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_write_add_filter.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_disk_acl.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/archive_write_disk_acl.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_acl_freebsd_nfs4.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_acl_freebsd_nfs4.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_acl_freebsd_posix1e.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_acl_freebsd_posix1e.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_getdate.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_archive_getdate.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_match_owner.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_archive_match_owner.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_match_path.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_archive_match_path.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_match_time.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_archive_match_time.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_pathmatch.c - copied unchanged from r241285, head/contrib/libarchive/libarchive/test/test_archive_pathmatch.c projects/zfsd/head/contrib/libarchive/tar/test/test_format_newc.c - copied unchanged from r241285, head/contrib/libarchive/tar/test/test_format_newc.c projects/zfsd/head/contrib/libarchive/tar/test/test_option_nodump.c - copied unchanged from r241285, head/contrib/libarchive/tar/test/test_option_nodump.c projects/zfsd/head/contrib/libpcap/pcap-canusb-linux.c - copied unchanged from r241285, head/contrib/libpcap/pcap-canusb-linux.c projects/zfsd/head/contrib/libpcap/pcap-canusb-linux.h - copied unchanged from r241285, head/contrib/libpcap/pcap-canusb-linux.h projects/zfsd/head/contrib/libpcap/tests/ - copied from r241285, head/contrib/libpcap/tests/ projects/zfsd/head/contrib/llvm/include/llvm-c/Linker.h - copied unchanged from r241285, head/contrib/llvm/include/llvm-c/Linker.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Analysis/LoopInfoImpl.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/CodeGen/RegisterClassInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/CodeGen/RegisterPressure.h projects/zfsd/head/contrib/llvm/include/llvm/DIBuilder.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/DIBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/DebugInfo.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/DebugInfo.h projects/zfsd/head/contrib/llvm/include/llvm/IRBuilder.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/IRBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/IntrinsicsMips.td - copied unchanged from r241285, head/contrib/llvm/include/llvm/IntrinsicsMips.td projects/zfsd/head/contrib/llvm/include/llvm/IntrinsicsNVVM.td - copied unchanged from r241285, head/contrib/llvm/include/llvm/IntrinsicsNVVM.td projects/zfsd/head/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/MC/MCFixedLenDisassembler.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCSchedule.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/MC/MCSchedule.h projects/zfsd/head/contrib/llvm/include/llvm/MDBuilder.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/MDBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/Support/FileOutputBuffer.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Support/FileOutputBuffer.h projects/zfsd/head/contrib/llvm/include/llvm/Support/IntegersSubset.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Support/IntegersSubset.h projects/zfsd/head/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Support/IntegersSubsetMapping.h projects/zfsd/head/contrib/llvm/include/llvm/Support/LEB128.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Support/LEB128.h projects/zfsd/head/contrib/llvm/include/llvm/TableGen/StringMatcher.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/TableGen/StringMatcher.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetItinerary.td - copied unchanged from r241285, head/contrib/llvm/include/llvm/Target/TargetItinerary.td projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/Transforms/Utils/CodeExtractor.h projects/zfsd/head/contrib/llvm/include/llvm/TypeBuilder.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/TypeBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/TypeFinder.h - copied unchanged from r241285, head/contrib/llvm/include/llvm/TypeFinder.h projects/zfsd/head/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/EarlyIfConversion.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/LiveRegMatrix.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveRegMatrix.h - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/LiveRegMatrix.h projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/MachineTraceMetrics.h projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterPressure.cpp - copied unchanged from r241285, head/contrib/llvm/lib/CodeGen/RegisterPressure.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCRegisterInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/MC/MCRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Support/FileOutputBuffer.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Support/FileOutputBuffer.cpp projects/zfsd/head/contrib/llvm/lib/TableGen/StringMatcher.cpp - copied unchanged from r241285, head/contrib/llvm/lib/TableGen/StringMatcher.cpp projects/zfsd/head/contrib/llvm/lib/Target/AMDGPU/ - copied from r241285, head/contrib/llvm/lib/Target/AMDGPU/ projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td - copied unchanged from r241285, head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV5.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td - copied unchanged from r241285, head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Hexagon/HexagonMCInst.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16FrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16InstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16InstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/Mips16RegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsLongBranch.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSEFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSEInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h - copied unchanged from r241285, head/contrib/llvm/lib/Target/Mips/MipsSERegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/NVPTX/ - copied from r241285, head/contrib/llvm/lib/Target/NVPTX/ projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp - copied unchanged from r241285, head/contrib/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/DIBuilder.cpp - copied unchanged from r241285, head/contrib/llvm/lib/VMCore/DIBuilder.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/DebugInfo.cpp - copied unchanged from r241285, head/contrib/llvm/lib/VMCore/DebugInfo.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/TypeFinder.cpp - copied unchanged from r241285, head/contrib/llvm/lib/VMCore/TypeFinder.cpp projects/zfsd/head/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang-c/CXString.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang-c/CXString.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang-c/Platform.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang-c/Platform.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Comment.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/Comment.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentBriefParser.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentLexer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentParser.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentSema.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/CommentVisitor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/AST/RawCommentList.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ - copied from r241285, head/contrib/llvm/tools/clang/include/clang/ASTMatchers/ projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/CommentNodes.td - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Basic/CommentNodes.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Tooling/CommandLineClangTool.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Comment.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/Comment.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentBriefParser.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentDumper.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentLexer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentParser.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/CommentSema.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/AST/RawCommentList.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ASTMatchers/ - copied from r241285, head/contrib/llvm/tools/clang/lib/ASTMatchers/ projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Basic/ConvertUTFWrapper.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/ammintrin.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Headers/ammintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Headers/fmaintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/xopintrin.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Headers/xopintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Rewrite/InclusionRewriter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Tooling/CommandLineClangTool.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Tooling/CustomCompilationDatabase.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Tooling/Refactoring.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp - copied unchanged from r241285, head/contrib/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h - copied unchanged from r241285, head/contrib/llvm/tools/clang/utils/TableGen/TableGenBackends.h projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp - copied unchanged from r241285, head/contrib/llvm/utils/TableGen/CodeGenSchedule.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenSchedule.h - copied unchanged from r241285, head/contrib/llvm/utils/TableGen/CodeGenSchedule.h projects/zfsd/head/contrib/llvm/utils/TableGen/TableGenBackends.h - copied unchanged from r241285, head/contrib/llvm/utils/TableGen/TableGenBackends.h projects/zfsd/head/contrib/tcpdump/print-pfsync.c - copied unchanged from r241285, head/contrib/tcpdump/print-pfsync.c projects/zfsd/head/contrib/tcpdump/print-tipc.c - copied unchanged from r241285, head/contrib/tcpdump/print-tipc.c projects/zfsd/head/etc/rc.d/postrandom - copied unchanged from r241285, head/etc/rc.d/postrandom projects/zfsd/head/lib/clang/include/MipsGenDisassemblerTables.inc - copied unchanged from r241285, head/lib/clang/include/MipsGenDisassemblerTables.inc projects/zfsd/head/lib/clang/include/MipsGenEDInfo.inc - copied unchanged from r241285, head/lib/clang/include/MipsGenEDInfo.inc projects/zfsd/head/lib/clang/include/clang/AST/CommentNodes.inc - copied unchanged from r241285, head/lib/clang/include/clang/AST/CommentNodes.inc projects/zfsd/head/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc - copied unchanged from r241285, head/lib/clang/include/clang/Basic/DiagnosticCommentKinds.inc projects/zfsd/head/lib/clang/libllvmmipsdisassembler/ - copied from r241285, head/lib/clang/libllvmmipsdisassembler/ projects/zfsd/head/lib/libc/gen/auxv.c - copied unchanged from r241285, head/lib/libc/gen/auxv.c projects/zfsd/head/lib/libc/gen/clock_getcpuclockid.3 - copied unchanged from r241285, head/lib/libc/gen/clock_getcpuclockid.3 projects/zfsd/head/lib/libc/gen/clock_getcpuclockid.c - copied unchanged from r241285, head/lib/libc/gen/clock_getcpuclockid.c projects/zfsd/head/lib/libc/locale/iswalnum_l.3 - copied unchanged from r241285, head/lib/libc/locale/iswalnum_l.3 projects/zfsd/head/lib/libpmc/pmc.ivybridge.3 - copied unchanged from r241285, head/lib/libpmc/pmc.ivybridge.3 projects/zfsd/head/lib/msun/ld128/s_expl.c - copied unchanged from r241285, head/lib/msun/ld128/s_expl.c projects/zfsd/head/lib/msun/ld80/s_expl.c - copied unchanged from r241285, head/lib/msun/ld80/s_expl.c projects/zfsd/head/release/doc/de_DE.ISO8859-1/early-adopter/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/early-adopter/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/errata/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/errata/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/install.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/install.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/layout.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/layout.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/i386/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/i386/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/readme/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/readme/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml - copied unchanged from r241285, head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml projects/zfsd/head/release/doc/de_DE.ISO8859-1/share/xml/ - copied from r241285, head/release/doc/de_DE.ISO8859-1/share/xml/ projects/zfsd/head/release/doc/en_US.ISO8859-1/errata/article.xml - copied unchanged from r241285, head/release/doc/en_US.ISO8859-1/errata/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/hardware/article.xml - copied unchanged from r241285, head/release/doc/en_US.ISO8859-1/hardware/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/readme/article.xml - copied unchanged from r241285, head/release/doc/en_US.ISO8859-1/readme/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/relnotes/article.xml - copied unchanged from r241285, head/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/zfsd/head/release/doc/en_US.ISO8859-1/share/xml/ - copied from r241285, head/release/doc/en_US.ISO8859-1/share/xml/ projects/zfsd/head/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/errata/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/errata/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/install.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/install.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r241285, head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/share/xml/ - copied from r241285, head/release/doc/fr_FR.ISO8859-1/share/xml/ projects/zfsd/head/release/doc/ja_JP.eucJP/errata/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/errata/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/alpha/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/alpha/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/amd64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/amd64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/artheader.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/common/artheader.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/dev.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/common/dev.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/intro.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/common/intro.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/i386/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/i386/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/ia64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/ia64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/pc98/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/pc98/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/common/new.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/common/new.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/i386/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/i386/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml - copied unchanged from r241285, head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml projects/zfsd/head/release/doc/ja_JP.eucJP/share/xml/ - copied from r241285, head/release/doc/ja_JP.eucJP/share/xml/ projects/zfsd/head/release/doc/ru_RU.KOI8-R/errata/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/errata/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/install.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/install.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/layout.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/layout.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/i386/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/i386/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/readme/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/readme/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml - copied unchanged from r241285, head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml projects/zfsd/head/release/doc/ru_RU.KOI8-R/share/xml/ - copied from r241285, head/release/doc/ru_RU.KOI8-R/share/xml/ projects/zfsd/head/release/doc/share/xml/ - copied from r241285, head/release/doc/share/xml/ projects/zfsd/head/release/doc/zh_CN.GB2312/errata/article.xml - copied unchanged from r241285, head/release/doc/zh_CN.GB2312/errata/article.xml projects/zfsd/head/release/doc/zh_CN.GB2312/hardware/article.xml - copied unchanged from r241285, head/release/doc/zh_CN.GB2312/hardware/article.xml projects/zfsd/head/release/doc/zh_CN.GB2312/readme/article.xml - copied unchanged from r241285, head/release/doc/zh_CN.GB2312/readme/article.xml projects/zfsd/head/release/doc/zh_CN.GB2312/relnotes/article.xml - copied unchanged from r241285, head/release/doc/zh_CN.GB2312/relnotes/article.xml projects/zfsd/head/release/doc/zh_CN.GB2312/share/xml/ - copied from r241285, head/release/doc/zh_CN.GB2312/share/xml/ projects/zfsd/head/sbin/nvmecontrol/ - copied from r241285, head/sbin/nvmecontrol/ projects/zfsd/head/sbin/pfctl/parse.y - copied unchanged from r241285, head/sbin/pfctl/parse.y projects/zfsd/head/sbin/pfctl/pf_print_state.c - copied unchanged from r241285, head/sbin/pfctl/pf_print_state.c projects/zfsd/head/sbin/pfctl/pfctl.8 - copied unchanged from r241285, head/sbin/pfctl/pfctl.8 projects/zfsd/head/sbin/pfctl/pfctl.c - copied unchanged from r241285, head/sbin/pfctl/pfctl.c projects/zfsd/head/sbin/pfctl/pfctl.h - copied unchanged from r241285, head/sbin/pfctl/pfctl.h projects/zfsd/head/sbin/pfctl/pfctl_altq.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_altq.c projects/zfsd/head/sbin/pfctl/pfctl_optimize.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_optimize.c projects/zfsd/head/sbin/pfctl/pfctl_osfp.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_osfp.c projects/zfsd/head/sbin/pfctl/pfctl_parser.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_parser.c projects/zfsd/head/sbin/pfctl/pfctl_parser.h - copied unchanged from r241285, head/sbin/pfctl/pfctl_parser.h projects/zfsd/head/sbin/pfctl/pfctl_qstats.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_qstats.c projects/zfsd/head/sbin/pfctl/pfctl_radix.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_radix.c projects/zfsd/head/sbin/pfctl/pfctl_table.c - copied unchanged from r241285, head/sbin/pfctl/pfctl_table.c projects/zfsd/head/share/dtrace/hotopen - copied unchanged from r241285, head/share/dtrace/hotopen projects/zfsd/head/share/dtrace/nfsattrstats - copied unchanged from r241285, head/share/dtrace/nfsattrstats projects/zfsd/head/share/examples/libusb20/ - copied from r241285, head/share/examples/libusb20/ projects/zfsd/head/share/man/man3/pthread_getcpuclockid.3 - copied unchanged from r241285, head/share/man/man3/pthread_getcpuclockid.3 projects/zfsd/head/share/man/man4/altera_avgen.4 - copied unchanged from r241285, head/share/man/man4/altera_avgen.4 projects/zfsd/head/share/man/man4/altera_jtag_uart.4 - copied unchanged from r241285, head/share/man/man4/altera_jtag_uart.4 projects/zfsd/head/share/man/man4/altera_sdcard.4 - copied unchanged from r241285, head/share/man/man4/altera_sdcard.4 projects/zfsd/head/share/man/man4/aout.4 - copied unchanged from r241285, head/share/man/man4/aout.4 projects/zfsd/head/share/man/man4/isf.4 - copied unchanged from r241285, head/share/man/man4/isf.4 projects/zfsd/head/share/man/man4/pf.4 - copied unchanged from r241285, head/share/man/man4/pf.4 projects/zfsd/head/share/man/man4/pflog.4 - copied unchanged from r241285, head/share/man/man4/pflog.4 projects/zfsd/head/share/man/man4/pfsync.4 - copied unchanged from r241285, head/share/man/man4/pfsync.4 projects/zfsd/head/share/man/man4/terasic_mtl.4 - copied unchanged from r241285, head/share/man/man4/terasic_mtl.4 projects/zfsd/head/share/man/man4/vale.4 - copied unchanged from r241285, head/share/man/man4/vale.4 projects/zfsd/head/share/man/man5/pf.conf.5 - copied unchanged from r241285, head/share/man/man5/pf.conf.5 projects/zfsd/head/share/man/man5/pf.os.5 - copied unchanged from r241285, head/share/man/man5/pf.os.5 projects/zfsd/head/share/man/man9/BUS_CHILD_DELETED.9 - copied unchanged from r241285, head/share/man/man9/BUS_CHILD_DELETED.9 projects/zfsd/head/share/man/man9/BUS_CHILD_DETACHED.9 - copied unchanged from r241285, head/share/man/man9/BUS_CHILD_DETACHED.9 projects/zfsd/head/share/mk/bsd.compiler.mk - copied unchanged from r241285, head/share/mk/bsd.compiler.mk projects/zfsd/head/sys/arm/arm/busdma_machdep-v6.c - copied unchanged from r241285, head/sys/arm/arm/busdma_machdep-v6.c projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv6.S - copied unchanged from r241285, head/sys/arm/arm/cpufunc_asm_armv6.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv7.S - copied unchanged from r241285, head/sys/arm/arm/cpufunc_asm_armv7.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_pj4b.S - copied unchanged from r241285, head/sys/arm/arm/cpufunc_asm_pj4b.S projects/zfsd/head/sys/arm/arm/gic.c - copied unchanged from r241285, head/sys/arm/arm/gic.c projects/zfsd/head/sys/arm/arm/mp_machdep.c - copied unchanged from r241285, head/sys/arm/arm/mp_machdep.c projects/zfsd/head/sys/arm/arm/mpcore_timer.c - copied unchanged from r241285, head/sys/arm/arm/mpcore_timer.c projects/zfsd/head/sys/arm/arm/pl310.c - copied unchanged from r241285, head/sys/arm/arm/pl310.c projects/zfsd/head/sys/arm/arm/pmap-v6.c - copied unchanged from r241285, head/sys/arm/arm/pmap-v6.c projects/zfsd/head/sys/arm/arm/sc_machdep.c - copied unchanged from r241285, head/sys/arm/arm/sc_machdep.c projects/zfsd/head/sys/arm/arm/vfp.c - copied unchanged from r241285, head/sys/arm/arm/vfp.c projects/zfsd/head/sys/arm/at91/at91_pio_sam9g45.h - copied unchanged from r241285, head/sys/arm/at91/at91_pio_sam9g45.h projects/zfsd/head/sys/arm/at91/at91rm9200_devices.c - copied unchanged from r241285, head/sys/arm/at91/at91rm9200_devices.c projects/zfsd/head/sys/arm/at91/at91rm9200var.h - copied unchanged from r241285, head/sys/arm/at91/at91rm9200var.h projects/zfsd/head/sys/arm/at91/at91sam9g45.c - copied unchanged from r241285, head/sys/arm/at91/at91sam9g45.c projects/zfsd/head/sys/arm/at91/at91sam9g45reg.h - copied unchanged from r241285, head/sys/arm/at91/at91sam9g45reg.h projects/zfsd/head/sys/arm/at91/at91sam9x5.c - copied unchanged from r241285, head/sys/arm/at91/at91sam9x5.c projects/zfsd/head/sys/arm/at91/at91sam9x5reg.h - copied unchanged from r241285, head/sys/arm/at91/at91sam9x5reg.h projects/zfsd/head/sys/arm/at91/board_eb9200.c - copied unchanged from r241285, head/sys/arm/at91/board_eb9200.c projects/zfsd/head/sys/arm/at91/board_sam9260ek.c - copied unchanged from r241285, head/sys/arm/at91/board_sam9260ek.c projects/zfsd/head/sys/arm/at91/board_sn9g45.c - copied unchanged from r241285, head/sys/arm/at91/board_sn9g45.c projects/zfsd/head/sys/arm/at91/std.at91sam9g45 - copied unchanged from r241285, head/sys/arm/at91/std.at91sam9g45 projects/zfsd/head/sys/arm/at91/std.eb9200 - copied unchanged from r241285, head/sys/arm/at91/std.eb9200 projects/zfsd/head/sys/arm/at91/std.sam9260ek - copied unchanged from r241285, head/sys/arm/at91/std.sam9260ek projects/zfsd/head/sys/arm/at91/std.sn9g45 - copied unchanged from r241285, head/sys/arm/at91/std.sn9g45 projects/zfsd/head/sys/arm/broadcom/ - copied from r241285, head/sys/arm/broadcom/ projects/zfsd/head/sys/arm/conf/AC100 - copied unchanged from r241285, head/sys/arm/conf/AC100 projects/zfsd/head/sys/arm/conf/ARMADAXP - copied unchanged from r241285, head/sys/arm/conf/ARMADAXP projects/zfsd/head/sys/arm/conf/BEAGLEBONE - copied unchanged from r241285, head/sys/arm/conf/BEAGLEBONE projects/zfsd/head/sys/arm/conf/EA3250 - copied unchanged from r241285, head/sys/arm/conf/EA3250 projects/zfsd/head/sys/arm/conf/EA3250.hints - copied unchanged from r241285, head/sys/arm/conf/EA3250.hints projects/zfsd/head/sys/arm/conf/EB9200 - copied unchanged from r241285, head/sys/arm/conf/EB9200 projects/zfsd/head/sys/arm/conf/EB9200.hints - copied unchanged from r241285, head/sys/arm/conf/EB9200.hints projects/zfsd/head/sys/arm/conf/PANDABOARD - copied unchanged from r241285, head/sys/arm/conf/PANDABOARD projects/zfsd/head/sys/arm/conf/PANDABOARD.hints - copied unchanged from r241285, head/sys/arm/conf/PANDABOARD.hints projects/zfsd/head/sys/arm/conf/RPI-B - copied unchanged from r241285, head/sys/arm/conf/RPI-B projects/zfsd/head/sys/arm/conf/SAM9260EK - copied unchanged from r241285, head/sys/arm/conf/SAM9260EK projects/zfsd/head/sys/arm/conf/SAM9260EK.hints - copied unchanged from r241285, head/sys/arm/conf/SAM9260EK.hints projects/zfsd/head/sys/arm/conf/SN9G45 - copied unchanged from r241285, head/sys/arm/conf/SN9G45 projects/zfsd/head/sys/arm/include/pl310.h - copied unchanged from r241285, head/sys/arm/include/pl310.h projects/zfsd/head/sys/arm/include/sc_machdep.h - copied unchanged from r241285, head/sys/arm/include/sc_machdep.h projects/zfsd/head/sys/arm/include/vfp.h - copied unchanged from r241285, head/sys/arm/include/vfp.h projects/zfsd/head/sys/arm/lpc/ - copied from r241285, head/sys/arm/lpc/ projects/zfsd/head/sys/arm/mv/armadaxp/ - copied from r241285, head/sys/arm/mv/armadaxp/ projects/zfsd/head/sys/arm/mv/mpic.c - copied unchanged from r241285, head/sys/arm/mv/mpic.c projects/zfsd/head/sys/arm/mv/mv_ts.c - copied unchanged from r241285, head/sys/arm/mv/mv_ts.c projects/zfsd/head/sys/arm/mv/std-pj4b.mv - copied unchanged from r241285, head/sys/arm/mv/std-pj4b.mv projects/zfsd/head/sys/arm/tegra/ - copied from r241285, head/sys/arm/tegra/ projects/zfsd/head/sys/arm/ti/ - copied from r241285, head/sys/arm/ti/ projects/zfsd/head/sys/arm/xscale/std.xscale-be - copied unchanged from r241285, head/sys/arm/xscale/std.xscale-be projects/zfsd/head/sys/boot/common/part.c - copied unchanged from r241285, head/sys/boot/common/part.c projects/zfsd/head/sys/boot/common/part.h - copied unchanged from r241285, head/sys/boot/common/part.h projects/zfsd/head/sys/boot/fdt/dts/bcm2835-rpi-b.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/zfsd/head/sys/boot/fdt/dts/beaglebone.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/beaglebone.dts projects/zfsd/head/sys/boot/fdt/dts/db78460.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/db78460.dts projects/zfsd/head/sys/boot/fdt/dts/ea3250.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/ea3250.dts projects/zfsd/head/sys/boot/fdt/dts/pandaboard.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/pandaboard.dts projects/zfsd/head/sys/boot/fdt/dts/tegra20-paz00.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/tegra20-paz00.dts projects/zfsd/head/sys/boot/fdt/dts/tegra20.dtsi - copied unchanged from r241285, head/sys/boot/fdt/dts/tegra20.dtsi projects/zfsd/head/sys/boot/fdt/dts/trimslice.dts - copied unchanged from r241285, head/sys/boot/fdt/dts/trimslice.dts projects/zfsd/head/sys/cddl/compat/opensolaris/sys/assfail.h - copied unchanged from r241285, head/sys/cddl/compat/opensolaris/sys/assfail.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h - copied unchanged from r241285, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c - copied unchanged from r241285, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxfinit.c - copied unchanged from r241285, head/sys/contrib/dev/acpica/components/utilities/utxfinit.c projects/zfsd/head/sys/contrib/dev/acpica/include/acbuffer.h - copied unchanged from r241285, head/sys/contrib/dev/acpica/include/acbuffer.h projects/zfsd/head/sys/contrib/libfdt/fdt_empty_tree.c - copied unchanged from r241285, head/sys/contrib/libfdt/fdt_empty_tree.c projects/zfsd/head/sys/dev/ahci/ahciem.c - copied unchanged from r241285, head/sys/dev/ahci/ahciem.c projects/zfsd/head/sys/dev/altera/ - copied from r241285, head/sys/dev/altera/ projects/zfsd/head/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h - copied unchanged from r241285, head/sys/dev/ath/ath_hal/ar9003/ar9300_devid.h projects/zfsd/head/sys/dev/ath/if_ath_tx_edma.c - copied unchanged from r241285, head/sys/dev/ath/if_ath_tx_edma.c projects/zfsd/head/sys/dev/ath/if_ath_tx_edma.h - copied unchanged from r241285, head/sys/dev/ath/if_ath_tx_edma.h projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw-1.6.2.0.bin.uu - copied unchanged from r241285, head/sys/dev/cxgbe/firmware/t4fw-1.6.2.0.bin.uu projects/zfsd/head/sys/dev/cxgbe/tom/t4_ddp.c - copied unchanged from r241285, head/sys/dev/cxgbe/tom/t4_ddp.c projects/zfsd/head/sys/dev/drm2/drm_ioc32.c - copied unchanged from r241285, head/sys/dev/drm2/drm_ioc32.c projects/zfsd/head/sys/dev/drm2/i915/i915_ioc32.c - copied unchanged from r241285, head/sys/dev/drm2/i915/i915_ioc32.c projects/zfsd/head/sys/dev/iicbus/ds1631.c - copied unchanged from r241285, head/sys/dev/iicbus/ds1631.c projects/zfsd/head/sys/dev/iicbus/s35390a.c - copied unchanged from r241285, head/sys/dev/iicbus/s35390a.c projects/zfsd/head/sys/dev/isf/ - copied from r241285, head/sys/dev/isf/ projects/zfsd/head/sys/dev/mii/smscphy.c - copied unchanged from r241285, head/sys/dev/mii/smscphy.c projects/zfsd/head/sys/dev/nvd/ - copied from r241285, head/sys/dev/nvd/ projects/zfsd/head/sys/dev/nvme/ - copied from r241285, head/sys/dev/nvme/ projects/zfsd/head/sys/dev/random/ivy.c - copied unchanged from r241285, head/sys/dev/random/ivy.c projects/zfsd/head/sys/dev/sound/macio/onyx.c - copied unchanged from r241285, head/sys/dev/sound/macio/onyx.c projects/zfsd/head/sys/dev/terasic/ - copied from r241285, head/sys/dev/terasic/ projects/zfsd/head/sys/dev/uart/uart_dev_lpc.c - copied unchanged from r241285, head/sys/dev/uart/uart_dev_lpc.c projects/zfsd/head/sys/dev/uart/uart_dev_pl011.c - copied unchanged from r241285, head/sys/dev/uart/uart_dev_pl011.c projects/zfsd/head/sys/dev/usb/controller/dwc_otgreg.h - copied unchanged from r241285, head/sys/dev/usb/controller/dwc_otgreg.h projects/zfsd/head/sys/dev/usb/net/if_smsc.c - copied unchanged from r241285, head/sys/dev/usb/net/if_smsc.c projects/zfsd/head/sys/dev/usb/net/if_smscreg.h - copied unchanged from r241285, head/sys/dev/usb/net/if_smscreg.h projects/zfsd/head/sys/libkern/jenkins_hash.c - copied unchanged from r241285, head/sys/libkern/jenkins_hash.c projects/zfsd/head/sys/mips/beri/ - copied from r241285, head/sys/mips/beri/ projects/zfsd/head/sys/mips/conf/AP91 - copied unchanged from r241285, head/sys/mips/conf/AP91 projects/zfsd/head/sys/mips/conf/AP91.hints - copied unchanged from r241285, head/sys/mips/conf/AP91.hints projects/zfsd/head/sys/mips/conf/AR724X_BASE - copied unchanged from r241285, head/sys/mips/conf/AR724X_BASE projects/zfsd/head/sys/mips/conf/AR724X_BASE.hints - copied unchanged from r241285, head/sys/mips/conf/AR724X_BASE.hints projects/zfsd/head/sys/mips/conf/BERI_DE4.hints - copied unchanged from r241285, head/sys/mips/conf/BERI_DE4.hints projects/zfsd/head/sys/mips/conf/BERI_DE4_MDROOT - copied unchanged from r241285, head/sys/mips/conf/BERI_DE4_MDROOT projects/zfsd/head/sys/mips/conf/BERI_DE4_SDROOT - copied unchanged from r241285, head/sys/mips/conf/BERI_DE4_SDROOT projects/zfsd/head/sys/mips/conf/BERI_SIM.hints - copied unchanged from r241285, head/sys/mips/conf/BERI_SIM.hints projects/zfsd/head/sys/mips/conf/BERI_SIM_MDROOT - copied unchanged from r241285, head/sys/mips/conf/BERI_SIM_MDROOT projects/zfsd/head/sys/mips/conf/BERI_TEMPLATE - copied unchanged from r241285, head/sys/mips/conf/BERI_TEMPLATE projects/zfsd/head/sys/mips/conf/BERI_TPAD.hints - copied unchanged from r241285, head/sys/mips/conf/BERI_TPAD.hints projects/zfsd/head/sys/mips/conf/DIR-825 - copied unchanged from r241285, head/sys/mips/conf/DIR-825 projects/zfsd/head/sys/mips/conf/DIR-825.hints - copied unchanged from r241285, head/sys/mips/conf/DIR-825.hints projects/zfsd/head/sys/mips/include/sc_machdep.h - copied unchanged from r241285, head/sys/mips/include/sc_machdep.h projects/zfsd/head/sys/mips/mips/sc_machdep.c - copied unchanged from r241285, head/sys/mips/mips/sc_machdep.c projects/zfsd/head/sys/modules/cpsw/ - copied from r241285, head/sys/modules/cpsw/ projects/zfsd/head/sys/modules/ct/ - copied from r241285, head/sys/modules/ct/ projects/zfsd/head/sys/modules/nvd/ - copied from r241285, head/sys/modules/nvd/ projects/zfsd/head/sys/modules/nvme/ - copied from r241285, head/sys/modules/nvme/ projects/zfsd/head/sys/modules/usb/smsc/ - copied from r241285, head/sys/modules/usb/smsc/ projects/zfsd/head/sys/net/if_pflog.h - copied unchanged from r241285, head/sys/net/if_pflog.h projects/zfsd/head/sys/net/if_pfsync.h - copied unchanged from r241285, head/sys/net/if_pfsync.h projects/zfsd/head/sys/net/pf_mtag.h - copied unchanged from r241285, head/sys/net/pf_mtag.h projects/zfsd/head/sys/net/pfvar.h - copied unchanged from r241285, head/sys/net/pfvar.h projects/zfsd/head/sys/netpfil/ - copied from r241285, head/sys/netpfil/ projects/zfsd/head/sys/powerpc/powermac/nvbl.c - copied unchanged from r241285, head/sys/powerpc/powermac/nvbl.c projects/zfsd/head/sys/powerpc/wii/ - copied from r241285, head/sys/powerpc/wii/ projects/zfsd/head/tools/build/options/WITHOUT_KDUMP - copied unchanged from r241285, head/tools/build/options/WITHOUT_KDUMP projects/zfsd/head/tools/build/options/WITH_BMAKE - copied unchanged from r241285, head/tools/build/options/WITH_BMAKE projects/zfsd/head/tools/build/options/WITH_BSDCONFIG - copied unchanged from r241285, head/tools/build/options/WITH_BSDCONFIG projects/zfsd/head/tools/regression/bin/sh/builtins/local1.0 - copied unchanged from r241285, head/tools/regression/bin/sh/builtins/local1.0 projects/zfsd/head/tools/regression/bin/sh/expansion/export1.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/export1.0 projects/zfsd/head/tools/regression/bin/sh/expansion/export2.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/export2.0 projects/zfsd/head/tools/regression/bin/sh/expansion/export3.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/export3.0 projects/zfsd/head/tools/regression/bin/sh/expansion/local1.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/local1.0 projects/zfsd/head/tools/regression/bin/sh/expansion/local2.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/local2.0 projects/zfsd/head/tools/regression/bin/sh/expansion/readonly1.0 - copied unchanged from r241285, head/tools/regression/bin/sh/expansion/readonly1.0 projects/zfsd/head/tools/regression/bin/sh/parser/alias7.0 - copied unchanged from r241285, head/tools/regression/bin/sh/parser/alias7.0 projects/zfsd/head/tools/regression/bin/sh/parser/alias8.0 - copied unchanged from r241285, head/tools/regression/bin/sh/parser/alias8.0 projects/zfsd/head/tools/regression/lib/libc/gen/test-ftw.c - copied unchanged from r241285, head/tools/regression/lib/libc/gen/test-ftw.c projects/zfsd/head/tools/regression/net/ - copied from r241285, head/tools/regression/net/ projects/zfsd/head/tools/regression/usr.sbin/etcupdate/ - copied from r241285, head/tools/regression/usr.sbin/etcupdate/ projects/zfsd/head/tools/tools/ath/athratestats/ - copied from r241285, head/tools/tools/ath/athratestats/ projects/zfsd/head/tools/tools/bootparttest/ - copied from r241285, head/tools/tools/bootparttest/ projects/zfsd/head/usr.bin/bmake/ - copied from r241285, head/usr.bin/bmake/ projects/zfsd/head/usr.sbin/bsdconfig/ - copied from r241285, head/usr.sbin/bsdconfig/ projects/zfsd/head/usr.sbin/etcupdate/ - copied from r241285, head/usr.sbin/etcupdate/ projects/zfsd/head/usr.sbin/isfctl/ - copied from r241285, head/usr.sbin/isfctl/ projects/zfsd/head/usr.sbin/sysrc/ - copied from r241285, head/usr.sbin/sysrc/ Directory Properties: projects/zfsd/head/contrib/atf/ (props changed) Replaced: projects/zfsd/head/sys/arm/conf/HL201.hints - copied unchanged from r241285, head/sys/arm/conf/HL201.hints Deleted: projects/zfsd/head/contrib/bzip2/Makefile projects/zfsd/head/contrib/bzip2/Makefile-libbz2_so projects/zfsd/head/contrib/bzip2/dlltest.c projects/zfsd/head/contrib/bzip2/makefile.msc projects/zfsd/head/contrib/dtc/Makefile.convert-dtsv0 projects/zfsd/head/contrib/dtc/Makefile.ftdump projects/zfsd/head/contrib/dtc/convert-dtsv0-lexer.l projects/zfsd/head/contrib/dtc/ftdump.c projects/zfsd/head/contrib/libarchive/cpio/test/test_pathmatch.c projects/zfsd/head/contrib/libarchive/libarchive_fe/matching.c projects/zfsd/head/contrib/libarchive/libarchive_fe/matching.h projects/zfsd/head/contrib/libarchive/libarchive_fe/pathmatch.c projects/zfsd/head/contrib/libarchive/libarchive_fe/pathmatch.h projects/zfsd/head/contrib/libarchive/tar/getdate.c projects/zfsd/head/contrib/libarchive/tar/test/test_getdate.c projects/zfsd/head/contrib/libarchive/tar/tree.c projects/zfsd/head/contrib/libarchive/tar/tree.h projects/zfsd/head/contrib/libpcap/net/ projects/zfsd/head/contrib/libpcap/test/ projects/zfsd/head/contrib/llvm/include/llvm/Analysis/DIBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/DebugInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ProcessImplicitDefs.h projects/zfsd/head/contrib/llvm/include/llvm/IntrinsicsPTX.td projects/zfsd/head/contrib/llvm/include/llvm/Support/IRBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/Support/MDBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/Support/TypeBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/FunctionUtils.h projects/zfsd/head/contrib/llvm/lib/Analysis/DIBuilder.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/DebugInfo.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h projects/zfsd/head/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RenderMachineFunction.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/InstPrinter/PTXInstPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXBaseInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCAsmInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/MCTargetDesc/PTXMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTX.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTX.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXFPRoundingModePass.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXInstrLoadStore.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXMCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXParamManager.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXParamManager.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXRegAlloc.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXSelectionDAGInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXSubtarget.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h projects/zfsd/head/contrib/llvm/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPTX.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/CC1Options.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.h projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.h projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.h projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.h projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.h projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.h projects/zfsd/head/contrib/llvm/tools/llvm-ld/ projects/zfsd/head/contrib/llvm/tools/llvm-stub/llvm-stub.c projects/zfsd/head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/AsmWriterEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/CallingConvEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/CodeEmitterGen.h projects/zfsd/head/contrib/llvm/utils/TableGen/DAGISelEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/DisassemblerEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/EDEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/FastISelEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/InstrInfoEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/IntrinsicEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h projects/zfsd/head/contrib/llvm/utils/TableGen/StringMatcher.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/StringMatcher.h projects/zfsd/head/contrib/llvm/utils/TableGen/SubtargetEmitter.h projects/zfsd/head/contrib/pf/man/ projects/zfsd/head/contrib/pf/pfctl/ projects/zfsd/head/crypto/openssh/version.c projects/zfsd/head/gnu/usr.bin/diff/context.c.diff projects/zfsd/head/gnu/usr.bin/diff/diff.c.diff projects/zfsd/head/lib/clang/include/clang/Driver/CC1Options.inc projects/zfsd/head/lib/libc/gen/aux.c projects/zfsd/head/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/errata/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/abstract.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/artheader.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/install.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/layout.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/ia64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/pc98/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/readme/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.sgml projects/zfsd/head/release/doc/de_DE.ISO8859-1/share/sgml/ projects/zfsd/head/release/doc/en_US.ISO8859-1/errata/article.sgml projects/zfsd/head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/zfsd/head/release/doc/en_US.ISO8859-1/readme/article.sgml projects/zfsd/head/release/doc/en_US.ISO8859-1/relnotes/article.sgml projects/zfsd/head/release/doc/en_US.ISO8859-1/share/sgml/ projects/zfsd/head/release/doc/fr_FR.ISO8859-1/early-adopter/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/errata/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/install.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/layout.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/i386/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.sgml projects/zfsd/head/release/doc/fr_FR.ISO8859-1/share/sgml/ projects/zfsd/head/release/doc/ja_JP.eucJP/errata/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/alpha/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/amd64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/artheader.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/dev.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/intro.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/i386/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/ia64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/pc98/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/sparc64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/alpha/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/amd64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/common/new.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/i386/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/ia64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/pc98/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.sgml projects/zfsd/head/release/doc/ja_JP.eucJP/share/sgml/ projects/zfsd/head/release/doc/ru_RU.KOI8-R/errata/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/intro.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/abstract.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/artheader.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/install.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/layout.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/trouble.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/readme/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml projects/zfsd/head/release/doc/ru_RU.KOI8-R/share/sgml/ projects/zfsd/head/release/doc/share/sgml/ projects/zfsd/head/release/doc/zh_CN.GB2312/errata/article.sgml projects/zfsd/head/release/doc/zh_CN.GB2312/hardware/article.sgml projects/zfsd/head/release/doc/zh_CN.GB2312/readme/article.sgml projects/zfsd/head/release/doc/zh_CN.GB2312/relnotes/article.sgml projects/zfsd/head/release/doc/zh_CN.GB2312/share/sgml/ projects/zfsd/head/sbin/pfctl/missing/ projects/zfsd/head/share/examples/cvsup/doc-supfile projects/zfsd/head/share/examples/cvsup/www-supfile projects/zfsd/head/sys/arm/at91/at91_pio_rm9200.h projects/zfsd/head/sys/arm/at91/at91sam9x25.c projects/zfsd/head/sys/arm/at91/at91sam9x25reg.h projects/zfsd/head/sys/arm/at91/hints.at91rm9200 projects/zfsd/head/sys/arm/at91/hints.at91sam9261 projects/zfsd/head/sys/cam/scsi/scsi_low_pisa.c projects/zfsd/head/sys/cam/scsi/scsi_low_pisa.h projects/zfsd/head/sys/compat/netbsd/physio_proc.h projects/zfsd/head/sys/contrib/pf/ projects/zfsd/head/sys/dev/mlx/mlx_compat.h projects/zfsd/head/sys/dev/random/nehemiah.h projects/zfsd/head/sys/ia64/conf/SKI projects/zfsd/head/sys/ia64/ia64/ssc.c projects/zfsd/head/sys/ia64/ia64/sscdisk.c projects/zfsd/head/sys/libkern/jenkins.h projects/zfsd/head/sys/netinet/ipfw/ projects/zfsd/head/sys/sys/device_port.h projects/zfsd/head/sys/vm/vm_contig.c projects/zfsd/head/tools/diag/ac/ projects/zfsd/head/tools/tools/backout_commit/ projects/zfsd/head/tools/tools/mfc/ projects/zfsd/head/usr.bin/clang/llvm-ld/ projects/zfsd/head/usr.bin/clang/llvm-stub/ Modified: projects/zfsd/head/MAINTAINERS (contents, props changed) projects/zfsd/head/Makefile projects/zfsd/head/Makefile.inc1 projects/zfsd/head/ObsoleteFiles.inc projects/zfsd/head/UPDATING projects/zfsd/head/bin/cat/cat.1 projects/zfsd/head/bin/cat/cat.c projects/zfsd/head/bin/cp/cp.1 projects/zfsd/head/bin/date/date.c projects/zfsd/head/bin/dd/dd.c projects/zfsd/head/bin/dd/misc.c projects/zfsd/head/bin/getfacl/getfacl.1 projects/zfsd/head/bin/ls/ls.c projects/zfsd/head/bin/ls/print.c projects/zfsd/head/bin/mv/mv.1 projects/zfsd/head/bin/mv/mv.c projects/zfsd/head/bin/ps/keyword.c projects/zfsd/head/bin/ps/print.c projects/zfsd/head/bin/ps/ps.1 projects/zfsd/head/bin/ps/ps.c projects/zfsd/head/bin/rm/rm.c projects/zfsd/head/bin/setfacl/merge.c projects/zfsd/head/bin/setfacl/setfacl.1 projects/zfsd/head/bin/setfacl/setfacl.c projects/zfsd/head/bin/sh/cd.c projects/zfsd/head/bin/sh/eval.c projects/zfsd/head/bin/sh/exec.c projects/zfsd/head/bin/sh/exec.h projects/zfsd/head/bin/sh/histedit.c projects/zfsd/head/bin/sh/jobs.c projects/zfsd/head/bin/sh/jobs.h projects/zfsd/head/bin/sh/main.c projects/zfsd/head/bin/sh/options.c projects/zfsd/head/bin/sh/sh.1 projects/zfsd/head/bin/sh/trap.c projects/zfsd/head/bin/sh/trap.h projects/zfsd/head/bin/sh/var.c projects/zfsd/head/bin/stty/extern.h projects/zfsd/head/cddl/contrib/dtracetoolkit/execsnoop projects/zfsd/head/cddl/contrib/opensolaris/cmd/zdb/zdb.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zinject/zinject.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_cc.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_parser.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_pragma.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_proc.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_string.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_string.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libuutil/common/uu_misc.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_config.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_sendrecv.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_status.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/zfsd/head/cddl/lib/libdtrace/psinfo.d projects/zfsd/head/cddl/lib/libzfs/Makefile projects/zfsd/head/cddl/lib/libzpool/Makefile projects/zfsd/head/cddl/sbin/zfs/Makefile projects/zfsd/head/cddl/usr.bin/ctfconvert/ctfconvert.1 projects/zfsd/head/cddl/usr.bin/ctfmerge/ctfmerge.1 projects/zfsd/head/cddl/usr.bin/ztest/Makefile projects/zfsd/head/cddl/usr.sbin/dtruss/dtruss.1 projects/zfsd/head/cddl/usr.sbin/plockstat/plockstat.1 projects/zfsd/head/cddl/usr.sbin/zdb/Makefile projects/zfsd/head/cddl/usr.sbin/zhack/Makefile projects/zfsd/head/contrib/bind9/CHANGES projects/zfsd/head/contrib/bind9/lib/dns/include/dns/rdata.h projects/zfsd/head/contrib/bind9/lib/dns/master.c projects/zfsd/head/contrib/bind9/lib/dns/rdata.c projects/zfsd/head/contrib/bind9/lib/dns/rdataslab.c projects/zfsd/head/contrib/bind9/lib/dns/resolver.c projects/zfsd/head/contrib/bind9/lib/dns/zone.c projects/zfsd/head/contrib/bind9/version projects/zfsd/head/contrib/binutils/bfd/config.bfd projects/zfsd/head/contrib/binutils/binutils/readelf.c projects/zfsd/head/contrib/binutils/config.sub projects/zfsd/head/contrib/binutils/gas/config/tc-arm.c projects/zfsd/head/contrib/binutils/include/elf/dwarf2.h projects/zfsd/head/contrib/bsnmp/snmpd/main.c projects/zfsd/head/contrib/bsnmp/snmpd/trans_lsock.c projects/zfsd/head/contrib/bsnmp/snmpd/trans_udp.c projects/zfsd/head/contrib/bsnmp/snmpd/trap.c projects/zfsd/head/contrib/byacc/CHANGES projects/zfsd/head/contrib/byacc/VERSION projects/zfsd/head/contrib/byacc/defs.h projects/zfsd/head/contrib/byacc/lr0.c projects/zfsd/head/contrib/byacc/main.c projects/zfsd/head/contrib/byacc/mkpar.c projects/zfsd/head/contrib/byacc/output.c projects/zfsd/head/contrib/byacc/package/byacc.spec projects/zfsd/head/contrib/byacc/package/debian/changelog projects/zfsd/head/contrib/byacc/reader.c projects/zfsd/head/contrib/byacc/symtab.c projects/zfsd/head/contrib/byacc/verbose.c projects/zfsd/head/contrib/bzip2/FREEBSD-Xlist projects/zfsd/head/contrib/compiler-rt/LICENSE.TXT projects/zfsd/head/contrib/compiler-rt/lib/absvti2.c projects/zfsd/head/contrib/compiler-rt/lib/adddf3.c projects/zfsd/head/contrib/compiler-rt/lib/addsf3.c projects/zfsd/head/contrib/compiler-rt/lib/addvti3.c projects/zfsd/head/contrib/compiler-rt/lib/ashldi3.c projects/zfsd/head/contrib/compiler-rt/lib/ashlti3.c projects/zfsd/head/contrib/compiler-rt/lib/ashrdi3.c projects/zfsd/head/contrib/compiler-rt/lib/ashrti3.c projects/zfsd/head/contrib/compiler-rt/lib/assembly.h projects/zfsd/head/contrib/compiler-rt/lib/clzti2.c projects/zfsd/head/contrib/compiler-rt/lib/cmpti2.c projects/zfsd/head/contrib/compiler-rt/lib/ctzti2.c projects/zfsd/head/contrib/compiler-rt/lib/divdf3.c projects/zfsd/head/contrib/compiler-rt/lib/divmoddi4.c projects/zfsd/head/contrib/compiler-rt/lib/divsf3.c projects/zfsd/head/contrib/compiler-rt/lib/divsi3.c projects/zfsd/head/contrib/compiler-rt/lib/divti3.c projects/zfsd/head/contrib/compiler-rt/lib/extendsfdf2.c projects/zfsd/head/contrib/compiler-rt/lib/ffsti2.c projects/zfsd/head/contrib/compiler-rt/lib/fixdfdi.c projects/zfsd/head/contrib/compiler-rt/lib/fixdfsi.c projects/zfsd/head/contrib/compiler-rt/lib/fixdfti.c projects/zfsd/head/contrib/compiler-rt/lib/fixsfdi.c projects/zfsd/head/contrib/compiler-rt/lib/fixsfsi.c projects/zfsd/head/contrib/compiler-rt/lib/fixsfti.c projects/zfsd/head/contrib/compiler-rt/lib/fixunsdfdi.c projects/zfsd/head/contrib/compiler-rt/lib/fixunsdfsi.c projects/zfsd/head/contrib/compiler-rt/lib/fixunsdfti.c projects/zfsd/head/contrib/compiler-rt/lib/fixunssfdi.c projects/zfsd/head/contrib/compiler-rt/lib/fixunssfsi.c projects/zfsd/head/contrib/compiler-rt/lib/fixunssfti.c projects/zfsd/head/contrib/compiler-rt/lib/fixunsxfti.c projects/zfsd/head/contrib/compiler-rt/lib/fixxfti.c projects/zfsd/head/contrib/compiler-rt/lib/floatdidf.c projects/zfsd/head/contrib/compiler-rt/lib/floatdisf.c projects/zfsd/head/contrib/compiler-rt/lib/floatsidf.c projects/zfsd/head/contrib/compiler-rt/lib/floatsisf.c projects/zfsd/head/contrib/compiler-rt/lib/floattidf.c projects/zfsd/head/contrib/compiler-rt/lib/floattisf.c projects/zfsd/head/contrib/compiler-rt/lib/floattixf.c projects/zfsd/head/contrib/compiler-rt/lib/floatundidf.c projects/zfsd/head/contrib/compiler-rt/lib/floatundisf.c projects/zfsd/head/contrib/compiler-rt/lib/floatunsidf.c projects/zfsd/head/contrib/compiler-rt/lib/floatunsisf.c projects/zfsd/head/contrib/compiler-rt/lib/floatuntidf.c projects/zfsd/head/contrib/compiler-rt/lib/floatuntisf.c projects/zfsd/head/contrib/compiler-rt/lib/floatuntixf.c projects/zfsd/head/contrib/compiler-rt/lib/fp_lib.h projects/zfsd/head/contrib/compiler-rt/lib/int_endianness.h projects/zfsd/head/contrib/compiler-rt/lib/int_util.c projects/zfsd/head/contrib/compiler-rt/lib/int_util.h projects/zfsd/head/contrib/compiler-rt/lib/lshrdi3.c projects/zfsd/head/contrib/compiler-rt/lib/lshrti3.c projects/zfsd/head/contrib/compiler-rt/lib/modti3.c projects/zfsd/head/contrib/compiler-rt/lib/muldf3.c projects/zfsd/head/contrib/compiler-rt/lib/muldi3.c projects/zfsd/head/contrib/compiler-rt/lib/muloti4.c projects/zfsd/head/contrib/compiler-rt/lib/mulsf3.c projects/zfsd/head/contrib/compiler-rt/lib/multi3.c projects/zfsd/head/contrib/compiler-rt/lib/mulvti3.c projects/zfsd/head/contrib/compiler-rt/lib/negdf2.c projects/zfsd/head/contrib/compiler-rt/lib/negsf2.c projects/zfsd/head/contrib/compiler-rt/lib/negti2.c projects/zfsd/head/contrib/compiler-rt/lib/negvti2.c projects/zfsd/head/contrib/compiler-rt/lib/parityti2.c projects/zfsd/head/contrib/compiler-rt/lib/popcountti2.c projects/zfsd/head/contrib/compiler-rt/lib/powitf2.c projects/zfsd/head/contrib/compiler-rt/lib/subdf3.c projects/zfsd/head/contrib/compiler-rt/lib/subsf3.c projects/zfsd/head/contrib/compiler-rt/lib/subvti3.c projects/zfsd/head/contrib/compiler-rt/lib/truncdfsf2.c projects/zfsd/head/contrib/compiler-rt/lib/ucmpti2.c projects/zfsd/head/contrib/compiler-rt/lib/udivmoddi4.c projects/zfsd/head/contrib/compiler-rt/lib/udivmodti4.c projects/zfsd/head/contrib/compiler-rt/lib/udivsi3.c projects/zfsd/head/contrib/compiler-rt/lib/udivti3.c projects/zfsd/head/contrib/compiler-rt/lib/umodti3.c projects/zfsd/head/contrib/diff/src/context.c projects/zfsd/head/contrib/diff/src/diff.c projects/zfsd/head/contrib/dtc/Documentation/dts-format.txt projects/zfsd/head/contrib/dtc/Documentation/manual.txt projects/zfsd/head/contrib/dtc/Makefile projects/zfsd/head/contrib/dtc/checks.c projects/zfsd/head/contrib/dtc/data.c projects/zfsd/head/contrib/dtc/dtc-lexer.l projects/zfsd/head/contrib/dtc/dtc-parser.y projects/zfsd/head/contrib/dtc/dtc.c projects/zfsd/head/contrib/dtc/dtc.h projects/zfsd/head/contrib/dtc/flattree.c projects/zfsd/head/contrib/dtc/fstree.c projects/zfsd/head/contrib/dtc/libfdt/Makefile.libfdt projects/zfsd/head/contrib/dtc/libfdt/fdt.c projects/zfsd/head/contrib/dtc/libfdt/fdt_ro.c projects/zfsd/head/contrib/dtc/libfdt/fdt_rw.c projects/zfsd/head/contrib/dtc/libfdt/libfdt.h projects/zfsd/head/contrib/dtc/libfdt/libfdt_env.h projects/zfsd/head/contrib/dtc/libfdt/libfdt_internal.h projects/zfsd/head/contrib/dtc/livetree.c projects/zfsd/head/contrib/dtc/srcpos.c projects/zfsd/head/contrib/dtc/srcpos.h projects/zfsd/head/contrib/dtc/treesource.c projects/zfsd/head/contrib/dtc/util.c projects/zfsd/head/contrib/dtc/util.h projects/zfsd/head/contrib/file/apprentice.c projects/zfsd/head/contrib/gcc/config/arm/freebsd.h projects/zfsd/head/contrib/gcc/config/i386/freebsd.h projects/zfsd/head/contrib/gcc/config/i386/freebsd64.h projects/zfsd/head/contrib/gcc/config/ia64/freebsd.h projects/zfsd/head/contrib/gcc/config/mips/freebsd.h projects/zfsd/head/contrib/gcc/config/rs6000/freebsd.h projects/zfsd/head/contrib/gcc/config/sparc/freebsd.h projects/zfsd/head/contrib/gdb/gdb/dwarf2loc.h projects/zfsd/head/contrib/gdb/gdb/dwarf2read.c projects/zfsd/head/contrib/groff/tmac/doc-common projects/zfsd/head/contrib/groff/tmac/doc-syms projects/zfsd/head/contrib/groff/tmac/doc.tmac projects/zfsd/head/contrib/groff/tmac/groff_mdoc.man projects/zfsd/head/contrib/jemalloc/FREEBSD-diffs projects/zfsd/head/contrib/jemalloc/include/jemalloc/jemalloc_FreeBSD.h projects/zfsd/head/contrib/less/NEWS projects/zfsd/head/contrib/less/README projects/zfsd/head/contrib/less/brac.c projects/zfsd/head/contrib/less/ch.c projects/zfsd/head/contrib/less/charset.c projects/zfsd/head/contrib/less/charset.h projects/zfsd/head/contrib/less/cmd.h projects/zfsd/head/contrib/less/cmdbuf.c projects/zfsd/head/contrib/less/command.c projects/zfsd/head/contrib/less/cvt.c projects/zfsd/head/contrib/less/decode.c projects/zfsd/head/contrib/less/defines.ds projects/zfsd/head/contrib/less/defines.o2 projects/zfsd/head/contrib/less/defines.o9 projects/zfsd/head/contrib/less/defines.wn projects/zfsd/head/contrib/less/edit.c projects/zfsd/head/contrib/less/filename.c projects/zfsd/head/contrib/less/forwback.c projects/zfsd/head/contrib/less/funcs.h projects/zfsd/head/contrib/less/help.c projects/zfsd/head/contrib/less/ifile.c projects/zfsd/head/contrib/less/input.c projects/zfsd/head/contrib/less/jump.c projects/zfsd/head/contrib/less/less.h projects/zfsd/head/contrib/less/less.hlp projects/zfsd/head/contrib/less/less.man projects/zfsd/head/contrib/less/less.nro projects/zfsd/head/contrib/less/lessecho.c projects/zfsd/head/contrib/less/lessecho.man projects/zfsd/head/contrib/less/lessecho.nro projects/zfsd/head/contrib/less/lesskey.c projects/zfsd/head/contrib/less/lesskey.h projects/zfsd/head/contrib/less/lesskey.man projects/zfsd/head/contrib/less/lesskey.nro projects/zfsd/head/contrib/less/lglob.h projects/zfsd/head/contrib/less/line.c projects/zfsd/head/contrib/less/linenum.c projects/zfsd/head/contrib/less/lsystem.c projects/zfsd/head/contrib/less/main.c projects/zfsd/head/contrib/less/mark.c projects/zfsd/head/contrib/less/mkhelp.c projects/zfsd/head/contrib/less/optfunc.c projects/zfsd/head/contrib/less/option.c projects/zfsd/head/contrib/less/option.h projects/zfsd/head/contrib/less/opttbl.c projects/zfsd/head/contrib/less/os.c projects/zfsd/head/contrib/less/output.c projects/zfsd/head/contrib/less/pattern.c projects/zfsd/head/contrib/less/pattern.h projects/zfsd/head/contrib/less/pckeys.h projects/zfsd/head/contrib/less/position.c projects/zfsd/head/contrib/less/position.h projects/zfsd/head/contrib/less/prompt.c projects/zfsd/head/contrib/less/screen.c projects/zfsd/head/contrib/less/scrsize.c projects/zfsd/head/contrib/less/search.c projects/zfsd/head/contrib/less/signal.c projects/zfsd/head/contrib/less/tags.c projects/zfsd/head/contrib/less/ttyin.c projects/zfsd/head/contrib/less/version.c projects/zfsd/head/contrib/libarchive/FREEBSD-Xlist (contents, props changed) projects/zfsd/head/contrib/libarchive/FREEBSD-upgrade projects/zfsd/head/contrib/libarchive/NEWS projects/zfsd/head/contrib/libarchive/README projects/zfsd/head/contrib/libarchive/cpio/bsdcpio.1 projects/zfsd/head/contrib/libarchive/cpio/cmdline.c projects/zfsd/head/contrib/libarchive/cpio/cpio.c projects/zfsd/head/contrib/libarchive/cpio/cpio.h projects/zfsd/head/contrib/libarchive/cpio/test/main.c projects/zfsd/head/contrib/libarchive/cpio/test/test.h projects/zfsd/head/contrib/libarchive/libarchive/archive.h projects/zfsd/head/contrib/libarchive/libarchive/archive_acl.c projects/zfsd/head/contrib/libarchive/libarchive/archive_check_magic.c projects/zfsd/head/contrib/libarchive/libarchive/archive_endian.h projects/zfsd/head/contrib/libarchive/libarchive/archive_entry.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry.c projects/zfsd/head/contrib/libarchive/libarchive/archive_entry.h projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_acl.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_link_resolver.c projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_linkify.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_paths.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_perms.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_stat.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_stat.c projects/zfsd/head/contrib/libarchive/libarchive/archive_entry_time.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_ppmd7.c projects/zfsd/head/contrib/libarchive/libarchive/archive_private.h projects/zfsd/head/contrib/libarchive/libarchive/archive_read.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_data.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_disk.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_disk_entry_from_file.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_disk_posix.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_disk_private.h projects/zfsd/head/contrib/libarchive/libarchive/archive_read_extract.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_filter.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_format.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_free.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_header.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_new.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_open.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_open_fd.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_open_filename.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_private.h projects/zfsd/head/contrib/libarchive/libarchive/archive_read_set_options.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_filter_rpm.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_7zip.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_cab.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_cpio.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_iso9660.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_lha.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_mtree.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_rar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_tar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_xar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_read_support_format_zip.c projects/zfsd/head/contrib/libarchive/libarchive/archive_string.c projects/zfsd/head/contrib/libarchive/libarchive/archive_string.h projects/zfsd/head/contrib/libarchive/libarchive/archive_string_composition.h projects/zfsd/head/contrib/libarchive/libarchive/archive_string_sprintf.c projects/zfsd/head/contrib/libarchive/libarchive/archive_util.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_util.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter_bzip2.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter_compress.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter_gzip.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter_program.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_add_filter_xz.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_blocksize.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_data.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_disk.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_disk_posix.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_disk_private.h projects/zfsd/head/contrib/libarchive/libarchive/archive_write_disk_set_standard_lookup.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_filter.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_finish_entry.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_format.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_free.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_header.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_new.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_open.3 projects/zfsd/head/contrib/libarchive/libarchive/archive_write_open_filename.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_private.h projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_7zip.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_ar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_cpio.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_cpio_newc.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_gnutar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_iso9660.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_mtree.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_pax.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_ustar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_xar.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_format_zip.c projects/zfsd/head/contrib/libarchive/libarchive/archive_write_set_options.3 projects/zfsd/head/contrib/libarchive/libarchive/cpio.5 projects/zfsd/head/contrib/libarchive/libarchive/libarchive-formats.5 projects/zfsd/head/contrib/libarchive/libarchive/libarchive.3 projects/zfsd/head/contrib/libarchive/libarchive/libarchive_changes.3 projects/zfsd/head/contrib/libarchive/libarchive/libarchive_internals.3 projects/zfsd/head/contrib/libarchive/libarchive/tar.5 projects/zfsd/head/contrib/libarchive/libarchive/test/main.c projects/zfsd/head/contrib/libarchive/libarchive/test/read_open_memory.c projects/zfsd/head/contrib/libarchive/libarchive/test/test.h projects/zfsd/head/contrib/libarchive/libarchive/test/test_archive_string_conversion.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_compat_zip.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_disk_directory_traversals.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_7zip.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_cab.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_rar.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_rar_unicode.rar.uu projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_format_tar_filename.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_pax_truncated.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_read_position.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_sparse_basic.c projects/zfsd/head/contrib/libarchive/libarchive/test/test_write_format_zip.c projects/zfsd/head/contrib/libarchive/libarchive_fe/err.c projects/zfsd/head/contrib/libarchive/libarchive_fe/err.h projects/zfsd/head/contrib/libarchive/tar/bsdtar.1 projects/zfsd/head/contrib/libarchive/tar/bsdtar.c projects/zfsd/head/contrib/libarchive/tar/bsdtar.h projects/zfsd/head/contrib/libarchive/tar/read.c projects/zfsd/head/contrib/libarchive/tar/test/main.c projects/zfsd/head/contrib/libarchive/tar/test/test.h projects/zfsd/head/contrib/libarchive/tar/test/test_basic.c projects/zfsd/head/contrib/libarchive/tar/write.c projects/zfsd/head/contrib/libpcap/CHANGES projects/zfsd/head/contrib/libpcap/CREDITS projects/zfsd/head/contrib/libpcap/Makefile.in projects/zfsd/head/contrib/libpcap/VERSION projects/zfsd/head/contrib/libpcap/config.h.in projects/zfsd/head/contrib/libpcap/configure projects/zfsd/head/contrib/libpcap/configure.in projects/zfsd/head/contrib/libpcap/gencode.c projects/zfsd/head/contrib/libpcap/gencode.h projects/zfsd/head/contrib/libpcap/optimize.c projects/zfsd/head/contrib/libpcap/packaging/pcap.spec.in projects/zfsd/head/contrib/libpcap/pcap-bpf.c projects/zfsd/head/contrib/libpcap/pcap-common.c projects/zfsd/head/contrib/libpcap/pcap-linux.c projects/zfsd/head/contrib/libpcap/pcap-netfilter-linux.c projects/zfsd/head/contrib/libpcap/pcap-snoop.c projects/zfsd/head/contrib/libpcap/pcap.c projects/zfsd/head/contrib/libpcap/pcap/bpf.h projects/zfsd/head/contrib/llvm/include/llvm-c/Core.h projects/zfsd/head/contrib/llvm/include/llvm-c/Disassembler.h projects/zfsd/head/contrib/llvm/include/llvm-c/Target.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/APFloat.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/APInt.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/APSInt.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/ArrayRef.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/BitVector.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/DenseMap.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/FoldingSet.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/Hashing.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/ImmutableSet.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/IndexedMap.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/PointerIntPair.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/PointerUnion.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/PostOrderIterator.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/STLExtras.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/SmallBitVector.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/SmallString.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/SmallVector.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/SparseSet.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/StringRef.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/StringSwitch.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/TinyPtrVector.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/Triple.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/ValueMap.h projects/zfsd/head/contrib/llvm/include/llvm/ADT/VariadicFunction.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/CodeMetrics.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/Dominators.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/InlineCost.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/LoopInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/LoopIterator.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/MemoryBuiltins.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/ProfileInfoLoader.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/RegionInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h projects/zfsd/head/contrib/llvm/include/llvm/Analysis/ValueTracking.h projects/zfsd/head/contrib/llvm/include/llvm/Attributes.h projects/zfsd/head/contrib/llvm/include/llvm/Bitcode/Archive.h projects/zfsd/head/contrib/llvm/include/llvm/Bitcode/ReaderWriter.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/DFAPacketizer.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/FastISel.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/GCMetadata.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/GCStrategy.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/LexicalScopes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/LiveInterval.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/LiveRangeEdit.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineFunction.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineInstr.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineInstrBundle.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineLoopInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineOperand.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachinePassRegistry.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/MachineScheduler.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/Passes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ValueTypes.h projects/zfsd/head/contrib/llvm/include/llvm/CodeGen/ValueTypes.td projects/zfsd/head/contrib/llvm/include/llvm/Constant.h projects/zfsd/head/contrib/llvm/include/llvm/Constants.h projects/zfsd/head/contrib/llvm/include/llvm/DebugInfo/DIContext.h projects/zfsd/head/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h projects/zfsd/head/contrib/llvm/include/llvm/ExecutionEngine/Interpreter.h projects/zfsd/head/contrib/llvm/include/llvm/ExecutionEngine/JIT.h projects/zfsd/head/contrib/llvm/include/llvm/ExecutionEngine/MCJIT.h projects/zfsd/head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h projects/zfsd/head/contrib/llvm/include/llvm/Function.h projects/zfsd/head/contrib/llvm/include/llvm/GlobalValue.h projects/zfsd/head/contrib/llvm/include/llvm/GlobalVariable.h projects/zfsd/head/contrib/llvm/include/llvm/InitializePasses.h projects/zfsd/head/contrib/llvm/include/llvm/Instruction.h projects/zfsd/head/contrib/llvm/include/llvm/Instructions.h projects/zfsd/head/contrib/llvm/include/llvm/Intrinsics.h projects/zfsd/head/contrib/llvm/include/llvm/Intrinsics.td projects/zfsd/head/contrib/llvm/include/llvm/IntrinsicsHexagon.td projects/zfsd/head/contrib/llvm/include/llvm/IntrinsicsX86.td projects/zfsd/head/contrib/llvm/include/llvm/LinkAllPasses.h projects/zfsd/head/contrib/llvm/include/llvm/MC/EDInstInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCAsmInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCAssembler.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCContext.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCDirectives.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCDisassembler.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCELFObjectWriter.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCExpr.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCFixupKindInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCInstrDesc.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCInstrItineraries.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCObjectFileInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCObjectWriter.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCRegisterInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCStreamer.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCTargetAsmLexer.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MCTargetAsmParser.h projects/zfsd/head/contrib/llvm/include/llvm/MC/MachineLocation.h projects/zfsd/head/contrib/llvm/include/llvm/MC/SubtargetFeature.h projects/zfsd/head/contrib/llvm/include/llvm/Metadata.h projects/zfsd/head/contrib/llvm/include/llvm/Module.h projects/zfsd/head/contrib/llvm/include/llvm/Object/Binary.h projects/zfsd/head/contrib/llvm/include/llvm/Object/COFF.h projects/zfsd/head/contrib/llvm/include/llvm/Object/ELF.h projects/zfsd/head/contrib/llvm/include/llvm/Object/MachOFormat.h projects/zfsd/head/contrib/llvm/include/llvm/Object/MachOObject.h projects/zfsd/head/contrib/llvm/include/llvm/Object/ObjectFile.h projects/zfsd/head/contrib/llvm/include/llvm/PassManagers.h projects/zfsd/head/contrib/llvm/include/llvm/Support/AlignOf.h projects/zfsd/head/contrib/llvm/include/llvm/Support/COFF.h projects/zfsd/head/contrib/llvm/include/llvm/Support/CallSite.h projects/zfsd/head/contrib/llvm/include/llvm/Support/CommandLine.h projects/zfsd/head/contrib/llvm/include/llvm/Support/Compiler.h projects/zfsd/head/contrib/llvm/include/llvm/Support/ConstantRange.h projects/zfsd/head/contrib/llvm/include/llvm/Support/DataTypes.h.in projects/zfsd/head/contrib/llvm/include/llvm/Support/Debug.h projects/zfsd/head/contrib/llvm/include/llvm/Support/DebugLoc.h projects/zfsd/head/contrib/llvm/include/llvm/Support/ELF.h projects/zfsd/head/contrib/llvm/include/llvm/Support/Endian.h projects/zfsd/head/contrib/llvm/include/llvm/Support/FileSystem.h projects/zfsd/head/contrib/llvm/include/llvm/Support/GCOV.h projects/zfsd/head/contrib/llvm/include/llvm/Support/GraphWriter.h projects/zfsd/head/contrib/llvm/include/llvm/Support/InstVisitor.h projects/zfsd/head/contrib/llvm/include/llvm/Support/MachO.h projects/zfsd/head/contrib/llvm/include/llvm/Support/MathExtras.h projects/zfsd/head/contrib/llvm/include/llvm/Support/NoFolder.h projects/zfsd/head/contrib/llvm/include/llvm/Support/PathV2.h projects/zfsd/head/contrib/llvm/include/llvm/Support/Process.h projects/zfsd/head/contrib/llvm/include/llvm/Support/SMLoc.h projects/zfsd/head/contrib/llvm/include/llvm/Support/SourceMgr.h projects/zfsd/head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/zfsd/head/contrib/llvm/include/llvm/Support/ThreadLocal.h projects/zfsd/head/contrib/llvm/include/llvm/Support/ValueHandle.h projects/zfsd/head/contrib/llvm/include/llvm/Support/YAMLParser.h projects/zfsd/head/contrib/llvm/include/llvm/Support/raw_ostream.h projects/zfsd/head/contrib/llvm/include/llvm/Support/type_traits.h projects/zfsd/head/contrib/llvm/include/llvm/TableGen/Record.h projects/zfsd/head/contrib/llvm/include/llvm/TableGen/TableGenBackend.h projects/zfsd/head/contrib/llvm/include/llvm/Target/Target.td projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetCallingConv.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetData.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetELFWriterInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetInstrInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetLowering.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetMachine.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetOptions.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetSchedule.td projects/zfsd/head/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Instrumentation.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Scalar.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/Local.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h projects/zfsd/head/contrib/llvm/include/llvm/Transforms/Vectorize.h projects/zfsd/head/contrib/llvm/include/llvm/User.h projects/zfsd/head/contrib/llvm/lib/Analysis/AliasAnalysis.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/AliasSetTracker.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/CaptureTracking.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/CodeMetrics.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ConstantFolding.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/DbgInfoPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/IVUsers.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/InstructionSimplify.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/LazyValueInfo.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/LoopInfo.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/LoopPass.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/MemDepPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/PathNumbering.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ProfileInfoLoaderPass.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/RegionInfo.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/RegionPass.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/RegionPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ScalarEvolution.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp projects/zfsd/head/contrib/llvm/lib/Analysis/ValueTracking.cpp projects/zfsd/head/contrib/llvm/lib/Archive/ArchiveReader.cpp projects/zfsd/head/contrib/llvm/lib/Archive/ArchiveWriter.cpp projects/zfsd/head/contrib/llvm/lib/AsmParser/LLLexer.cpp projects/zfsd/head/contrib/llvm/lib/AsmParser/LLParser.cpp projects/zfsd/head/contrib/llvm/lib/AsmParser/LLParser.h projects/zfsd/head/contrib/llvm/lib/AsmParser/LLToken.h projects/zfsd/head/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp projects/zfsd/head/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AllocationOrder.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/Analysis.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h projects/zfsd/head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h projects/zfsd/head/contrib/llvm/lib/CodeGen/BranchFolding.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CallingConvLower.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CodeGen.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h projects/zfsd/head/contrib/llvm/lib/CodeGen/DFAPacketizer.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ExecutionDepsFix.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/IfConversion.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/InlineSpiller.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/InterferenceCache.h projects/zfsd/head/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LexicalScopes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveInterval.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveRangeCalc.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveRangeCalc.h projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LiveVariables.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineBlockPlacement.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineCSE.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineCopyPropagation.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineFunction.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineInstr.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineInstrBundle.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineLICM.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineLoopInfo.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachinePassRegistry.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineSSAUpdater.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineScheduler.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineSink.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/MachineVerifier.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/PHIElimination.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/Passes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocBase.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocBase.h projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocFast.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterCoalescer.h projects/zfsd/head/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SlotIndexes.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SpillPlacement.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/SplitKit.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/StackProtector.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/TailDuplication.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/VirtRegMap.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/VirtRegMap.h projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.cpp projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFCompileUnit.h projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFContext.cpp projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFContext.h projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFDebugAranges.cpp projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.cpp projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFDebugInfoEntry.h projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.cpp projects/zfsd/head/contrib/llvm/lib/DebugInfo/DWARFDebugLine.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/EventListenerCommon.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/JIT/JITMemoryManager.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ObjectImage.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h projects/zfsd/head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp projects/zfsd/head/contrib/llvm/lib/Linker/LinkModules.cpp projects/zfsd/head/contrib/llvm/lib/MC/ELFObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAsmInfo.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAsmInfoCOFF.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAsmStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCAssembler.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCContext.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h projects/zfsd/head/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCDisassembler/EDMain.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCDwarf.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCELFObjectTargetWriter.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCELFStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCExpr.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCMachOStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCNullStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCObjectFileInfo.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCParser/AsmParser.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCParser/ELFAsmParser.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCPureStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCSectionCOFF.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCSectionELF.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCStreamer.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCSubtargetInfo.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCSymbol.cpp projects/zfsd/head/contrib/llvm/lib/MC/MCWin64EH.cpp projects/zfsd/head/contrib/llvm/lib/MC/MachObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/MC/SubtargetFeature.cpp projects/zfsd/head/contrib/llvm/lib/MC/WinCOFFStreamer.cpp projects/zfsd/head/contrib/llvm/lib/Object/Archive.cpp projects/zfsd/head/contrib/llvm/lib/Object/COFFObjectFile.cpp projects/zfsd/head/contrib/llvm/lib/Object/MachOObject.cpp projects/zfsd/head/contrib/llvm/lib/Object/MachOObjectFile.cpp projects/zfsd/head/contrib/llvm/lib/Support/APFloat.cpp projects/zfsd/head/contrib/llvm/lib/Support/APInt.cpp projects/zfsd/head/contrib/llvm/lib/Support/CommandLine.cpp projects/zfsd/head/contrib/llvm/lib/Support/ConstantRange.cpp projects/zfsd/head/contrib/llvm/lib/Support/CrashRecoveryContext.cpp projects/zfsd/head/contrib/llvm/lib/Support/Debug.cpp projects/zfsd/head/contrib/llvm/lib/Support/Errno.cpp projects/zfsd/head/contrib/llvm/lib/Support/GraphWriter.cpp projects/zfsd/head/contrib/llvm/lib/Support/Host.cpp projects/zfsd/head/contrib/llvm/lib/Support/Memory.cpp projects/zfsd/head/contrib/llvm/lib/Support/MemoryBuffer.cpp projects/zfsd/head/contrib/llvm/lib/Support/Mutex.cpp projects/zfsd/head/contrib/llvm/lib/Support/Path.cpp projects/zfsd/head/contrib/llvm/lib/Support/PathV2.cpp projects/zfsd/head/contrib/llvm/lib/Support/SourceMgr.cpp projects/zfsd/head/contrib/llvm/lib/Support/StreamableMemoryObject.cpp projects/zfsd/head/contrib/llvm/lib/Support/StringMap.cpp projects/zfsd/head/contrib/llvm/lib/Support/StringRef.cpp projects/zfsd/head/contrib/llvm/lib/Support/TargetRegistry.cpp projects/zfsd/head/contrib/llvm/lib/Support/ThreadLocal.cpp projects/zfsd/head/contrib/llvm/lib/Support/Triple.cpp projects/zfsd/head/contrib/llvm/lib/Support/Unix/Path.inc projects/zfsd/head/contrib/llvm/lib/Support/Unix/PathV2.inc projects/zfsd/head/contrib/llvm/lib/Support/Unix/Process.inc projects/zfsd/head/contrib/llvm/lib/Support/Unix/Signals.inc projects/zfsd/head/contrib/llvm/lib/Support/Unix/Unix.h projects/zfsd/head/contrib/llvm/lib/Support/Windows/Path.inc projects/zfsd/head/contrib/llvm/lib/Support/Windows/PathV2.inc projects/zfsd/head/contrib/llvm/lib/Support/Windows/Process.inc projects/zfsd/head/contrib/llvm/lib/Support/Windows/RWMutex.inc projects/zfsd/head/contrib/llvm/lib/Support/Windows/ThreadLocal.inc projects/zfsd/head/contrib/llvm/lib/Support/YAMLParser.cpp projects/zfsd/head/contrib/llvm/lib/Support/raw_ostream.cpp projects/zfsd/head/contrib/llvm/lib/TableGen/Main.cpp projects/zfsd/head/contrib/llvm/lib/TableGen/Record.cpp projects/zfsd/head/contrib/llvm/lib/TableGen/TGParser.cpp projects/zfsd/head/contrib/llvm/lib/TableGen/TGParser.h projects/zfsd/head/contrib/llvm/lib/TableGen/TableGenBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARM.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMCallingConv.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMJITInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMSchedule.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMScheduleA8.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMSubtarget.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUHazardRecognizers.h projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/Hexagon.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/Hexagon.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConv.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonCallingConvLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonExpandPredSpillCode.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonImmediates.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrFormatsV4.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV3.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonInstrInfoV4.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsics.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonIntrinsicsDerived.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonRemoveSZExtArgs.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonSchedule.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonScheduleV4.td projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonSplitTFRCondSets.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonSubtarget.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/InstPrinter/HexagonInstPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlaze.td projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeMCInstLower.h projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430MCInstLower.h projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/Mips64InstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsCallingConv.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsCondMov.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsJITInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsJITInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsSubtarget.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPC.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPC.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrAltivec.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCSchedule.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCSchedule440.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCScheduleA2.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG3.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCScheduleG5.td projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h projects/zfsd/head/contrib/llvm/lib/Target/TargetData.cpp projects/zfsd/head/contrib/llvm/lib/Target/TargetInstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/TargetLibraryInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp projects/zfsd/head/contrib/llvm/lib/Target/TargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/TargetRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.h projects/zfsd/head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c projects/zfsd/head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h projects/zfsd/head/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h projects/zfsd/head/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86AsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86AsmPrinter.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86COFFMachineModuleInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86CallingConv.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86FastISel.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86FrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86ISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrBuilder.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrControl.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrExtension.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrFMA.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrFPStack.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrFormats.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrMMX.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrSSE.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrSystem.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrVMX.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrXOP.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86JITInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86MCInstLower.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86MachineFunctionInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86RegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86RegisterInfo.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86Relocations.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86Schedule.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86ScheduleAtom.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86Subtarget.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86VZeroUpper.cpp projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreFrameLowering.h projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h projects/zfsd/head/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/GlobalDCE.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/Inliner.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/LoopExtractor.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/ADCE.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/EarlyCSE.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/GVN.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/GlobalMerge.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LICM.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/LowerAtomic.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/Sink.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/Local.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/ModuleUtils.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp projects/zfsd/head/contrib/llvm/lib/Transforms/Vectorize/BBVectorize.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/AsmWriter.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Attributes.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/AutoUpgrade.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/ConstantFold.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Constants.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Core.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/DebugLoc.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Dominators.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Function.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/GCOV.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Globals.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/IRBuilder.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Instruction.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Instructions.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Metadata.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Module.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/PassManager.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Type.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Value.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/ValueTypes.cpp projects/zfsd/head/contrib/llvm/lib/VMCore/Verifier.cpp projects/zfsd/head/contrib/llvm/tools/bugpoint/BugDriver.cpp projects/zfsd/head/contrib/llvm/tools/bugpoint/ExtractFunction.cpp projects/zfsd/head/contrib/llvm/tools/clang/include/clang-c/Index.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ASTImporter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ASTVector.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Attr.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/BaseSubobject.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Decl.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclContextInternals.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclGroup.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclLookups.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Expr.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Mangle.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/NSAPI.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/RecordLayout.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Redeclarable.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Stmt.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/Type.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/FormatString.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/CallGraph.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGRecStmtDeclVisitor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/ABI.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Attr.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/LLVM.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Lambda.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Linkage.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/MacroBuilder.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Module.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/OnDiskHashTable.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/OpenCL.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/OperatorKinds.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TargetOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TemplateKinds.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Version.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/Visibility.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Arg.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/ArgList.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Driver.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/OptTable.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Option.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Options.td projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Types.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Driver/Types.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/ModuleMap.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/PTHManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Lex/Token.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Parse/Parser.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriters.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Rewrite/TokenRewriter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Designator.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Overload.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Scope.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/ScopeInfo.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Sema.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Template.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Sema/Weak.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitor.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Tooling/Tooling.h projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/Internals.h projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/ARCMigrate/Transforms.h projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/APValue.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CXXABI.h projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Decl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclFriend.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Expr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/LambdaMangleContext.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Mangle.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/NSAPI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/RecordLayout.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Stmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/Type.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/VTTBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/AST/VTableBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/CallGraph.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/PseudoConstantAnalysis.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/ScanfFormatString.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/ConvertUTF.c projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/Targets.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/Version.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGBuilder.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Driver.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/ToolChains.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Tools.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Driver/Types.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Edit/Commit.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Edit/EditedSource.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/avx2intrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/bmiintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/emmintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/float.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/immintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/stddef.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/wmmintrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Headers/x86intrin.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/Parser.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/FrontendActions.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/RewriteModernObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaCast.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaLambda.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicConstraintManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.h projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/TextPathDiagnostics.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Tooling/Tooling.cpp projects/zfsd/head/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp projects/zfsd/head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/zfsd/head/contrib/llvm/tools/clang/tools/driver/driver.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/OptParserEmitter.cpp projects/zfsd/head/contrib/llvm/tools/clang/utils/TableGen/TableGen.cpp projects/zfsd/head/contrib/llvm/tools/llc/llc.cpp projects/zfsd/head/contrib/llvm/tools/lli/lli.cpp projects/zfsd/head/contrib/llvm/tools/llvm-ar/llvm-ar.cpp projects/zfsd/head/contrib/llvm/tools/llvm-diff/DiffConsumer.cpp projects/zfsd/head/contrib/llvm/tools/llvm-diff/DiffConsumer.h projects/zfsd/head/contrib/llvm/tools/llvm-diff/DifferenceEngine.cpp projects/zfsd/head/contrib/llvm/tools/llvm-diff/DifferenceEngine.h projects/zfsd/head/contrib/llvm/tools/llvm-diff/llvm-diff.cpp projects/zfsd/head/contrib/llvm/tools/llvm-dis/llvm-dis.cpp projects/zfsd/head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/zfsd/head/contrib/llvm/tools/llvm-nm/llvm-nm.cpp projects/zfsd/head/contrib/llvm/tools/llvm-objdump/MachODump.cpp projects/zfsd/head/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp projects/zfsd/head/contrib/llvm/tools/llvm-prof/llvm-prof.cpp projects/zfsd/head/contrib/llvm/tools/llvm-ranlib/llvm-ranlib.cpp projects/zfsd/head/contrib/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp projects/zfsd/head/contrib/llvm/tools/llvm-stress/llvm-stress.cpp projects/zfsd/head/contrib/llvm/tools/macho-dump/macho-dump.cpp projects/zfsd/head/contrib/llvm/tools/opt/opt.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CallingConvEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenInstruction.h projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenRegisters.h projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenTarget.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/CodeGenTarget.h projects/zfsd/head/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/DAGISelMatcher.h projects/zfsd/head/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/DFAPacketizerEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/EDEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/FastISelEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/SequenceToOffsetTable.h projects/zfsd/head/contrib/llvm/utils/TableGen/SetTheory.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/StringToOffsetTable.h projects/zfsd/head/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/TableGen.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/X86DisassemblerShared.h projects/zfsd/head/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/X86DisassemblerTables.h projects/zfsd/head/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp projects/zfsd/head/contrib/llvm/utils/TableGen/X86RecognizableInstr.h projects/zfsd/head/contrib/openresolv/resolvconf.conf.5.in projects/zfsd/head/contrib/opie/libopie/hash.c projects/zfsd/head/contrib/opie/libopie/hashlen.c projects/zfsd/head/contrib/sendmail/include/libmilter/mfapi.h projects/zfsd/head/contrib/tcpdump/CHANGES projects/zfsd/head/contrib/tcpdump/CREDITS projects/zfsd/head/contrib/tcpdump/Makefile.in projects/zfsd/head/contrib/tcpdump/VERSION projects/zfsd/head/contrib/tcpdump/configure projects/zfsd/head/contrib/tcpdump/configure.in projects/zfsd/head/contrib/tcpdump/decode_prefix.h projects/zfsd/head/contrib/tcpdump/ethertype.h projects/zfsd/head/contrib/tcpdump/forces.h projects/zfsd/head/contrib/tcpdump/interface.h projects/zfsd/head/contrib/tcpdump/ipproto.c projects/zfsd/head/contrib/tcpdump/netdissect.h projects/zfsd/head/contrib/tcpdump/print-802_11.c projects/zfsd/head/contrib/tcpdump/print-bgp.c projects/zfsd/head/contrib/tcpdump/print-ether.c projects/zfsd/head/contrib/tcpdump/print-forces.c projects/zfsd/head/contrib/tcpdump/print-icmp6.c projects/zfsd/head/contrib/tcpdump/print-igmp.c projects/zfsd/head/contrib/tcpdump/print-ip.c projects/zfsd/head/contrib/tcpdump/print-ip6opts.c projects/zfsd/head/contrib/tcpdump/print-ldp.c projects/zfsd/head/contrib/tcpdump/print-lldp.c projects/zfsd/head/contrib/tcpdump/print-lwapp.c projects/zfsd/head/contrib/tcpdump/print-ospf6.c projects/zfsd/head/contrib/tcpdump/print-pim.c projects/zfsd/head/contrib/tcpdump/print-pppoe.c projects/zfsd/head/contrib/tcpdump/print-rrcp.c projects/zfsd/head/contrib/tcpdump/tcpdump.1.in projects/zfsd/head/contrib/tcpdump/tcpdump.c projects/zfsd/head/contrib/telnet/telnetd/state.c projects/zfsd/head/contrib/tzdata/africa projects/zfsd/head/contrib/tzdata/antarctica projects/zfsd/head/contrib/tzdata/asia projects/zfsd/head/contrib/tzdata/australasia projects/zfsd/head/contrib/tzdata/backward projects/zfsd/head/contrib/tzdata/etcetera projects/zfsd/head/contrib/tzdata/europe projects/zfsd/head/contrib/tzdata/factory projects/zfsd/head/contrib/tzdata/leapseconds projects/zfsd/head/contrib/tzdata/northamerica projects/zfsd/head/contrib/tzdata/pacificnew projects/zfsd/head/contrib/tzdata/southamerica projects/zfsd/head/contrib/tzdata/systemv projects/zfsd/head/contrib/tzdata/yearistype.sh projects/zfsd/head/contrib/tzdata/zone.tab projects/zfsd/head/crypto/openssh/ChangeLog projects/zfsd/head/crypto/openssh/INSTALL projects/zfsd/head/crypto/openssh/LICENCE projects/zfsd/head/crypto/openssh/PROTOCOL.certkeys projects/zfsd/head/crypto/openssh/PROTOCOL.mux projects/zfsd/head/crypto/openssh/README projects/zfsd/head/crypto/openssh/addrmatch.c projects/zfsd/head/crypto/openssh/audit-bsm.c projects/zfsd/head/crypto/openssh/auth-krb5.c projects/zfsd/head/crypto/openssh/auth-options.c projects/zfsd/head/crypto/openssh/auth-passwd.c projects/zfsd/head/crypto/openssh/auth.c projects/zfsd/head/crypto/openssh/auth2-pubkey.c projects/zfsd/head/crypto/openssh/auth2.c projects/zfsd/head/crypto/openssh/authfile.c projects/zfsd/head/crypto/openssh/channels.c projects/zfsd/head/crypto/openssh/channels.h projects/zfsd/head/crypto/openssh/clientloop.c projects/zfsd/head/crypto/openssh/clientloop.h projects/zfsd/head/crypto/openssh/compat.c projects/zfsd/head/crypto/openssh/compat.h projects/zfsd/head/crypto/openssh/config.h.in projects/zfsd/head/crypto/openssh/defines.h projects/zfsd/head/crypto/openssh/dh.c projects/zfsd/head/crypto/openssh/dns.c projects/zfsd/head/crypto/openssh/dns.h projects/zfsd/head/crypto/openssh/entropy.c projects/zfsd/head/crypto/openssh/entropy.h projects/zfsd/head/crypto/openssh/jpake.c projects/zfsd/head/crypto/openssh/kex.c projects/zfsd/head/crypto/openssh/key.c projects/zfsd/head/crypto/openssh/key.h projects/zfsd/head/crypto/openssh/mac.c projects/zfsd/head/crypto/openssh/misc.c projects/zfsd/head/crypto/openssh/moduli projects/zfsd/head/crypto/openssh/moduli.c projects/zfsd/head/crypto/openssh/monitor.c projects/zfsd/head/crypto/openssh/mux.c projects/zfsd/head/crypto/openssh/myproposal.h projects/zfsd/head/crypto/openssh/openbsd-compat/bsd-cygwin_util.c projects/zfsd/head/crypto/openssh/openbsd-compat/bsd-cygwin_util.h projects/zfsd/head/crypto/openssh/openbsd-compat/bsd-misc.h projects/zfsd/head/crypto/openssh/openbsd-compat/getcwd.c projects/zfsd/head/crypto/openssh/openbsd-compat/getgrouplist.c projects/zfsd/head/crypto/openssh/openbsd-compat/getrrsetbyname.c projects/zfsd/head/crypto/openssh/openbsd-compat/glob.c projects/zfsd/head/crypto/openssh/openbsd-compat/inet_ntop.c projects/zfsd/head/crypto/openssh/openbsd-compat/mktemp.c projects/zfsd/head/crypto/openssh/openbsd-compat/openbsd-compat.h projects/zfsd/head/crypto/openssh/openbsd-compat/openssl-compat.h projects/zfsd/head/crypto/openssh/openbsd-compat/port-linux.c projects/zfsd/head/crypto/openssh/openbsd-compat/setenv.c projects/zfsd/head/crypto/openssh/openbsd-compat/sha2.c projects/zfsd/head/crypto/openssh/openbsd-compat/sha2.h projects/zfsd/head/crypto/openssh/openbsd-compat/strlcpy.c projects/zfsd/head/crypto/openssh/packet.c projects/zfsd/head/crypto/openssh/packet.h projects/zfsd/head/crypto/openssh/readconf.c projects/zfsd/head/crypto/openssh/readconf.h projects/zfsd/head/crypto/openssh/roaming.h projects/zfsd/head/crypto/openssh/roaming_client.c projects/zfsd/head/crypto/openssh/roaming_common.c projects/zfsd/head/crypto/openssh/sandbox-rlimit.c projects/zfsd/head/crypto/openssh/sandbox-systrace.c projects/zfsd/head/crypto/openssh/scp.1 projects/zfsd/head/crypto/openssh/scp.c projects/zfsd/head/crypto/openssh/servconf.c projects/zfsd/head/crypto/openssh/servconf.h projects/zfsd/head/crypto/openssh/serverloop.c projects/zfsd/head/crypto/openssh/session.c projects/zfsd/head/crypto/openssh/sftp-client.c projects/zfsd/head/crypto/openssh/sftp-glob.c projects/zfsd/head/crypto/openssh/sftp.1 projects/zfsd/head/crypto/openssh/sftp.c projects/zfsd/head/crypto/openssh/ssh-add.1 projects/zfsd/head/crypto/openssh/ssh-add.c projects/zfsd/head/crypto/openssh/ssh-ecdsa.c projects/zfsd/head/crypto/openssh/ssh-keygen.1 projects/zfsd/head/crypto/openssh/ssh-keygen.c projects/zfsd/head/crypto/openssh/ssh-pkcs11-client.c projects/zfsd/head/crypto/openssh/ssh-pkcs11-helper.c projects/zfsd/head/crypto/openssh/ssh.1 projects/zfsd/head/crypto/openssh/ssh.c projects/zfsd/head/crypto/openssh/ssh_config projects/zfsd/head/crypto/openssh/ssh_config.5 projects/zfsd/head/crypto/openssh/ssh_namespace.h projects/zfsd/head/crypto/openssh/sshconnect.c projects/zfsd/head/crypto/openssh/sshconnect2.c projects/zfsd/head/crypto/openssh/sshd.8 projects/zfsd/head/crypto/openssh/sshd.c projects/zfsd/head/crypto/openssh/sshd_config projects/zfsd/head/crypto/openssh/sshd_config.5 projects/zfsd/head/crypto/openssh/umac.c projects/zfsd/head/crypto/openssh/version.h projects/zfsd/head/crypto/openssl/crypto/opensslv.h projects/zfsd/head/etc/defaults/periodic.conf projects/zfsd/head/etc/defaults/rc.conf projects/zfsd/head/etc/devd.conf projects/zfsd/head/etc/devd/usb.conf projects/zfsd/head/etc/mtree/BSD.include.dist projects/zfsd/head/etc/mtree/BSD.usr.dist projects/zfsd/head/etc/ntp.conf projects/zfsd/head/etc/rc.d/FILESYSTEMS projects/zfsd/head/etc/rc.d/Makefile projects/zfsd/head/etc/rc.d/addswap projects/zfsd/head/etc/rc.d/adjkerntz projects/zfsd/head/etc/rc.d/amd projects/zfsd/head/etc/rc.d/bgfsck projects/zfsd/head/etc/rc.d/bridge projects/zfsd/head/etc/rc.d/cleanvar projects/zfsd/head/etc/rc.d/cron projects/zfsd/head/etc/rc.d/devd projects/zfsd/head/etc/rc.d/dmesg projects/zfsd/head/etc/rc.d/ftpd projects/zfsd/head/etc/rc.d/geli projects/zfsd/head/etc/rc.d/geli2 projects/zfsd/head/etc/rc.d/inetd projects/zfsd/head/etc/rc.d/initrandom projects/zfsd/head/etc/rc.d/ip6addrctl projects/zfsd/head/etc/rc.d/ipmon projects/zfsd/head/etc/rc.d/jail projects/zfsd/head/etc/rc.d/kldxref projects/zfsd/head/etc/rc.d/ldconfig projects/zfsd/head/etc/rc.d/mixer projects/zfsd/head/etc/rc.d/mountcritremote projects/zfsd/head/etc/rc.d/moused projects/zfsd/head/etc/rc.d/mrouted projects/zfsd/head/etc/rc.d/named projects/zfsd/head/etc/rc.d/netif projects/zfsd/head/etc/rc.d/newsyslog projects/zfsd/head/etc/rc.d/ntpd projects/zfsd/head/etc/rc.d/pflog projects/zfsd/head/etc/rc.d/power_profile projects/zfsd/head/etc/rc.d/random projects/zfsd/head/etc/rc.d/rarpd projects/zfsd/head/etc/rc.d/resolv projects/zfsd/head/etc/rc.d/securelevel projects/zfsd/head/etc/rc.d/sendmail projects/zfsd/head/etc/rc.d/sshd projects/zfsd/head/etc/rc.d/syslogd projects/zfsd/head/etc/rc.d/tmp projects/zfsd/head/etc/rc.d/utx projects/zfsd/head/etc/rc.d/var projects/zfsd/head/etc/rc.d/watchdogd projects/zfsd/head/etc/rc.firewall projects/zfsd/head/etc/rc.subr projects/zfsd/head/games/fortune/datfiles/fortunes projects/zfsd/head/games/fortune/datfiles/freebsd-tips projects/zfsd/head/gnu/lib/libstdc++/Makefile projects/zfsd/head/gnu/lib/libsupc++/Makefile projects/zfsd/head/gnu/usr.bin/binutils/Makefile.inc0 projects/zfsd/head/gnu/usr.bin/binutils/as/Makefile projects/zfsd/head/gnu/usr.bin/binutils/ld/Makefile.arm projects/zfsd/head/gnu/usr.bin/binutils/libbfd/Makefile.arm projects/zfsd/head/gnu/usr.bin/binutils/libbfd/Makefile.powerpc64 projects/zfsd/head/gnu/usr.bin/cc/Makefile.inc projects/zfsd/head/gnu/usr.bin/cc/Makefile.tgt projects/zfsd/head/gnu/usr.bin/diff/Makefile projects/zfsd/head/gnu/usr.bin/gdb/Makefile.inc projects/zfsd/head/gnu/usr.bin/gdb/arch/powerpc/config.h projects/zfsd/head/gnu/usr.bin/gdb/libgdb/Makefile projects/zfsd/head/gnu/usr.bin/groff/tmac/Makefile projects/zfsd/head/gnu/usr.bin/groff/tmac/mdoc.local projects/zfsd/head/include/Makefile projects/zfsd/head/include/gssapi/gssapi.h projects/zfsd/head/include/mqueue.h projects/zfsd/head/include/rpc/auth.h projects/zfsd/head/include/rpc/auth_unix.h projects/zfsd/head/include/rpc/xdr.h projects/zfsd/head/include/stdatomic.h projects/zfsd/head/include/time.h projects/zfsd/head/include/unistd.h projects/zfsd/head/lib/clang/Makefile projects/zfsd/head/lib/clang/clang.build.mk projects/zfsd/head/lib/clang/clang.lib.mk projects/zfsd/head/lib/clang/include/Makefile projects/zfsd/head/lib/clang/include/clang/Basic/Version.inc projects/zfsd/head/lib/clang/include/llvm/Config/AsmParsers.def projects/zfsd/head/lib/clang/include/llvm/Config/Disassemblers.def projects/zfsd/head/lib/clang/include/llvm/Config/config.h projects/zfsd/head/lib/clang/include/llvm/Config/llvm-config.h projects/zfsd/head/lib/clang/libclanganalysis/Makefile projects/zfsd/head/lib/clang/libclangarcmigrate/Makefile projects/zfsd/head/lib/clang/libclangast/Makefile projects/zfsd/head/lib/clang/libclangbasic/Makefile projects/zfsd/head/lib/clang/libclangcodegen/Makefile projects/zfsd/head/lib/clang/libclangdriver/Makefile projects/zfsd/head/lib/clang/libclangedit/Makefile projects/zfsd/head/lib/clang/libclangfrontend/Makefile projects/zfsd/head/lib/clang/libclangfrontendtool/Makefile projects/zfsd/head/lib/clang/libclangparse/Makefile projects/zfsd/head/lib/clang/libclangrewrite/Makefile projects/zfsd/head/lib/clang/libclangsema/Makefile projects/zfsd/head/lib/clang/libclangserialization/Makefile projects/zfsd/head/lib/clang/libclangstaticanalyzercheckers/Makefile projects/zfsd/head/lib/clang/libclangstaticanalyzercore/Makefile projects/zfsd/head/lib/clang/libclangstaticanalyzerfrontend/Makefile projects/zfsd/head/lib/clang/libllvmanalysis/Makefile projects/zfsd/head/lib/clang/libllvmcodegen/Makefile projects/zfsd/head/lib/clang/libllvmcore/Makefile projects/zfsd/head/lib/clang/libllvminstrumentation/Makefile projects/zfsd/head/lib/clang/libllvmmc/Makefile projects/zfsd/head/lib/clang/libllvmmipscodegen/Makefile projects/zfsd/head/lib/clang/libllvmmipsinstprinter/Makefile projects/zfsd/head/lib/clang/libllvmpowerpccodegen/Makefile projects/zfsd/head/lib/clang/libllvmtablegen/Makefile projects/zfsd/head/lib/libarchive/Makefile projects/zfsd/head/lib/libarchive/config_freebsd.h projects/zfsd/head/lib/libarchive/test/Makefile projects/zfsd/head/lib/libc++/Makefile projects/zfsd/head/lib/libc/amd64/SYS.h projects/zfsd/head/lib/libc/amd64/Symbol.map projects/zfsd/head/lib/libc/amd64/gen/rfork_thread.S projects/zfsd/head/lib/libc/amd64/sys/brk.S projects/zfsd/head/lib/libc/amd64/sys/exect.S projects/zfsd/head/lib/libc/amd64/sys/getcontext.S projects/zfsd/head/lib/libc/amd64/sys/pipe.S projects/zfsd/head/lib/libc/amd64/sys/ptrace.S projects/zfsd/head/lib/libc/amd64/sys/reboot.S projects/zfsd/head/lib/libc/amd64/sys/sbrk.S projects/zfsd/head/lib/libc/amd64/sys/setlogin.S projects/zfsd/head/lib/libc/amd64/sys/vfork.S projects/zfsd/head/lib/libc/arm/gen/__aeabi_read_tp.S projects/zfsd/head/lib/libc/arm/gen/_set_tp.c projects/zfsd/head/lib/libc/gen/Makefile.inc projects/zfsd/head/lib/libc/gen/Symbol.map projects/zfsd/head/lib/libc/gen/arc4random.c projects/zfsd/head/lib/libc/gen/fts-compat.c projects/zfsd/head/lib/libc/gen/fts.c projects/zfsd/head/lib/libc/gen/ftw.c projects/zfsd/head/lib/libc/gen/getcap.c projects/zfsd/head/lib/libc/gen/getcwd.c projects/zfsd/head/lib/libc/gen/nftw.c projects/zfsd/head/lib/libc/gen/nlist.c projects/zfsd/head/lib/libc/gen/opendir.c projects/zfsd/head/lib/libc/gen/pututxline.c projects/zfsd/head/lib/libc/gen/rand48.3 projects/zfsd/head/lib/libc/gen/readpassphrase.c projects/zfsd/head/lib/libc/gen/sem_new.c projects/zfsd/head/lib/libc/gen/sysconf.c projects/zfsd/head/lib/libc/gen/sysctl.c projects/zfsd/head/lib/libc/gen/syslog.c projects/zfsd/head/lib/libc/i386/SYS.h projects/zfsd/head/lib/libc/i386/Symbol.map projects/zfsd/head/lib/libc/i386/gen/rfork_thread.S projects/zfsd/head/lib/libc/i386/sys/Ovfork.S projects/zfsd/head/lib/libc/i386/sys/brk.S projects/zfsd/head/lib/libc/i386/sys/cerror.S projects/zfsd/head/lib/libc/i386/sys/exect.S projects/zfsd/head/lib/libc/i386/sys/getcontext.S projects/zfsd/head/lib/libc/i386/sys/ptrace.S projects/zfsd/head/lib/libc/i386/sys/sbrk.S projects/zfsd/head/lib/libc/i386/sys/syscall.S projects/zfsd/head/lib/libc/locale/Makefile.inc projects/zfsd/head/lib/libc/locale/isgraph.3 projects/zfsd/head/lib/libc/locale/islower.3 projects/zfsd/head/lib/libc/locale/ispunct.3 projects/zfsd/head/lib/libc/locale/isspace.3 projects/zfsd/head/lib/libc/locale/ldpart.c projects/zfsd/head/lib/libc/locale/nl_langinfo.3 projects/zfsd/head/lib/libc/net/getaddrinfo.c projects/zfsd/head/lib/libc/nls/msgcat.c projects/zfsd/head/lib/libc/rpc/auth_des.c projects/zfsd/head/lib/libc/rpc/auth_unix.c projects/zfsd/head/lib/libc/rpc/authunix_prot.c projects/zfsd/head/lib/libc/rpc/clnt_vc.c projects/zfsd/head/lib/libc/rpc/getnetpath.c projects/zfsd/head/lib/libc/rpc/rpc_generic.c projects/zfsd/head/lib/libc/rpc/rpc_soc.3 projects/zfsd/head/lib/libc/rpc/svc_auth_des.c projects/zfsd/head/lib/libc/rpc/svc_auth_unix.c projects/zfsd/head/lib/libc/stdio/scanf_l.3 projects/zfsd/head/lib/libc/stdlib/at_quick_exit.3 projects/zfsd/head/lib/libc/stdlib/getenv.c projects/zfsd/head/lib/libc/stdlib/ptsname.3 projects/zfsd/head/lib/libc/stdlib/ptsname.c projects/zfsd/head/lib/libc/stdlib/quick_exit.3 projects/zfsd/head/lib/libc/stdlib/rand.3 projects/zfsd/head/lib/libc/stdlib/rand.c projects/zfsd/head/lib/libc/stdlib/random.3 projects/zfsd/head/lib/libc/stdlib/random.c projects/zfsd/head/lib/libc/stdlib/realpath.c projects/zfsd/head/lib/libc/string/ffs.3 projects/zfsd/head/lib/libc/string/strerror.3 projects/zfsd/head/lib/libc/string/strsignal.c projects/zfsd/head/lib/libc/sys/Symbol.map projects/zfsd/head/lib/libc/sys/dup.2 projects/zfsd/head/lib/libc/sys/fcntl.2 projects/zfsd/head/lib/libc/sys/fcntl.c projects/zfsd/head/lib/libc/sys/recv.2 projects/zfsd/head/lib/libc/sys/sigaction.2 projects/zfsd/head/lib/libc/sys/sigwait.2 projects/zfsd/head/lib/libc/sys/sigwaitinfo.2 projects/zfsd/head/lib/libc/sys/wait.2 projects/zfsd/head/lib/libc/yp/yplib.c projects/zfsd/head/lib/libdwarf/dwarf.h projects/zfsd/head/lib/libdwarf/dwarf_attrval.c projects/zfsd/head/lib/libdwarf/dwarf_dump.c projects/zfsd/head/lib/libdwarf/dwarf_init.c projects/zfsd/head/lib/libedit/el.c projects/zfsd/head/lib/libedit/histedit.h projects/zfsd/head/lib/libedit/makelist projects/zfsd/head/lib/libedit/read.c projects/zfsd/head/lib/libedit/term.c projects/zfsd/head/lib/libedit/tokenizer.c projects/zfsd/head/lib/libelf/Makefile projects/zfsd/head/lib/libfetch/Makefile projects/zfsd/head/lib/libfetch/file.c projects/zfsd/head/lib/libfetch/http.c projects/zfsd/head/lib/libjail/jail.c projects/zfsd/head/lib/libkvm/kvm_i386.c projects/zfsd/head/lib/libmagic/Makefile projects/zfsd/head/lib/libmagic/config.h projects/zfsd/head/lib/libpam/modules/pam_krb5/pam_krb5.c projects/zfsd/head/lib/libpam/modules/pam_lastlog/pam_lastlog.8 projects/zfsd/head/lib/libpam/modules/pam_radius/pam_radius.c projects/zfsd/head/lib/libpam/modules/pam_unix/pam_unix.c projects/zfsd/head/lib/libpcap/config.h projects/zfsd/head/lib/libpmc/Makefile projects/zfsd/head/lib/libpmc/libpmc.c projects/zfsd/head/lib/libpmc/pmc.sandybridge.3 projects/zfsd/head/lib/libproc/Makefile projects/zfsd/head/lib/libproc/proc_sym.c projects/zfsd/head/lib/libproc/test/t1-bkpt/t1-bkpt.c projects/zfsd/head/lib/libproc/test/t3-name2sym/t3-name2sym.c projects/zfsd/head/lib/libprocstat/libprocstat.h projects/zfsd/head/lib/libstand/nandfs.c projects/zfsd/head/lib/libstand/nfs.c projects/zfsd/head/lib/libthr/arch/arm/include/pthread_md.h projects/zfsd/head/lib/libthr/thread/thr_cond.c projects/zfsd/head/lib/libthr/thread/thr_fork.c projects/zfsd/head/lib/libthr/thread/thr_getcpuclockid.c projects/zfsd/head/lib/libthr/thread/thr_getschedparam.c projects/zfsd/head/lib/libthr/thread/thr_info.c projects/zfsd/head/lib/libthr/thread/thr_init.c projects/zfsd/head/lib/libthr/thread/thr_kern.c projects/zfsd/head/lib/libthr/thread/thr_mutex.c projects/zfsd/head/lib/libthr/thread/thr_private.h projects/zfsd/head/lib/libthr/thread/thr_resume_np.c projects/zfsd/head/lib/libthr/thread/thr_setprio.c projects/zfsd/head/lib/libthr/thread/thr_setschedparam.c projects/zfsd/head/lib/libthr/thread/thr_sig.c projects/zfsd/head/lib/libthr/thread/thr_suspend_np.c projects/zfsd/head/lib/libthr/thread/thr_umtx.h projects/zfsd/head/lib/libusb/libusb20.3 projects/zfsd/head/lib/libusb/libusb20.c projects/zfsd/head/lib/libusb/libusb20.h projects/zfsd/head/lib/libusb/libusb20_int.h projects/zfsd/head/lib/libusb/libusb20_ugen20.c projects/zfsd/head/lib/libusbhid/descr.c projects/zfsd/head/lib/libusbhid/parse.c projects/zfsd/head/lib/libusbhid/usbhid.3 projects/zfsd/head/lib/libutil/humanize_number.c projects/zfsd/head/lib/msun/Makefile projects/zfsd/head/lib/msun/Symbol.map projects/zfsd/head/lib/msun/i387/s_cos.S projects/zfsd/head/lib/msun/i387/s_sin.S projects/zfsd/head/lib/msun/i387/s_tan.S projects/zfsd/head/lib/msun/man/cexp.3 projects/zfsd/head/lib/msun/man/exp.3 projects/zfsd/head/lib/msun/src/e_exp.c projects/zfsd/head/lib/msun/src/e_rem_pio2.c projects/zfsd/head/lib/msun/src/e_rem_pio2f.c projects/zfsd/head/lib/msun/src/k_cosf.c projects/zfsd/head/lib/msun/src/k_sinf.c projects/zfsd/head/lib/msun/src/k_tanf.c projects/zfsd/head/lib/msun/src/math.h projects/zfsd/head/lib/msun/src/math_private.h projects/zfsd/head/lib/msun/src/s_cbrtl.c projects/zfsd/head/lib/msun/src/s_cosl.c projects/zfsd/head/lib/msun/src/s_sinl.c projects/zfsd/head/lib/msun/src/s_tanl.c projects/zfsd/head/libexec/atrun/atrun.c projects/zfsd/head/libexec/comsat/comsat.8 projects/zfsd/head/libexec/ftpd/ftpd.8 projects/zfsd/head/libexec/rbootd/rbootd.c projects/zfsd/head/libexec/rbootd/rmpproto.c projects/zfsd/head/libexec/revnetgroup/revnetgroup.8 projects/zfsd/head/libexec/rpc.rstatd/rstat_proc.c projects/zfsd/head/libexec/rtld-elf/arm/reloc.c projects/zfsd/head/libexec/rtld-elf/arm/rtld_start.S projects/zfsd/head/libexec/rtld-elf/map_object.c projects/zfsd/head/libexec/rtld-elf/rtld.1 projects/zfsd/head/libexec/rtld-elf/rtld.c projects/zfsd/head/libexec/rtld-elf/rtld.h projects/zfsd/head/libexec/save-entropy/save-entropy.sh projects/zfsd/head/release/doc/Makefile projects/zfsd/head/release/doc/README projects/zfsd/head/release/doc/de_DE.ISO8859-1/early-adopter/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/errata/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/alpha/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/common/hw.ent projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/i386/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/ia64/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/pc98/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/hardware/sparc64/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/alpha/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/common/install.ent projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/i386/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/ia64/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/pc98/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/installation/sparc64/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/readme/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/alpha/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/common/relnotes.ent projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/i386/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/ia64/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/pc98/Makefile projects/zfsd/head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/Makefile projects/zfsd/head/release/doc/en_US.ISO8859-1/errata/Makefile projects/zfsd/head/release/doc/en_US.ISO8859-1/hardware/Makefile projects/zfsd/head/release/doc/en_US.ISO8859-1/readme/Makefile projects/zfsd/head/release/doc/en_US.ISO8859-1/relnotes/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/early-adopter/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/errata/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/alpha/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/common/hw.ent projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/i386/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/ia64/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/pc98/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/alpha/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/common/install.ent projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/i386/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/pc98/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/installation/sparc64/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/Makefile projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/common/relnotes.ent projects/zfsd/head/release/doc/fr_FR.ISO8859-1/relnotes/i386/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/errata/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/alpha/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/amd64/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/common/hw.ent projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/i386/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/ia64/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/pc98/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/hardware/sparc64/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/alpha/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/amd64/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/common/relnotes.ent projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/i386/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/ia64/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/pc98/Makefile projects/zfsd/head/release/doc/ja_JP.eucJP/relnotes/sparc64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/errata/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/common/hw.ent projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/alpha/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/amd64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/common/install.ent projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/i386/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/ia64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/pc98/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/installation/sparc64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/readme/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/alpha/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/amd64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/common/relnotes.ent projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/i386/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/ia64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/pc98/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/Makefile projects/zfsd/head/release/doc/ru_RU.KOI8-R/share/examples/dev-auto-translate.pl projects/zfsd/head/release/doc/share/mk/doc.relnotes.mk projects/zfsd/head/release/doc/zh_CN.GB2312/errata/Makefile projects/zfsd/head/release/doc/zh_CN.GB2312/hardware/Makefile projects/zfsd/head/release/doc/zh_CN.GB2312/readme/Makefile projects/zfsd/head/release/doc/zh_CN.GB2312/relnotes/Makefile projects/zfsd/head/release/generate-release.sh projects/zfsd/head/release/picobsd/build/picobsd projects/zfsd/head/release/picobsd/tinyware/login/pico-login.c projects/zfsd/head/rescue/rescue/Makefile projects/zfsd/head/sbin/Makefile.amd64 projects/zfsd/head/sbin/Makefile.i386 projects/zfsd/head/sbin/adjkerntz/adjkerntz.c projects/zfsd/head/sbin/camcontrol/camcontrol.c projects/zfsd/head/sbin/devd/devd.cc projects/zfsd/head/sbin/dhclient/dhclient.c projects/zfsd/head/sbin/dhclient/dhcpd.h projects/zfsd/head/sbin/dump/traverse.c projects/zfsd/head/sbin/fsck_ffs/fsck.h projects/zfsd/head/sbin/fsck_ffs/fsutil.c projects/zfsd/head/sbin/fsck_ffs/gjournal.c projects/zfsd/head/sbin/fsck_ffs/inode.c projects/zfsd/head/sbin/fsck_ffs/main.c projects/zfsd/head/sbin/fsck_ffs/pass1.c projects/zfsd/head/sbin/fsck_ffs/pass2.c projects/zfsd/head/sbin/fsck_ffs/pass4.c projects/zfsd/head/sbin/fsck_ffs/suj.c projects/zfsd/head/sbin/fsdb/fsdb.c projects/zfsd/head/sbin/fsdb/fsdbutil.c projects/zfsd/head/sbin/fsirand/fsirand.c projects/zfsd/head/sbin/geom/class/multipath/geom_multipath.c projects/zfsd/head/sbin/geom/class/multipath/gmultipath.8 projects/zfsd/head/sbin/geom/class/part/gpart.8 projects/zfsd/head/sbin/geom/class/raid/graid.8 projects/zfsd/head/sbin/geom/class/sched/gsched.8 projects/zfsd/head/sbin/geom/class/virstor/gvirstor.8 projects/zfsd/head/sbin/ggate/shared/ggate.h projects/zfsd/head/sbin/growfs/growfs.c projects/zfsd/head/sbin/gvinum/Makefile projects/zfsd/head/sbin/hastd/hast.conf.5 projects/zfsd/head/sbin/ipf/ipf/Makefile projects/zfsd/head/sbin/ipfw/dummynet.c projects/zfsd/head/sbin/ipfw/ipfw.8 projects/zfsd/head/sbin/ipfw/ipfw2.c projects/zfsd/head/sbin/ipfw/ipv6.c projects/zfsd/head/sbin/ipfw/nat.c projects/zfsd/head/sbin/md5/Makefile projects/zfsd/head/sbin/md5/md5.1 projects/zfsd/head/sbin/md5/md5.c projects/zfsd/head/sbin/newfs/mkfs.c projects/zfsd/head/sbin/pfctl/Makefile projects/zfsd/head/sbin/quotacheck/quotacheck.c projects/zfsd/head/sbin/restore/dirs.c projects/zfsd/head/sbin/restore/interactive.c projects/zfsd/head/sbin/restore/restore.c projects/zfsd/head/sbin/restore/symtab.c projects/zfsd/head/sbin/restore/tape.c projects/zfsd/head/sbin/shutdown/shutdown.c projects/zfsd/head/sbin/tunefs/tunefs.c projects/zfsd/head/secure/lib/libssh/Makefile projects/zfsd/head/share/doc/smm/Makefile projects/zfsd/head/share/dtrace/Makefile projects/zfsd/head/share/examples/Makefile projects/zfsd/head/share/examples/cvsup/cvs-supfile projects/zfsd/head/share/examples/cvsup/ports-supfile projects/zfsd/head/share/examples/cvsup/refuse projects/zfsd/head/share/examples/cvsup/refuse.README projects/zfsd/head/share/examples/cvsup/stable-supfile projects/zfsd/head/share/examples/diskless/README.BOOTP projects/zfsd/head/share/examples/etc/make.conf projects/zfsd/head/share/examples/kld/dyn_sysctl/dyn_sysctl.c projects/zfsd/head/share/man/man3/Makefile projects/zfsd/head/share/man/man3/queue.3 projects/zfsd/head/share/man/man3/siginfo.3 projects/zfsd/head/share/man/man3/sysexits.3 projects/zfsd/head/share/man/man4/Makefile projects/zfsd/head/share/man/man4/acpi.4 projects/zfsd/head/share/man/man4/ahci.4 projects/zfsd/head/share/man/man4/arcmsr.4 projects/zfsd/head/share/man/man4/ata.4 projects/zfsd/head/share/man/man4/carp.4 projects/zfsd/head/share/man/man4/gpib.4 projects/zfsd/head/share/man/man4/hptiop.4 projects/zfsd/head/share/man/man4/ip.4 projects/zfsd/head/share/man/man4/ip6.4 projects/zfsd/head/share/man/man4/netmap.4 projects/zfsd/head/share/man/man4/ng_ppp.4 projects/zfsd/head/share/man/man4/polling.4 projects/zfsd/head/share/man/man4/random.4 projects/zfsd/head/share/man/man4/sched_ule.4 projects/zfsd/head/share/man/man4/sk.4 projects/zfsd/head/share/man/man4/ugen.4 projects/zfsd/head/share/man/man4/umodem.4 projects/zfsd/head/share/man/man4/uplcom.4 projects/zfsd/head/share/man/man4/usb_quirk.4 projects/zfsd/head/share/man/man4/uslcom.4 projects/zfsd/head/share/man/man5/Makefile projects/zfsd/head/share/man/man5/make.conf.5 projects/zfsd/head/share/man/man5/moduli.5 projects/zfsd/head/share/man/man5/rc.conf.5 projects/zfsd/head/share/man/man5/src.conf.5 projects/zfsd/head/share/man/man7/development.7 projects/zfsd/head/share/man/man7/hier.7 projects/zfsd/head/share/man/man7/release.7 projects/zfsd/head/share/man/man9/DRIVER_MODULE.9 projects/zfsd/head/share/man/man9/Makefile projects/zfsd/head/share/man/man9/VFS.9 projects/zfsd/head/share/man/man9/buf_ring.9 projects/zfsd/head/share/man/man9/bus_dma.9 projects/zfsd/head/share/man/man9/devfs_set_cdevpriv.9 projects/zfsd/head/share/man/man9/drbr.9 projects/zfsd/head/share/man/man9/hash.9 projects/zfsd/head/share/man/man9/ieee80211_node.9 projects/zfsd/head/share/man/man9/kernel_mount.9 projects/zfsd/head/share/man/man9/locking.9 projects/zfsd/head/share/man/man9/malloc.9 projects/zfsd/head/share/man/man9/pfil.9 projects/zfsd/head/share/man/man9/vinvalbuf.9 projects/zfsd/head/share/man/man9/vslock.9 projects/zfsd/head/share/misc/bsd-family-tree projects/zfsd/head/share/misc/committers-doc.dot projects/zfsd/head/share/misc/committers-ports.dot projects/zfsd/head/share/misc/committers-src.dot projects/zfsd/head/share/misc/organization.dot projects/zfsd/head/share/mk/Makefile projects/zfsd/head/share/mk/bsd.cpu.mk projects/zfsd/head/share/mk/bsd.dep.mk projects/zfsd/head/share/mk/bsd.endian.mk projects/zfsd/head/share/mk/bsd.own.mk projects/zfsd/head/share/mk/bsd.prog.mk projects/zfsd/head/share/mk/bsd.sys.mk projects/zfsd/head/share/mk/sys.mk projects/zfsd/head/sys/amd64/amd64/cpu_switch.S projects/zfsd/head/sys/amd64/amd64/elf_machdep.c projects/zfsd/head/sys/amd64/amd64/fpu.c projects/zfsd/head/sys/amd64/amd64/identcpu.c projects/zfsd/head/sys/amd64/amd64/initcpu.c projects/zfsd/head/sys/amd64/amd64/machdep.c projects/zfsd/head/sys/amd64/amd64/mp_machdep.c projects/zfsd/head/sys/amd64/amd64/pmap.c projects/zfsd/head/sys/amd64/amd64/ptrace_machdep.c projects/zfsd/head/sys/amd64/amd64/trap.c projects/zfsd/head/sys/amd64/amd64/vm_machdep.c projects/zfsd/head/sys/amd64/conf/GENERIC projects/zfsd/head/sys/amd64/conf/NOTES projects/zfsd/head/sys/amd64/conf/XENHVM projects/zfsd/head/sys/amd64/ia32/ia32_sigtramp.S projects/zfsd/head/sys/amd64/ia32/ia32_syscall.c projects/zfsd/head/sys/amd64/include/cpufunc.h projects/zfsd/head/sys/amd64/include/fpu.h projects/zfsd/head/sys/amd64/include/md_var.h projects/zfsd/head/sys/amd64/include/param.h projects/zfsd/head/sys/amd64/include/pc/bios.h projects/zfsd/head/sys/amd64/include/pcpu.h projects/zfsd/head/sys/arm/arm/bcopyinout.S projects/zfsd/head/sys/arm/arm/bcopyinout_xscale.S projects/zfsd/head/sys/arm/arm/bus_space_asm_generic.S projects/zfsd/head/sys/arm/arm/busdma_machdep.c projects/zfsd/head/sys/arm/arm/copystr.S projects/zfsd/head/sys/arm/arm/cpufunc.c projects/zfsd/head/sys/arm/arm/cpufunc_asm.S projects/zfsd/head/sys/arm/arm/cpufunc_asm_arm11.S projects/zfsd/head/sys/arm/arm/disassem.c projects/zfsd/head/sys/arm/arm/elf_trampoline.c projects/zfsd/head/sys/arm/arm/exception.S projects/zfsd/head/sys/arm/arm/fusu.S projects/zfsd/head/sys/arm/arm/genassym.c projects/zfsd/head/sys/arm/arm/identcpu.c projects/zfsd/head/sys/arm/arm/locore.S projects/zfsd/head/sys/arm/arm/machdep.c projects/zfsd/head/sys/arm/arm/nexus.c projects/zfsd/head/sys/arm/arm/pmap.c projects/zfsd/head/sys/arm/arm/swtch.S projects/zfsd/head/sys/arm/arm/sys_machdep.c projects/zfsd/head/sys/arm/arm/trap.c projects/zfsd/head/sys/arm/arm/undefined.c projects/zfsd/head/sys/arm/arm/vm_machdep.c projects/zfsd/head/sys/arm/at91/at91.c projects/zfsd/head/sys/arm/at91/at91_machdep.c projects/zfsd/head/sys/arm/at91/at91_mci.c projects/zfsd/head/sys/arm/at91/at91_pmc.c projects/zfsd/head/sys/arm/at91/at91_pmcreg.h projects/zfsd/head/sys/arm/at91/at91_pmcvar.h projects/zfsd/head/sys/arm/at91/at91_spi.c projects/zfsd/head/sys/arm/at91/at91sam9260.c projects/zfsd/head/sys/arm/at91/at91sam9g20.c projects/zfsd/head/sys/arm/at91/board_bwct.c projects/zfsd/head/sys/arm/at91/board_ethernut5.c projects/zfsd/head/sys/arm/at91/board_hl200.c projects/zfsd/head/sys/arm/at91/board_kb920x.c projects/zfsd/head/sys/arm/at91/board_tsc4370.c projects/zfsd/head/sys/arm/at91/files.at91 projects/zfsd/head/sys/arm/at91/if_ate.c projects/zfsd/head/sys/arm/at91/std.at91 projects/zfsd/head/sys/arm/at91/std.at91sam9 projects/zfsd/head/sys/arm/at91/std.atmel projects/zfsd/head/sys/arm/at91/std.sam9x25ek projects/zfsd/head/sys/arm/at91/uart_bus_at91usart.c projects/zfsd/head/sys/arm/conf/ATMEL projects/zfsd/head/sys/arm/conf/AVILA projects/zfsd/head/sys/arm/conf/AVILA.hints projects/zfsd/head/sys/arm/conf/CAMBRIA projects/zfsd/head/sys/arm/conf/CAMBRIA.hints projects/zfsd/head/sys/arm/conf/CNS11XXNAS projects/zfsd/head/sys/arm/conf/DEFAULTS projects/zfsd/head/sys/arm/conf/DOCKSTAR projects/zfsd/head/sys/arm/conf/ETHERNUT5 projects/zfsd/head/sys/arm/conf/ETHERNUT5.hints projects/zfsd/head/sys/arm/conf/GUMSTIX-QEMU projects/zfsd/head/sys/arm/conf/HL201 projects/zfsd/head/sys/arm/conf/KB920X projects/zfsd/head/sys/arm/conf/LN2410SBC projects/zfsd/head/sys/arm/conf/QILA9G20 projects/zfsd/head/sys/arm/conf/SAM9G20EK projects/zfsd/head/sys/arm/conf/SAM9X25EK projects/zfsd/head/sys/arm/conf/SHEEVAPLUG projects/zfsd/head/sys/arm/conf/TS7800 projects/zfsd/head/sys/arm/econa/econa.c projects/zfsd/head/sys/arm/econa/econa_machdep.c projects/zfsd/head/sys/arm/econa/std.econa projects/zfsd/head/sys/arm/include/armreg.h projects/zfsd/head/sys/arm/include/asm.h projects/zfsd/head/sys/arm/include/asmacros.h projects/zfsd/head/sys/arm/include/atomic.h projects/zfsd/head/sys/arm/include/cpuconf.h projects/zfsd/head/sys/arm/include/cpufunc.h projects/zfsd/head/sys/arm/include/fp.h projects/zfsd/head/sys/arm/include/intr.h projects/zfsd/head/sys/arm/include/machdep.h projects/zfsd/head/sys/arm/include/md_var.h projects/zfsd/head/sys/arm/include/param.h projects/zfsd/head/sys/arm/include/pcb.h projects/zfsd/head/sys/arm/include/pcpu.h projects/zfsd/head/sys/arm/include/pmap.h projects/zfsd/head/sys/arm/include/pte.h projects/zfsd/head/sys/arm/include/smp.h projects/zfsd/head/sys/arm/include/sysarch.h projects/zfsd/head/sys/arm/include/vmparam.h projects/zfsd/head/sys/arm/mv/common.c projects/zfsd/head/sys/arm/mv/discovery/files.db78xxx projects/zfsd/head/sys/arm/mv/files.mv projects/zfsd/head/sys/arm/mv/gpio.c projects/zfsd/head/sys/arm/mv/ic.c projects/zfsd/head/sys/arm/mv/kirkwood/files.kirkwood projects/zfsd/head/sys/arm/mv/kirkwood/kirkwood.c projects/zfsd/head/sys/arm/mv/mv_machdep.c projects/zfsd/head/sys/arm/mv/mv_pci.c projects/zfsd/head/sys/arm/mv/mv_sata.c projects/zfsd/head/sys/arm/mv/mvreg.h projects/zfsd/head/sys/arm/mv/mvvar.h projects/zfsd/head/sys/arm/mv/mvwin.h projects/zfsd/head/sys/arm/mv/orion/files.db88f5xxx projects/zfsd/head/sys/arm/mv/orion/files.ts7800 projects/zfsd/head/sys/arm/mv/std.mv projects/zfsd/head/sys/arm/mv/timer.c projects/zfsd/head/sys/arm/mv/twsi.c projects/zfsd/head/sys/arm/s3c2xx0/s3c24x0.c projects/zfsd/head/sys/arm/s3c2xx0/s3c24x0_machdep.c projects/zfsd/head/sys/arm/s3c2xx0/std.ln2410sbc projects/zfsd/head/sys/arm/s3c2xx0/std.s3c2410 projects/zfsd/head/sys/arm/sa11x0/assabet_machdep.c projects/zfsd/head/sys/arm/sa11x0/std.sa11x0 projects/zfsd/head/sys/arm/xscale/i80321/ep80219_machdep.c projects/zfsd/head/sys/arm/xscale/i80321/iq31244_machdep.c projects/zfsd/head/sys/arm/xscale/i80321/std.i80219 projects/zfsd/head/sys/arm/xscale/i80321/std.i80321 projects/zfsd/head/sys/arm/xscale/i8134x/crb_machdep.c projects/zfsd/head/sys/arm/xscale/i8134x/i81342.c projects/zfsd/head/sys/arm/xscale/i8134x/std.i81342 projects/zfsd/head/sys/arm/xscale/ixp425/avila_machdep.c projects/zfsd/head/sys/arm/xscale/ixp425/cambria_gpio.c projects/zfsd/head/sys/arm/xscale/ixp425/std.ixp425 projects/zfsd/head/sys/arm/xscale/ixp425/std.ixp435 projects/zfsd/head/sys/arm/xscale/pxa/pxa_machdep.c projects/zfsd/head/sys/arm/xscale/pxa/pxa_obio.c projects/zfsd/head/sys/arm/xscale/pxa/std.pxa projects/zfsd/head/sys/arm/xscale/std.xscale projects/zfsd/head/sys/boot/Makefile.ia64 projects/zfsd/head/sys/boot/arm/at91/bootspi/ee.c projects/zfsd/head/sys/boot/arm/at91/libat91/at91rm9200.h projects/zfsd/head/sys/boot/arm/at91/libat91/at91rm9200_lowlevel.c projects/zfsd/head/sys/boot/arm/at91/libat91/eeprom.c projects/zfsd/head/sys/boot/arm/at91/libat91/emac_init.c projects/zfsd/head/sys/boot/arm/at91/libat91/lib_AT91RM9200.h projects/zfsd/head/sys/boot/arm/at91/libat91/spi_flash.c projects/zfsd/head/sys/boot/arm/uboot/Makefile projects/zfsd/head/sys/boot/common/Makefile.inc projects/zfsd/head/sys/boot/common/disk.c projects/zfsd/head/sys/boot/common/disk.h projects/zfsd/head/sys/boot/common/load_elf.c projects/zfsd/head/sys/boot/common/loader.8 projects/zfsd/head/sys/boot/common/module.c projects/zfsd/head/sys/boot/common/reloc_elf.c projects/zfsd/head/sys/boot/fdt/dts/xlp-basic.dts projects/zfsd/head/sys/boot/ficl/Makefile projects/zfsd/head/sys/boot/forth/beastie.4th projects/zfsd/head/sys/boot/forth/beastie.4th.8 projects/zfsd/head/sys/boot/forth/brand.4th projects/zfsd/head/sys/boot/forth/brand.4th.8 projects/zfsd/head/sys/boot/forth/check-password.4th projects/zfsd/head/sys/boot/forth/check-password.4th.8 projects/zfsd/head/sys/boot/forth/color.4th projects/zfsd/head/sys/boot/forth/color.4th.8 projects/zfsd/head/sys/boot/forth/delay.4th projects/zfsd/head/sys/boot/forth/delay.4th.8 projects/zfsd/head/sys/boot/forth/menu-commands.4th projects/zfsd/head/sys/boot/forth/menu.4th projects/zfsd/head/sys/boot/forth/menu.4th.8 projects/zfsd/head/sys/boot/forth/shortcuts.4th projects/zfsd/head/sys/boot/forth/version.4th projects/zfsd/head/sys/boot/forth/version.4th.8 projects/zfsd/head/sys/boot/i386/libi386/Makefile projects/zfsd/head/sys/boot/i386/libi386/biosdisk.c projects/zfsd/head/sys/boot/i386/libi386/devicename.c projects/zfsd/head/sys/boot/i386/libi386/libi386.h projects/zfsd/head/sys/boot/i386/libi386/pxe.c projects/zfsd/head/sys/boot/i386/libi386/pxe.h projects/zfsd/head/sys/boot/i386/loader/Makefile projects/zfsd/head/sys/boot/i386/loader/conf.c projects/zfsd/head/sys/boot/i386/loader/main.c projects/zfsd/head/sys/boot/i386/pmbr/pmbr.s projects/zfsd/head/sys/boot/ia64/Makefile projects/zfsd/head/sys/boot/ofw/libofw/devicename.c projects/zfsd/head/sys/boot/pc98/boot2/boot2.c projects/zfsd/head/sys/boot/pc98/btx/btxldr/btxldr.S projects/zfsd/head/sys/boot/pc98/btx/lib/btxcsu.S projects/zfsd/head/sys/boot/pc98/cdboot/cdboot.S projects/zfsd/head/sys/boot/pc98/libpc98/Makefile projects/zfsd/head/sys/boot/pc98/loader/main.c projects/zfsd/head/sys/boot/powerpc/uboot/Makefile projects/zfsd/head/sys/boot/sparc64/loader/main.c projects/zfsd/head/sys/boot/uboot/common/main.c projects/zfsd/head/sys/boot/uboot/lib/Makefile projects/zfsd/head/sys/boot/uboot/lib/devicename.c projects/zfsd/head/sys/boot/uboot/lib/disk.c projects/zfsd/head/sys/boot/uboot/lib/libuboot.h projects/zfsd/head/sys/boot/userboot/test/test.c projects/zfsd/head/sys/boot/userboot/userboot.h projects/zfsd/head/sys/boot/userboot/userboot/Makefile projects/zfsd/head/sys/boot/userboot/userboot/bootinfo32.c projects/zfsd/head/sys/boot/userboot/userboot/copy.c projects/zfsd/head/sys/boot/userboot/userboot/devicename.c projects/zfsd/head/sys/boot/userboot/userboot/libuserboot.h projects/zfsd/head/sys/boot/userboot/userboot/main.c projects/zfsd/head/sys/boot/userboot/userboot/userboot_disk.c projects/zfsd/head/sys/boot/zfs/Makefile projects/zfsd/head/sys/boot/zfs/libzfs.h projects/zfsd/head/sys/boot/zfs/zfs.c projects/zfsd/head/sys/boot/zfs/zfsimpl.c projects/zfsd/head/sys/cam/ata/ata_all.h projects/zfsd/head/sys/cam/ata/ata_xpt.c projects/zfsd/head/sys/cam/cam_ccb.h projects/zfsd/head/sys/cam/cam_periph.c projects/zfsd/head/sys/cam/cam_queue.c projects/zfsd/head/sys/cam/cam_xpt.c projects/zfsd/head/sys/cam/ctl/ctl.c projects/zfsd/head/sys/cam/ctl/ctl_backend_block.c projects/zfsd/head/sys/cam/ctl/ctl_backend_ramdisk.c projects/zfsd/head/sys/cam/ctl/scsi_ctl.c projects/zfsd/head/sys/cam/scsi/scsi_all.c projects/zfsd/head/sys/cam/scsi/scsi_all.h projects/zfsd/head/sys/cam/scsi/scsi_cd.c projects/zfsd/head/sys/cam/scsi/scsi_da.c projects/zfsd/head/sys/cam/scsi/scsi_enc.c projects/zfsd/head/sys/cam/scsi/scsi_enc_safte.c projects/zfsd/head/sys/cam/scsi/scsi_enc_ses.c projects/zfsd/head/sys/cam/scsi/scsi_low.c projects/zfsd/head/sys/cam/scsi/scsi_low.h projects/zfsd/head/sys/cam/scsi/scsi_ses.h projects/zfsd/head/sys/cddl/boot/zfs/zfsimpl.h projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/zfsd/head/sys/cddl/compat/opensolaris/sys/debug.h projects/zfsd/head/sys/cddl/compat/opensolaris/sys/dkio.h projects/zfsd/head/sys/cddl/compat/opensolaris/sys/sid.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/nvpair/fnvpair.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.c projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfeature_common.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bpobj.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/bptree.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_objset.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_traverse.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dnode_sync.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_deadlist.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dir.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_synctask.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/bpobj.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu_objset.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dnode.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_dataset.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/txg.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zap.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfeature.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zil_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zap_micro.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_debug.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_rlock.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/debug.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h projects/zfsd/head/sys/cddl/dev/dtrace/amd64/dtrace_subr.c projects/zfsd/head/sys/cddl/dev/dtrace/i386/dtrace_subr.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_proto.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_syscall.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_syscalls.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_sysent.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/zfsd/head/sys/compat/freebsd32/syscalls.master projects/zfsd/head/sys/compat/ia32/ia32_sysvec.c projects/zfsd/head/sys/compat/ia32/ia32_util.h projects/zfsd/head/sys/compat/linux/linux_file.c projects/zfsd/head/sys/compat/linux/linux_misc.c projects/zfsd/head/sys/conf/Makefile.amd64 projects/zfsd/head/sys/conf/Makefile.arm projects/zfsd/head/sys/conf/Makefile.powerpc projects/zfsd/head/sys/conf/NOTES projects/zfsd/head/sys/conf/files projects/zfsd/head/sys/conf/files.amd64 projects/zfsd/head/sys/conf/files.arm projects/zfsd/head/sys/conf/files.i386 projects/zfsd/head/sys/conf/files.ia64 projects/zfsd/head/sys/conf/files.mips projects/zfsd/head/sys/conf/files.powerpc projects/zfsd/head/sys/conf/kern.mk projects/zfsd/head/sys/conf/kern.post.mk projects/zfsd/head/sys/conf/kern.pre.mk projects/zfsd/head/sys/conf/kmod.mk projects/zfsd/head/sys/conf/ldscript.arm projects/zfsd/head/sys/conf/newvers.sh projects/zfsd/head/sys/conf/options projects/zfsd/head/sys/conf/options.amd64 projects/zfsd/head/sys/conf/options.arm projects/zfsd/head/sys/conf/options.i386 projects/zfsd/head/sys/conf/options.ia64 projects/zfsd/head/sys/conf/options.mips projects/zfsd/head/sys/conf/options.powerpc projects/zfsd/head/sys/contrib/altq/altq/altq_cbq.c projects/zfsd/head/sys/contrib/altq/altq/altq_hfsc.c projects/zfsd/head/sys/contrib/altq/altq/altq_priq.c projects/zfsd/head/sys/contrib/altq/altq/altq_red.c projects/zfsd/head/sys/contrib/altq/altq/altq_rio.c projects/zfsd/head/sys/contrib/altq/altq/altq_rmclass.c projects/zfsd/head/sys/contrib/altq/altq/altq_subr.c projects/zfsd/head/sys/contrib/dev/acpica/acpica_prep.sh projects/zfsd/head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/adisasm.c projects/zfsd/head/sys/contrib/dev/acpica/common/ahpredef.c projects/zfsd/head/sys/contrib/dev/acpica/common/dmrestag.c projects/zfsd/head/sys/contrib/dev/acpica/common/dmtable.c projects/zfsd/head/sys/contrib/dev/acpica/common/dmtbdump.c projects/zfsd/head/sys/contrib/dev/acpica/common/dmtbinfo.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompile.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompiler.h projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompiler.y projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslerror.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslfiles.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslfold.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslglobal.h projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslmain.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslmessages.h projects/zfsd/head/sys/contrib/dev/acpica/compiler/asloperands.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslopt.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslstartup.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslsupport.l projects/zfsd/head/sys/contrib/dev/acpica/compiler/asltree.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/asltypes.h projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslutils.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtio.c projects/zfsd/head/sys/contrib/dev/acpica/compiler/preprocess.h projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbcmds.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbexec.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbinput.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbmethod.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbnames.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbstats.c projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbutils.c projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmopcode.c projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswload.c projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswload2.c projects/zfsd/head/sys/contrib/dev/acpica/components/events/evgpe.c projects/zfsd/head/sys/contrib/dev/acpica/components/events/evxfgpe.c projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwesleep.c projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwgpe.c projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwsleep.c projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsdump.c projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbinstal.c projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbxface.c projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utosi.c projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxface.c projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxferror.c projects/zfsd/head/sys/contrib/dev/acpica/include/acdebug.h projects/zfsd/head/sys/contrib/dev/acpica/include/acdisasm.h projects/zfsd/head/sys/contrib/dev/acpica/include/achware.h projects/zfsd/head/sys/contrib/dev/acpica/include/aclocal.h projects/zfsd/head/sys/contrib/dev/acpica/include/acmacros.h projects/zfsd/head/sys/contrib/dev/acpica/include/acnames.h projects/zfsd/head/sys/contrib/dev/acpica/include/acpixf.h projects/zfsd/head/sys/contrib/dev/acpica/include/actbl.h projects/zfsd/head/sys/contrib/dev/acpica/include/actbl1.h projects/zfsd/head/sys/contrib/dev/acpica/include/actbl2.h projects/zfsd/head/sys/contrib/dev/acpica/include/actbl3.h projects/zfsd/head/sys/contrib/dev/acpica/include/actypes.h projects/zfsd/head/sys/contrib/dev/acpica/include/platform/acenv.h projects/zfsd/head/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c projects/zfsd/head/sys/contrib/ipfilter/netinet/fil.c projects/zfsd/head/sys/contrib/ipfilter/netinet/ip_auth.c projects/zfsd/head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c projects/zfsd/head/sys/contrib/libfdt/fdt.c projects/zfsd/head/sys/contrib/libfdt/fdt_ro.c projects/zfsd/head/sys/contrib/libfdt/fdt_rw.c projects/zfsd/head/sys/contrib/libfdt/libfdt.h projects/zfsd/head/sys/contrib/libfdt/libfdt_env.h projects/zfsd/head/sys/contrib/libfdt/libfdt_internal.h projects/zfsd/head/sys/contrib/rdma/rdma_addr.c projects/zfsd/head/sys/dev/aac/aac_cam.c projects/zfsd/head/sys/dev/aac/aac_disk.c projects/zfsd/head/sys/dev/acpica/acpi.c projects/zfsd/head/sys/dev/acpica/acpi_cpu.c projects/zfsd/head/sys/dev/acpica/acpi_hpet.c projects/zfsd/head/sys/dev/acpica/acpivar.h projects/zfsd/head/sys/dev/agp/agp.c projects/zfsd/head/sys/dev/agp/agp_i810.c projects/zfsd/head/sys/dev/ahci/ahci.c projects/zfsd/head/sys/dev/ahci/ahci.h projects/zfsd/head/sys/dev/aic7xxx/aic79xx_osm.c projects/zfsd/head/sys/dev/aic7xxx/aic_osm_lib.c projects/zfsd/head/sys/dev/alc/if_alc.c projects/zfsd/head/sys/dev/amr/amr.c projects/zfsd/head/sys/dev/amr/amrvar.h projects/zfsd/head/sys/dev/arcmsr/arcmsr.c projects/zfsd/head/sys/dev/arcmsr/arcmsr.h projects/zfsd/head/sys/dev/ata/ata-all.c projects/zfsd/head/sys/dev/ata/ata-all.h projects/zfsd/head/sys/dev/ata/ata-lowlevel.c projects/zfsd/head/sys/dev/ata/ata-pci.h projects/zfsd/head/sys/dev/ata/ata-sata.c projects/zfsd/head/sys/dev/ata/chipsets/ata-jmicron.c projects/zfsd/head/sys/dev/ath/ah_osdep.h projects/zfsd/head/sys/dev/ath/ath_dfs/null/dfs_null.c projects/zfsd/head/sys/dev/ath/ath_hal/ah.c projects/zfsd/head/sys/dev/ath/ath_hal/ah.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_desc.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_devid.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_diagcodes.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_eeprom.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_eeprom_9287.c projects/zfsd/head/sys/dev/ath/ath_hal/ah_internal.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5211/ar5211.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212phy.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar2133.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_radar.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416reg.h projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9280.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9285.h projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/zfsd/head/sys/dev/ath/ath_rate/amrr/amrr.c projects/zfsd/head/sys/dev/ath/ath_rate/onoe/onoe.c projects/zfsd/head/sys/dev/ath/ath_rate/sample/sample.c projects/zfsd/head/sys/dev/ath/ath_rate/sample/sample.h projects/zfsd/head/sys/dev/ath/ath_rate/sample/tx_schedules.h projects/zfsd/head/sys/dev/ath/if_ath.c projects/zfsd/head/sys/dev/ath/if_ath_ahb.c projects/zfsd/head/sys/dev/ath/if_ath_beacon.c projects/zfsd/head/sys/dev/ath/if_ath_beacon.h projects/zfsd/head/sys/dev/ath/if_ath_debug.c projects/zfsd/head/sys/dev/ath/if_ath_debug.h projects/zfsd/head/sys/dev/ath/if_ath_misc.h projects/zfsd/head/sys/dev/ath/if_ath_pci.c projects/zfsd/head/sys/dev/ath/if_ath_rx.c projects/zfsd/head/sys/dev/ath/if_ath_rx_edma.c projects/zfsd/head/sys/dev/ath/if_ath_sysctl.c projects/zfsd/head/sys/dev/ath/if_ath_tx.c projects/zfsd/head/sys/dev/ath/if_ath_tx.h projects/zfsd/head/sys/dev/ath/if_ath_tx_ht.c projects/zfsd/head/sys/dev/ath/if_athioctl.h projects/zfsd/head/sys/dev/ath/if_athrate.h projects/zfsd/head/sys/dev/ath/if_athvar.h projects/zfsd/head/sys/dev/atkbdc/psm.c projects/zfsd/head/sys/dev/bce/if_bce.c projects/zfsd/head/sys/dev/bge/if_bge.c projects/zfsd/head/sys/dev/buslogic/bt.c projects/zfsd/head/sys/dev/bxe/if_bxe.c projects/zfsd/head/sys/dev/cesa/cesa.c projects/zfsd/head/sys/dev/ct/bshw_machdep.c projects/zfsd/head/sys/dev/ct/ct.c projects/zfsd/head/sys/dev/ct/ct_isa.c projects/zfsd/head/sys/dev/ct/ct_machdep.h projects/zfsd/head/sys/dev/ct/ctvar.h projects/zfsd/head/sys/dev/cxgb/cxgb_main.c projects/zfsd/head/sys/dev/cxgb/cxgb_osdep.h projects/zfsd/head/sys/dev/cxgb/ulp/iw_cxgb/iw_cxgb_provider.c projects/zfsd/head/sys/dev/cxgb/ulp/tom/cxgb_cpl_io.c projects/zfsd/head/sys/dev/cxgb/ulp/tom/cxgb_listen.c projects/zfsd/head/sys/dev/cxgb/ulp/tom/cxgb_toepcb.h projects/zfsd/head/sys/dev/cxgbe/adapter.h projects/zfsd/head/sys/dev/cxgbe/common/common.h projects/zfsd/head/sys/dev/cxgbe/common/t4_hw.h projects/zfsd/head/sys/dev/cxgbe/common/t4_msg.h projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw_cfg.txt projects/zfsd/head/sys/dev/cxgbe/firmware/t4fw_interface.h projects/zfsd/head/sys/dev/cxgbe/offload.h projects/zfsd/head/sys/dev/cxgbe/osdep.h projects/zfsd/head/sys/dev/cxgbe/t4_l2t.h projects/zfsd/head/sys/dev/cxgbe/t4_main.c projects/zfsd/head/sys/dev/cxgbe/t4_sge.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_connect.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_cpl_io.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_listen.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_tom.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_tom.h projects/zfsd/head/sys/dev/drm/drm_fops.c projects/zfsd/head/sys/dev/drm2/drmP.h projects/zfsd/head/sys/dev/drm2/drm_drv.c projects/zfsd/head/sys/dev/drm2/drm_fops.c projects/zfsd/head/sys/dev/drm2/drm_gem.c projects/zfsd/head/sys/dev/drm2/i915/i915_dma.c projects/zfsd/head/sys/dev/drm2/i915/i915_drv.c projects/zfsd/head/sys/dev/drm2/i915/i915_drv.h projects/zfsd/head/sys/dev/e1000/e1000_82575.c projects/zfsd/head/sys/dev/e1000/e1000_ich8lan.c projects/zfsd/head/sys/dev/e1000/if_em.c projects/zfsd/head/sys/dev/e1000/if_igb.c projects/zfsd/head/sys/dev/e1000/if_igb.h projects/zfsd/head/sys/dev/e1000/if_lem.c projects/zfsd/head/sys/dev/esp/ncr53c9x.c projects/zfsd/head/sys/dev/et/if_et.c projects/zfsd/head/sys/dev/fb/fbreg.h projects/zfsd/head/sys/dev/fdt/fdt_common.c projects/zfsd/head/sys/dev/fdt/fdt_common.h projects/zfsd/head/sys/dev/fdt/fdt_pci.c projects/zfsd/head/sys/dev/fdt/fdtbus.c projects/zfsd/head/sys/dev/fdt/simplebus.c projects/zfsd/head/sys/dev/flash/mx25l.c projects/zfsd/head/sys/dev/gxemul/cons/gxemul_cons.c projects/zfsd/head/sys/dev/gxemul/disk/gxemul_disk.c projects/zfsd/head/sys/dev/hptiop/hptiop.c projects/zfsd/head/sys/dev/hptmv/entry.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_amd.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_arm.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_core.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_core.h projects/zfsd/head/sys/dev/hwpmc/hwpmc_intel.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_x86.c projects/zfsd/head/sys/dev/hwpmc/pmc_events.h projects/zfsd/head/sys/dev/ida/ida.c projects/zfsd/head/sys/dev/ida/ida_disk.c projects/zfsd/head/sys/dev/ida/ida_eisa.c projects/zfsd/head/sys/dev/ida/ida_pci.c projects/zfsd/head/sys/dev/ida/idavar.h projects/zfsd/head/sys/dev/ie/if_ie_isa.c projects/zfsd/head/sys/dev/iicbus/ad7417.c projects/zfsd/head/sys/dev/iicbus/ds1775.c projects/zfsd/head/sys/dev/iicbus/max6690.c projects/zfsd/head/sys/dev/ipmi/ipmi.c projects/zfsd/head/sys/dev/ipmi/ipmi_smbios.c projects/zfsd/head/sys/dev/ipmi/ipmivars.h projects/zfsd/head/sys/dev/isci/isci.c projects/zfsd/head/sys/dev/isci/isci.h projects/zfsd/head/sys/dev/isci/isci_controller.c projects/zfsd/head/sys/dev/isci/isci_remote_device.c projects/zfsd/head/sys/dev/isci/scil/sati.c projects/zfsd/head/sys/dev/isci/scil/sati_callbacks.h projects/zfsd/head/sys/dev/isci/scil/sati_unmap.c projects/zfsd/head/sys/dev/isci/scil/sati_util.c projects/zfsd/head/sys/dev/isci/scil/sati_write_buffer.c projects/zfsd/head/sys/dev/isci/scil/sci_base_controller.h projects/zfsd/head/sys/dev/isci/scil/sci_base_domain.h projects/zfsd/head/sys/dev/isci/scil/sci_base_phy.h projects/zfsd/head/sys/dev/isci/scil/sci_base_remote_device.h projects/zfsd/head/sys/dev/isci/scil/scic_io_request.h projects/zfsd/head/sys/dev/isci/scil/scic_sds_phy.c projects/zfsd/head/sys/dev/isci/scil/scic_sds_port.h projects/zfsd/head/sys/dev/isci/scil/scic_sds_remote_device.h projects/zfsd/head/sys/dev/isci/scil/scic_sds_remote_node_context.h projects/zfsd/head/sys/dev/isci/scil/scic_sds_request.c projects/zfsd/head/sys/dev/isci/scil/scif_sas_sati_binding.h projects/zfsd/head/sys/dev/isci/scil/scif_sas_stp_io_request.c projects/zfsd/head/sys/dev/isci/scil/scu_bios_definitions.h projects/zfsd/head/sys/dev/isp/isp.c projects/zfsd/head/sys/dev/isp/isp_freebsd.c projects/zfsd/head/sys/dev/isp/isp_freebsd.h projects/zfsd/head/sys/dev/isp/isp_library.c projects/zfsd/head/sys/dev/isp/isp_library.h projects/zfsd/head/sys/dev/isp/isp_pci.c projects/zfsd/head/sys/dev/isp/isp_sbus.c projects/zfsd/head/sys/dev/isp/isp_stds.h projects/zfsd/head/sys/dev/isp/isp_target.c projects/zfsd/head/sys/dev/isp/isp_target.h projects/zfsd/head/sys/dev/isp/ispmbox.h projects/zfsd/head/sys/dev/isp/ispvar.h projects/zfsd/head/sys/dev/ispfw/asm_2300.h projects/zfsd/head/sys/dev/ixgbe/ixgbe.c projects/zfsd/head/sys/dev/ixgbe/ixgbe.h projects/zfsd/head/sys/dev/ixgbe/ixgbe_82599.c projects/zfsd/head/sys/dev/ixgbe/ixgbe_osdep.h projects/zfsd/head/sys/dev/ixgbe/ixv.c projects/zfsd/head/sys/dev/jme/if_jme.c projects/zfsd/head/sys/dev/ksyms/ksyms.c projects/zfsd/head/sys/dev/md/md.c projects/zfsd/head/sys/dev/mfi/mfi.c projects/zfsd/head/sys/dev/mge/if_mge.c projects/zfsd/head/sys/dev/mge/if_mgevar.h projects/zfsd/head/sys/dev/mii/e1000phy.c projects/zfsd/head/sys/dev/mii/miidevs projects/zfsd/head/sys/dev/mii/smcphy.c projects/zfsd/head/sys/dev/mlx/mlx.c projects/zfsd/head/sys/dev/mlx/mlx_disk.c projects/zfsd/head/sys/dev/mlx/mlx_pci.c projects/zfsd/head/sys/dev/mlx/mlxreg.h projects/zfsd/head/sys/dev/mlx/mlxvar.h projects/zfsd/head/sys/dev/mly/mly.c projects/zfsd/head/sys/dev/mmc/mmc.c projects/zfsd/head/sys/dev/mmc/mmcsd.c projects/zfsd/head/sys/dev/mps/mps.c projects/zfsd/head/sys/dev/mps/mps_sas.c projects/zfsd/head/sys/dev/mps/mps_sas_lsi.c projects/zfsd/head/sys/dev/mps/mps_table.c projects/zfsd/head/sys/dev/mps/mps_user.c projects/zfsd/head/sys/dev/mps/mpsvar.h projects/zfsd/head/sys/dev/mvs/mvs_soc.c projects/zfsd/head/sys/dev/mxge/if_mxge.c projects/zfsd/head/sys/dev/ncv/ncr53c500.c projects/zfsd/head/sys/dev/ncv/ncr53c500_pccard.c projects/zfsd/head/sys/dev/ncv/ncr53c500hw.h projects/zfsd/head/sys/dev/ncv/ncr53c500var.h projects/zfsd/head/sys/dev/netmap/if_em_netmap.h projects/zfsd/head/sys/dev/netmap/if_igb_netmap.h projects/zfsd/head/sys/dev/netmap/ixgbe_netmap.h projects/zfsd/head/sys/dev/netmap/netmap.c projects/zfsd/head/sys/dev/netmap/netmap_kern.h projects/zfsd/head/sys/dev/netmap/netmap_mem2.c projects/zfsd/head/sys/dev/nsp/nsp.c projects/zfsd/head/sys/dev/nsp/nsp_pccard.c projects/zfsd/head/sys/dev/nsp/nspvar.h projects/zfsd/head/sys/dev/oce/oce_if.c projects/zfsd/head/sys/dev/ofw/ofw_bus_subr.c projects/zfsd/head/sys/dev/ofw/ofw_bus_subr.h projects/zfsd/head/sys/dev/ofw/ofw_iicbus.c projects/zfsd/head/sys/dev/ofw/openfirm.c projects/zfsd/head/sys/dev/ofw/openfirm.h projects/zfsd/head/sys/dev/pccbb/pccbb_pci.c projects/zfsd/head/sys/dev/pci/pci.c projects/zfsd/head/sys/dev/pci/pci_pci.c projects/zfsd/head/sys/dev/pci/pci_user.c projects/zfsd/head/sys/dev/pci/pcireg.h projects/zfsd/head/sys/dev/puc/puc_cfg.h projects/zfsd/head/sys/dev/puc/pucdata.c projects/zfsd/head/sys/dev/random/nehemiah.c projects/zfsd/head/sys/dev/random/probe.c projects/zfsd/head/sys/dev/re/if_re.c projects/zfsd/head/sys/dev/sdhci/sdhci.c projects/zfsd/head/sys/dev/sound/macio/snapper.c projects/zfsd/head/sys/dev/sound/pci/hda/hdaa.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.h projects/zfsd/head/sys/dev/sound/pci/hdspe-pcm.c projects/zfsd/head/sys/dev/sound/pci/hdspe.c projects/zfsd/head/sys/dev/sound/usb/uaudio.c projects/zfsd/head/sys/dev/sound/usb/uaudioreg.h projects/zfsd/head/sys/dev/spibus/spi.h projects/zfsd/head/sys/dev/stg/tmc18c30.c projects/zfsd/head/sys/dev/stg/tmc18c30_isa.c projects/zfsd/head/sys/dev/stg/tmc18c30_pccard.c projects/zfsd/head/sys/dev/stg/tmc18c30_pci.c projects/zfsd/head/sys/dev/stg/tmc18c30_subr.c projects/zfsd/head/sys/dev/stg/tmc18c30var.h projects/zfsd/head/sys/dev/sym/sym_hipd.c projects/zfsd/head/sys/dev/syscons/schistory.c projects/zfsd/head/sys/dev/syscons/scterm-teken.c projects/zfsd/head/sys/dev/syscons/syscons.c projects/zfsd/head/sys/dev/twe/twe.c projects/zfsd/head/sys/dev/twe/twe_compat.h projects/zfsd/head/sys/dev/twe/twe_freebsd.c projects/zfsd/head/sys/dev/twe/twevar.h projects/zfsd/head/sys/dev/tws/tws.c projects/zfsd/head/sys/dev/tws/tws_cam.c projects/zfsd/head/sys/dev/uart/uart.h projects/zfsd/head/sys/dev/uart/uart_bus_fdt.c projects/zfsd/head/sys/dev/uart/uart_subr.c projects/zfsd/head/sys/dev/usb/controller/at91dci.c projects/zfsd/head/sys/dev/usb/controller/at91dci_atmelarm.c projects/zfsd/head/sys/dev/usb/controller/atmegadci.c projects/zfsd/head/sys/dev/usb/controller/avr32dci.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.h projects/zfsd/head/sys/dev/usb/controller/ehci.c projects/zfsd/head/sys/dev/usb/controller/musb_otg.c projects/zfsd/head/sys/dev/usb/controller/ohci.c projects/zfsd/head/sys/dev/usb/controller/ohci_atmelarm.c projects/zfsd/head/sys/dev/usb/controller/uhci.c projects/zfsd/head/sys/dev/usb/controller/usb_controller.c projects/zfsd/head/sys/dev/usb/controller/uss820dci.c projects/zfsd/head/sys/dev/usb/controller/xhci.c projects/zfsd/head/sys/dev/usb/controller/xhci.h projects/zfsd/head/sys/dev/usb/controller/xhci_pci.c projects/zfsd/head/sys/dev/usb/controller/xhcireg.h projects/zfsd/head/sys/dev/usb/input/ums.c projects/zfsd/head/sys/dev/usb/net/if_udav.c projects/zfsd/head/sys/dev/usb/net/if_udavreg.h projects/zfsd/head/sys/dev/usb/net/if_usie.c projects/zfsd/head/sys/dev/usb/net/uhso.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.h projects/zfsd/head/sys/dev/usb/serial/u3g.c projects/zfsd/head/sys/dev/usb/serial/uark.c projects/zfsd/head/sys/dev/usb/serial/ubsa.c projects/zfsd/head/sys/dev/usb/serial/ubser.c projects/zfsd/head/sys/dev/usb/serial/uchcom.c projects/zfsd/head/sys/dev/usb/serial/ucycom.c projects/zfsd/head/sys/dev/usb/serial/ufoma.c projects/zfsd/head/sys/dev/usb/serial/uftdi.c projects/zfsd/head/sys/dev/usb/serial/uftdi_reg.h projects/zfsd/head/sys/dev/usb/serial/ugensa.c projects/zfsd/head/sys/dev/usb/serial/uipaq.c projects/zfsd/head/sys/dev/usb/serial/ulpt.c projects/zfsd/head/sys/dev/usb/serial/umcs.c projects/zfsd/head/sys/dev/usb/serial/umct.c projects/zfsd/head/sys/dev/usb/serial/umodem.c projects/zfsd/head/sys/dev/usb/serial/umoscom.c projects/zfsd/head/sys/dev/usb/serial/uplcom.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.h projects/zfsd/head/sys/dev/usb/serial/uslcom.c projects/zfsd/head/sys/dev/usb/serial/uvisor.c projects/zfsd/head/sys/dev/usb/serial/uvscom.c projects/zfsd/head/sys/dev/usb/usb.h projects/zfsd/head/sys/dev/usb/usb_controller.h projects/zfsd/head/sys/dev/usb/usb_core.h projects/zfsd/head/sys/dev/usb/usb_debug.c projects/zfsd/head/sys/dev/usb/usb_device.c projects/zfsd/head/sys/dev/usb/usb_device.h projects/zfsd/head/sys/dev/usb/usb_freebsd.h projects/zfsd/head/sys/dev/usb/usb_generic.c projects/zfsd/head/sys/dev/usb/usb_hub.c projects/zfsd/head/sys/dev/usb/usb_ioctl.h projects/zfsd/head/sys/dev/usb/usb_msctest.c projects/zfsd/head/sys/dev/usb/usb_pf.c projects/zfsd/head/sys/dev/usb/usb_request.c projects/zfsd/head/sys/dev/usb/usb_transfer.c projects/zfsd/head/sys/dev/usb/usbdevs projects/zfsd/head/sys/dev/usb/usbdi.h projects/zfsd/head/sys/dev/usb/wlan/if_run.c projects/zfsd/head/sys/dev/virtio/virtio.h projects/zfsd/head/sys/dev/virtio/virtqueue.c projects/zfsd/head/sys/dev/vxge/include/vxgehal-ll.h projects/zfsd/head/sys/dev/vxge/vxge.c projects/zfsd/head/sys/dev/wtap/if_wtap.c projects/zfsd/head/sys/dev/xen/netback/netback_unit_tests.c projects/zfsd/head/sys/fs/cd9660/cd9660_vfsops.c projects/zfsd/head/sys/fs/coda/coda_subr.c projects/zfsd/head/sys/fs/deadfs/dead_vnops.c projects/zfsd/head/sys/fs/devfs/devfs_int.h projects/zfsd/head/sys/fs/devfs/devfs_vnops.c projects/zfsd/head/sys/fs/ext2fs/ext2_alloc.c projects/zfsd/head/sys/fs/ext2fs/ext2_bmap.c projects/zfsd/head/sys/fs/ext2fs/ext2_dinode.h projects/zfsd/head/sys/fs/ext2fs/ext2_inode.c projects/zfsd/head/sys/fs/ext2fs/ext2_inode_cnv.c projects/zfsd/head/sys/fs/ext2fs/ext2_vfsops.c projects/zfsd/head/sys/fs/ext2fs/ext2fs.h projects/zfsd/head/sys/fs/ext2fs/inode.h projects/zfsd/head/sys/fs/fifofs/fifo_vnops.c projects/zfsd/head/sys/fs/hpfs/hpfs_vfsops.c projects/zfsd/head/sys/fs/msdosfs/msdosfs_lookup.c projects/zfsd/head/sys/fs/nandfs/bmap.c projects/zfsd/head/sys/fs/nfs/nfs.h projects/zfsd/head/sys/fs/nfs/nfs_commonacl.c projects/zfsd/head/sys/fs/nfs/nfs_commonport.c projects/zfsd/head/sys/fs/nfs/nfs_commonsubs.c projects/zfsd/head/sys/fs/nfs/nfs_var.h projects/zfsd/head/sys/fs/nfs/nfscl.h projects/zfsd/head/sys/fs/nfsclient/nfs_clbio.c projects/zfsd/head/sys/fs/nfsclient/nfs_clcomsubs.c projects/zfsd/head/sys/fs/nfsclient/nfs_clrpcops.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdport.c projects/zfsd/head/sys/fs/ntfs/ntfs_subr.c projects/zfsd/head/sys/fs/ntfs/ntfs_vfsops.c projects/zfsd/head/sys/fs/ntfs/ntfs_vnops.c projects/zfsd/head/sys/fs/nullfs/null.h projects/zfsd/head/sys/fs/nullfs/null_subr.c projects/zfsd/head/sys/fs/nullfs/null_vfsops.c projects/zfsd/head/sys/fs/nullfs/null_vnops.c projects/zfsd/head/sys/fs/nwfs/nwfs_io.c projects/zfsd/head/sys/fs/portalfs/portal_vnops.c projects/zfsd/head/sys/fs/smbfs/smbfs_io.c projects/zfsd/head/sys/fs/smbfs/smbfs_node.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_subr.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vfsops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vnops.c projects/zfsd/head/sys/fs/udf/udf_vfsops.c projects/zfsd/head/sys/geom/bde/g_bde.c projects/zfsd/head/sys/geom/eli/g_eli_key_cache.c projects/zfsd/head/sys/geom/gate/g_gate.c projects/zfsd/head/sys/geom/geom.h projects/zfsd/head/sys/geom/geom_dev.c projects/zfsd/head/sys/geom/geom_disk.c projects/zfsd/head/sys/geom/geom_disk.h projects/zfsd/head/sys/geom/geom_event.c projects/zfsd/head/sys/geom/geom_io.c projects/zfsd/head/sys/geom/geom_slice.c projects/zfsd/head/sys/geom/geom_subr.c projects/zfsd/head/sys/geom/mirror/g_mirror.c projects/zfsd/head/sys/geom/multipath/g_multipath.c projects/zfsd/head/sys/geom/part/g_part.c projects/zfsd/head/sys/geom/raid/g_raid.c projects/zfsd/head/sys/geom/raid/g_raid.h projects/zfsd/head/sys/geom/raid/md_ddf.c projects/zfsd/head/sys/geom/raid/md_intel.c projects/zfsd/head/sys/geom/raid/md_jmicron.c projects/zfsd/head/sys/geom/raid/md_nvidia.c projects/zfsd/head/sys/geom/raid/md_promise.c projects/zfsd/head/sys/geom/raid/md_sii.c projects/zfsd/head/sys/geom/raid/tr_concat.c projects/zfsd/head/sys/geom/raid/tr_raid0.c projects/zfsd/head/sys/geom/raid/tr_raid1.c projects/zfsd/head/sys/geom/raid/tr_raid1e.c projects/zfsd/head/sys/geom/raid/tr_raid5.c projects/zfsd/head/sys/geom/raid3/g_raid3.c projects/zfsd/head/sys/geom/uncompress/g_uncompress.c projects/zfsd/head/sys/geom/uzip/g_uzip.c projects/zfsd/head/sys/geom/virstor/g_virstor.c projects/zfsd/head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_ioctl.c projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_stats.c projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_super.c projects/zfsd/head/sys/gnu/fs/xfs/xfs_alloc.c projects/zfsd/head/sys/gnu/fs/xfs/xfs_vfsops.c projects/zfsd/head/sys/i386/bios/smapi.c projects/zfsd/head/sys/i386/bios/smapi_bios.S projects/zfsd/head/sys/i386/conf/GENERIC projects/zfsd/head/sys/i386/conf/NOTES projects/zfsd/head/sys/i386/conf/PAE projects/zfsd/head/sys/i386/conf/XENHVM (contents, props changed) projects/zfsd/head/sys/i386/i386/identcpu.c projects/zfsd/head/sys/i386/i386/machdep.c projects/zfsd/head/sys/i386/i386/mp_machdep.c projects/zfsd/head/sys/i386/i386/pmap.c projects/zfsd/head/sys/i386/i386/ptrace_machdep.c projects/zfsd/head/sys/i386/i386/trap.c projects/zfsd/head/sys/i386/i386/vm86.c projects/zfsd/head/sys/i386/i386/vm_machdep.c projects/zfsd/head/sys/i386/include/cpufunc.h projects/zfsd/head/sys/i386/include/npx.h projects/zfsd/head/sys/i386/include/param.h projects/zfsd/head/sys/i386/include/pc/bios.h projects/zfsd/head/sys/i386/include/pcpu.h projects/zfsd/head/sys/i386/include/xen/xen-os.h projects/zfsd/head/sys/i386/isa/npx.c projects/zfsd/head/sys/i386/linux/linux_proto.h projects/zfsd/head/sys/i386/linux/linux_syscall.h projects/zfsd/head/sys/i386/linux/linux_syscalls.c projects/zfsd/head/sys/i386/linux/linux_sysent.c projects/zfsd/head/sys/i386/linux/linux_systrace_args.c projects/zfsd/head/sys/i386/linux/syscalls.master projects/zfsd/head/sys/i386/xen/pmap.c projects/zfsd/head/sys/ia64/conf/NOTES projects/zfsd/head/sys/ia64/ia32/ia32_trap.c projects/zfsd/head/sys/ia64/ia64/mem.c projects/zfsd/head/sys/ia64/ia64/pmap.c projects/zfsd/head/sys/ia64/ia64/trap.c projects/zfsd/head/sys/kern/bus_if.m projects/zfsd/head/sys/kern/dtio_kdtrace.c projects/zfsd/head/sys/kern/imgact_aout.c projects/zfsd/head/sys/kern/imgact_elf.c projects/zfsd/head/sys/kern/init_main.c projects/zfsd/head/sys/kern/init_sysent.c projects/zfsd/head/sys/kern/kern_clocksource.c projects/zfsd/head/sys/kern/kern_condvar.c projects/zfsd/head/sys/kern/kern_conf.c projects/zfsd/head/sys/kern/kern_cpuset.c projects/zfsd/head/sys/kern/kern_descrip.c projects/zfsd/head/sys/kern/kern_environment.c projects/zfsd/head/sys/kern/kern_event.c projects/zfsd/head/sys/kern/kern_exec.c projects/zfsd/head/sys/kern/kern_exit.c projects/zfsd/head/sys/kern/kern_fork.c projects/zfsd/head/sys/kern/kern_intr.c projects/zfsd/head/sys/kern/kern_ktr.c projects/zfsd/head/sys/kern/kern_lock.c projects/zfsd/head/sys/kern/kern_malloc.c projects/zfsd/head/sys/kern/kern_mbuf.c projects/zfsd/head/sys/kern/kern_mib.c projects/zfsd/head/sys/kern/kern_module.c projects/zfsd/head/sys/kern/kern_mutex.c projects/zfsd/head/sys/kern/kern_ntptime.c projects/zfsd/head/sys/kern/kern_proc.c projects/zfsd/head/sys/kern/kern_rmlock.c projects/zfsd/head/sys/kern/kern_rwlock.c projects/zfsd/head/sys/kern/kern_sig.c projects/zfsd/head/sys/kern/kern_sx.c projects/zfsd/head/sys/kern/kern_tc.c projects/zfsd/head/sys/kern/kern_thread.c projects/zfsd/head/sys/kern/kern_time.c projects/zfsd/head/sys/kern/kern_umtx.c projects/zfsd/head/sys/kern/ksched.c projects/zfsd/head/sys/kern/link_elf.c projects/zfsd/head/sys/kern/sched_4bsd.c projects/zfsd/head/sys/kern/sched_ule.c projects/zfsd/head/sys/kern/subr_bus.c projects/zfsd/head/sys/kern/subr_hints.c projects/zfsd/head/sys/kern/subr_param.c projects/zfsd/head/sys/kern/subr_sleepqueue.c projects/zfsd/head/sys/kern/subr_syscall.c projects/zfsd/head/sys/kern/subr_taskqueue.c projects/zfsd/head/sys/kern/subr_trap.c projects/zfsd/head/sys/kern/subr_uio.c projects/zfsd/head/sys/kern/subr_unit.c projects/zfsd/head/sys/kern/subr_witness.c projects/zfsd/head/sys/kern/sys_pipe.c projects/zfsd/head/sys/kern/sys_procdesc.c projects/zfsd/head/sys/kern/sys_process.c projects/zfsd/head/sys/kern/syscalls.c projects/zfsd/head/sys/kern/syscalls.master projects/zfsd/head/sys/kern/systrace_args.c projects/zfsd/head/sys/kern/tty_ttydisc.c projects/zfsd/head/sys/kern/uipc_mqueue.c projects/zfsd/head/sys/kern/uipc_socket.c projects/zfsd/head/sys/kern/uipc_syscalls.c projects/zfsd/head/sys/kern/uipc_usrreq.c projects/zfsd/head/sys/kern/vfs_cluster.c projects/zfsd/head/sys/kern/vfs_default.c projects/zfsd/head/sys/kern/vfs_lookup.c projects/zfsd/head/sys/kern/vfs_mount.c projects/zfsd/head/sys/kern/vfs_subr.c projects/zfsd/head/sys/kern/vfs_syscalls.c projects/zfsd/head/sys/kern/vfs_vnops.c projects/zfsd/head/sys/kern/vnode_if.src projects/zfsd/head/sys/mips/atheros/ar71xx_gpio.c projects/zfsd/head/sys/mips/atheros/ar724x_pci.c projects/zfsd/head/sys/mips/cavium/octeon_gpio.c projects/zfsd/head/sys/mips/cavium/usb/octusb.c projects/zfsd/head/sys/mips/conf/AP93 projects/zfsd/head/sys/mips/conf/AP93.hints projects/zfsd/head/sys/mips/conf/AP96 projects/zfsd/head/sys/mips/conf/PB47 projects/zfsd/head/sys/mips/conf/PB92 projects/zfsd/head/sys/mips/conf/ROUTERSTATION projects/zfsd/head/sys/mips/conf/RSPRO projects/zfsd/head/sys/mips/conf/RSPRO_STANDALONE projects/zfsd/head/sys/mips/conf/TP-WN1043ND projects/zfsd/head/sys/mips/include/pmap.h projects/zfsd/head/sys/mips/include/pte.h projects/zfsd/head/sys/mips/include/tlb.h projects/zfsd/head/sys/mips/mips/busdma_machdep.c projects/zfsd/head/sys/mips/mips/machdep.c projects/zfsd/head/sys/mips/mips/pmap.c projects/zfsd/head/sys/mips/mips/tlb.c projects/zfsd/head/sys/mips/mips/trap.c projects/zfsd/head/sys/mips/mips/uma_machdep.c projects/zfsd/head/sys/mips/nlm/bus_space_rmi.c projects/zfsd/head/sys/mips/nlm/xlp_machdep.c projects/zfsd/head/sys/mips/rt305x/rt305x_gpio.c projects/zfsd/head/sys/modules/Makefile projects/zfsd/head/sys/modules/acpi/acpi/Makefile projects/zfsd/head/sys/modules/ahci/Makefile projects/zfsd/head/sys/modules/ath/Makefile projects/zfsd/head/sys/modules/bwn/Makefile projects/zfsd/head/sys/modules/cam/Makefile projects/zfsd/head/sys/modules/cxgbe/firmware/Makefile projects/zfsd/head/sys/modules/cxgbe/if_cxgbe/Makefile projects/zfsd/head/sys/modules/cxgbe/tom/Makefile projects/zfsd/head/sys/modules/drm2/drm2/Makefile projects/zfsd/head/sys/modules/drm2/i915kms/Makefile projects/zfsd/head/sys/modules/dtrace/dtraceall/Makefile projects/zfsd/head/sys/modules/dtrace/dtraceall/dtraceall.c projects/zfsd/head/sys/modules/dummynet/Makefile projects/zfsd/head/sys/modules/ipfw/Makefile projects/zfsd/head/sys/modules/ipfw_nat/Makefile projects/zfsd/head/sys/modules/ips/Makefile projects/zfsd/head/sys/modules/mii/Makefile projects/zfsd/head/sys/modules/mps/Makefile projects/zfsd/head/sys/modules/pf/Makefile projects/zfsd/head/sys/modules/pflog/Makefile projects/zfsd/head/sys/modules/pfsync/Makefile projects/zfsd/head/sys/modules/random/Makefile projects/zfsd/head/sys/modules/scsi_low/Makefile projects/zfsd/head/sys/modules/xfs/Makefile projects/zfsd/head/sys/modules/zfs/Makefile projects/zfsd/head/sys/net/bpf.h projects/zfsd/head/sys/net/bpf_zerocopy.c projects/zfsd/head/sys/net/flowtable.c projects/zfsd/head/sys/net/if.c projects/zfsd/head/sys/net/if_bridge.c projects/zfsd/head/sys/net/if_clone.c projects/zfsd/head/sys/net/if_enc.c projects/zfsd/head/sys/net/if_ethersubr.c projects/zfsd/head/sys/net/if_lagg.c projects/zfsd/head/sys/net/if_llatbl.c projects/zfsd/head/sys/net/if_llatbl.h projects/zfsd/head/sys/net/if_loop.c projects/zfsd/head/sys/net/if_stf.c projects/zfsd/head/sys/net/if_tap.c projects/zfsd/head/sys/net/if_tun.c projects/zfsd/head/sys/net/if_var.h projects/zfsd/head/sys/net/if_vlan.c projects/zfsd/head/sys/net/netmap_user.h projects/zfsd/head/sys/net80211/ieee80211.h projects/zfsd/head/sys/net80211/ieee80211_adhoc.c projects/zfsd/head/sys/net80211/ieee80211_hostap.c projects/zfsd/head/sys/net80211/ieee80211_hostap.h projects/zfsd/head/sys/net80211/ieee80211_hwmp.c projects/zfsd/head/sys/net80211/ieee80211_mesh.c projects/zfsd/head/sys/net80211/ieee80211_node.c projects/zfsd/head/sys/net80211/ieee80211_node.h projects/zfsd/head/sys/net80211/ieee80211_power.c projects/zfsd/head/sys/net80211/ieee80211_power.h projects/zfsd/head/sys/net80211/ieee80211_scan.c projects/zfsd/head/sys/net80211/ieee80211_sta.c projects/zfsd/head/sys/net80211/ieee80211_var.h projects/zfsd/head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/zfsd/head/sys/netgraph/ng_base.c projects/zfsd/head/sys/netgraph/ng_ether.c projects/zfsd/head/sys/netgraph/ng_ipfw.c projects/zfsd/head/sys/netgraph/ng_pptpgre.c projects/zfsd/head/sys/netinet/if_ether.c projects/zfsd/head/sys/netinet/in.c projects/zfsd/head/sys/netinet/in_cksum.c projects/zfsd/head/sys/netinet/in_gif.c projects/zfsd/head/sys/netinet/in_pcb.c projects/zfsd/head/sys/netinet/in_pcb.h projects/zfsd/head/sys/netinet/in_var.h projects/zfsd/head/sys/netinet/ip_carp.c projects/zfsd/head/sys/netinet/ip_dummynet.h projects/zfsd/head/sys/netinet/ip_fastfwd.c projects/zfsd/head/sys/netinet/ip_icmp.c projects/zfsd/head/sys/netinet/ip_input.c projects/zfsd/head/sys/netinet/ip_output.c projects/zfsd/head/sys/netinet/ip_var.h projects/zfsd/head/sys/netinet/khelp/h_ertt.c projects/zfsd/head/sys/netinet/libalias/alias_skinny.c projects/zfsd/head/sys/netinet/raw_ip.c projects/zfsd/head/sys/netinet/sctp_asconf.c projects/zfsd/head/sys/netinet/sctp_auth.c projects/zfsd/head/sys/netinet/sctp_bsd_addr.c projects/zfsd/head/sys/netinet/sctp_cc_functions.c projects/zfsd/head/sys/netinet/sctp_header.h projects/zfsd/head/sys/netinet/sctp_indata.c projects/zfsd/head/sys/netinet/sctp_input.c projects/zfsd/head/sys/netinet/sctp_input.h projects/zfsd/head/sys/netinet/sctp_output.c projects/zfsd/head/sys/netinet/sctp_output.h projects/zfsd/head/sys/netinet/sctp_pcb.c projects/zfsd/head/sys/netinet/sctp_structs.h projects/zfsd/head/sys/netinet/sctp_timer.c projects/zfsd/head/sys/netinet/sctp_uio.h projects/zfsd/head/sys/netinet/sctp_usrreq.c projects/zfsd/head/sys/netinet/sctputil.c projects/zfsd/head/sys/netinet/tcp_input.c projects/zfsd/head/sys/netinet/tcp_output.c projects/zfsd/head/sys/netinet/tcp_subr.c projects/zfsd/head/sys/netinet/tcp_timer.c projects/zfsd/head/sys/netinet/tcp_usrreq.c projects/zfsd/head/sys/netinet/toecore.c projects/zfsd/head/sys/netinet/toecore.h projects/zfsd/head/sys/netinet6/icmp6.c projects/zfsd/head/sys/netinet6/in6.c projects/zfsd/head/sys/netinet6/in6_gif.c projects/zfsd/head/sys/netinet6/ip6_ipsec.c projects/zfsd/head/sys/netinet6/ip6_output.c projects/zfsd/head/sys/netinet6/sctp6_usrreq.c projects/zfsd/head/sys/netipsec/ipsec_input.c projects/zfsd/head/sys/netipsec/ipsec_output.c projects/zfsd/head/sys/netipsec/key.c projects/zfsd/head/sys/netipsec/xform_ipip.c projects/zfsd/head/sys/nfs/bootp_subr.c projects/zfsd/head/sys/nfsclient/nfs_bio.c projects/zfsd/head/sys/nfsserver/nfs_serv.c projects/zfsd/head/sys/nlm/nlm_advlock.c projects/zfsd/head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib.h projects/zfsd/head/sys/ofed/drivers/net/mlx4/en_tx.c projects/zfsd/head/sys/ofed/include/linux/gfp.h projects/zfsd/head/sys/ofed/include/linux/linux_compat.c projects/zfsd/head/sys/ofed/include/linux/pci.h projects/zfsd/head/sys/pc98/conf/GENERIC projects/zfsd/head/sys/pc98/pc98/machdep.c projects/zfsd/head/sys/powerpc/aim/machdep.c projects/zfsd/head/sys/powerpc/aim/mmu_oea.c projects/zfsd/head/sys/powerpc/aim/mmu_oea64.c projects/zfsd/head/sys/powerpc/aim/trap.c projects/zfsd/head/sys/powerpc/booke/trap.c projects/zfsd/head/sys/powerpc/conf/GENERIC projects/zfsd/head/sys/powerpc/conf/GENERIC64 projects/zfsd/head/sys/powerpc/conf/NOTES projects/zfsd/head/sys/powerpc/include/cpu.h projects/zfsd/head/sys/powerpc/include/pcb.h projects/zfsd/head/sys/powerpc/include/spr.h projects/zfsd/head/sys/powerpc/mpc85xx/pci_fdt.c projects/zfsd/head/sys/powerpc/ofw/ofw_real.c projects/zfsd/head/sys/powerpc/ofw/ofw_syscons.c projects/zfsd/head/sys/powerpc/powermac/atibl.c projects/zfsd/head/sys/powerpc/powerpc/busdma_machdep.c projects/zfsd/head/sys/rpc/auth.h projects/zfsd/head/sys/rpc/clnt_vc.c projects/zfsd/head/sys/rpc/rpc_com.h projects/zfsd/head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/zfsd/head/sys/rpc/xdr.h projects/zfsd/head/sys/sparc64/conf/GENERIC projects/zfsd/head/sys/sparc64/include/fsr.h projects/zfsd/head/sys/sparc64/include/pmap.h projects/zfsd/head/sys/sparc64/include/smp.h projects/zfsd/head/sys/sparc64/include/vmparam.h projects/zfsd/head/sys/sparc64/pci/fire.c projects/zfsd/head/sys/sparc64/pci/schizo.c projects/zfsd/head/sys/sparc64/sparc64/ata_machdep.c projects/zfsd/head/sys/sparc64/sparc64/mp_machdep.c projects/zfsd/head/sys/sparc64/sparc64/pmap.c projects/zfsd/head/sys/sparc64/sparc64/support.S projects/zfsd/head/sys/sparc64/sparc64/tick.c projects/zfsd/head/sys/sparc64/sparc64/trap.c projects/zfsd/head/sys/sys/_cpuset.h projects/zfsd/head/sys/sys/_rmlock.h projects/zfsd/head/sys/sys/buf.h projects/zfsd/head/sys/sys/buf_ring.h projects/zfsd/head/sys/sys/bus.h projects/zfsd/head/sys/sys/capability.h projects/zfsd/head/sys/sys/cdefs.h projects/zfsd/head/sys/sys/conf.h projects/zfsd/head/sys/sys/fcntl.h projects/zfsd/head/sys/sys/hash.h projects/zfsd/head/sys/sys/mbuf.h projects/zfsd/head/sys/sys/mount.h projects/zfsd/head/sys/sys/param.h projects/zfsd/head/sys/sys/pcpu.h projects/zfsd/head/sys/sys/pipe.h projects/zfsd/head/sys/sys/pmc.h projects/zfsd/head/sys/sys/pmckern.h projects/zfsd/head/sys/sys/proc.h projects/zfsd/head/sys/sys/queue.h projects/zfsd/head/sys/sys/refcount.h projects/zfsd/head/sys/sys/stat.h projects/zfsd/head/sys/sys/syscall.h projects/zfsd/head/sys/sys/syscall.mk projects/zfsd/head/sys/sys/sysproto.h projects/zfsd/head/sys/sys/time.h projects/zfsd/head/sys/sys/unistd.h projects/zfsd/head/sys/sys/user.h projects/zfsd/head/sys/ufs/ffs/ffs_alloc.c projects/zfsd/head/sys/ufs/ffs/ffs_snapshot.c projects/zfsd/head/sys/ufs/ffs/ffs_softdep.c projects/zfsd/head/sys/ufs/ffs/ffs_vfsops.c projects/zfsd/head/sys/ufs/ffs/ffs_vnops.c projects/zfsd/head/sys/ufs/ufs/inode.h projects/zfsd/head/sys/ufs/ufs/ufs_acl.c projects/zfsd/head/sys/ufs/ufs/ufs_bmap.c projects/zfsd/head/sys/ufs/ufs/ufs_lookup.c projects/zfsd/head/sys/ufs/ufs/ufs_vnops.c projects/zfsd/head/sys/vm/device_pager.c projects/zfsd/head/sys/vm/memguard.c projects/zfsd/head/sys/vm/memguard.h projects/zfsd/head/sys/vm/sg_pager.c projects/zfsd/head/sys/vm/swap_pager.c projects/zfsd/head/sys/vm/uma_core.c projects/zfsd/head/sys/vm/vm_glue.c projects/zfsd/head/sys/vm/vm_kern.c projects/zfsd/head/sys/vm/vm_map.c projects/zfsd/head/sys/vm/vm_map.h projects/zfsd/head/sys/vm/vm_mmap.c projects/zfsd/head/sys/vm/vm_object.c projects/zfsd/head/sys/vm/vm_page.c projects/zfsd/head/sys/vm/vm_page.h projects/zfsd/head/sys/vm/vm_pageout.c projects/zfsd/head/sys/vm/vm_pageout.h projects/zfsd/head/sys/vm/vm_reserv.c projects/zfsd/head/sys/vm/vnode_pager.c projects/zfsd/head/sys/x86/acpica/acpi_wakeup.c projects/zfsd/head/sys/x86/bios/smbios.c projects/zfsd/head/sys/x86/include/specialreg.h projects/zfsd/head/sys/x86/x86/busdma_machdep.c projects/zfsd/head/sys/x86/x86/local_apic.c projects/zfsd/head/sys/x86/x86/tsc.c projects/zfsd/head/tools/bsdbox/Makefile projects/zfsd/head/tools/bsdbox/Makefile.base projects/zfsd/head/tools/bsdbox/Makefile.fs projects/zfsd/head/tools/bsdbox/Makefile.hostapd projects/zfsd/head/tools/build/Makefile projects/zfsd/head/tools/build/mk/OptionalObsoleteFiles.inc projects/zfsd/head/tools/diag/README projects/zfsd/head/tools/kerneldoc/subsys/common-Doxyfile projects/zfsd/head/tools/regression/lib/libc/gen/Makefile projects/zfsd/head/tools/test/hwpmc/pmctest.py projects/zfsd/head/tools/tools/README projects/zfsd/head/tools/tools/ath/Makefile projects/zfsd/head/tools/tools/ath/ath_prom_read/Makefile projects/zfsd/head/tools/tools/ath/athaggrstats/Makefile projects/zfsd/head/tools/tools/ath/athrd/athrd.1 projects/zfsd/head/tools/tools/ath/athstats/Makefile projects/zfsd/head/tools/tools/ath/common/ah_osdep.h projects/zfsd/head/tools/tools/ath/common/diag.h projects/zfsd/head/tools/tools/netmap/pcap.c projects/zfsd/head/tools/tools/netmap/pkt-gen.c projects/zfsd/head/tools/tools/sysbuild/sysbuild.sh projects/zfsd/head/tools/tools/track/track.sh projects/zfsd/head/usr.bin/Makefile projects/zfsd/head/usr.bin/at/parsetime.c projects/zfsd/head/usr.bin/calendar/calendars/calendar.freebsd projects/zfsd/head/usr.bin/chat/chat.8 projects/zfsd/head/usr.bin/clang/Makefile projects/zfsd/head/usr.bin/clang/bugpoint/bugpoint.1 projects/zfsd/head/usr.bin/clang/clang-tblgen/Makefile projects/zfsd/head/usr.bin/clang/clang.prog.mk projects/zfsd/head/usr.bin/clang/clang/Makefile projects/zfsd/head/usr.bin/clang/clang/clang.1 projects/zfsd/head/usr.bin/clang/llc/Makefile projects/zfsd/head/usr.bin/clang/llc/llc.1 projects/zfsd/head/usr.bin/clang/lli/lli.1 projects/zfsd/head/usr.bin/clang/llvm-ar/llvm-ar.1 projects/zfsd/head/usr.bin/clang/llvm-as/llvm-as.1 projects/zfsd/head/usr.bin/clang/llvm-bcanalyzer/llvm-bcanalyzer.1 projects/zfsd/head/usr.bin/clang/llvm-diff/llvm-diff.1 projects/zfsd/head/usr.bin/clang/llvm-dis/Makefile projects/zfsd/head/usr.bin/clang/llvm-dis/llvm-dis.1 projects/zfsd/head/usr.bin/clang/llvm-extract/Makefile projects/zfsd/head/usr.bin/clang/llvm-extract/llvm-extract.1 projects/zfsd/head/usr.bin/clang/llvm-link/Makefile projects/zfsd/head/usr.bin/clang/llvm-link/llvm-link.1 projects/zfsd/head/usr.bin/clang/llvm-mc/Makefile projects/zfsd/head/usr.bin/clang/llvm-nm/llvm-nm.1 projects/zfsd/head/usr.bin/clang/llvm-objdump/Makefile projects/zfsd/head/usr.bin/clang/llvm-prof/Makefile projects/zfsd/head/usr.bin/clang/llvm-prof/llvm-prof.1 projects/zfsd/head/usr.bin/clang/llvm-ranlib/llvm-ranlib.1 projects/zfsd/head/usr.bin/clang/llvm-rtdyld/Makefile projects/zfsd/head/usr.bin/clang/opt/opt.1 projects/zfsd/head/usr.bin/clang/tblgen/Makefile projects/zfsd/head/usr.bin/clang/tblgen/tblgen.1 projects/zfsd/head/usr.bin/cpio/Makefile projects/zfsd/head/usr.bin/cpio/test/Makefile projects/zfsd/head/usr.bin/csup/proto.c projects/zfsd/head/usr.bin/du/du.1 projects/zfsd/head/usr.bin/du/du.c projects/zfsd/head/usr.bin/fetch/Makefile projects/zfsd/head/usr.bin/find/extern.h projects/zfsd/head/usr.bin/find/find.1 projects/zfsd/head/usr.bin/find/find.c projects/zfsd/head/usr.bin/find/function.c projects/zfsd/head/usr.bin/find/ls.c projects/zfsd/head/usr.bin/find/main.c projects/zfsd/head/usr.bin/find/option.c projects/zfsd/head/usr.bin/finger/finger.1 projects/zfsd/head/usr.bin/getent/getent.c projects/zfsd/head/usr.bin/kdump/kdump.c projects/zfsd/head/usr.bin/kdump/mksubr projects/zfsd/head/usr.bin/last/last.1 projects/zfsd/head/usr.bin/last/last.c projects/zfsd/head/usr.bin/lex/NEWS projects/zfsd/head/usr.bin/lock/lock.c projects/zfsd/head/usr.bin/mail/util.c projects/zfsd/head/usr.bin/make/var.c projects/zfsd/head/usr.bin/mkcsmapper/lex.l projects/zfsd/head/usr.bin/mkesdb/lex.l projects/zfsd/head/usr.bin/mktemp/mktemp.1 projects/zfsd/head/usr.bin/mktemp/mktemp.c projects/zfsd/head/usr.bin/ncplist/ncplist.1 projects/zfsd/head/usr.bin/netstat/Makefile projects/zfsd/head/usr.bin/netstat/if.c projects/zfsd/head/usr.bin/netstat/sctp.c projects/zfsd/head/usr.bin/nfsstat/nfsstat.c projects/zfsd/head/usr.bin/printf/printf.c projects/zfsd/head/usr.bin/procstat/procstat.1 projects/zfsd/head/usr.bin/procstat/procstat_auxv.c projects/zfsd/head/usr.bin/procstat/procstat_files.c projects/zfsd/head/usr.bin/procstat/procstat_vm.c projects/zfsd/head/usr.bin/rctl/rctl.8 projects/zfsd/head/usr.bin/rpcinfo/rpcinfo.c projects/zfsd/head/usr.bin/script/script.1 projects/zfsd/head/usr.bin/script/script.c projects/zfsd/head/usr.bin/sort/sort.1.in projects/zfsd/head/usr.bin/stdbuf/Makefile projects/zfsd/head/usr.bin/systat/cmds.c projects/zfsd/head/usr.bin/systat/extern.h projects/zfsd/head/usr.bin/systat/icmp.c projects/zfsd/head/usr.bin/systat/icmp6.c projects/zfsd/head/usr.bin/systat/ifstat.c projects/zfsd/head/usr.bin/systat/ip.c projects/zfsd/head/usr.bin/systat/ip6.c projects/zfsd/head/usr.bin/systat/keyboard.c projects/zfsd/head/usr.bin/systat/main.c projects/zfsd/head/usr.bin/systat/systat.1 projects/zfsd/head/usr.bin/systat/tcp.c projects/zfsd/head/usr.bin/talk/talk.1 projects/zfsd/head/usr.bin/tar/Makefile projects/zfsd/head/usr.bin/tar/test/Makefile projects/zfsd/head/usr.bin/time/time.c projects/zfsd/head/usr.bin/truss/amd64-fbsd.c projects/zfsd/head/usr.bin/truss/amd64-fbsd32.c projects/zfsd/head/usr.bin/truss/amd64-linux32.c projects/zfsd/head/usr.bin/truss/extern.h projects/zfsd/head/usr.bin/truss/i386-fbsd.c projects/zfsd/head/usr.bin/truss/i386-linux.c projects/zfsd/head/usr.bin/truss/ia64-fbsd.c projects/zfsd/head/usr.bin/truss/main.c projects/zfsd/head/usr.bin/truss/mips-fbsd.c projects/zfsd/head/usr.bin/truss/powerpc-fbsd.c projects/zfsd/head/usr.bin/truss/powerpc64-fbsd.c projects/zfsd/head/usr.bin/truss/setup.c projects/zfsd/head/usr.bin/truss/sparc64-fbsd.c projects/zfsd/head/usr.bin/truss/syscall.h projects/zfsd/head/usr.bin/truss/syscalls.c projects/zfsd/head/usr.bin/truss/truss.h projects/zfsd/head/usr.bin/users/users.1 projects/zfsd/head/usr.bin/w/w.1 projects/zfsd/head/usr.bin/xlint/Makefile.inc projects/zfsd/head/usr.bin/xlint/lint1/makeman projects/zfsd/head/usr.bin/yes/yes.1 projects/zfsd/head/usr.sbin/Makefile projects/zfsd/head/usr.sbin/ac/Makefile projects/zfsd/head/usr.sbin/ac/ac.8 projects/zfsd/head/usr.sbin/ac/ac.c projects/zfsd/head/usr.sbin/acpi/acpidb/Makefile projects/zfsd/head/usr.sbin/acpi/acpidump/acpi.c projects/zfsd/head/usr.sbin/adduser/adduser.8 projects/zfsd/head/usr.sbin/arp/arp.4 projects/zfsd/head/usr.sbin/authpf/Makefile projects/zfsd/head/usr.sbin/bsdinstall/bsdinstall projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_diskstorage_tbl.c projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_scalars.c projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_swrun_tbl.c projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_mibII/Makefile projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_pf/BEGEMOT-PF-MIB.txt projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_pf/pf_snmp.c projects/zfsd/head/usr.sbin/bsnmpd/modules/snmp_pf/pf_tree.def projects/zfsd/head/usr.sbin/cron/cron/cron.c projects/zfsd/head/usr.sbin/cron/crontab/crontab.c projects/zfsd/head/usr.sbin/cron/lib/misc.c projects/zfsd/head/usr.sbin/ctladm/ctladm.c projects/zfsd/head/usr.sbin/fifolog/fifolog_create/fifolog.1 projects/zfsd/head/usr.sbin/ftp-proxy/ftp-proxy/Makefile projects/zfsd/head/usr.sbin/inetd/builtins.c projects/zfsd/head/usr.sbin/ip6addrctl/Makefile projects/zfsd/head/usr.sbin/ip6addrctl/ip6addrctl.c projects/zfsd/head/usr.sbin/ipfwpcap/ipfwpcap.8 projects/zfsd/head/usr.sbin/jail/config.c projects/zfsd/head/usr.sbin/jail/jail.8 projects/zfsd/head/usr.sbin/jail/jail.c projects/zfsd/head/usr.sbin/keyserv/keyserv.c projects/zfsd/head/usr.sbin/lmcconfig/lmcconfig.c projects/zfsd/head/usr.sbin/lpr/common_source/common.c projects/zfsd/head/usr.sbin/lpr/lpd/lpd.8 projects/zfsd/head/usr.sbin/lpr/lpd/printjob.c projects/zfsd/head/usr.sbin/lpr/lpr/lpr.c projects/zfsd/head/usr.sbin/makefs/ffs.c projects/zfsd/head/usr.sbin/makefs/ffs/ffs_alloc.c projects/zfsd/head/usr.sbin/makefs/ffs/ffs_extern.h projects/zfsd/head/usr.sbin/makefs/ffs/ufs_bmap.c projects/zfsd/head/usr.sbin/makefs/makefs.8 projects/zfsd/head/usr.sbin/makefs/makefs.c projects/zfsd/head/usr.sbin/makefs/makefs.h projects/zfsd/head/usr.sbin/mergemaster/mergemaster.sh projects/zfsd/head/usr.sbin/mountd/mountd.c projects/zfsd/head/usr.sbin/moused/moused.c projects/zfsd/head/usr.sbin/nvram/nvram.c projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-disk.sh projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-mountdisk.sh projects/zfsd/head/usr.sbin/pc-sysinstall/backend/functions-newfs.sh projects/zfsd/head/usr.sbin/pciconf/cap.c projects/zfsd/head/usr.sbin/pciconf/err.c projects/zfsd/head/usr.sbin/pciconf/pciconf.c projects/zfsd/head/usr.sbin/pkg/pkg.c projects/zfsd/head/usr.sbin/pkg_install/add/add.h projects/zfsd/head/usr.sbin/pkg_install/add/extract.c projects/zfsd/head/usr.sbin/pkg_install/add/futil.c projects/zfsd/head/usr.sbin/pkg_install/add/main.c projects/zfsd/head/usr.sbin/pkg_install/add/perform.c projects/zfsd/head/usr.sbin/pkg_install/create/perform.c projects/zfsd/head/usr.sbin/pkg_install/info/info.h projects/zfsd/head/usr.sbin/pkg_install/info/perform.c projects/zfsd/head/usr.sbin/pkg_install/info/show.c projects/zfsd/head/usr.sbin/pkg_install/lib/exec.c projects/zfsd/head/usr.sbin/pkg_install/lib/lib.h projects/zfsd/head/usr.sbin/pkg_install/lib/plist.c projects/zfsd/head/usr.sbin/pkg_install/version/perform.c projects/zfsd/head/usr.sbin/pmcstat/pmcstat.c projects/zfsd/head/usr.sbin/portsnap/portsnap/portsnap.8 projects/zfsd/head/usr.sbin/portsnap/portsnap/portsnap.sh projects/zfsd/head/usr.sbin/ppp/ppp.8.m4 projects/zfsd/head/usr.sbin/pw/pw_user.c projects/zfsd/head/usr.sbin/pw/pwupd.c projects/zfsd/head/usr.sbin/quot/quot.c projects/zfsd/head/usr.sbin/rpc.lockd/lockd_lock.c projects/zfsd/head/usr.sbin/rtprio/rtprio.1 projects/zfsd/head/usr.sbin/rwhod/rwhod.8 projects/zfsd/head/usr.sbin/snapinfo/snapinfo.c projects/zfsd/head/usr.sbin/syslogd/syslog.conf.5 projects/zfsd/head/usr.sbin/syslogd/syslogd.c projects/zfsd/head/usr.sbin/tcpdump/tcpdump/Makefile projects/zfsd/head/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/zfsd/head/usr.sbin/timed/timed/master.c projects/zfsd/head/usr.sbin/timed/timed/measure.c projects/zfsd/head/usr.sbin/timed/timed/readmsg.c projects/zfsd/head/usr.sbin/timed/timed/slave.c projects/zfsd/head/usr.sbin/timed/timed/timed.c projects/zfsd/head/usr.sbin/timed/timedc/cmds.c projects/zfsd/head/usr.sbin/watchdogd/watchdogd.c projects/zfsd/head/usr.sbin/wpa/hostapd/hostapd.8 Directory Properties: projects/zfsd/head/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/zfsd/head/contrib/bind9/ (props changed) projects/zfsd/head/contrib/binutils/ (props changed) projects/zfsd/head/contrib/byacc/ (props changed) projects/zfsd/head/contrib/bzip2/ (props changed) projects/zfsd/head/contrib/compiler-rt/ (props changed) projects/zfsd/head/contrib/dtc/ (props changed) projects/zfsd/head/contrib/file/ (props changed) projects/zfsd/head/contrib/gcc/ (props changed) projects/zfsd/head/contrib/gdb/ (props changed) projects/zfsd/head/contrib/groff/ (props changed) projects/zfsd/head/contrib/less/ (props changed) projects/zfsd/head/contrib/libarchive/ (props changed) projects/zfsd/head/contrib/libarchive/cpio/ (props changed) projects/zfsd/head/contrib/libarchive/libarchive/ (props changed) projects/zfsd/head/contrib/libarchive/libarchive_fe/ (props changed) projects/zfsd/head/contrib/libarchive/tar/ (props changed) projects/zfsd/head/contrib/libpcap/ (props changed) projects/zfsd/head/contrib/llvm/ (props changed) projects/zfsd/head/contrib/llvm/tools/clang/ (props changed) projects/zfsd/head/contrib/openresolv/ (props changed) projects/zfsd/head/contrib/pf/ (props changed) projects/zfsd/head/contrib/sendmail/ (props changed) projects/zfsd/head/contrib/tcpdump/ (props changed) projects/zfsd/head/contrib/tzdata/ (props changed) projects/zfsd/head/crypto/openssh/ (props changed) projects/zfsd/head/crypto/openssl/ (props changed) projects/zfsd/head/gnu/lib/ (props changed) projects/zfsd/head/gnu/usr.bin/binutils/ (props changed) projects/zfsd/head/gnu/usr.bin/gdb/ (props changed) projects/zfsd/head/lib/libc/ (props changed) projects/zfsd/head/lib/libutil/ (props changed) projects/zfsd/head/sbin/ (props changed) projects/zfsd/head/sbin/ipfw/ (props changed) projects/zfsd/head/share/man/man4/ (props changed) projects/zfsd/head/sys/ (props changed) projects/zfsd/head/sys/boot/ (props changed) projects/zfsd/head/sys/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/sys/conf/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/os_specific/ (props changed) projects/zfsd/head/sys/contrib/libfdt/ (props changed) projects/zfsd/head/usr.bin/calendar/ (props changed) projects/zfsd/head/usr.bin/csup/ (props changed) projects/zfsd/head/usr.bin/procstat/ (props changed) projects/zfsd/head/usr.sbin/jail/ (props changed) Modified: projects/zfsd/head/MAINTAINERS ============================================================================== --- projects/zfsd/head/MAINTAINERS Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/MAINTAINERS Tue Nov 27 18:38:50 2012 (r243619) @@ -3,7 +3,7 @@ $FreeBSD$ Please note that the content of this file is strictly advisory. No locks listed here are valid. The only strict review requirements are granted by core. These are documented in head/LOCKS and enforced -by CVSROOT/approvers. +by svnadmin/conf/approvers. The source tree is a community effort. However, some folks go to the trouble of looking after particular areas of the tree. In return for Modified: projects/zfsd/head/Makefile ============================================================================== --- projects/zfsd/head/Makefile Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/Makefile Tue Nov 27 18:38:50 2012 (r243619) @@ -135,7 +135,7 @@ _MAKE= PATH=${PATH} ${BINMAKE} -f Makefi _TARGET_ARCH= ${TARGET:S/pc98/i386/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} -_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/armeb/arm/} +_TARGET= ${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/} .endif # Legacy names, for another transition period mips:mips(n32|64)?eb -> mips:mips\1 .if defined(TARGET) && defined(TARGET_ARCH) && \ @@ -216,7 +216,7 @@ ${TGTS}: .MAIN: all STARTTIME!= LC_ALL=C date -CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s +CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo .if !empty(CHECK_TIME) .error check your date/time: ${STARTTIME} .endif @@ -329,7 +329,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 +TARGET_ARCHES_arm?= arm armeb armv6 armv6eb TARGET_ARCHES_mips?= mipsel mips mips64el mips64 mipsn32 TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 Modified: projects/zfsd/head/Makefile.inc1 ============================================================================== --- projects/zfsd/head/Makefile.inc1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/Makefile.inc1 Tue Nov 27 18:38:50 2012 (r243619) @@ -46,6 +46,7 @@ TARGET_ARCH=${TARGET} .include .include +.include # We must do share/info early so that installation of info `dir' # entries works correctly. Do it first since it is less likely to @@ -137,7 +138,7 @@ VERSION!= uname -srp VERSION+= ${OSRELDATE} .endif -KNOWN_ARCHES?= amd64 arm armeb/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 armv6eb/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 @@ -235,7 +236,8 @@ BMAKEENV= INSTALL="sh ${.CURDIR}/tools/i PATH=${BPATH}:${PATH} \ WORLDTMP=${WORLDTMP} \ VERSION="${VERSION}" \ - MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" + MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ + COMPILER_TYPE=${COMPILER_TYPE} BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ DESTDIR= \ @@ -270,6 +272,16 @@ WMAKEENV= ${CROSSENV} \ .if ${MK_CDDL} == "no" WMAKEENV+= NO_CTF=1 .endif +.if ${CC:T:Mgcc} == "gcc" +WMAKE_COMPILER_TYPE= gcc +.elif ${CC:T:Mclang} == "clang" +WMAKE_COMPILER_TYPE= clang +.elif ${MK_CLANG_IS_CC} == "no" +WMAKE_COMPILER_TYPE= gcc +.else +WMAKE_COMPILER_TYPE= clang +.endif +WMAKEENV+= COMPILER_TYPE=${WMAKE_COMPILER_TYPE} WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP} .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" @@ -313,7 +325,8 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR CC="${CC} ${LIB32FLAGS}" \ CXX="${CXX} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ - SHLIBDIR=/usr/lib32 + SHLIBDIR=/usr/lib32 \ + COMPILER_TYPE=${WMAKE_COMPILER_TYPE} LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ @@ -636,7 +649,10 @@ ITOOLS= [ awk cap_mkdb cat chflags chmod # # Non-base distributions produced by the base system -EXTRA_DISTRIBUTIONS= doc games +EXTRA_DISTRIBUTIONS= doc +.if ${MK_GAMES} != "no" +EXTRA_DISTRIBUTIONS+= games +.endif .if defined(LIB32TMP) && ${MK_LIB32} != "no" EXTRA_DISTRIBUTIONS+= lib32 .endif @@ -1260,7 +1276,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 lib/ncurses/ncurses lib/ncurses/ncursesw \ lib/libopie lib/libpam ${_lib_libthr} \ lib/libradius lib/libsbuf lib/libtacplus \ - ${_cddl_lib_libumem} \ + ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ lib/libutil ${_lib_libypclnt} lib/libz lib/msun \ ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} @@ -1284,6 +1300,7 @@ lib/libopie__L lib/libtacplus__L: lib/li .if ${MK_CDDL} != "no" _cddl_lib_libumem= cddl/lib/libumem +_cddl_lib_libnvpair= cddl/lib/libnvpair _cddl_lib= cddl/lib .endif @@ -1554,7 +1571,7 @@ DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF} .if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) .if exists(${KERNCONFDIR}/${KERNCONF}) FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ - ${KERNCONFDIR}/${KERNCONF} + ${KERNCONFDIR}/${KERNCONF} ; echo .endif .endif Modified: projects/zfsd/head/ObsoleteFiles.inc ============================================================================== --- projects/zfsd/head/ObsoleteFiles.inc Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/ObsoleteFiles.inc Tue Nov 27 18:38:50 2012 (r243619) @@ -38,6 +38,38 @@ # xargs -n1 | sort | uniq -d; # done +# 20121004: remove incomplete unwind.h +OLD_FILES+=usr/include/clang/3.2/unwind.h +# 20120908: pf cleanup +OLD_FILES+=usr/include/net/if_pflow.h +# 20120816: new clang import which bumps version from 3.1 to 3.2 +OLD_FILES+=usr/bin/llvm-ld +OLD_FILES+=usr/bin/llvm-stub +OLD_FILES+=usr/include/clang/3.1/altivec.h +OLD_FILES+=usr/include/clang/3.1/avx2intrin.h +OLD_FILES+=usr/include/clang/3.1/avxintrin.h +OLD_FILES+=usr/include/clang/3.1/bmi2intrin.h +OLD_FILES+=usr/include/clang/3.1/bmiintrin.h +OLD_FILES+=usr/include/clang/3.1/cpuid.h +OLD_FILES+=usr/include/clang/3.1/emmintrin.h +OLD_FILES+=usr/include/clang/3.1/fma4intrin.h +OLD_FILES+=usr/include/clang/3.1/immintrin.h +OLD_FILES+=usr/include/clang/3.1/lzcntintrin.h +OLD_FILES+=usr/include/clang/3.1/mm3dnow.h +OLD_FILES+=usr/include/clang/3.1/mm_malloc.h +OLD_FILES+=usr/include/clang/3.1/mmintrin.h +OLD_FILES+=usr/include/clang/3.1/module.map +OLD_FILES+=usr/include/clang/3.1/nmmintrin.h +OLD_FILES+=usr/include/clang/3.1/pmmintrin.h +OLD_FILES+=usr/include/clang/3.1/popcntintrin.h +OLD_FILES+=usr/include/clang/3.1/smmintrin.h +OLD_FILES+=usr/include/clang/3.1/tmmintrin.h +OLD_FILES+=usr/include/clang/3.1/unwind.h +OLD_FILES+=usr/include/clang/3.1/wmmintrin.h +OLD_FILES+=usr/include/clang/3.1/x86intrin.h +OLD_FILES+=usr/include/clang/3.1/xmmintrin.h +OLD_DIRS+=usr/include/clang/3.1 +OLD_FILES+=usr/share/man/man1/llvm-ld.1.gz # 20120712: OpenSSL 1.0.1c import OLD_LIBS+=lib/libcrypto.so.6 OLD_LIBS+=usr/lib/libssl.so.6 @@ -1358,6 +1390,11 @@ OLD_FILES+=usr/share/man/man2/kse_thr_in OLD_FILES+=usr/share/man/man2/kse_wakeup.2.gz OLD_FILES+=usr/lib32/libkse.so OLD_LIBS+=usr/lib32/libkse.so.3 +# 20080225: bsdar/bsdranlib rename to ar/ranlib +OLD_FILES+=usr/bin/bsdar +OLD_FILES+=usr/bin/bsdranlib +OLD_FILES+=usr/share/man/man1/bsdar.1.gz +OLD_FILES+=usr/share/man/man1/bsdranlib.1.gz # 20080220: geom_lvm rename to geom_linux_lvm OLD_FILES+=usr/share/man/man4/geom_lvm.4.gz # 20080126: oldcard.4 removal Modified: projects/zfsd/head/UPDATING ============================================================================== --- projects/zfsd/head/UPDATING Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/UPDATING Tue Nov 27 18:38:50 2012 (r243619) @@ -24,6 +24,40 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121006: + The pfil(9) API/ABI for AF_INET family has been changed. Packet + filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled + with new kernel. + +20121001: + The net80211(4) ABI has been changed to allow for improved driver + PS-POLL and power-save support. All wireless drivers need to be + recompiled to work with the new kernel. + +20120913: + The random(4) support for the VIA hardware random number + generator (`PADLOCK') is no longer enabled unconditionally. + Add the PADLOCK_RNG option in the custom kernel config if + needed. The GENERIC kernels on i386 and amd64 do include the + option, so the change only affects the custom kernel + configurations. + +20120908: + The pf(4) packet filter ABI has been changed. pfctl(8) and + snmp_pf module need to be recompiled to work with new kernel. + +20120828: + A new ZFS feature flag "com.delphix:empty_bpobj" has been merged + to -HEAD. Pools that have empty_bpobj in active state can not be + imported read-write with ZFS implementations that do not support + this feature. For more information read the zpool-features(5) + manual page. + +20120727: + The sparc64 ZFS loader has been changed to no longer try to auto- + detect ZFS providers based on diskN aliases but now requires these + to be explicitly listed in the OFW boot-device environment variable. + 20120712: The OpenSSL has been upgraded to 1.0.1c. Any binaries requiring libcrypto.so.6 or libssl.so.6 must be recompiled. Also, there are Modified: projects/zfsd/head/bin/cat/cat.1 ============================================================================== --- projects/zfsd/head/bin/cat/cat.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/cat/cat.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -127,7 +127,7 @@ to the file truncating .Pa file3 if it already exists. -See the manual page for your shell (i.e., +See the manual page for your shell (e.g., .Xr sh 1 ) for more information on redirection. .Pp Modified: projects/zfsd/head/bin/cat/cat.c ============================================================================== --- projects/zfsd/head/bin/cat/cat.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/cat/cat.c Tue Nov 27 18:38:50 2012 (r243619) @@ -58,11 +58,11 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include #include -#include static int bflag, eflag, nflag, sflag, tflag, vflag; static int rval; @@ -77,16 +77,20 @@ static void raw_cat(int); static int udom_open(const char *path, int flags); #endif -/* Memory strategy threshold, in pages: if physmem is larger then this, use a - * large buffer */ -#define PHYSPAGES_THRESHOLD (32*1024) - -/* Maximum buffer size in bytes - do not allow it to grow larger than this */ -#define BUFSIZE_MAX (2*1024*1024) - -/* Small (default) buffer size in bytes. It's inefficient for this to be - * smaller than MAXPHYS */ -#define BUFSIZE_SMALL (MAXPHYS) +/* + * Memory strategy threshold, in pages: if physmem is larger than this, + * use a large buffer. + */ +#define PHYSPAGES_THRESHOLD (32 * 1024) + +/* Maximum buffer size in bytes - do not allow it to grow larger than this. */ +#define BUFSIZE_MAX (2 * 1024 * 1024) + +/* + * Small (default) buffer size in bytes. It's inefficient for this to be + * smaller than MAXPHYS. + */ +#define BUFSIZE_SMALL (MAXPHYS) int main(int argc, char *argv[]) @@ -144,13 +148,12 @@ usage(void) static void scanfiles(char *argv[], int cooked) { - int i = 0; + int fd, i; char *path; FILE *fp; + i = 0; while ((path = argv[i]) != NULL || i == 0) { - int fd; - if (path == NULL || strcmp(path, "-") == 0) { filename = "stdin"; fd = STDIN_FILENO; @@ -257,16 +260,16 @@ raw_cat(int rfd) wfd = fileno(stdout); if (buf == NULL) { if (fstat(wfd, &sbuf)) - err(1, "%s", filename); + err(1, "stdout"); if (S_ISREG(sbuf.st_mode)) { /* If there's plenty of RAM, use a large copy buffer */ if (sysconf(_SC_PHYS_PAGES) > PHYSPAGES_THRESHOLD) - bsize = MIN(BUFSIZE_MAX, MAXPHYS*8); + bsize = MIN(BUFSIZE_MAX, MAXPHYS * 8); else bsize = BUFSIZE_SMALL; } else - bsize = MAX(sbuf.st_blksize, - (blksize_t)sysconf(_SC_PAGESIZE)); + bsize = MAX(sbuf.st_blksize, + (blksize_t)sysconf(_SC_PAGESIZE)); if ((buf = malloc(bsize)) == NULL) err(1, "malloc() failure of IO buffer"); } @@ -327,7 +330,7 @@ udom_open(const char *path, int flags) break; } } - return(fd); + return (fd); } #endif Modified: projects/zfsd/head/bin/cp/cp.1 ============================================================================== --- projects/zfsd/head/bin/cp/cp.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/cp/cp.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -32,7 +32,7 @@ .\" @(#)cp.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd January 17, 2010 +.Dd September 4, 2012 .Dt CP 1 .Os .Sh NAME @@ -164,7 +164,7 @@ Cause .Nm to preserve the following attributes of each source file in the copy: modification time, access time, -file flags, file mode, user ID, and group ID, as allowed by permissions. +file flags, file mode, ACL, user ID, and group ID, as allowed by permissions. .Pp If the user ID and group ID cannot be preserved, no error message is displayed and the exit value is not altered. Modified: projects/zfsd/head/bin/date/date.c ============================================================================== --- projects/zfsd/head/bin/date/date.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/date/date.c Tue Nov 27 18:38:50 2012 (r243619) @@ -137,7 +137,7 @@ main(int argc, char *argv[]) * If -d or -t, set the timezone or daylight savings time; this * doesn't belong here; the kernel should not know about either. */ - if (set_timezone && settimeofday((struct timeval *)NULL, &tz)) + if (set_timezone && settimeofday(NULL, &tz) != 0) err(1, "settimeofday (timezone)"); if (!rflag && time(&tval) == -1) @@ -273,14 +273,14 @@ setthetime(const char *fmt, const char * /* set the time */ if (nflag || netsettime(tval)) { utx.ut_type = OLD_TIME; - gettimeofday(&utx.ut_tv, NULL); + (void)gettimeofday(&utx.ut_tv, NULL); pututxline(&utx); tv.tv_sec = tval; tv.tv_usec = 0; - if (settimeofday(&tv, (struct timezone *)NULL)) + if (settimeofday(&tv, NULL) != 0) err(1, "settimeofday (timeval)"); utx.ut_type = NEW_TIME; - gettimeofday(&utx.ut_tv, NULL); + (void)gettimeofday(&utx.ut_tv, NULL); pututxline(&utx); } Modified: projects/zfsd/head/bin/dd/dd.c ============================================================================== --- projects/zfsd/head/bin/dd/dd.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/dd/dd.c Tue Nov 27 18:38:50 2012 (r243619) @@ -232,8 +232,8 @@ setup(void) ctab = casetab; } - (void)gettimeofday(&tv, (struct timezone *)NULL); - st.start = tv.tv_sec + tv.tv_usec * 1e-6; + (void)gettimeofday(&tv, NULL); + st.start = tv.tv_sec + tv.tv_usec * 1e-6; } static void Modified: projects/zfsd/head/bin/dd/misc.c ============================================================================== --- projects/zfsd/head/bin/dd/misc.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/dd/misc.c Tue Nov 27 18:38:50 2012 (r243619) @@ -59,7 +59,7 @@ summary(void) double secs; char buf[100]; - (void)gettimeofday(&tv, (struct timezone *)NULL); + (void)gettimeofday(&tv, NULL); secs = tv.tv_sec + tv.tv_usec * 1e-6 - st.start; if (secs < 1e-6) secs = 1e-6; Modified: projects/zfsd/head/bin/getfacl/getfacl.1 ============================================================================== --- projects/zfsd/head/bin/getfacl/getfacl.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/getfacl/getfacl.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -97,6 +97,10 @@ then reads a list of pathnames, each terminated by one newline character, from the standard input. .El +.Pp +For an explanation of the ACL syntax, see the +.Xr setfacl 1 +manual page. .Sh EXIT STATUS .Ex -std .Sh EXAMPLES Modified: projects/zfsd/head/bin/ls/ls.c ============================================================================== --- projects/zfsd/head/bin/ls/ls.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ls/ls.c Tue Nov 27 18:38:50 2012 (r243619) @@ -561,7 +561,8 @@ display(const FTSENT *p, FTSENT *list, i NAMES *np; off_t maxsize; long maxblock; - u_long btotal, labelstrlen, maxinode, maxlen, maxnlink; + uintmax_t maxinode; + u_long btotal, labelstrlen, maxlen, maxnlink; u_long maxlabelstr; u_int sizelen; int maxflags; @@ -580,8 +581,9 @@ display(const FTSENT *p, FTSENT *list, i btotal = 0; initmax = getenv("LS_COLWIDTHS"); /* Fields match -lios order. New ones should be added at the end. */ - maxlabelstr = maxblock = maxinode = maxlen = maxnlink = - maxuser = maxgroup = maxflags = maxsize = 0; + maxlabelstr = maxblock = maxlen = maxnlink = 0; + maxuser = maxgroup = maxflags = maxsize = 0; + maxinode = 0; if (initmax != NULL && *initmax != '\0') { char *initmax2, *jinitmax; int ninitmax; @@ -609,7 +611,7 @@ display(const FTSENT *p, FTSENT *list, i strcpy(initmax2, "0"); ninitmax = sscanf(jinitmax, - " %lu : %ld : %lu : %u : %u : %i : %jd : %lu : %lu ", + " %ju : %ld : %lu : %u : %u : %i : %jd : %lu : %lu ", &maxinode, &maxblock, &maxnlink, &maxuser, &maxgroup, &maxflags, &maxsize, &maxlen, &maxlabelstr); f_notabs = 1; @@ -839,7 +841,7 @@ label_out: d.s_flags = maxflags; d.s_label = maxlabelstr; d.s_group = maxgroup; - d.s_inode = snprintf(NULL, 0, "%lu", maxinode); + d.s_inode = snprintf(NULL, 0, "%ju", maxinode); d.s_nlink = snprintf(NULL, 0, "%lu", maxnlink); sizelen = f_humanval ? HUMANVALSTR_LEN : snprintf(NULL, 0, "%ju", maxsize); Modified: projects/zfsd/head/bin/ls/print.c ============================================================================== --- projects/zfsd/head/bin/ls/print.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ls/print.c Tue Nov 27 18:38:50 2012 (r243619) @@ -152,7 +152,8 @@ printlong(const DISPLAY *dp) continue; sp = p->fts_statp; if (f_inode) - (void)printf("%*lu ", dp->s_inode, (u_long)sp->st_ino); + (void)printf("%*ju ", + dp->s_inode, (uintmax_t)sp->st_ino); if (f_size) (void)printf("%*jd ", dp->s_block, howmany(sp->st_blocks, blocksize)); @@ -328,7 +329,8 @@ printaname(const FTSENT *p, u_long inode sp = p->fts_statp; chcnt = 0; if (f_inode) - chcnt += printf("%*lu ", (int)inodefield, (u_long)sp->st_ino); + chcnt += printf("%*ju ", + (int)inodefield, (uintmax_t)sp->st_ino); if (f_size) chcnt += printf("%*jd ", (int)sizefield, howmany(sp->st_blocks, blocksize)); Modified: projects/zfsd/head/bin/mv/mv.1 ============================================================================== --- projects/zfsd/head/bin/mv/mv.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/mv/mv.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -32,7 +32,7 @@ .\" @(#)mv.1 8.1 (Berkeley) 5/31/93 .\" $FreeBSD$ .\" -.Dd May 12, 2007 +.Dd August 28, 2012 .Dt MV 1 .Os .Sh NAME @@ -41,7 +41,7 @@ .Sh SYNOPSIS .Nm .Op Fl f | i | n -.Op Fl v +.Op Fl hv .Ar source target .Nm .Op Fl f | i | n @@ -81,6 +81,21 @@ option overrides any previous or .Fl n options.) +.It Fl h +If the +.Ar target +operand is a symbolic link to a directory, +do not follow it. +This causes the +.Nm +utility to rename the file +.Ar source +to the destination path +.Ar target +rather than moving +.Ar source +into the directory referenced by +.Ar target . .It Fl i Cause .Nm @@ -142,7 +157,8 @@ rm -rf source_file .Ex -std .Sh COMPATIBILITY The -.Fl n +.Fl h , +.Fl n , and .Fl v options are non-standard and their use in scripts is not recommended. Modified: projects/zfsd/head/bin/mv/mv.c ============================================================================== --- projects/zfsd/head/bin/mv/mv.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/mv/mv.c Tue Nov 27 18:38:50 2012 (r243619) @@ -68,7 +68,7 @@ __FBSDID("$FreeBSD$"); /* Exit code for a failed exec. */ #define EXEC_FAILED 127 -static int fflg, iflg, nflg, vflg; +static int fflg, hflg, iflg, nflg, vflg; static int copy(const char *, const char *); static int do_move(const char *, const char *); @@ -87,8 +87,11 @@ main(int argc, char *argv[]) int ch; char path[PATH_MAX]; - while ((ch = getopt(argc, argv, "finv")) != -1) + while ((ch = getopt(argc, argv, "fhinv")) != -1) switch (ch) { + case 'h': + hflg = 1; + break; case 'i': iflg = 1; fflg = nflg = 0; @@ -123,6 +126,17 @@ main(int argc, char *argv[]) exit(do_move(argv[0], argv[1])); } + /* + * If -h was specified, treat the target as a symlink instead of + * directory. + */ + if (hflg) { + if (argc > 2) + usage(); + if (lstat(argv[1], &sb) == 0 && S_ISLNK(sb.st_mode)) + exit(do_move(argv[0], argv[1])); + } + /* It's a directory, move each file into it. */ if (strlen(argv[argc - 1]) > sizeof(path) - 1) errx(1, "%s: destination pathname too long", *argv); @@ -483,7 +497,7 @@ usage(void) { (void)fprintf(stderr, "%s\n%s\n", - "usage: mv [-f | -i | -n] [-v] source target", + "usage: mv [-f | -i | -n] [-hv] source target", " mv [-f | -i | -n] [-v] source ... directory"); exit(EX_USAGE); } Modified: projects/zfsd/head/bin/ps/keyword.c ============================================================================== --- projects/zfsd/head/bin/ps/keyword.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ps/keyword.c Tue Nov 27 18:38:50 2012 (r243619) @@ -79,6 +79,7 @@ static VAR var[] = { {"cow", "COW", NULL, 0, kvar, KOFF(ki_cow), UINT, "u", 0}, {"cpu", "CPU", NULL, 0, kvar, KOFF(ki_estcpu), UINT, "d", 0}, {"cputime", "", "time", 0, NULL, 0, CHAR, NULL, 0}, + {"dsiz", "DSIZ", NULL, 0, kvar, KOFF(ki_dsize), PGTOK, "ld", 0}, {"egid", "", "gid", 0, NULL, 0, CHAR, NULL, 0}, {"egroup", "", "group", 0, NULL, 0, CHAR, NULL, 0}, {"emul", "EMUL", NULL, LJUST, emulname, 0, CHAR, NULL, 0}, @@ -141,6 +142,7 @@ static VAR var[] = { UINT, "x", 0}, {"sigmask", "BLOCKED", NULL, 0, kvar, KOFF(ki_sigmask), UINT, "x", 0}, {"sl", "SL", NULL, INF127, kvar, KOFF(ki_slptime), UINT, "d", 0}, + {"ssiz", "SSIZ", NULL, 0, kvar, KOFF(ki_ssize), PGTOK, "ld", 0}, {"start", "STARTED", NULL, LJUST|USER, started, 0, CHAR, NULL, 0}, {"stat", "", "state", 0, NULL, 0, CHAR, NULL, 0}, {"state", "STAT", NULL, LJUST, state, 0, CHAR, NULL, 0}, Modified: projects/zfsd/head/bin/ps/print.c ============================================================================== --- projects/zfsd/head/bin/ps/print.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ps/print.c Tue Nov 27 18:38:50 2012 (r243619) @@ -387,12 +387,13 @@ started(KINFO *k, VARENT *ve __unused) size_t buflen = 100; char *buf; + if (!k->ki_valid) + return (NULL); + buf = malloc(buflen); if (buf == NULL) errx(1, "malloc failed"); - if (!k->ki_valid) - return (NULL); if (use_ampm < 0) use_ampm = (*nl_langinfo(T_FMT_AMPM) != '\0'); then = k->ki_p->ki_start.tv_sec; @@ -415,12 +416,13 @@ lstarted(KINFO *k, VARENT *ve __unused) char *buf; size_t buflen = 100; + if (!k->ki_valid) + return (NULL); + buf = malloc(buflen); if (buf == NULL) errx(1, "malloc failed"); - if (!k->ki_valid) - return (NULL); then = k->ki_p->ki_start.tv_sec; (void)strftime(buf, buflen, "%c", localtime(&then)); return (buf); Modified: projects/zfsd/head/bin/ps/ps.1 ============================================================================== --- projects/zfsd/head/bin/ps/ps.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ps/ps.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd May 20, 2012 +.Dd September 18, 2012 .Dt PS 1 .Os .Sh NAME @@ -500,6 +500,8 @@ command and arguments number of copy-on-write faults .It Cm cpu short-term CPU usage factor (for scheduling) +.It Cm dsiz +data size (in Kbytes) .It Cm emul system-call emulation environment .It Cm etime @@ -610,6 +612,8 @@ blocked signals (alias .Cm blocked ) .It Cm sl sleep time (in seconds; 127 = infinity) +.It Cm ssiz +stack size (in Kbytes) .It Cm start time started .It Cm state Modified: projects/zfsd/head/bin/ps/ps.c ============================================================================== --- projects/zfsd/head/bin/ps/ps.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/ps/ps.c Tue Nov 27 18:38:50 2012 (r243619) @@ -889,8 +889,8 @@ add_list(struct listinfo *inf, const cha int toolong; char elemcopy[PATH_MAX]; - if (*argp == 0) - inf->addelem(inf, elemcopy); + if (*argp == '\0') + inf->addelem(inf, argp); while (*argp != '\0') { while (*argp != '\0' && strchr(W_SEP, *argp) != NULL) argp++; Modified: projects/zfsd/head/bin/rm/rm.c ============================================================================== --- projects/zfsd/head/bin/rm/rm.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/rm/rm.c Tue Nov 27 18:38:50 2012 (r243619) @@ -51,6 +51,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -429,8 +430,8 @@ rm_overwrite(char *file, struct stat *sb if (!S_ISREG(sbp->st_mode)) return (1); if (sbp->st_nlink > 1 && !fflag) { - warnx("%s (inode %u): not overwritten due to multiple links", - file, sbp->st_ino); + warnx("%s (inode %ju): not overwritten due to multiple links", + file, (uintmax_t)sbp->st_ino); return (0); } if ((fd = open(file, O_WRONLY|O_NONBLOCK|O_NOFOLLOW, 0)) == -1) Modified: projects/zfsd/head/bin/setfacl/merge.c ============================================================================== --- projects/zfsd/head/bin/setfacl/merge.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/setfacl/merge.c Tue Nov 27 18:38:50 2012 (r243619) @@ -94,7 +94,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co acl_tag_t tag, tag_new; acl_entry_type_t entry_type, entry_type_new; acl_flagset_t flagset; - int entry_id, entry_id_new, have_entry, entry_number = 0; + int entry_id, entry_id_new, have_entry, had_entry, entry_number = 0; int acl_brand, prev_acl_brand; acl_get_brand_np(acl, &acl_brand); @@ -116,6 +116,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co while (acl_get_entry(acl, entry_id, &entry) == 1) { entry_id = ACL_NEXT_ENTRY; have_entry = 0; + had_entry = 0; /* keep track of existing ACL_MASK entries */ if (acl_get_tag_type(entry, &tag) == -1) @@ -187,7 +188,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co err(1, "%s: acl_set_flagset_np() failed", filename); } - have_entry = 1; + had_entry = have_entry = 1; break; default: /* should never be here */ @@ -197,7 +198,7 @@ merge_acl(acl_t acl, acl_t *prev_acl, co } /* if this entry has not been found, it must be new */ - if (have_entry == 0) { + if (had_entry == 0) { /* * NFSv4 ACL entries must be prepended to the ACL. Modified: projects/zfsd/head/bin/setfacl/setfacl.1 ============================================================================== --- projects/zfsd/head/bin/setfacl/setfacl.1 Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/setfacl/setfacl.1 Tue Nov 27 18:38:50 2012 (r243619) @@ -26,7 +26,7 @@ .\" .\" $FreeBSD$ .\" -.Dd April 9, 2011 +.Dd September 2, 2012 .Dt SETFACL 1 .Os .Sh NAME @@ -337,7 +337,7 @@ read_acl write_acl .It o write_owner -.It S +.It s synchronize .El .Pp Modified: projects/zfsd/head/bin/setfacl/setfacl.c ============================================================================== --- projects/zfsd/head/bin/setfacl/setfacl.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/setfacl/setfacl.c Tue Nov 27 18:38:50 2012 (r243619) @@ -73,6 +73,7 @@ main(int argc, char *argv[]) { acl_t acl; acl_type_t acl_type; + acl_entry_t unused_entry; char filename[PATH_MAX]; int local_error, carried_error, ch, i, entry_number, ret; int h_flag; @@ -263,6 +264,17 @@ main(int argc, char *argv[]) need_mask = 1; break; case OP_REMOVE_EXT: + /* + * Don't try to call remove_ext() for empty + * default ACL. + */ + if (acl_type == ACL_TYPE_DEFAULT && + acl_get_entry(acl, ACL_FIRST_ENTRY, + &unused_entry) == 0) { + local_error += remove_default(&acl, + file->filename); + break; + } remove_ext(&acl, file->filename); need_mask = 0; break; @@ -296,6 +308,20 @@ main(int argc, char *argv[]) } } + /* + * Don't try to set an empty default ACL; it will always fail. + * Use acl_delete_def_file(3) instead. + */ + if (acl_type == ACL_TYPE_DEFAULT && + acl_get_entry(acl, ACL_FIRST_ENTRY, &unused_entry) == 0) { + if (acl_delete_def_file(file->filename) == -1) { + warn("%s: acl_delete_def_file() failed", + file->filename); + carried_error++; + } + continue; + } + /* don't bother setting the ACL if something is broken */ if (local_error) { carried_error++; Modified: projects/zfsd/head/bin/sh/cd.c ============================================================================== --- projects/zfsd/head/bin/sh/cd.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/sh/cd.c Tue Nov 27 18:38:50 2012 (r243619) @@ -79,7 +79,7 @@ static char *prevdir; /* previous worki static char *cdcomppath; int -cdcmd(int argc, char **argv) +cdcmd(int argc __unused, char **argv __unused) { const char *dest; const char *path; @@ -89,9 +89,8 @@ cdcmd(int argc, char **argv) int rc; int errno1 = ENOENT; - optreset = 1; optind = 1; opterr = 0; /* initialize getopt */ phys = Pflag; - while ((ch = getopt(argc, argv, "eLP")) != -1) { + while ((ch = nextopt("eLP")) != '\0') { switch (ch) { case 'e': getcwderr = 1; @@ -102,18 +101,13 @@ cdcmd(int argc, char **argv) case 'P': phys = 1; break; - default: - error("unknown option: -%c", optopt); - break; } } - argc -= optind; - argv += optind; - if (argc > 1) + if (*argptr != NULL && argptr[1] != NULL) error("too many arguments"); - if ((dest = *argv) == NULL && (dest = bltinlookup("HOME", 1)) == NULL) + if ((dest = *argptr) == NULL && (dest = bltinlookup("HOME", 1)) == NULL) error("HOME not set"); if (*dest == '\0') dest = "."; @@ -330,14 +324,13 @@ updatepwd(char *dir) } int -pwdcmd(int argc, char **argv) +pwdcmd(int argc __unused, char **argv __unused) { char *p; int ch, phys; - optreset = 1; optind = 1; opterr = 0; /* initialize getopt */ phys = Pflag; - while ((ch = getopt(argc, argv, "LP")) != -1) { + while ((ch = nextopt("LP")) != '\0') { switch (ch) { case 'L': phys = 0; @@ -345,15 +338,10 @@ pwdcmd(int argc, char **argv) case 'P': phys = 1; break; - default: - error("unknown option: -%c", optopt); - break; } } - argc -= optind; - argv += optind; - if (argc != 0) + if (*argptr != NULL) error("too many arguments"); if (!phys && getpwd()) { Modified: projects/zfsd/head/bin/sh/eval.c ============================================================================== --- projects/zfsd/head/bin/sh/eval.c Tue Nov 27 16:37:36 2012 (r243618) +++ projects/zfsd/head/bin/sh/eval.c Tue Nov 27 18:38:50 2012 (r243619) @@ -672,6 +672,52 @@ out: result->fd, result->buf, result->nleft, result->jp)); } +static int +mustexpandto(const char *argtext, const char *mask) +{ + for (;;) { + if (*argtext == CTLQUOTEMARK || *argtext == CTLQUOTEEND) { + argtext++; + continue; + } + if (*argtext == CTLESC) + argtext++; + else if (BASESYNTAX[(int)*argtext] == CCTL) + return (0); + if (*argtext != *mask) + return (0); + if (*argtext == '\0') + return (1); + argtext++; + mask++; + } +} + +static int +isdeclarationcmd(struct narg *arg) +{ + int have_command = 0; + + if (arg == NULL) + return (0); + while (mustexpandto(arg->text, "command")) { + have_command = 1; + arg = &arg->next->narg; + if (arg == NULL) + return (0); + /* + * To also allow "command -p" and "command --" as part of + * a declaration command, add code here. + * We do not do this, as ksh does not do it either and it + * is not required by POSIX. + */ + } + return (mustexpandto(arg->text, "export") || + mustexpandto(arg->text, "readonly") || + (mustexpandto(arg->text, "local") && + (have_command || !isfunc("local")))); +} + /* * Check if a builtin can safely be executed in the same process, * even though it should be in a subshell (command substitution). @@ -743,11 +789,12 @@ evalcommand(union node *cmd, int flags, exitstatus = 0; for (argp = cmd->ncmd.args ; argp ; argp = argp->narg.next) { if (varflag && isassignment(argp->narg.text)) { - expandarg(argp, &varlist, EXP_VARTILDE); + expandarg(argp, varflag == 1 ? &varlist : &arglist, + EXP_VARTILDE); continue; - } + } else if (varflag == 1) + varflag = isdeclarationcmd(&argp->narg) ? 2 : 0; expandarg(argp, &arglist, EXP_FULL | EXP_TILDE); - varflag = 0; } *arglist.lastp = NULL; *varlist.lastp = NULL; @@ -1176,7 +1223,7 @@ breakcmd(int argc, char **argv) * The `command' command. */ int -commandcmd(int argc, char **argv) +commandcmd(int argc __unused, char **argv __unused) { const char *path; int ch; @@ -1184,9 +1231,7 @@ commandcmd(int argc, char **argv) path = bltinlookup("PATH", 1); - optind = optreset = 1; - opterr = 0; - while ((ch = getopt(argc, argv, "pvV")) != -1) { + while ((ch = nextopt("pvV")) != '\0') { switch (ch) { case 'p': path = _PATH_STDPATH; @@ -1197,20 +1242,15 @@ commandcmd(int argc, char **argv) case 'V': cmd = TYPECMD_BIGV; break; - case '?': - default: - error("unknown option: -%c", optopt); } } - argc -= optind; - argv += optind; if (cmd != -1) { - if (argc != 1) + if (*argptr == NULL || argptr[1] != NULL) error("wrong number of arguments"); - return typecmd_impl(2, argv - 1, cmd, path); + return typecmd_impl(2, argptr - 1, cmd, path); } - if (argc != 0) + if (*argptr != NULL) error("commandcmd bad call"); /* Modified: projects/zfsd/head/bin/sh/exec.c ============================================================================== --- projects/zfsd/head/bin/sh/exec.c Tue Nov 27 16:37:36 2012 (r243618) *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 20:22:38 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9F34422F; Tue, 27 Nov 2012 20:22:38 +0000 (UTC) (envelope-from mav@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7E0AE8FC14; Tue, 27 Nov 2012 20:22:38 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qARKMc1Z050652; Tue, 27 Nov 2012 20:22:38 GMT (envelope-from mav@svn.freebsd.org) Received: (from mav@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qARKMb45050629; Tue, 27 Nov 2012 20:22:37 GMT (envelope-from mav@svn.freebsd.org) Message-Id: <201211272022.qARKMb45050629@svn.freebsd.org> From: Alexander Motin Date: Tue, 27 Nov 2012 20:22:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243630 - in projects/zfsd/head: . bin/date bin/dd bin/df bin/ed bin/getfacl bin/ln bin/ls bin/mv bin/pax bin/rcp bin/setfacl bin/sh cddl/contrib/opensolaris/cmd/zfs cddl/contrib/openso... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 20:22:38 -0000 Author: mav Date: Tue Nov 27 20:22:36 2012 New Revision: 243630 URL: http://svnweb.freebsd.org/changeset/base/243630 Log: MFC Added: projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 - copied unchanged from r243619, head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/zfsd/head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ - copied from r243619, head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ projects/zfsd/head/contrib/atf/FREEBSD-Xlist - copied unchanged from r243619, head/contrib/atf/FREEBSD-Xlist projects/zfsd/head/contrib/atf/FREEBSD-upgrade - copied unchanged from r243619, head/contrib/atf/FREEBSD-upgrade projects/zfsd/head/contrib/bmake/unit-tests/order - copied unchanged from r243619, head/contrib/bmake/unit-tests/order projects/zfsd/head/contrib/dialog/samples/dft-cancel - copied unchanged from r243619, head/contrib/dialog/samples/dft-cancel projects/zfsd/head/contrib/dialog/samples/dft-extra - copied unchanged from r243619, head/contrib/dialog/samples/dft-extra projects/zfsd/head/contrib/dialog/samples/dft-help - copied unchanged from r243619, head/contrib/dialog/samples/dft-help projects/zfsd/head/contrib/dialog/samples/dft-no - copied unchanged from r243619, head/contrib/dialog/samples/dft-no projects/zfsd/head/contrib/dialog/samples/fselect0 - copied unchanged from r243619, head/contrib/dialog/samples/fselect0 projects/zfsd/head/contrib/dialog/samples/with-dquotes - copied unchanged from r243619, head/contrib/dialog/samples/with-dquotes projects/zfsd/head/contrib/dialog/samples/with-squotes - copied unchanged from r243619, head/contrib/dialog/samples/with-squotes projects/zfsd/head/contrib/libc++/CREDITS.TXT - copied unchanged from r243619, head/contrib/libc++/CREDITS.TXT projects/zfsd/head/contrib/libc++/LICENSE.TXT - copied unchanged from r243619, head/contrib/libc++/LICENSE.TXT projects/zfsd/head/contrib/libc-pwcache/ - copied from r243619, head/contrib/libc-pwcache/ projects/zfsd/head/contrib/mdocml/ - copied from r243619, head/contrib/mdocml/ projects/zfsd/head/etc/atf/ - copied from r243619, head/etc/atf/ projects/zfsd/head/lib/atf/ - copied from r243619, head/lib/atf/ projects/zfsd/head/lib/libc/gen/waitid.c - copied unchanged from r243619, head/lib/libc/gen/waitid.c projects/zfsd/head/lib/libcrypt/tests/ - copied from r243619, head/lib/libcrypt/tests/ projects/zfsd/head/lib/libmandoc/ - copied from r243619, head/lib/libmandoc/ projects/zfsd/head/lib/libpmc/pmc.sandybridgexeon.3 - copied unchanged from r243619, head/lib/libpmc/pmc.sandybridgexeon.3 projects/zfsd/head/lib/libutil/pw_util.3 - copied unchanged from r243619, head/lib/libutil/pw_util.3 projects/zfsd/head/libexec/atf/ - copied from r243619, head/libexec/atf/ projects/zfsd/head/libexec/rpc.rusersd/extern.h - copied unchanged from r243619, head/libexec/rpc.rusersd/extern.h projects/zfsd/head/sbin/mount_fusefs/ - copied from r243619, head/sbin/mount_fusefs/ projects/zfsd/head/share/atf/ - copied from r243619, head/share/atf/ projects/zfsd/head/share/doc/atf/ - copied from r243619, head/share/doc/atf/ projects/zfsd/head/share/examples/atf/ - copied from r243619, head/share/examples/atf/ projects/zfsd/head/share/man/man4/nvd.4 - copied unchanged from r243619, head/share/man/man4/nvd.4 projects/zfsd/head/share/man/man4/nvme.4 - copied unchanged from r243619, head/share/man/man4/nvme.4 projects/zfsd/head/share/man/man4/virtio_scsi.4 - copied unchanged from r243619, head/share/man/man4/virtio_scsi.4 projects/zfsd/head/share/mk/atf.test.mk - copied unchanged from r243619, head/share/mk/atf.test.mk projects/zfsd/head/share/mk/bsd.progs.mk - copied unchanged from r243619, head/share/mk/bsd.progs.mk projects/zfsd/head/share/mk/bsd.test.mk - copied unchanged from r243619, head/share/mk/bsd.test.mk projects/zfsd/head/share/syscons/keymaps/danish.iso.macbook.kbd - copied unchanged from r243619, head/share/syscons/keymaps/danish.iso.macbook.kbd projects/zfsd/head/share/xml/ - copied from r243619, head/share/xml/ projects/zfsd/head/share/xsl/ - copied from r243619, head/share/xsl/ projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c - copied unchanged from r243619, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c - copied unchanged from r243619, head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/zfsd/head/sys/arm/conf/Makefile - copied unchanged from r243619, head/sys/arm/conf/Makefile projects/zfsd/head/sys/arm/conf/NOTES - copied unchanged from r243619, head/sys/arm/conf/NOTES projects/zfsd/head/sys/boot/forth/menusets.4th - copied unchanged from r243619, head/sys/boot/forth/menusets.4th projects/zfsd/head/sys/boot/forth/menusets.4th.8 - copied unchanged from r243619, head/sys/boot/forth/menusets.4th.8 projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/powerpc/ - copied from r243619, head/sys/cddl/contrib/opensolaris/uts/powerpc/ projects/zfsd/head/sys/cddl/dev/dtrace/powerpc/ - copied from r243619, head/sys/cddl/dev/dtrace/powerpc/ projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c - copied unchanged from r243619, head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c projects/zfsd/head/sys/dev/ath/if_ath_alq.c - copied unchanged from r243619, head/sys/dev/ath/if_ath_alq.c projects/zfsd/head/sys/dev/ath/if_ath_alq.h - copied unchanged from r243619, head/sys/dev/ath/if_ath_alq.h projects/zfsd/head/sys/dev/sdhci/sdhci_if.m - copied unchanged from r243619, head/sys/dev/sdhci/sdhci_if.m projects/zfsd/head/sys/dev/sdhci/sdhci_pci.c - copied unchanged from r243619, head/sys/dev/sdhci/sdhci_pci.c projects/zfsd/head/sys/dev/virtio/scsi/ - copied from r243619, head/sys/dev/virtio/scsi/ projects/zfsd/head/sys/fs/fuse/ - copied from r243619, head/sys/fs/fuse/ projects/zfsd/head/sys/mips/cavium/octeon_pci_console.c - copied unchanged from r243619, head/sys/mips/cavium/octeon_pci_console.c projects/zfsd/head/sys/modules/fuse/ - copied from r243619, head/sys/modules/fuse/ projects/zfsd/head/sys/modules/sdhci_pci/ - copied from r243619, head/sys/modules/sdhci_pci/ projects/zfsd/head/sys/modules/virtio/scsi/ - copied from r243619, head/sys/modules/virtio/scsi/ projects/zfsd/head/sys/powerpc/conf/WII - copied unchanged from r243619, head/sys/powerpc/conf/WII projects/zfsd/head/sys/powerpc/wii/locore.S - copied unchanged from r243619, head/sys/powerpc/wii/locore.S projects/zfsd/head/sys/ufs/ffs/ffs_suspend.c - copied unchanged from r243619, head/sys/ufs/ffs/ffs_suspend.c projects/zfsd/head/tools/build/options/WITHOUT_ATF - copied unchanged from r243619, head/tools/build/options/WITHOUT_ATF projects/zfsd/head/tools/build/options/WITHOUT_CLANG_IS_CC - copied unchanged from r243619, head/tools/build/options/WITHOUT_CLANG_IS_CC projects/zfsd/head/tools/regression/bin/sh/builtins/alias3.0 - copied unchanged from r243619, head/tools/regression/bin/sh/builtins/alias3.0 projects/zfsd/head/tools/regression/bin/sh/builtins/alias3.0.stdout - copied unchanged from r243619, head/tools/regression/bin/sh/builtins/alias3.0.stdout projects/zfsd/head/tools/regression/bin/sh/parser/alias10.0 - copied unchanged from r243619, head/tools/regression/bin/sh/parser/alias10.0 projects/zfsd/head/tools/regression/bin/sh/parser/alias9.0 - copied unchanged from r243619, head/tools/regression/bin/sh/parser/alias9.0 projects/zfsd/head/tools/regression/filemon/timed-forkb.c - copied unchanged from r243619, head/tools/regression/filemon/timed-forkb.c projects/zfsd/head/tools/tools/ath/athalq/ - copied from r243619, head/tools/tools/ath/athalq/ projects/zfsd/head/usr.bin/atf/ - copied from r243619, head/usr.bin/atf/ projects/zfsd/head/usr.bin/mandoc/ - copied from r243619, head/usr.bin/mandoc/ projects/zfsd/head/usr.bin/ssh-copy-id/ - copied from r243619, head/usr.bin/ssh-copy-id/ projects/zfsd/head/usr.sbin/bsdconfig/include/bsdconfig.hlp - copied unchanged from r243619, head/usr.sbin/bsdconfig/include/bsdconfig.hlp projects/zfsd/head/usr.sbin/bsdconfig/include/usage.hlp - copied unchanged from r243619, head/usr.sbin/bsdconfig/include/usage.hlp projects/zfsd/head/usr.sbin/bsdconfig/networking/include/tcp.hlp - copied unchanged from r243619, head/usr.sbin/bsdconfig/networking/include/tcp.hlp projects/zfsd/head/usr.sbin/bsdconfig/security/include/securelevel.hlp - copied unchanged from r243619, head/usr.sbin/bsdconfig/security/include/securelevel.hlp projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp - copied unchanged from r243619, head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp projects/zfsd/head/usr.sbin/pkg_install/lib/pkgng.c - copied unchanged from r243619, head/usr.sbin/pkg_install/lib/pkgng.c projects/zfsd/head/usr.sbin/services_mkdb/extern.h - copied unchanged from r243619, head/usr.sbin/services_mkdb/extern.h Deleted: projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/zfsd/head/contrib/dialog/samples/dselect projects/zfsd/head/contrib/dialog/samples/valgrind.log projects/zfsd/head/contrib/gnu-sort/ projects/zfsd/head/contrib/libc++/src/support/ projects/zfsd/head/gnu/usr.bin/sort/ projects/zfsd/head/lib/libc/gen/pwcache.3 projects/zfsd/head/lib/libc/gen/pwcache.c projects/zfsd/head/share/man/man4/harp.4 projects/zfsd/head/share/man/man4/hfa.4 projects/zfsd/head/share/man/man4/idt.4 projects/zfsd/head/share/man/man9/VFS_LOCK_GIANT.9 projects/zfsd/head/sys/conf/defines projects/zfsd/head/tools/build/options/WITH_GNU_SORT projects/zfsd/head/usr.sbin/pw/edgroup.c Modified: projects/zfsd/head/MAINTAINERS (contents, props changed) projects/zfsd/head/Makefile projects/zfsd/head/Makefile.inc1 projects/zfsd/head/ObsoleteFiles.inc projects/zfsd/head/UPDATING projects/zfsd/head/bin/date/extern.h projects/zfsd/head/bin/date/netdate.c projects/zfsd/head/bin/dd/conv_tab.c projects/zfsd/head/bin/df/df.1 projects/zfsd/head/bin/df/df.c projects/zfsd/head/bin/ed/buf.c projects/zfsd/head/bin/ed/cbc.c projects/zfsd/head/bin/ed/ed.h projects/zfsd/head/bin/ed/glbl.c projects/zfsd/head/bin/ed/io.c projects/zfsd/head/bin/ed/main.c projects/zfsd/head/bin/ed/re.c projects/zfsd/head/bin/ed/sub.c projects/zfsd/head/bin/ed/undo.c projects/zfsd/head/bin/getfacl/getfacl.c projects/zfsd/head/bin/ln/ln.1 projects/zfsd/head/bin/ls/cmp.c projects/zfsd/head/bin/ls/extern.h projects/zfsd/head/bin/ls/ls.1 projects/zfsd/head/bin/ls/ls.c projects/zfsd/head/bin/ls/ls.h projects/zfsd/head/bin/ls/print.c projects/zfsd/head/bin/ls/util.c projects/zfsd/head/bin/mv/mv.c projects/zfsd/head/bin/pax/ar_io.c projects/zfsd/head/bin/pax/ar_subs.c projects/zfsd/head/bin/pax/extern.h projects/zfsd/head/bin/pax/options.c projects/zfsd/head/bin/rcp/rcp.c projects/zfsd/head/bin/setfacl/setfacl.c projects/zfsd/head/bin/setfacl/setfacl.h projects/zfsd/head/bin/sh/alias.c projects/zfsd/head/bin/sh/exec.c projects/zfsd/head/bin/sh/input.c projects/zfsd/head/bin/sh/input.h projects/zfsd/head/bin/sh/sh.1 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/zfsd/head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/zfsd/head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/zfsd/head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/zfsd/head/cddl/lib/Makefile projects/zfsd/head/cddl/lib/libdtrace/Makefile projects/zfsd/head/cddl/sbin/zpool/Makefile projects/zfsd/head/cddl/usr.sbin/Makefile projects/zfsd/head/contrib/atf/atf-c/macros.h projects/zfsd/head/contrib/atf/atf-report/atf-report.cpp projects/zfsd/head/contrib/atf/atf-run/io.hpp projects/zfsd/head/contrib/atf/atf-run/requirements_test.cpp projects/zfsd/head/contrib/atf/atf-sh/atf_check_test.sh projects/zfsd/head/contrib/atf/doc/atf-test-case.4 projects/zfsd/head/contrib/bind9/CHANGES projects/zfsd/head/contrib/bind9/bin/named/query.c projects/zfsd/head/contrib/bind9/version projects/zfsd/head/contrib/bmake/ChangeLog projects/zfsd/head/contrib/bmake/FILES projects/zfsd/head/contrib/bmake/Makefile.in projects/zfsd/head/contrib/bmake/bmake.1 projects/zfsd/head/contrib/bmake/bmake.cat1 projects/zfsd/head/contrib/bmake/bsd.after-import.mk projects/zfsd/head/contrib/bmake/compat.c projects/zfsd/head/contrib/bmake/cond.c projects/zfsd/head/contrib/bmake/make.1 projects/zfsd/head/contrib/bmake/make.c projects/zfsd/head/contrib/bmake/unit-tests/Makefile.in projects/zfsd/head/contrib/bmake/unit-tests/test.exp projects/zfsd/head/contrib/bsnmp/snmp_mibII/mibII.h projects/zfsd/head/contrib/bsnmp/snmp_mibII/mibII_route.c projects/zfsd/head/contrib/dialog/CHANGES projects/zfsd/head/contrib/dialog/VERSION projects/zfsd/head/contrib/dialog/aclocal.m4 projects/zfsd/head/contrib/dialog/arrows.c projects/zfsd/head/contrib/dialog/buttons.c projects/zfsd/head/contrib/dialog/calendar.c projects/zfsd/head/contrib/dialog/checklist.c projects/zfsd/head/contrib/dialog/columns.c projects/zfsd/head/contrib/dialog/configure projects/zfsd/head/contrib/dialog/configure.in projects/zfsd/head/contrib/dialog/dialog.1 projects/zfsd/head/contrib/dialog/dialog.3 projects/zfsd/head/contrib/dialog/dialog.c projects/zfsd/head/contrib/dialog/dialog.h projects/zfsd/head/contrib/dialog/dlg_colors.h projects/zfsd/head/contrib/dialog/dlg_keys.c projects/zfsd/head/contrib/dialog/dlg_keys.h projects/zfsd/head/contrib/dialog/editbox.c projects/zfsd/head/contrib/dialog/formbox.c projects/zfsd/head/contrib/dialog/fselect.c projects/zfsd/head/contrib/dialog/guage.c projects/zfsd/head/contrib/dialog/headers-sh.in projects/zfsd/head/contrib/dialog/inputbox.c projects/zfsd/head/contrib/dialog/inputstr.c projects/zfsd/head/contrib/dialog/makefile.in projects/zfsd/head/contrib/dialog/menubox.c projects/zfsd/head/contrib/dialog/mixedform.c projects/zfsd/head/contrib/dialog/mixedgauge.c projects/zfsd/head/contrib/dialog/msgbox.c projects/zfsd/head/contrib/dialog/package/debian/changelog projects/zfsd/head/contrib/dialog/package/dialog.spec projects/zfsd/head/contrib/dialog/pause.c projects/zfsd/head/contrib/dialog/po/cs.po projects/zfsd/head/contrib/dialog/po/el.po projects/zfsd/head/contrib/dialog/po/hr.po projects/zfsd/head/contrib/dialog/po/sr.po projects/zfsd/head/contrib/dialog/prgbox.c projects/zfsd/head/contrib/dialog/progressbox.c projects/zfsd/head/contrib/dialog/rc.c projects/zfsd/head/contrib/dialog/samples/copifuncs/admin.funcs projects/zfsd/head/contrib/dialog/samples/copifuncs/common.funcs projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.funcs projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.ifman2 projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.ifpoll2 projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.ifreq2 projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.sendifm1 projects/zfsd/head/contrib/dialog/samples/copifuncs/copi.wheel projects/zfsd/head/contrib/dialog/samples/copismall projects/zfsd/head/contrib/dialog/samples/debian.rc projects/zfsd/head/contrib/dialog/samples/dialog.py projects/zfsd/head/contrib/dialog/samples/form1 projects/zfsd/head/contrib/dialog/samples/inputmenu projects/zfsd/head/contrib/dialog/samples/inputmenu-stdout projects/zfsd/head/contrib/dialog/samples/inputmenu1 projects/zfsd/head/contrib/dialog/samples/inputmenu2 projects/zfsd/head/contrib/dialog/samples/inputmenu3 projects/zfsd/head/contrib/dialog/samples/inputmenu4 projects/zfsd/head/contrib/dialog/samples/killall projects/zfsd/head/contrib/dialog/samples/prgbox projects/zfsd/head/contrib/dialog/samples/prgbox2 projects/zfsd/head/contrib/dialog/samples/report-button projects/zfsd/head/contrib/dialog/samples/report-edit projects/zfsd/head/contrib/dialog/samples/report-string projects/zfsd/head/contrib/dialog/samples/report-tempfile projects/zfsd/head/contrib/dialog/samples/report-yesno projects/zfsd/head/contrib/dialog/samples/setup-edit projects/zfsd/head/contrib/dialog/samples/setup-tempfile projects/zfsd/head/contrib/dialog/samples/setup-utf8 projects/zfsd/head/contrib/dialog/samples/setup-vars projects/zfsd/head/contrib/dialog/samples/slackware.rc projects/zfsd/head/contrib/dialog/samples/sourcemage.rc projects/zfsd/head/contrib/dialog/samples/suse.rc projects/zfsd/head/contrib/dialog/samples/tailboxbg projects/zfsd/head/contrib/dialog/samples/tailboxbg1 projects/zfsd/head/contrib/dialog/samples/tailboxbg2 projects/zfsd/head/contrib/dialog/samples/testdata-8bit projects/zfsd/head/contrib/dialog/samples/wheel projects/zfsd/head/contrib/dialog/samples/whiptail.rc projects/zfsd/head/contrib/dialog/tailbox.c projects/zfsd/head/contrib/dialog/textbox.c projects/zfsd/head/contrib/dialog/timebox.c projects/zfsd/head/contrib/dialog/trace.c projects/zfsd/head/contrib/dialog/ui_getc.c projects/zfsd/head/contrib/dialog/util.c projects/zfsd/head/contrib/dialog/yesno.c projects/zfsd/head/contrib/gcc/config/i386/xmmintrin.h projects/zfsd/head/contrib/gdb/gdb/c-valprint.c projects/zfsd/head/contrib/gdb/gdb/cp-valprint.c projects/zfsd/head/contrib/gdb/gdb/dwarf2loc.c projects/zfsd/head/contrib/gdb/gdb/f-valprint.c projects/zfsd/head/contrib/gdb/gdb/frame.c projects/zfsd/head/contrib/gdb/gdb/jv-valprint.c projects/zfsd/head/contrib/gdb/gdb/p-valprint.c projects/zfsd/head/contrib/gdb/gdb/scm-valprint.c projects/zfsd/head/contrib/gdb/gdb/stack.c projects/zfsd/head/contrib/gdb/gdb/valprint.c projects/zfsd/head/contrib/gdb/gdb/value.h projects/zfsd/head/contrib/gdb/gdb/varobj.c projects/zfsd/head/contrib/jemalloc/ChangeLog projects/zfsd/head/contrib/jemalloc/FREEBSD-diffs projects/zfsd/head/contrib/jemalloc/VERSION projects/zfsd/head/contrib/jemalloc/doc/jemalloc.3 projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/arena.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/chunk.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/chunk_dss.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/chunk_mmap.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/ctl.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/extent.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/huge.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/prof.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/internal/rtree.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/jemalloc.h projects/zfsd/head/contrib/jemalloc/include/jemalloc/jemalloc_defs.h projects/zfsd/head/contrib/jemalloc/src/arena.c projects/zfsd/head/contrib/jemalloc/src/base.c projects/zfsd/head/contrib/jemalloc/src/chunk.c projects/zfsd/head/contrib/jemalloc/src/chunk_dss.c projects/zfsd/head/contrib/jemalloc/src/chunk_mmap.c projects/zfsd/head/contrib/jemalloc/src/ctl.c projects/zfsd/head/contrib/jemalloc/src/huge.c projects/zfsd/head/contrib/jemalloc/src/jemalloc.c projects/zfsd/head/contrib/jemalloc/src/mutex.c projects/zfsd/head/contrib/jemalloc/src/prof.c projects/zfsd/head/contrib/jemalloc/src/rtree.c projects/zfsd/head/contrib/jemalloc/src/stats.c projects/zfsd/head/contrib/jemalloc/src/tcache.c projects/zfsd/head/contrib/jemalloc/src/util.c projects/zfsd/head/contrib/less/NEWS projects/zfsd/head/contrib/less/README projects/zfsd/head/contrib/less/configure projects/zfsd/head/contrib/less/configure.ac projects/zfsd/head/contrib/less/defines.ds projects/zfsd/head/contrib/less/defines.h.in projects/zfsd/head/contrib/less/defines.o2 projects/zfsd/head/contrib/less/defines.o9 projects/zfsd/head/contrib/less/defines.wn projects/zfsd/head/contrib/less/less.man projects/zfsd/head/contrib/less/less.nro projects/zfsd/head/contrib/less/lessecho.man projects/zfsd/head/contrib/less/lessecho.nro projects/zfsd/head/contrib/less/lesskey.man projects/zfsd/head/contrib/less/lesskey.nro projects/zfsd/head/contrib/less/option.c projects/zfsd/head/contrib/less/output.c projects/zfsd/head/contrib/less/position.c projects/zfsd/head/contrib/less/screen.c projects/zfsd/head/contrib/less/version.c projects/zfsd/head/contrib/libc++/include/__bit_reference projects/zfsd/head/contrib/libc++/include/__config projects/zfsd/head/contrib/libc++/include/__functional_base projects/zfsd/head/contrib/libc++/include/__functional_base_03 projects/zfsd/head/contrib/libc++/include/__hash_table projects/zfsd/head/contrib/libc++/include/__locale projects/zfsd/head/contrib/libc++/include/__mutex_base projects/zfsd/head/contrib/libc++/include/__tree projects/zfsd/head/contrib/libc++/include/__tuple projects/zfsd/head/contrib/libc++/include/__undef_min_max projects/zfsd/head/contrib/libc++/include/algorithm projects/zfsd/head/contrib/libc++/include/array projects/zfsd/head/contrib/libc++/include/atomic projects/zfsd/head/contrib/libc++/include/bitset projects/zfsd/head/contrib/libc++/include/chrono projects/zfsd/head/contrib/libc++/include/cmath projects/zfsd/head/contrib/libc++/include/complex projects/zfsd/head/contrib/libc++/include/condition_variable projects/zfsd/head/contrib/libc++/include/cstddef projects/zfsd/head/contrib/libc++/include/cstdio projects/zfsd/head/contrib/libc++/include/cstdlib projects/zfsd/head/contrib/libc++/include/cwchar projects/zfsd/head/contrib/libc++/include/deque projects/zfsd/head/contrib/libc++/include/exception projects/zfsd/head/contrib/libc++/include/ext/__hash projects/zfsd/head/contrib/libc++/include/forward_list projects/zfsd/head/contrib/libc++/include/fstream projects/zfsd/head/contrib/libc++/include/functional projects/zfsd/head/contrib/libc++/include/future projects/zfsd/head/contrib/libc++/include/ios projects/zfsd/head/contrib/libc++/include/iosfwd projects/zfsd/head/contrib/libc++/include/istream projects/zfsd/head/contrib/libc++/include/iterator projects/zfsd/head/contrib/libc++/include/list projects/zfsd/head/contrib/libc++/include/locale projects/zfsd/head/contrib/libc++/include/map projects/zfsd/head/contrib/libc++/include/memory projects/zfsd/head/contrib/libc++/include/mutex projects/zfsd/head/contrib/libc++/include/new projects/zfsd/head/contrib/libc++/include/ostream projects/zfsd/head/contrib/libc++/include/queue projects/zfsd/head/contrib/libc++/include/random projects/zfsd/head/contrib/libc++/include/regex projects/zfsd/head/contrib/libc++/include/stack projects/zfsd/head/contrib/libc++/include/streambuf projects/zfsd/head/contrib/libc++/include/string projects/zfsd/head/contrib/libc++/include/system_error projects/zfsd/head/contrib/libc++/include/thread projects/zfsd/head/contrib/libc++/include/tuple projects/zfsd/head/contrib/libc++/include/type_traits projects/zfsd/head/contrib/libc++/include/unordered_map projects/zfsd/head/contrib/libc++/include/utility projects/zfsd/head/contrib/libc++/include/valarray projects/zfsd/head/contrib/libc++/include/vector projects/zfsd/head/contrib/libc++/src/condition_variable.cpp projects/zfsd/head/contrib/libc++/src/debug.cpp projects/zfsd/head/contrib/libc++/src/exception.cpp projects/zfsd/head/contrib/libc++/src/future.cpp projects/zfsd/head/contrib/libc++/src/ios.cpp projects/zfsd/head/contrib/libc++/src/iostream.cpp projects/zfsd/head/contrib/libc++/src/locale.cpp projects/zfsd/head/contrib/libc++/src/memory.cpp projects/zfsd/head/contrib/libc++/src/mutex.cpp projects/zfsd/head/contrib/libc++/src/new.cpp projects/zfsd/head/contrib/libc++/src/random.cpp projects/zfsd/head/contrib/libc++/src/stdexcept.cpp projects/zfsd/head/contrib/libc++/src/thread.cpp projects/zfsd/head/contrib/libc++/src/typeinfo.cpp projects/zfsd/head/contrib/libstdc++/config/os/bsd/freebsd/ctype_base.h projects/zfsd/head/contrib/libstdc++/include/bits/fstream.tcc projects/zfsd/head/contrib/libstdc++/include/bits/locale_facets.h projects/zfsd/head/contrib/libstdc++/include/bits/locale_facets.tcc projects/zfsd/head/contrib/libstdc++/include/bits/streambuf_iterator.h projects/zfsd/head/contrib/libstdc++/include/debug/safe_iterator.tcc projects/zfsd/head/contrib/libstdc++/include/ext/ropeimpl.h projects/zfsd/head/contrib/libstdc++/include/std/std_sstream.h projects/zfsd/head/contrib/libstdc++/libsupc++/tinfo.cc projects/zfsd/head/contrib/libstdc++/src/locale.cc projects/zfsd/head/contrib/libstdc++/src/strstream.cc projects/zfsd/head/contrib/libstdc++/src/tree.cc projects/zfsd/head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/zfsd/head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/zfsd/head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/zfsd/head/contrib/llvm/lib/Support/Host.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/zfsd/head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/zfsd/head/contrib/llvm/lib/Target/X86/X86.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/zfsd/head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/zfsd/head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/zfsd/head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/zfsd/head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/zfsd/head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/zfsd/head/contrib/netcat/FREEBSD-vendor projects/zfsd/head/contrib/netcat/nc.1 projects/zfsd/head/contrib/netcat/netcat.c projects/zfsd/head/contrib/netcat/socks.c projects/zfsd/head/contrib/top/commands.c projects/zfsd/head/contrib/tzdata/africa projects/zfsd/head/contrib/tzdata/asia projects/zfsd/head/contrib/tzdata/australasia projects/zfsd/head/contrib/tzdata/europe projects/zfsd/head/contrib/tzdata/northamerica projects/zfsd/head/contrib/tzdata/southamerica projects/zfsd/head/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/zfsd/head/crypto/heimdal/lib/sl/slc-lex.l projects/zfsd/head/etc/Makefile projects/zfsd/head/etc/defaults/periodic.conf projects/zfsd/head/etc/defaults/rc.conf projects/zfsd/head/etc/disktab projects/zfsd/head/etc/gettytab projects/zfsd/head/etc/group projects/zfsd/head/etc/master.passwd projects/zfsd/head/etc/motd projects/zfsd/head/etc/mtree/BSD.include.dist projects/zfsd/head/etc/mtree/BSD.root.dist projects/zfsd/head/etc/mtree/BSD.usr.dist projects/zfsd/head/etc/network.subr projects/zfsd/head/etc/newsyslog.conf projects/zfsd/head/etc/pccard_ether projects/zfsd/head/etc/periodic/daily/490.status-pkg-changes projects/zfsd/head/etc/rc.d/ipfw projects/zfsd/head/etc/rc.d/jail projects/zfsd/head/etc/rc.d/routing projects/zfsd/head/etc/rc.d/rtadvd projects/zfsd/head/etc/rc.subr projects/zfsd/head/etc/root/dot.cshrc projects/zfsd/head/etc/root/dot.login projects/zfsd/head/etc/sendmail/freefall.mc projects/zfsd/head/games/bcd/bcd.c projects/zfsd/head/games/caesar/caesar.c projects/zfsd/head/games/fortune/datfiles/fortunes projects/zfsd/head/games/fortune/datfiles/freebsd-tips projects/zfsd/head/games/fortune/fortune/fortune.6 projects/zfsd/head/games/fortune/fortune/fortune.c projects/zfsd/head/games/fortune/tools/do_uniq.py projects/zfsd/head/games/random/randomize_fd.c projects/zfsd/head/gnu/lib/libdialog/dlg_config.h projects/zfsd/head/gnu/lib/libstdc++/Makefile projects/zfsd/head/gnu/lib/libsupc++/Makefile projects/zfsd/head/gnu/usr.bin/Makefile projects/zfsd/head/gnu/usr.bin/cc/cc_int/Makefile projects/zfsd/head/gnu/usr.bin/cc/include/Makefile projects/zfsd/head/gnu/usr.bin/send-pr/send-pr.sh projects/zfsd/head/include/Makefile projects/zfsd/head/include/grp.h projects/zfsd/head/include/paths.h projects/zfsd/head/include/pwd.h projects/zfsd/head/include/xlocale/_ctype.h projects/zfsd/head/kerberos5/Makefile projects/zfsd/head/kerberos5/tools/asn1_compile/Makefile projects/zfsd/head/kerberos5/tools/slc/Makefile projects/zfsd/head/lib/Makefile projects/zfsd/head/lib/clang/include/Makefile projects/zfsd/head/lib/libc++/Makefile projects/zfsd/head/lib/libc/compat-43/killpg.2 projects/zfsd/head/lib/libc/gen/Makefile.inc projects/zfsd/head/lib/libc/gen/Symbol.map projects/zfsd/head/lib/libc/gen/fstab.c projects/zfsd/head/lib/libc/gen/getbsize.3 projects/zfsd/head/lib/libc/gen/isnan.c projects/zfsd/head/lib/libc/include/namespace.h projects/zfsd/head/lib/libc/include/un-namespace.h projects/zfsd/head/lib/libc/net/getnetent.3 projects/zfsd/head/lib/libc/net/getprotoent.3 projects/zfsd/head/lib/libc/net/getservent.3 projects/zfsd/head/lib/libc/net/ip6opt.c projects/zfsd/head/lib/libc/net/sctp_sys_calls.c projects/zfsd/head/lib/libc/stdio/fopen.3 projects/zfsd/head/lib/libc/stdio/printf.3 projects/zfsd/head/lib/libc/stdlib/rand.c projects/zfsd/head/lib/libc/stdlib/random.c projects/zfsd/head/lib/libc/sys/Makefile.inc projects/zfsd/head/lib/libc/sys/Symbol.map projects/zfsd/head/lib/libc/sys/fcntl.2 projects/zfsd/head/lib/libc/sys/getpeername.2 projects/zfsd/head/lib/libc/sys/getsockname.2 projects/zfsd/head/lib/libc/sys/kill.2 projects/zfsd/head/lib/libc/sys/listen.2 projects/zfsd/head/lib/libc/sys/rtprio.2 projects/zfsd/head/lib/libc/sys/sendfile.2 projects/zfsd/head/lib/libc/sys/wait.2 projects/zfsd/head/lib/libdwarf/dwarf_errmsg.c projects/zfsd/head/lib/libdwarf/dwarf_init.c projects/zfsd/head/lib/libelf/elf_errmsg.c projects/zfsd/head/lib/libfetch/http.c projects/zfsd/head/lib/libfetch/http.errors projects/zfsd/head/lib/libgeom/geom_xml2tree.c projects/zfsd/head/lib/libkvm/kvm_proc.c projects/zfsd/head/lib/libmemstat/memstat_uma.c projects/zfsd/head/lib/libpam/modules/pam_krb5/pam_krb5.c projects/zfsd/head/lib/libpmc/Makefile projects/zfsd/head/lib/libpmc/libpmc.c projects/zfsd/head/lib/libpmc/pmc.ivybridge.3 projects/zfsd/head/lib/libpmc/pmc.sandybridge.3 projects/zfsd/head/lib/libpmc/pmc.sandybridgeuc.3 projects/zfsd/head/lib/libproc/proc_bkpt.c projects/zfsd/head/lib/libproc/proc_regs.c projects/zfsd/head/lib/libprocstat/Makefile projects/zfsd/head/lib/libprocstat/common_kvm.h projects/zfsd/head/lib/libprocstat/libprocstat.c projects/zfsd/head/lib/librpcsec_gss/svc_rpcsec_gss.c projects/zfsd/head/lib/libstdbuf/Makefile projects/zfsd/head/lib/libthread_db/libpthread_db.c projects/zfsd/head/lib/libthread_db/libthr_db.c projects/zfsd/head/lib/libutil/Makefile projects/zfsd/head/lib/libutil/gr_util.c projects/zfsd/head/lib/msun/ld80/s_expl.c projects/zfsd/head/lib/msun/man/ieee.3 projects/zfsd/head/lib/msun/src/k_rem_pio2.c projects/zfsd/head/lib/msun/src/s_isnan.c projects/zfsd/head/libexec/Makefile projects/zfsd/head/libexec/atrun/atrun.c projects/zfsd/head/libexec/atrun/atrun.man projects/zfsd/head/libexec/rpc.rusersd/Makefile projects/zfsd/head/libexec/rpc.rusersd/rusers_proc.c projects/zfsd/head/libexec/rpc.rusersd/rusersd.c projects/zfsd/head/libexec/rtld-aout/shlib.c projects/zfsd/head/libexec/rtld-elf/libmap.c projects/zfsd/head/libexec/rtld-elf/rtld.c projects/zfsd/head/libexec/talkd/announce.c projects/zfsd/head/libexec/talkd/extern.h projects/zfsd/head/libexec/talkd/process.c projects/zfsd/head/libexec/talkd/table.c projects/zfsd/head/libexec/talkd/talkd.c projects/zfsd/head/libexec/tftpd/tftp-io.c projects/zfsd/head/libexec/tftpd/tftp-utils.c projects/zfsd/head/libexec/tftpd/tftpd.c projects/zfsd/head/release/Makefile projects/zfsd/head/release/doc/share/xml/release.ent projects/zfsd/head/rescue/rescue/Makefile projects/zfsd/head/sbin/Makefile projects/zfsd/head/sbin/camcontrol/camcontrol.c projects/zfsd/head/sbin/camcontrol/camcontrol.h projects/zfsd/head/sbin/camcontrol/fwdownload.c projects/zfsd/head/sbin/camcontrol/modeedit.c projects/zfsd/head/sbin/ccdconfig/ccdconfig.c projects/zfsd/head/sbin/ddb/ddb.c projects/zfsd/head/sbin/devd/devd.conf.5 projects/zfsd/head/sbin/dumpfs/dumpfs.c projects/zfsd/head/sbin/dumpon/dumpon.8 projects/zfsd/head/sbin/dumpon/dumpon.c projects/zfsd/head/sbin/etherswitchcfg/etherswitchcfg.c projects/zfsd/head/sbin/etherswitchcfg/ifmedia.c projects/zfsd/head/sbin/fsck/Makefile projects/zfsd/head/sbin/fsck/fsck.c projects/zfsd/head/sbin/fsck/fsutil.c projects/zfsd/head/sbin/fsck/fsutil.h projects/zfsd/head/sbin/fsck/preen.c projects/zfsd/head/sbin/fsck_ffs/suj.c projects/zfsd/head/sbin/fsck_msdosfs/Makefile projects/zfsd/head/sbin/fsck_msdosfs/boot.c projects/zfsd/head/sbin/fsck_msdosfs/check.c projects/zfsd/head/sbin/fsck_msdosfs/dir.c projects/zfsd/head/sbin/fsck_msdosfs/ext.h projects/zfsd/head/sbin/fsck_msdosfs/fat.c projects/zfsd/head/sbin/geom/core/geom.c projects/zfsd/head/sbin/ggate/ggatec/ggatec.c projects/zfsd/head/sbin/ggate/ggated/ggated.c projects/zfsd/head/sbin/ggate/ggatel/ggatel.c projects/zfsd/head/sbin/growfs/growfs.8 projects/zfsd/head/sbin/growfs/growfs.c projects/zfsd/head/sbin/hastd/pjdlog.h projects/zfsd/head/sbin/ifconfig/af_inet6.c projects/zfsd/head/sbin/ifconfig/ifconfig.8 projects/zfsd/head/sbin/ipfw/ipfw.8 projects/zfsd/head/sbin/mdconfig/mdconfig.8 projects/zfsd/head/sbin/mdconfig/mdconfig.c projects/zfsd/head/sbin/mount/getmntopts.3 projects/zfsd/head/sbin/mount/mount.8 projects/zfsd/head/sbin/mount/mount.c projects/zfsd/head/sbin/natd/natd.c projects/zfsd/head/sbin/newfs/mkfs.c projects/zfsd/head/sbin/newfs/newfs.c projects/zfsd/head/sbin/newfs/newfs.h projects/zfsd/head/sbin/ping/ping.c projects/zfsd/head/sbin/ping6/ping6.c projects/zfsd/head/sbin/rcorder/rcorder.c projects/zfsd/head/sbin/restore/tape.c projects/zfsd/head/sbin/route/keywords projects/zfsd/head/sbin/route/route.8 projects/zfsd/head/sbin/route/route.c projects/zfsd/head/sbin/tunefs/tunefs.c projects/zfsd/head/sbin/umount/umount.c projects/zfsd/head/secure/usr.bin/bdes/bdes.1 projects/zfsd/head/share/Makefile projects/zfsd/head/share/dict/freebsd projects/zfsd/head/share/doc/Makefile projects/zfsd/head/share/doc/smm/01.setup/3.t projects/zfsd/head/share/doc/smm/01.setup/4.t projects/zfsd/head/share/examples/Makefile projects/zfsd/head/share/examples/csh/dot.cshrc projects/zfsd/head/share/examples/etc/README.examples projects/zfsd/head/share/examples/etc/make.conf projects/zfsd/head/share/examples/ses/sesd/sesd.0 projects/zfsd/head/share/examples/ses/srcs/eltsub.c projects/zfsd/head/share/examples/ses/srcs/sesd.c projects/zfsd/head/share/man/man1/Makefile projects/zfsd/head/share/man/man4/Makefile projects/zfsd/head/share/man/man4/ddb.4 projects/zfsd/head/share/man/man4/est.4 projects/zfsd/head/share/man/man4/hptiop.4 projects/zfsd/head/share/man/man4/hwpmc.4 projects/zfsd/head/share/man/man4/icmp6.4 projects/zfsd/head/share/man/man4/ip.4 projects/zfsd/head/share/man/man4/ipfirewall.4 projects/zfsd/head/share/man/man4/ipsec.4 projects/zfsd/head/share/man/man4/ktr.4 projects/zfsd/head/share/man/man4/lagg.4 projects/zfsd/head/share/man/man4/ng_UI.4 projects/zfsd/head/share/man/man4/ng_async.4 projects/zfsd/head/share/man/man4/ng_atm.4 projects/zfsd/head/share/man/man4/ng_atmllc.4 projects/zfsd/head/share/man/man4/ng_bluetooth.4 projects/zfsd/head/share/man/man4/ng_bpf.4 projects/zfsd/head/share/man/man4/ng_bridge.4 projects/zfsd/head/share/man/man4/ng_bt3c.4 projects/zfsd/head/share/man/man4/ng_btsocket.4 projects/zfsd/head/share/man/man4/ng_car.4 projects/zfsd/head/share/man/man4/ng_ccatm.4 projects/zfsd/head/share/man/man4/ng_cisco.4 projects/zfsd/head/share/man/man4/ng_deflate.4 projects/zfsd/head/share/man/man4/ng_eiface.4 projects/zfsd/head/share/man/man4/ng_etf.4 projects/zfsd/head/share/man/man4/ng_ether.4 projects/zfsd/head/share/man/man4/ng_fec.4 projects/zfsd/head/share/man/man4/ng_frame_relay.4 projects/zfsd/head/share/man/man4/ng_gif.4 projects/zfsd/head/share/man/man4/ng_gif_demux.4 projects/zfsd/head/share/man/man4/ng_h4.4 projects/zfsd/head/share/man/man4/ng_hci.4 projects/zfsd/head/share/man/man4/ng_hole.4 projects/zfsd/head/share/man/man4/ng_hub.4 projects/zfsd/head/share/man/man4/ng_iface.4 projects/zfsd/head/share/man/man4/ng_ksocket.4 projects/zfsd/head/share/man/man4/ng_l2cap.4 projects/zfsd/head/share/man/man4/ng_l2tp.4 projects/zfsd/head/share/man/man4/ng_lmi.4 projects/zfsd/head/share/man/man4/ng_mppc.4 projects/zfsd/head/share/man/man4/ng_nat.4 projects/zfsd/head/share/man/man4/ng_netflow.4 projects/zfsd/head/share/man/man4/ng_one2many.4 projects/zfsd/head/share/man/man4/ng_patch.4 projects/zfsd/head/share/man/man4/ng_ppp.4 projects/zfsd/head/share/man/man4/ng_pppoe.4 projects/zfsd/head/share/man/man4/ng_pptpgre.4 projects/zfsd/head/share/man/man4/ng_pred1.4 projects/zfsd/head/share/man/man4/ng_rfc1490.4 projects/zfsd/head/share/man/man4/ng_source.4 projects/zfsd/head/share/man/man4/ng_split.4 projects/zfsd/head/share/man/man4/ng_sppp.4 projects/zfsd/head/share/man/man4/ng_sscfu.4 projects/zfsd/head/share/man/man4/ng_sscop.4 projects/zfsd/head/share/man/man4/ng_tag.4 projects/zfsd/head/share/man/man4/ng_tcpmss.4 projects/zfsd/head/share/man/man4/ng_tee.4 projects/zfsd/head/share/man/man4/ng_tty.4 projects/zfsd/head/share/man/man4/ng_ubt.4 projects/zfsd/head/share/man/man4/ng_uni.4 projects/zfsd/head/share/man/man4/ng_vjc.4 projects/zfsd/head/share/man/man4/ng_vlan.4 projects/zfsd/head/share/man/man4/textdump.4 projects/zfsd/head/share/man/man4/unix.4 projects/zfsd/head/share/man/man4/usb_quirk.4 projects/zfsd/head/share/man/man4/virtio.4 projects/zfsd/head/share/man/man5/Makefile projects/zfsd/head/share/man/man5/core.5 projects/zfsd/head/share/man/man5/fstab.5 projects/zfsd/head/share/man/man5/make.conf.5 projects/zfsd/head/share/man/man5/portindex.5 projects/zfsd/head/share/man/man5/rc.conf.5 projects/zfsd/head/share/man/man5/src.conf.5 projects/zfsd/head/share/man/man7/Makefile projects/zfsd/head/share/man/man7/build.7 projects/zfsd/head/share/man/man7/environ.7 projects/zfsd/head/share/man/man7/hier.7 projects/zfsd/head/share/man/man7/ports.7 projects/zfsd/head/share/man/man7/tuning.7 projects/zfsd/head/share/man/man9/Makefile projects/zfsd/head/share/man/man9/disk.9 projects/zfsd/head/share/man/man9/domain.9 projects/zfsd/head/share/man/man9/firmware.9 projects/zfsd/head/share/man/man9/malloc.9 projects/zfsd/head/share/man/man9/mbuf.9 projects/zfsd/head/share/man/man9/mi_switch.9 projects/zfsd/head/share/man/man9/module.9 projects/zfsd/head/share/man/man9/namei.9 projects/zfsd/head/share/man/man9/pfil.9 projects/zfsd/head/share/man/man9/sleep.9 projects/zfsd/head/share/man/man9/timeout.9 projects/zfsd/head/share/man/man9/zero_copy.9 projects/zfsd/head/share/man/man9/zone.9 projects/zfsd/head/share/misc/bsd-family-tree projects/zfsd/head/share/misc/committers-doc.dot projects/zfsd/head/share/misc/committers-ports.dot projects/zfsd/head/share/misc/committers-src.dot projects/zfsd/head/share/misc/flowers (contents, props changed) projects/zfsd/head/share/misc/organization.dot projects/zfsd/head/share/misc/pci_vendors projects/zfsd/head/share/mk/Makefile projects/zfsd/head/share/mk/bsd.compiler.mk projects/zfsd/head/share/mk/bsd.cpu.mk projects/zfsd/head/share/mk/bsd.crunchgen.mk projects/zfsd/head/share/mk/bsd.dep.mk projects/zfsd/head/share/mk/bsd.libnames.mk projects/zfsd/head/share/mk/bsd.obj.mk projects/zfsd/head/share/mk/bsd.own.mk projects/zfsd/head/share/mk/bsd.subdir.mk projects/zfsd/head/share/mk/bsd.sys.mk projects/zfsd/head/share/mk/sys.mk projects/zfsd/head/share/skel/dot.cshrc projects/zfsd/head/share/syscons/keymaps/INDEX.keymaps projects/zfsd/head/share/syscons/keymaps/Makefile projects/zfsd/head/share/termcap/termcap.src projects/zfsd/head/sys/amd64/amd64/identcpu.c projects/zfsd/head/sys/amd64/amd64/initcpu.c projects/zfsd/head/sys/amd64/amd64/machdep.c projects/zfsd/head/sys/amd64/amd64/minidump_machdep.c projects/zfsd/head/sys/amd64/amd64/mp_machdep.c projects/zfsd/head/sys/amd64/amd64/pmap.c projects/zfsd/head/sys/amd64/amd64/trap.c projects/zfsd/head/sys/amd64/amd64/uma_machdep.c projects/zfsd/head/sys/amd64/include/atomic.h projects/zfsd/head/sys/amd64/include/intr_machdep.h projects/zfsd/head/sys/amd64/include/md_var.h projects/zfsd/head/sys/amd64/pci/pci_cfgreg.c projects/zfsd/head/sys/arm/arm/busdma_machdep-v6.c projects/zfsd/head/sys/arm/arm/cpufunc.c projects/zfsd/head/sys/arm/arm/cpufunc_asm_armv7.S projects/zfsd/head/sys/arm/arm/locore.S projects/zfsd/head/sys/arm/arm/machdep.c projects/zfsd/head/sys/arm/arm/mpcore_timer.c projects/zfsd/head/sys/arm/arm/pl310.c projects/zfsd/head/sys/arm/arm/pmap-v6.c projects/zfsd/head/sys/arm/arm/pmap.c projects/zfsd/head/sys/arm/arm/vm_machdep.c projects/zfsd/head/sys/arm/at91/at91_machdep.c projects/zfsd/head/sys/arm/at91/at91_rtc.c projects/zfsd/head/sys/arm/at91/at91_rtcreg.h projects/zfsd/head/sys/arm/at91/files.at91 projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/zfsd/head/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/zfsd/head/sys/arm/broadcom/bcm2835/files.bcm2835 projects/zfsd/head/sys/arm/conf/CAMBRIA projects/zfsd/head/sys/arm/conf/PANDABOARD projects/zfsd/head/sys/arm/conf/RPI-B projects/zfsd/head/sys/arm/include/cpufunc.h projects/zfsd/head/sys/arm/include/machdep.h projects/zfsd/head/sys/arm/lpc/lpc_gpio.c projects/zfsd/head/sys/arm/lpc/lpc_machdep.c projects/zfsd/head/sys/arm/mv/armadaxp/armadaxp_mp.c projects/zfsd/head/sys/arm/mv/mv_machdep.c projects/zfsd/head/sys/arm/mv/mvreg.h projects/zfsd/head/sys/arm/tegra/tegra2_machdep.c projects/zfsd/head/sys/arm/ti/am335x/am335x_dmtimer.c projects/zfsd/head/sys/arm/ti/cpsw/if_cpsw.c projects/zfsd/head/sys/arm/ti/omap4/omap4_mp.c projects/zfsd/head/sys/arm/ti/ti_machdep.c projects/zfsd/head/sys/arm/xscale/i80321/ep80219_machdep.c projects/zfsd/head/sys/arm/xscale/i80321/iq31244_machdep.c projects/zfsd/head/sys/boot/common/Makefile.inc projects/zfsd/head/sys/boot/common/bootstrap.h projects/zfsd/head/sys/boot/common/console.c projects/zfsd/head/sys/boot/common/disk.c projects/zfsd/head/sys/boot/common/disk.h projects/zfsd/head/sys/boot/common/interp.c projects/zfsd/head/sys/boot/common/interp_forth.c projects/zfsd/head/sys/boot/efi/Makefile.inc projects/zfsd/head/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/zfsd/head/sys/boot/ficl/Makefile projects/zfsd/head/sys/boot/forth/beastie.4th projects/zfsd/head/sys/boot/forth/color.4th.8 projects/zfsd/head/sys/boot/forth/loader.4th projects/zfsd/head/sys/boot/forth/loader.conf projects/zfsd/head/sys/boot/forth/menu-commands.4th projects/zfsd/head/sys/boot/forth/menu.4th projects/zfsd/head/sys/boot/forth/menu.rc projects/zfsd/head/sys/boot/i386/Makefile.inc projects/zfsd/head/sys/boot/i386/boot2/boot2.c projects/zfsd/head/sys/boot/i386/boot2/lib.h projects/zfsd/head/sys/boot/i386/boot2/sio.S projects/zfsd/head/sys/boot/i386/btx/btx/btx.S projects/zfsd/head/sys/boot/i386/common/edd.h projects/zfsd/head/sys/boot/i386/gptboot/gptboot.c projects/zfsd/head/sys/boot/i386/libi386/biosdisk.c projects/zfsd/head/sys/boot/i386/libi386/comconsole.c projects/zfsd/head/sys/boot/i386/loader/Makefile projects/zfsd/head/sys/boot/i386/loader/main.c projects/zfsd/head/sys/boot/i386/zfsboot/zfsboot.c projects/zfsd/head/sys/boot/ia64/common/Makefile projects/zfsd/head/sys/boot/pc98/Makefile.inc projects/zfsd/head/sys/boot/pc98/boot2/Makefile projects/zfsd/head/sys/boot/pc98/boot2/boot2.c projects/zfsd/head/sys/boot/pc98/btx/btx/btx.S projects/zfsd/head/sys/boot/pc98/cdboot/Makefile projects/zfsd/head/sys/boot/pc98/libpc98/comconsole.c projects/zfsd/head/sys/boot/pc98/loader/Makefile projects/zfsd/head/sys/boot/powerpc/boot1.chrp/boot1.c projects/zfsd/head/sys/boot/powerpc/ofw/Makefile projects/zfsd/head/sys/boot/powerpc/ps3/Makefile projects/zfsd/head/sys/boot/sparc64/boot1/boot1.c projects/zfsd/head/sys/boot/sparc64/loader/Makefile projects/zfsd/head/sys/boot/uboot/lib/disk.c projects/zfsd/head/sys/boot/uboot/lib/elf_freebsd.c projects/zfsd/head/sys/boot/userboot/ficl/Makefile projects/zfsd/head/sys/boot/userboot/test/test.c projects/zfsd/head/sys/boot/userboot/userboot.h projects/zfsd/head/sys/boot/userboot/userboot/main.c projects/zfsd/head/sys/boot/userboot/userboot/userboot_disk.c projects/zfsd/head/sys/boot/zfs/Makefile projects/zfsd/head/sys/boot/zfs/libzfs.h projects/zfsd/head/sys/boot/zfs/zfs.c projects/zfsd/head/sys/boot/zfs/zfsimpl.c projects/zfsd/head/sys/bsm/audit_kevents.h projects/zfsd/head/sys/cam/ata/ata_da.c projects/zfsd/head/sys/cam/ata/ata_pmp.c projects/zfsd/head/sys/cam/ata/ata_xpt.c projects/zfsd/head/sys/cam/cam.h projects/zfsd/head/sys/cam/cam_periph.c projects/zfsd/head/sys/cam/cam_queue.c projects/zfsd/head/sys/cam/cam_xpt.c projects/zfsd/head/sys/cam/ctl/ctl.c projects/zfsd/head/sys/cam/ctl/ctl_backend_block.c projects/zfsd/head/sys/cam/ctl/ctl_frontend_cam_sim.c projects/zfsd/head/sys/cam/ctl/scsi_ctl.c projects/zfsd/head/sys/cam/scsi/scsi_cd.c projects/zfsd/head/sys/cam/scsi/scsi_ch.c projects/zfsd/head/sys/cam/scsi/scsi_da.c projects/zfsd/head/sys/cam/scsi/scsi_enc.c projects/zfsd/head/sys/cam/scsi/scsi_enc_ses.c projects/zfsd/head/sys/cam/scsi/scsi_pass.c projects/zfsd/head/sys/cam/scsi/scsi_pt.c projects/zfsd/head/sys/cam/scsi/scsi_sa.c projects/zfsd/head/sys/cam/scsi/scsi_sg.c projects/zfsd/head/sys/cam/scsi/scsi_xpt.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_lookup.c projects/zfsd/head/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c projects/zfsd/head/sys/cddl/compat/opensolaris/sys/vnode.h projects/zfsd/head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/zfsd/head/sys/cddl/contrib/opensolaris/uts/common/sys/procset.h projects/zfsd/head/sys/cddl/dev/lockstat/lockstat.c projects/zfsd/head/sys/cddl/dev/profile/profile.c projects/zfsd/head/sys/compat/freebsd32/freebsd32.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_misc.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_proto.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_syscall.h projects/zfsd/head/sys/compat/freebsd32/freebsd32_syscalls.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_sysent.c projects/zfsd/head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/zfsd/head/sys/compat/freebsd32/syscalls.master projects/zfsd/head/sys/compat/linprocfs/linprocfs.c projects/zfsd/head/sys/compat/linux/linux_file.c projects/zfsd/head/sys/compat/linux/linux_ioctl.c projects/zfsd/head/sys/compat/linux/linux_misc.c projects/zfsd/head/sys/compat/ndis/subr_ndis.c projects/zfsd/head/sys/compat/svr4/svr4_misc.c projects/zfsd/head/sys/conf/Makefile.arm projects/zfsd/head/sys/conf/Makefile.pc98 projects/zfsd/head/sys/conf/NOTES projects/zfsd/head/sys/conf/files projects/zfsd/head/sys/conf/files.amd64 projects/zfsd/head/sys/conf/files.arm projects/zfsd/head/sys/conf/files.i386 projects/zfsd/head/sys/conf/files.ia64 projects/zfsd/head/sys/conf/files.mips projects/zfsd/head/sys/conf/files.pc98 projects/zfsd/head/sys/conf/files.powerpc projects/zfsd/head/sys/conf/files.sparc64 projects/zfsd/head/sys/conf/kern.post.mk projects/zfsd/head/sys/conf/kern.pre.mk projects/zfsd/head/sys/conf/kmod.mk projects/zfsd/head/sys/conf/options projects/zfsd/head/sys/conf/options.ia64 projects/zfsd/head/sys/conf/options.mips projects/zfsd/head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/adfile.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/adisasm.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/adwalk.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/dmextern.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/dmrestag.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/dmtable.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/dmtbdump.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/dmtbinfo.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/getopt.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcodegen.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompile.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompiler.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompiler.y (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asldefine.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslerror.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslfiles.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslfold.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslglobal.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asllength.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asllisting.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslload.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asllookup.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslmain.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslmap.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslmessages.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslopcodes.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asloperands.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslopt.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslresource.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype1.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype1i.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2d.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2e.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2q.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2w.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslstartup.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslstubs.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslsupport.l (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asltransform.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asltree.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asltypes.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslwalks.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtcompile.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtio.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dttable.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dttemplate.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dttemplate.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbcmds.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbdisply.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbexec.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbfileio.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbhistry.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbinput.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbmethod.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbnames.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbstats.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/dbxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmnames.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmobject.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmopcode.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmresrc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmresrcs.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/dmwalk.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsfield.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsinit.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsmethod.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsobject.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswexec.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswload2.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswscope.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswstate.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evevent.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evrgnini.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evxfgpe.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evxfregn.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exconfig.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exconvrt.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/excreate.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exdebug.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exdump.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exfield.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exfldio.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exmisc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exmutex.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exnames.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exoparg1.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exoparg2.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exoparg3.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exoparg6.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exprep.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exregion.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exresnte.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exresolv.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exresop.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exstore.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exstoren.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exstorob.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exsystem.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/exutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwacpi.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwgpe.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwpci.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwregs.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwtimer.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwvalid.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsaccess.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsalloc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsdump.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsdumpdv.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nseval.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsinit.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsload.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsnames.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsobject.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsparse.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nssearch.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nswalk.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsxfeval.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsxfname.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsxfobj.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psargs.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psloop.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psopcode.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psparse.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psscope.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/pstree.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/psxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsaddr.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rscalc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rscreate.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsdump.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsio.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rslist.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsmemory.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsmisc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbfadt.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbfind.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbinstal.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbutils.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbxfload.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/tbxfroot.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utalloc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utcache.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utcopy.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utdebug.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utdelete.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utids.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utinit.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utlock.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utmath.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utmisc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utmutex.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utobject.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utresrc.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utstate.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/uttrack.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxface.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxferror.c (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acapps.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acconfig.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acdisasm.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acexcep.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acglobal.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/aclocal.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acmacros.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acnames.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acobject.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acopcode.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acpiosxf.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acpixf.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acrestyp.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acstruct.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actbl2.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actbl3.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actypes.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acutils.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/amlresrc.h (contents, props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/platform/acenv.h (contents, props changed) projects/zfsd/head/sys/contrib/ipfilter/netinet/fil.c projects/zfsd/head/sys/contrib/ngatm/netnatm/msg/uni_ie.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-app-init.h projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-ebt3000.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-helper-spi.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-helper.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-pow.h projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-spi.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-utils.h projects/zfsd/head/sys/contrib/octeon-sdk/cvmx-warn.c projects/zfsd/head/sys/contrib/octeon-sdk/cvmx.h projects/zfsd/head/sys/contrib/octeon-sdk/octeon-feature.c projects/zfsd/head/sys/contrib/octeon-sdk/octeon-feature.h projects/zfsd/head/sys/contrib/octeon-sdk/octeon-model.c projects/zfsd/head/sys/contrib/octeon-sdk/octeon-model.h projects/zfsd/head/sys/contrib/octeon-sdk/octeon-pci-console.c projects/zfsd/head/sys/ddb/db_command.c projects/zfsd/head/sys/ddb/db_textdump.c projects/zfsd/head/sys/dev/aac/aac_debug.c projects/zfsd/head/sys/dev/acpi_support/acpi_ibm.c projects/zfsd/head/sys/dev/acpi_support/acpi_wmi.c projects/zfsd/head/sys/dev/acpica/acpi.c projects/zfsd/head/sys/dev/acpica/acpi_cpu.c projects/zfsd/head/sys/dev/acpica/acpi_pcib_acpi.c projects/zfsd/head/sys/dev/acpica/acpi_thermal.c projects/zfsd/head/sys/dev/acpica/acpi_video.c projects/zfsd/head/sys/dev/acpica/acpivar.h projects/zfsd/head/sys/dev/adb/adb_mouse.c projects/zfsd/head/sys/dev/advansys/adv_eisa.c projects/zfsd/head/sys/dev/advansys/adv_isa.c projects/zfsd/head/sys/dev/advansys/adv_pci.c projects/zfsd/head/sys/dev/advansys/advansys.c projects/zfsd/head/sys/dev/advansys/advansys.h projects/zfsd/head/sys/dev/advansys/advlib.c projects/zfsd/head/sys/dev/advansys/advlib.h projects/zfsd/head/sys/dev/advansys/adw_pci.c projects/zfsd/head/sys/dev/advansys/adwcam.c projects/zfsd/head/sys/dev/advansys/adwlib.c projects/zfsd/head/sys/dev/advansys/adwlib.h projects/zfsd/head/sys/dev/advansys/adwvar.h projects/zfsd/head/sys/dev/age/if_age.c projects/zfsd/head/sys/dev/agp/agp.c projects/zfsd/head/sys/dev/agp/agp_ali.c projects/zfsd/head/sys/dev/agp/agp_amd.c projects/zfsd/head/sys/dev/agp/agp_amd64.c projects/zfsd/head/sys/dev/agp/agp_apple.c projects/zfsd/head/sys/dev/agp/agp_ati.c projects/zfsd/head/sys/dev/agp/agp_i810.c projects/zfsd/head/sys/dev/agp/agp_intel.c projects/zfsd/head/sys/dev/agp/agp_nvidia.c projects/zfsd/head/sys/dev/agp/agp_sis.c projects/zfsd/head/sys/dev/agp/agp_via.c projects/zfsd/head/sys/dev/aha/aha.c projects/zfsd/head/sys/dev/aha/aha_isa.c projects/zfsd/head/sys/dev/aha/aha_mca.c projects/zfsd/head/sys/dev/aha/ahareg.h projects/zfsd/head/sys/dev/ahb/ahb.c projects/zfsd/head/sys/dev/ahb/ahbreg.h projects/zfsd/head/sys/dev/ahci/ahciem.c projects/zfsd/head/sys/dev/aic/aic.c projects/zfsd/head/sys/dev/aic/aic_cbus.c projects/zfsd/head/sys/dev/aic/aic_isa.c projects/zfsd/head/sys/dev/aic/aic_pccard.c projects/zfsd/head/sys/dev/aic/aicvar.h projects/zfsd/head/sys/dev/aic7xxx/aicasm/aicasm_gram.y projects/zfsd/head/sys/dev/ale/if_ale.c projects/zfsd/head/sys/dev/arcmsr/arcmsr.c projects/zfsd/head/sys/dev/asmc/asmc.c projects/zfsd/head/sys/dev/ata/ata-all.c projects/zfsd/head/sys/dev/ata/ata-all.h projects/zfsd/head/sys/dev/ata/ata-card.c projects/zfsd/head/sys/dev/ata/ata-lowlevel.c projects/zfsd/head/sys/dev/ata/ata-sata.c projects/zfsd/head/sys/dev/ata/chipsets/ata-acard.c projects/zfsd/head/sys/dev/ata/chipsets/ata-acerlabs.c projects/zfsd/head/sys/dev/ata/chipsets/ata-adaptec.c projects/zfsd/head/sys/dev/ata/chipsets/ata-ahci.c projects/zfsd/head/sys/dev/ata/chipsets/ata-amd.c projects/zfsd/head/sys/dev/ata/chipsets/ata-ati.c projects/zfsd/head/sys/dev/ata/chipsets/ata-highpoint.c projects/zfsd/head/sys/dev/ata/chipsets/ata-intel.c projects/zfsd/head/sys/dev/ata/chipsets/ata-ite.c projects/zfsd/head/sys/dev/ata/chipsets/ata-jmicron.c projects/zfsd/head/sys/dev/ata/chipsets/ata-marvell.c projects/zfsd/head/sys/dev/ata/chipsets/ata-nvidia.c projects/zfsd/head/sys/dev/ata/chipsets/ata-promise.c projects/zfsd/head/sys/dev/ata/chipsets/ata-serverworks.c projects/zfsd/head/sys/dev/ata/chipsets/ata-siliconimage.c projects/zfsd/head/sys/dev/ata/chipsets/ata-sis.c projects/zfsd/head/sys/dev/ata/chipsets/ata-via.c projects/zfsd/head/sys/dev/ath/ath_hal/ah.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_debug.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_devid.h projects/zfsd/head/sys/dev/ath/ath_hal/ah_internal.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210desc.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5210/ar5210reg.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5211/ar5211desc.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5212/ar5212desc.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/zfsd/head/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/zfsd/head/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/zfsd/head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/zfsd/head/sys/dev/ath/ath_rate/sample/sample.c projects/zfsd/head/sys/dev/ath/if_ath.c projects/zfsd/head/sys/dev/ath/if_ath_ahb.c projects/zfsd/head/sys/dev/ath/if_ath_debug.c projects/zfsd/head/sys/dev/ath/if_ath_debug.h projects/zfsd/head/sys/dev/ath/if_ath_keycache.c projects/zfsd/head/sys/dev/ath/if_ath_misc.h projects/zfsd/head/sys/dev/ath/if_ath_pci.c projects/zfsd/head/sys/dev/ath/if_ath_rx.c projects/zfsd/head/sys/dev/ath/if_ath_rx_edma.c projects/zfsd/head/sys/dev/ath/if_ath_sysctl.c projects/zfsd/head/sys/dev/ath/if_ath_tdma.c projects/zfsd/head/sys/dev/ath/if_ath_tx.c projects/zfsd/head/sys/dev/ath/if_ath_tx.h projects/zfsd/head/sys/dev/ath/if_ath_tx_edma.c projects/zfsd/head/sys/dev/ath/if_ath_tx_ht.c projects/zfsd/head/sys/dev/ath/if_athvar.h projects/zfsd/head/sys/dev/bce/if_bcereg.h projects/zfsd/head/sys/dev/bge/if_bge.c projects/zfsd/head/sys/dev/bge/if_bgereg.h projects/zfsd/head/sys/dev/bktr/bktr_audio.c projects/zfsd/head/sys/dev/buslogic/bt.c projects/zfsd/head/sys/dev/buslogic/bt_eisa.c projects/zfsd/head/sys/dev/buslogic/bt_isa.c projects/zfsd/head/sys/dev/buslogic/bt_mca.c projects/zfsd/head/sys/dev/buslogic/bt_pci.c projects/zfsd/head/sys/dev/buslogic/btreg.h projects/zfsd/head/sys/dev/bxe/if_bxe.c projects/zfsd/head/sys/dev/cas/if_cas.c projects/zfsd/head/sys/dev/ciss/cissvar.h projects/zfsd/head/sys/dev/cpuctl/cpuctl.c projects/zfsd/head/sys/dev/ct/bshw_machdep.c projects/zfsd/head/sys/dev/ct/ct.c projects/zfsd/head/sys/dev/ct/ct_isa.c projects/zfsd/head/sys/dev/ct/ct_machdep.h projects/zfsd/head/sys/dev/cxgb/cxgb_main.c projects/zfsd/head/sys/dev/cxgb/cxgb_sge.c projects/zfsd/head/sys/dev/cxgb/ulp/tom/cxgb_tom.h projects/zfsd/head/sys/dev/cxgbe/adapter.h projects/zfsd/head/sys/dev/cxgbe/common/common.h projects/zfsd/head/sys/dev/cxgbe/common/t4_hw.c projects/zfsd/head/sys/dev/cxgbe/t4_ioctl.h projects/zfsd/head/sys/dev/cxgbe/t4_l2t.h projects/zfsd/head/sys/dev/cxgbe/t4_main.c projects/zfsd/head/sys/dev/cxgbe/t4_sge.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_cpl_io.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_listen.c projects/zfsd/head/sys/dev/cxgbe/tom/t4_tom.h projects/zfsd/head/sys/dev/dc/if_dc.c projects/zfsd/head/sys/dev/dpt/dpt.h projects/zfsd/head/sys/dev/dpt/dpt_eisa.c projects/zfsd/head/sys/dev/dpt/dpt_isa.c projects/zfsd/head/sys/dev/dpt/dpt_pci.c projects/zfsd/head/sys/dev/dpt/dpt_scsi.c projects/zfsd/head/sys/dev/drm/drmP.h projects/zfsd/head/sys/dev/drm/via_dma.c projects/zfsd/head/sys/dev/drm/via_dmablit.c projects/zfsd/head/sys/dev/drm2/drm_drv.c projects/zfsd/head/sys/dev/e1000/if_igb.c projects/zfsd/head/sys/dev/e1000/if_lem.c projects/zfsd/head/sys/dev/etherswitch/arswitch/arswitch.c projects/zfsd/head/sys/dev/etherswitch/arswitch/arswitch_phy.c projects/zfsd/head/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/zfsd/head/sys/dev/etherswitch/arswitch/arswitchvar.h projects/zfsd/head/sys/dev/etherswitch/etherswitch.c projects/zfsd/head/sys/dev/etherswitch/etherswitch_if.m projects/zfsd/head/sys/dev/fdc/fdc.c projects/zfsd/head/sys/dev/filemon/filemon.c projects/zfsd/head/sys/dev/filemon/filemon_wrapper.c projects/zfsd/head/sys/dev/flash/at45d.c projects/zfsd/head/sys/dev/fxp/if_fxp.c projects/zfsd/head/sys/dev/gem/if_gem_pci.c projects/zfsd/head/sys/dev/gpio/gpiobus.c projects/zfsd/head/sys/dev/gxemul/cons/gxemul_cons.c projects/zfsd/head/sys/dev/hpt27xx/os_bsd.c projects/zfsd/head/sys/dev/hptiop/hptiop.c projects/zfsd/head/sys/dev/hptiop/hptiop.h projects/zfsd/head/sys/dev/hwpmc/hwpmc_core.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_intel.c projects/zfsd/head/sys/dev/hwpmc/hwpmc_mod.c projects/zfsd/head/sys/dev/hwpmc/pmc_events.h projects/zfsd/head/sys/dev/iicbus/iic.c projects/zfsd/head/sys/dev/iicbus/pcf8563.c projects/zfsd/head/sys/dev/isci/isci.c projects/zfsd/head/sys/dev/isci/isci.h projects/zfsd/head/sys/dev/isci/isci_controller.c projects/zfsd/head/sys/dev/isf/isf.c projects/zfsd/head/sys/dev/isp/isp_pci.c projects/zfsd/head/sys/dev/isp/isp_sbus.c projects/zfsd/head/sys/dev/ixgbe/ixgbe.c projects/zfsd/head/sys/dev/ixgbe/ixv.c projects/zfsd/head/sys/dev/lge/if_lge.c projects/zfsd/head/sys/dev/md/md.c projects/zfsd/head/sys/dev/mfi/mfi.c projects/zfsd/head/sys/dev/mfi/mfi_cam.c projects/zfsd/head/sys/dev/mfi/mfi_disk.c projects/zfsd/head/sys/dev/mfi/mfi_syspd.c projects/zfsd/head/sys/dev/mfi/mfi_tbolt.c projects/zfsd/head/sys/dev/mfi/mfivar.h projects/zfsd/head/sys/dev/mii/brgphy.c projects/zfsd/head/sys/dev/mii/e1000phy.c projects/zfsd/head/sys/dev/mii/mii.c projects/zfsd/head/sys/dev/mmc/mmc.c projects/zfsd/head/sys/dev/mn/if_mn.c projects/zfsd/head/sys/dev/mps/mps_sas.c projects/zfsd/head/sys/dev/mps/mps_user.c projects/zfsd/head/sys/dev/mpt/mpt.c projects/zfsd/head/sys/dev/mpt/mpt.h projects/zfsd/head/sys/dev/mpt/mpt_cam.c projects/zfsd/head/sys/dev/mpt/mpt_debug.c projects/zfsd/head/sys/dev/mpt/mpt_pci.c projects/zfsd/head/sys/dev/mpt/mpt_raid.c projects/zfsd/head/sys/dev/mxge/if_mxge.c projects/zfsd/head/sys/dev/nand/nandsim_swap.c projects/zfsd/head/sys/dev/netmap/netmap.c projects/zfsd/head/sys/dev/netmap/netmap_kern.h projects/zfsd/head/sys/dev/netmap/netmap_mem2.c projects/zfsd/head/sys/dev/nge/if_nge.c projects/zfsd/head/sys/dev/null/null.c projects/zfsd/head/sys/dev/nvd/nvd.c projects/zfsd/head/sys/dev/nve/if_nve.c projects/zfsd/head/sys/dev/nve/if_nvereg.h projects/zfsd/head/sys/dev/nvme/nvme.c projects/zfsd/head/sys/dev/nvme/nvme.h projects/zfsd/head/sys/dev/nvme/nvme_ctrlr.c projects/zfsd/head/sys/dev/nvme/nvme_ctrlr_cmd.c projects/zfsd/head/sys/dev/nvme/nvme_ns.c projects/zfsd/head/sys/dev/nvme/nvme_ns_cmd.c projects/zfsd/head/sys/dev/nvme/nvme_private.h projects/zfsd/head/sys/dev/nvme/nvme_qpair.c projects/zfsd/head/sys/dev/nvme/nvme_sysctl.c projects/zfsd/head/sys/dev/nvme/nvme_uio.c projects/zfsd/head/sys/dev/nxge/xgehal/xgehal-device.c projects/zfsd/head/sys/dev/oce/oce_if.c projects/zfsd/head/sys/dev/pci/pci.c projects/zfsd/head/sys/dev/pci/pcireg.h projects/zfsd/head/sys/dev/puc/pucdata.c projects/zfsd/head/sys/dev/re/if_re.c projects/zfsd/head/sys/dev/sdhci/sdhci.c projects/zfsd/head/sys/dev/sdhci/sdhci.h projects/zfsd/head/sys/dev/sio/sio_isa.c projects/zfsd/head/sys/dev/sis/if_sis.c projects/zfsd/head/sys/dev/snc/dp83932.c projects/zfsd/head/sys/dev/snc/dp83932subr.c projects/zfsd/head/sys/dev/snc/if_snc.c projects/zfsd/head/sys/dev/snc/if_snc_cbus.c projects/zfsd/head/sys/dev/sound/pci/emu10kx.c projects/zfsd/head/sys/dev/sound/pci/hda/hdaa.c projects/zfsd/head/sys/dev/sound/pci/hda/hdaa.h projects/zfsd/head/sys/dev/sound/pci/hda/hdaa_patches.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.c projects/zfsd/head/sys/dev/sound/pci/hda/hdac.h projects/zfsd/head/sys/dev/sound/pci/hda/hdacc.c projects/zfsd/head/sys/dev/sound/pcm/buffer.c projects/zfsd/head/sys/dev/sound/pcm/channel.c projects/zfsd/head/sys/dev/sound/pcm/feeder_matrix.c projects/zfsd/head/sys/dev/sound/pcm/matrix.h projects/zfsd/head/sys/dev/sound/pcm/matrix_map.h projects/zfsd/head/sys/dev/sound/pcm/mixer.h projects/zfsd/head/sys/dev/sound/pcm/sound.c projects/zfsd/head/sys/dev/sound/usb/uaudio.c projects/zfsd/head/sys/dev/ste/if_ste.c projects/zfsd/head/sys/dev/stge/if_stge.c projects/zfsd/head/sys/dev/syscons/scvidctl.c projects/zfsd/head/sys/dev/ti/if_ti.c projects/zfsd/head/sys/dev/tl/if_tl.c projects/zfsd/head/sys/dev/twa/tw_cl_misc.c projects/zfsd/head/sys/dev/tws/tws.c projects/zfsd/head/sys/dev/tws/tws.h projects/zfsd/head/sys/dev/tws/tws_cam.c projects/zfsd/head/sys/dev/tws/tws_hdm.h projects/zfsd/head/sys/dev/tws/tws_user.c projects/zfsd/head/sys/dev/uart/uart_bus_acpi.c projects/zfsd/head/sys/dev/uart/uart_bus_isa.c projects/zfsd/head/sys/dev/uart/uart_dev_pl011.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.c projects/zfsd/head/sys/dev/usb/controller/dwc_otg.h projects/zfsd/head/sys/dev/usb/controller/dwc_otgreg.h projects/zfsd/head/sys/dev/usb/controller/ehci.c projects/zfsd/head/sys/dev/usb/controller/ehci.h projects/zfsd/head/sys/dev/usb/controller/ohci.c projects/zfsd/head/sys/dev/usb/controller/uhci.c projects/zfsd/head/sys/dev/usb/controller/usb_controller.c projects/zfsd/head/sys/dev/usb/controller/xhci.c projects/zfsd/head/sys/dev/usb/input/uhid.c projects/zfsd/head/sys/dev/usb/input/ukbd.c projects/zfsd/head/sys/dev/usb/net/if_ipheth.c projects/zfsd/head/sys/dev/usb/net/if_smsc.c projects/zfsd/head/sys/dev/usb/net/if_udav.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.c projects/zfsd/head/sys/dev/usb/quirk/usb_quirk.h projects/zfsd/head/sys/dev/usb/serial/u3g.c projects/zfsd/head/sys/dev/usb/serial/uplcom.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.c projects/zfsd/head/sys/dev/usb/serial/usb_serial.h projects/zfsd/head/sys/dev/usb/storage/umass.c projects/zfsd/head/sys/dev/usb/usb.h projects/zfsd/head/sys/dev/usb/usb_debug.c projects/zfsd/head/sys/dev/usb/usb_debug.h projects/zfsd/head/sys/dev/usb/usb_dev.c projects/zfsd/head/sys/dev/usb/usb_device.c projects/zfsd/head/sys/dev/usb/usb_generic.c projects/zfsd/head/sys/dev/usb/usb_hub.c projects/zfsd/head/sys/dev/usb/usb_msctest.c projects/zfsd/head/sys/dev/usb/usb_pf.c projects/zfsd/head/sys/dev/usb/usb_process.c projects/zfsd/head/sys/dev/usb/usb_request.c projects/zfsd/head/sys/dev/usb/usbdevs projects/zfsd/head/sys/dev/usb/wlan/if_uath.c projects/zfsd/head/sys/dev/usb/wlan/if_upgt.c projects/zfsd/head/sys/dev/usb/wlan/if_urtw.c projects/zfsd/head/sys/dev/virtio/virtio.c projects/zfsd/head/sys/dev/virtio/virtio.h projects/zfsd/head/sys/dev/virtio/virtqueue.c projects/zfsd/head/sys/dev/vr/if_vr.c projects/zfsd/head/sys/dev/wb/if_wb.c projects/zfsd/head/sys/dev/xen/blkback/blkback.c projects/zfsd/head/sys/dev/xen/netback/netback_unit_tests.c projects/zfsd/head/sys/dev/xl/if_xl.c projects/zfsd/head/sys/fs/cd9660/cd9660_vfsops.c projects/zfsd/head/sys/fs/devfs/devfs_devs.c projects/zfsd/head/sys/fs/devfs/devfs_vfsops.c projects/zfsd/head/sys/fs/ext2fs/ext2_vfsops.c projects/zfsd/head/sys/fs/fdescfs/fdesc_vfsops.c projects/zfsd/head/sys/fs/msdosfs/msdosfs_denode.c projects/zfsd/head/sys/fs/msdosfs/msdosfs_vfsops.c projects/zfsd/head/sys/fs/nandfs/nandfs_subr.c projects/zfsd/head/sys/fs/nandfs/nandfs_vfsops.c projects/zfsd/head/sys/fs/nfs/nfs_commonport.c projects/zfsd/head/sys/fs/nfsclient/nfs_clnode.c projects/zfsd/head/sys/fs/nfsclient/nfs_clport.c projects/zfsd/head/sys/fs/nfsclient/nfs_clvfsops.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/zfsd/head/sys/fs/nfsserver/nfs_nfsdport.c projects/zfsd/head/sys/fs/nullfs/null_subr.c projects/zfsd/head/sys/fs/nullfs/null_vfsops.c projects/zfsd/head/sys/fs/nullfs/null_vnops.c projects/zfsd/head/sys/fs/procfs/procfs_map.c projects/zfsd/head/sys/fs/pseudofs/pseudofs.c projects/zfsd/head/sys/fs/smbfs/smbfs.h projects/zfsd/head/sys/fs/smbfs/smbfs_io.c projects/zfsd/head/sys/fs/smbfs/smbfs_node.c projects/zfsd/head/sys/fs/smbfs/smbfs_node.h projects/zfsd/head/sys/fs/smbfs/smbfs_smb.c projects/zfsd/head/sys/fs/smbfs/smbfs_subr.c projects/zfsd/head/sys/fs/smbfs/smbfs_subr.h projects/zfsd/head/sys/fs/smbfs/smbfs_vfsops.c projects/zfsd/head/sys/fs/smbfs/smbfs_vnops.c projects/zfsd/head/sys/fs/tmpfs/tmpfs_vfsops.c projects/zfsd/head/sys/fs/udf/udf_vfsops.c projects/zfsd/head/sys/fs/unionfs/union_subr.c projects/zfsd/head/sys/fs/unionfs/union_vfsops.c projects/zfsd/head/sys/fs/unionfs/union_vnops.c projects/zfsd/head/sys/geom/bde/g_bde.c projects/zfsd/head/sys/geom/cache/g_cache.c projects/zfsd/head/sys/geom/geom.h projects/zfsd/head/sys/geom/geom_aes.c projects/zfsd/head/sys/geom/geom_dev.c projects/zfsd/head/sys/geom/geom_disk.c projects/zfsd/head/sys/geom/geom_disk.h projects/zfsd/head/sys/geom/geom_mbr.c projects/zfsd/head/sys/geom/geom_slice.c projects/zfsd/head/sys/geom/geom_slice.h projects/zfsd/head/sys/geom/geom_vfs.c projects/zfsd/head/sys/geom/journal/g_journal.c projects/zfsd/head/sys/geom/label/g_label.c projects/zfsd/head/sys/geom/label/g_label_ufs.c projects/zfsd/head/sys/geom/mountver/g_mountver.c projects/zfsd/head/sys/geom/multipath/g_multipath.c projects/zfsd/head/sys/geom/nop/g_nop.c projects/zfsd/head/sys/geom/part/g_part.c projects/zfsd/head/sys/geom/raid/g_raid.c projects/zfsd/head/sys/geom/raid/g_raid.h projects/zfsd/head/sys/geom/raid/g_raid_ctl.c projects/zfsd/head/sys/geom/raid/md_ddf.c projects/zfsd/head/sys/geom/raid/md_intel.c projects/zfsd/head/sys/geom/raid/md_jmicron.c projects/zfsd/head/sys/geom/raid/md_nvidia.c projects/zfsd/head/sys/geom/raid/md_promise.c projects/zfsd/head/sys/geom/raid/md_sii.c projects/zfsd/head/sys/geom/raid/tr_concat.c projects/zfsd/head/sys/geom/raid/tr_raid0.c projects/zfsd/head/sys/geom/raid/tr_raid1.c projects/zfsd/head/sys/geom/raid/tr_raid1e.c projects/zfsd/head/sys/geom/sched/g_sched.c projects/zfsd/head/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/zfsd/head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_compat.h projects/zfsd/head/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd.h projects/zfsd/head/sys/i386/i386/machdep.c projects/zfsd/head/sys/i386/i386/mp_machdep.c projects/zfsd/head/sys/i386/i386/pmap.c projects/zfsd/head/sys/i386/i386/trap.c projects/zfsd/head/sys/i386/ibcs2/ibcs2_misc.c projects/zfsd/head/sys/i386/ibcs2/imgact_coff.c projects/zfsd/head/sys/i386/include/atomic.h projects/zfsd/head/sys/i386/include/intr_machdep.h projects/zfsd/head/sys/i386/include/vmparam.h projects/zfsd/head/sys/i386/pci/pci_cfgreg.c projects/zfsd/head/sys/i386/xen/clock.c projects/zfsd/head/sys/i386/xen/mp_machdep.c projects/zfsd/head/sys/i386/xen/pmap.c projects/zfsd/head/sys/i386/xen/xen_machdep.c projects/zfsd/head/sys/ia64/ia64/pmap.c projects/zfsd/head/sys/ia64/ia64/uma_machdep.c projects/zfsd/head/sys/ia64/include/pmap.h projects/zfsd/head/sys/kern/Make.tags.inc projects/zfsd/head/sys/kern/capabilities.conf projects/zfsd/head/sys/kern/imgact_elf.c projects/zfsd/head/sys/kern/init_sysent.c projects/zfsd/head/sys/kern/kern_acct.c projects/zfsd/head/sys/kern/kern_alq.c projects/zfsd/head/sys/kern/kern_clocksource.c projects/zfsd/head/sys/kern/kern_cons.c projects/zfsd/head/sys/kern/kern_ctf.c projects/zfsd/head/sys/kern/kern_descrip.c projects/zfsd/head/sys/kern/kern_exec.c projects/zfsd/head/sys/kern/kern_exit.c projects/zfsd/head/sys/kern/kern_gzio.c projects/zfsd/head/sys/kern/kern_jail.c projects/zfsd/head/sys/kern/kern_ktr.c projects/zfsd/head/sys/kern/kern_ktrace.c projects/zfsd/head/sys/kern/kern_linker.c projects/zfsd/head/sys/kern/kern_malloc.c projects/zfsd/head/sys/kern/kern_mbuf.c projects/zfsd/head/sys/kern/kern_mutex.c projects/zfsd/head/sys/kern/kern_proc.c projects/zfsd/head/sys/kern/kern_prot.c projects/zfsd/head/sys/kern/kern_racct.c projects/zfsd/head/sys/kern/kern_rctl.c projects/zfsd/head/sys/kern/kern_rmlock.c projects/zfsd/head/sys/kern/kern_rwlock.c projects/zfsd/head/sys/kern/kern_shutdown.c projects/zfsd/head/sys/kern/kern_sig.c projects/zfsd/head/sys/kern/kern_timeout.c projects/zfsd/head/sys/kern/kern_umtx.c projects/zfsd/head/sys/kern/link_elf.c projects/zfsd/head/sys/kern/link_elf_obj.c projects/zfsd/head/sys/kern/sched_4bsd.c projects/zfsd/head/sys/kern/sched_ule.c projects/zfsd/head/sys/kern/subr_lock.c projects/zfsd/head/sys/kern/subr_param.c projects/zfsd/head/sys/kern/subr_smp.c projects/zfsd/head/sys/kern/subr_taskqueue.c projects/zfsd/head/sys/kern/subr_trap.c projects/zfsd/head/sys/kern/subr_uio.c projects/zfsd/head/sys/kern/sys_generic.c projects/zfsd/head/sys/kern/sys_procdesc.c projects/zfsd/head/sys/kern/sys_process.c projects/zfsd/head/sys/kern/syscalls.c projects/zfsd/head/sys/kern/syscalls.master projects/zfsd/head/sys/kern/systrace_args.c projects/zfsd/head/sys/kern/tty.c projects/zfsd/head/sys/kern/tty_pts.c projects/zfsd/head/sys/kern/tty_ttydisc.c projects/zfsd/head/sys/kern/uipc_domain.c projects/zfsd/head/sys/kern/uipc_mbuf.c projects/zfsd/head/sys/kern/uipc_mqueue.c projects/zfsd/head/sys/kern/uipc_socket.c projects/zfsd/head/sys/kern/uipc_syscalls.c projects/zfsd/head/sys/kern/uipc_usrreq.c projects/zfsd/head/sys/kern/vfs_acl.c projects/zfsd/head/sys/kern/vfs_aio.c projects/zfsd/head/sys/kern/vfs_bio.c projects/zfsd/head/sys/kern/vfs_cache.c projects/zfsd/head/sys/kern/vfs_default.c projects/zfsd/head/sys/kern/vfs_extattr.c projects/zfsd/head/sys/kern/vfs_init.c projects/zfsd/head/sys/kern/vfs_lookup.c projects/zfsd/head/sys/kern/vfs_mount.c projects/zfsd/head/sys/kern/vfs_mountroot.c projects/zfsd/head/sys/kern/vfs_subr.c projects/zfsd/head/sys/kern/vfs_syscalls.c projects/zfsd/head/sys/kern/vfs_vnops.c projects/zfsd/head/sys/kern/vnode_if.src projects/zfsd/head/sys/libkern/strlcpy.c projects/zfsd/head/sys/libkern/strlen.c projects/zfsd/head/sys/mips/atheros/files.ar71xx projects/zfsd/head/sys/mips/cavium/files.octeon1 projects/zfsd/head/sys/mips/cavium/octe/ethernet-common.c projects/zfsd/head/sys/mips/cavium/octe/ethernet-rgmii.c projects/zfsd/head/sys/mips/cavium/octe/ethernet-rx.c projects/zfsd/head/sys/mips/cavium/octe/ethernet-sgmii.c projects/zfsd/head/sys/mips/cavium/octe/ethernet-tx.c projects/zfsd/head/sys/mips/cavium/octe/ethernet-xaui.c projects/zfsd/head/sys/mips/cavium/octe/ethernet.c projects/zfsd/head/sys/mips/cavium/octeon_ebt3000_cf.c projects/zfsd/head/sys/mips/cavium/octeon_machdep.c projects/zfsd/head/sys/mips/cavium/octeon_pcmap_regs.h projects/zfsd/head/sys/mips/cavium/octopci.c projects/zfsd/head/sys/mips/cavium/uart_cpu_octeonusart.c projects/zfsd/head/sys/mips/cavium/uart_dev_oct16550.c projects/zfsd/head/sys/mips/conf/AP91.hints projects/zfsd/head/sys/mips/conf/AP93.hints projects/zfsd/head/sys/mips/conf/AP96.hints projects/zfsd/head/sys/mips/conf/AR71XX_BASE projects/zfsd/head/sys/mips/conf/AR724X_BASE projects/zfsd/head/sys/mips/conf/AR91XX_BASE projects/zfsd/head/sys/mips/conf/OCTEON1 projects/zfsd/head/sys/mips/conf/PB92 projects/zfsd/head/sys/mips/conf/RSPRO.hints projects/zfsd/head/sys/mips/conf/RT305X projects/zfsd/head/sys/mips/include/cpufunc.h projects/zfsd/head/sys/mips/include/pmap.h projects/zfsd/head/sys/mips/mips/busdma_machdep.c projects/zfsd/head/sys/mips/mips/pmap.c projects/zfsd/head/sys/mips/mips/support.S projects/zfsd/head/sys/mips/mips/uma_machdep.c projects/zfsd/head/sys/mips/rmi/rootfs_list.txt projects/zfsd/head/sys/mips/rmi/xlr_i2c.c projects/zfsd/head/sys/mips/rt305x/files.rt305x projects/zfsd/head/sys/modules/3dfx/Makefile projects/zfsd/head/sys/modules/Makefile projects/zfsd/head/sys/modules/acpi/acpi/Makefile projects/zfsd/head/sys/modules/agp/Makefile projects/zfsd/head/sys/modules/cmx/Makefile projects/zfsd/head/sys/modules/drm/r128/Makefile projects/zfsd/head/sys/modules/drm/radeon/Makefile projects/zfsd/head/sys/modules/drm/via/Makefile projects/zfsd/head/sys/modules/dtrace/Makefile projects/zfsd/head/sys/modules/filemon/Makefile projects/zfsd/head/sys/modules/nxge/Makefile projects/zfsd/head/sys/modules/sdhci/Makefile projects/zfsd/head/sys/modules/ufs/Makefile projects/zfsd/head/sys/modules/virtio/Makefile projects/zfsd/head/sys/net/bpf.c projects/zfsd/head/sys/net/if.c projects/zfsd/head/sys/net/if.h projects/zfsd/head/sys/net/if_bridge.c projects/zfsd/head/sys/net/if_clone.c projects/zfsd/head/sys/net/if_clone.h projects/zfsd/head/sys/net/if_disc.c projects/zfsd/head/sys/net/if_edsc.c projects/zfsd/head/sys/net/if_ef.c projects/zfsd/head/sys/net/if_enc.c projects/zfsd/head/sys/net/if_epair.c projects/zfsd/head/sys/net/if_ethersubr.c projects/zfsd/head/sys/net/if_faith.c projects/zfsd/head/sys/net/if_gif.c projects/zfsd/head/sys/net/if_gre.c projects/zfsd/head/sys/net/if_lagg.c projects/zfsd/head/sys/net/if_loop.c projects/zfsd/head/sys/net/if_spppsubr.c projects/zfsd/head/sys/net/if_stf.c projects/zfsd/head/sys/net/if_tap.c projects/zfsd/head/sys/net/if_tun.c projects/zfsd/head/sys/net/if_var.h projects/zfsd/head/sys/net/if_vlan.c projects/zfsd/head/sys/net/pfil.c projects/zfsd/head/sys/net/pfil.h projects/zfsd/head/sys/net/rtsock.c projects/zfsd/head/sys/net80211/ieee80211.c projects/zfsd/head/sys/net80211/ieee80211_freebsd.c projects/zfsd/head/sys/net80211/ieee80211_freebsd.h projects/zfsd/head/sys/net80211/ieee80211_ht.c projects/zfsd/head/sys/netgraph/atm/ccatm/ng_ccatm.c projects/zfsd/head/sys/netgraph/atm/sscfu/ng_sscfu.c projects/zfsd/head/sys/netgraph/atm/sscop/ng_sscop.c projects/zfsd/head/sys/netgraph/atm/uni/ng_uni.c projects/zfsd/head/sys/netgraph/netflow/netflow_v9.c projects/zfsd/head/sys/netgraph/netflow/ng_netflow.c projects/zfsd/head/sys/netgraph/netflow/ng_netflow.h projects/zfsd/head/sys/netgraph/ng_eiface.c projects/zfsd/head/sys/netgraph/ng_ether.c projects/zfsd/head/sys/netgraph/ng_fec.c projects/zfsd/head/sys/netgraph/ng_gif.c projects/zfsd/head/sys/netgraph/ng_ipfw.c projects/zfsd/head/sys/netgraph/ng_ksocket.c projects/zfsd/head/sys/netgraph/ng_nat.c projects/zfsd/head/sys/netgraph/ng_source.c projects/zfsd/head/sys/netinet/igmp.c projects/zfsd/head/sys/netinet/in.h projects/zfsd/head/sys/netinet/in_gif.c projects/zfsd/head/sys/netinet/in_rmx.c projects/zfsd/head/sys/netinet/in_var.h projects/zfsd/head/sys/netinet/ip_carp.c projects/zfsd/head/sys/netinet/ip_divert.c projects/zfsd/head/sys/netinet/ip_fastfwd.c projects/zfsd/head/sys/netinet/ip_gre.c projects/zfsd/head/sys/netinet/ip_icmp.c projects/zfsd/head/sys/netinet/ip_input.c projects/zfsd/head/sys/netinet/ip_ipsec.c projects/zfsd/head/sys/netinet/ip_mroute.c projects/zfsd/head/sys/netinet/ip_options.c projects/zfsd/head/sys/netinet/ip_options.h projects/zfsd/head/sys/netinet/ip_output.c projects/zfsd/head/sys/netinet/ip_var.h projects/zfsd/head/sys/netinet/libalias/alias_proxy.c projects/zfsd/head/sys/netinet/raw_ip.c projects/zfsd/head/sys/netinet/sctp_constants.h projects/zfsd/head/sys/netinet/sctp_indata.c projects/zfsd/head/sys/netinet/sctp_input.c projects/zfsd/head/sys/netinet/sctp_output.c projects/zfsd/head/sys/netinet/sctp_pcb.c projects/zfsd/head/sys/netinet/sctp_pcb.h projects/zfsd/head/sys/netinet/sctp_peeloff.c projects/zfsd/head/sys/netinet/sctp_peeloff.h projects/zfsd/head/sys/netinet/sctp_structs.h projects/zfsd/head/sys/netinet/sctp_sysctl.c projects/zfsd/head/sys/netinet/sctp_timer.c projects/zfsd/head/sys/netinet/sctp_uio.h projects/zfsd/head/sys/netinet/sctp_usrreq.c projects/zfsd/head/sys/netinet/sctp_var.h projects/zfsd/head/sys/netinet/sctputil.c projects/zfsd/head/sys/netinet/sctputil.h projects/zfsd/head/sys/netinet/siftr.c projects/zfsd/head/sys/netinet/tcp_debug.c projects/zfsd/head/sys/netinet/tcp_hostcache.c projects/zfsd/head/sys/netinet/tcp_input.c projects/zfsd/head/sys/netinet/tcp_output.c projects/zfsd/head/sys/netinet/tcp_reass.c projects/zfsd/head/sys/netinet/tcp_subr.c projects/zfsd/head/sys/netinet/tcp_syncache.c projects/zfsd/head/sys/netinet/tcp_syncache.h projects/zfsd/head/sys/netinet/tcp_timer.c projects/zfsd/head/sys/netinet/tcp_timer.h projects/zfsd/head/sys/netinet/tcp_timewait.c projects/zfsd/head/sys/netinet/tcp_var.h projects/zfsd/head/sys/netinet/udp_usrreq.c projects/zfsd/head/sys/netinet6/icmp6.c projects/zfsd/head/sys/netinet6/in6.c projects/zfsd/head/sys/netinet6/in6.h projects/zfsd/head/sys/netinet6/in6_gif.h projects/zfsd/head/sys/netinet6/in6_ifattach.h projects/zfsd/head/sys/netinet6/in6_pcb.h projects/zfsd/head/sys/netinet6/in6_rmx.c projects/zfsd/head/sys/netinet6/in6_src.c projects/zfsd/head/sys/netinet6/in6_var.h projects/zfsd/head/sys/netinet6/ip6_forward.c projects/zfsd/head/sys/netinet6/ip6_input.c projects/zfsd/head/sys/netinet6/ip6_ipsec.c projects/zfsd/head/sys/netinet6/ip6_mroute.c projects/zfsd/head/sys/netinet6/ip6_output.c projects/zfsd/head/sys/netinet6/ip6_var.h projects/zfsd/head/sys/netinet6/ip6protosw.h projects/zfsd/head/sys/netinet6/nd6.c projects/zfsd/head/sys/netinet6/nd6.h projects/zfsd/head/sys/netinet6/nd6_nbr.c projects/zfsd/head/sys/netinet6/nd6_rtr.c projects/zfsd/head/sys/netinet6/pim6_var.h projects/zfsd/head/sys/netinet6/scope6.c projects/zfsd/head/sys/netinet6/scope6_var.h projects/zfsd/head/sys/netinet6/sctp6_usrreq.c projects/zfsd/head/sys/netinet6/sctp6_var.h projects/zfsd/head/sys/netinet6/tcp6_var.h projects/zfsd/head/sys/netinet6/udp6_usrreq.c projects/zfsd/head/sys/netipsec/ipsec.c projects/zfsd/head/sys/netipsec/ipsec_input.c projects/zfsd/head/sys/netipsec/ipsec_output.c projects/zfsd/head/sys/netipsec/key.c projects/zfsd/head/sys/netipsec/xform_ah.c projects/zfsd/head/sys/netpfil/ipfw/ip_dn_glue.c projects/zfsd/head/sys/netpfil/ipfw/ip_dn_io.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw2.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw_dynamic.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw_log.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw_nat.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw_pfil.c projects/zfsd/head/sys/netpfil/ipfw/ip_fw_private.h projects/zfsd/head/sys/netpfil/ipfw/ip_fw_sockopt.c projects/zfsd/head/sys/netpfil/pf/if_pflog.c projects/zfsd/head/sys/netpfil/pf/if_pfsync.c projects/zfsd/head/sys/netpfil/pf/pf.c projects/zfsd/head/sys/netpfil/pf/pf_ioctl.c projects/zfsd/head/sys/netsmb/smb_conn.c projects/zfsd/head/sys/netsmb/smb_dev.c projects/zfsd/head/sys/netsmb/smb_trantcp.c projects/zfsd/head/sys/netsmb/smb_usr.c projects/zfsd/head/sys/nfs/nfs_nfssvc.c projects/zfsd/head/sys/nfs/nfssvc.h projects/zfsd/head/sys/nfsclient/nfs_node.c projects/zfsd/head/sys/nfsclient/nfs_vfsops.c projects/zfsd/head/sys/nfsserver/nfs.h projects/zfsd/head/sys/nfsserver/nfs_serv.c projects/zfsd/head/sys/nfsserver/nfs_srvsubs.c projects/zfsd/head/sys/nlm/nlm_prot_impl.c projects/zfsd/head/sys/ofed/drivers/infiniband/core/cma.c projects/zfsd/head/sys/ofed/drivers/infiniband/core/ud_header.c projects/zfsd/head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/zfsd/head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c projects/zfsd/head/sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c projects/zfsd/head/sys/ofed/drivers/net/mlx4/en_netdev.c projects/zfsd/head/sys/ofed/drivers/net/mlx4/en_rx.c projects/zfsd/head/sys/ofed/include/linux/cdev.h projects/zfsd/head/sys/ofed/include/linux/pci.h projects/zfsd/head/sys/ofed/include/rdma/ib_addr.h projects/zfsd/head/sys/pc98/include/bus.h projects/zfsd/head/sys/pc98/pc98/machdep.c projects/zfsd/head/sys/pci/if_rl.c projects/zfsd/head/sys/powerpc/aim/locore32.S projects/zfsd/head/sys/powerpc/aim/locore64.S projects/zfsd/head/sys/powerpc/aim/mmu_oea.c projects/zfsd/head/sys/powerpc/aim/mmu_oea64.c projects/zfsd/head/sys/powerpc/aim/slb.c projects/zfsd/head/sys/powerpc/aim/trap.c projects/zfsd/head/sys/powerpc/aim/trap_subr32.S projects/zfsd/head/sys/powerpc/aim/trap_subr64.S projects/zfsd/head/sys/powerpc/aim/uma_machdep.c projects/zfsd/head/sys/powerpc/booke/locore.S projects/zfsd/head/sys/powerpc/booke/machdep.c projects/zfsd/head/sys/powerpc/booke/platform_bare.c projects/zfsd/head/sys/powerpc/booke/pmap.c projects/zfsd/head/sys/powerpc/conf/GENERIC projects/zfsd/head/sys/powerpc/conf/NOTES projects/zfsd/head/sys/powerpc/include/bat.h projects/zfsd/head/sys/powerpc/powermac/openpic_macio.c projects/zfsd/head/sys/powerpc/wii/platform_wii.c projects/zfsd/head/sys/powerpc/wii/wii_ipcreg.h projects/zfsd/head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/zfsd/head/sys/security/audit/audit_arg.c projects/zfsd/head/sys/security/audit/audit_syscalls.c projects/zfsd/head/sys/security/audit/audit_worker.c projects/zfsd/head/sys/security/mac/mac_process.c projects/zfsd/head/sys/security/mac/mac_syscalls.c projects/zfsd/head/sys/sparc64/include/atomic.h projects/zfsd/head/sys/sparc64/include/intr_machdep.h projects/zfsd/head/sys/sparc64/include/ktr.h projects/zfsd/head/sys/sparc64/include/pmap.h projects/zfsd/head/sys/sparc64/pci/fire.c projects/zfsd/head/sys/sparc64/pci/psycho.c projects/zfsd/head/sys/sparc64/pci/schizo.c projects/zfsd/head/sys/sparc64/sparc64/interrupt.S projects/zfsd/head/sys/sparc64/sparc64/intr_machdep.c projects/zfsd/head/sys/sparc64/sparc64/machdep.c projects/zfsd/head/sys/sparc64/sparc64/pmap.c projects/zfsd/head/sys/sparc64/sparc64/tick.c projects/zfsd/head/sys/sparc64/sparc64/vm_machdep.c projects/zfsd/head/sys/sys/_mutex.h projects/zfsd/head/sys/sys/_rwlock.h projects/zfsd/head/sys/sys/buf.h projects/zfsd/head/sys/sys/bufobj.h projects/zfsd/head/sys/sys/cdefs.h projects/zfsd/head/sys/sys/conf.h projects/zfsd/head/sys/sys/ipc.h projects/zfsd/head/sys/sys/kernel.h projects/zfsd/head/sys/sys/ktr.h projects/zfsd/head/sys/sys/lock.h projects/zfsd/head/sys/sys/mount.h projects/zfsd/head/sys/sys/mutex.h projects/zfsd/head/sys/sys/namei.h projects/zfsd/head/sys/sys/param.h projects/zfsd/head/sys/sys/pmc.h projects/zfsd/head/sys/sys/proc.h projects/zfsd/head/sys/sys/racct.h projects/zfsd/head/sys/sys/rctl.h projects/zfsd/head/sys/sys/resource.h projects/zfsd/head/sys/sys/rwlock.h projects/zfsd/head/sys/sys/sched.h projects/zfsd/head/sys/sys/smp.h projects/zfsd/head/sys/sys/socketvar.h projects/zfsd/head/sys/sys/syscall.h projects/zfsd/head/sys/sys/syscall.mk projects/zfsd/head/sys/sys/syscallsubr.h projects/zfsd/head/sys/sys/sysproto.h projects/zfsd/head/sys/sys/tty.h projects/zfsd/head/sys/sys/vmmeter.h projects/zfsd/head/sys/sys/vnode.h projects/zfsd/head/sys/sys/wait.h projects/zfsd/head/sys/ufs/ffs/ffs_alloc.c projects/zfsd/head/sys/ufs/ffs/ffs_balloc.c projects/zfsd/head/sys/ufs/ffs/ffs_extern.h projects/zfsd/head/sys/ufs/ffs/ffs_softdep.c projects/zfsd/head/sys/ufs/ffs/ffs_vfsops.c projects/zfsd/head/sys/ufs/ffs/fs.h projects/zfsd/head/sys/ufs/ufs/ufs_extattr.c projects/zfsd/head/sys/ufs/ufs/ufs_quota.c projects/zfsd/head/sys/ufs/ufs/ufsmount.h projects/zfsd/head/sys/vm/device_pager.c projects/zfsd/head/sys/vm/sg_pager.c projects/zfsd/head/sys/vm/swap_pager.c projects/zfsd/head/sys/vm/uma.h projects/zfsd/head/sys/vm/uma_core.c projects/zfsd/head/sys/vm/uma_int.h projects/zfsd/head/sys/vm/vm_fault.c projects/zfsd/head/sys/vm/vm_glue.c projects/zfsd/head/sys/vm/vm_kern.c projects/zfsd/head/sys/vm/vm_map.c projects/zfsd/head/sys/vm/vm_mmap.c projects/zfsd/head/sys/vm/vm_object.c projects/zfsd/head/sys/vm/vm_page.c projects/zfsd/head/sys/vm/vm_page.h projects/zfsd/head/sys/vm/vm_pageout.c projects/zfsd/head/sys/vm/vm_phys.h projects/zfsd/head/sys/vm/vnode_pager.c projects/zfsd/head/sys/x86/include/bus.h projects/zfsd/head/sys/x86/include/specialreg.h projects/zfsd/head/sys/x86/x86/intr_machdep.c projects/zfsd/head/sys/xen/evtchn/evtchn.c projects/zfsd/head/sys/xen/interface/foreign/mkheader.py projects/zfsd/head/tools/build/make_check/Makefile projects/zfsd/head/tools/build/mk/OptionalObsoleteFiles.inc projects/zfsd/head/tools/regression/filemon/Makefile projects/zfsd/head/tools/regression/lib/libc/nss/test-gethostby.c projects/zfsd/head/tools/regression/lib/libc/resolv/resolv.c projects/zfsd/head/tools/regression/netinet/arphold/arphold.c projects/zfsd/head/tools/regression/netinet/ip_id_period/ip_id_period.py projects/zfsd/head/tools/regression/netinet/udpzerobyte/udpzerobyte.c projects/zfsd/head/tools/regression/netipx/ipxdgramloopback/ipxdgramloopback.c projects/zfsd/head/tools/regression/sockets/sblock/sblock.c projects/zfsd/head/tools/regression/sockets/sigpipe/sigpipe.c projects/zfsd/head/tools/regression/sockets/unix_cmsg/unix_cmsg.c projects/zfsd/head/tools/regression/sockets/unix_seqpacket_exercise/unix_seqpacket_exercise.c projects/zfsd/head/tools/regression/sockets/zerosend/zerosend.c projects/zfsd/head/tools/regression/ufs/uprintf/ufs_uprintf.c projects/zfsd/head/tools/test/hwpmc/pmctest.py projects/zfsd/head/tools/tools/cxgbetool/cxgbetool.c projects/zfsd/head/tools/tools/netmap/pcap.c projects/zfsd/head/tools/tools/sysdoc/Makefile projects/zfsd/head/usr.bin/Makefile projects/zfsd/head/usr.bin/Makefile.amd64 projects/zfsd/head/usr.bin/Makefile.i386 projects/zfsd/head/usr.bin/Makefile.ia64 projects/zfsd/head/usr.bin/Makefile.powerpc projects/zfsd/head/usr.bin/Makefile.sparc64 projects/zfsd/head/usr.bin/ar/ar.h projects/zfsd/head/usr.bin/at/privs.h projects/zfsd/head/usr.bin/bc/bc.y projects/zfsd/head/usr.bin/bmake/Makefile projects/zfsd/head/usr.bin/bmake/Makefile.inc projects/zfsd/head/usr.bin/bmake/unit-tests/Makefile projects/zfsd/head/usr.bin/calendar/calendar.1 projects/zfsd/head/usr.bin/calendar/calendar.c projects/zfsd/head/usr.bin/calendar/calendars/calendar.freebsd projects/zfsd/head/usr.bin/calendar/calendars/calendar.history projects/zfsd/head/usr.bin/calendar/dates.c projects/zfsd/head/usr.bin/calendar/day.c projects/zfsd/head/usr.bin/calendar/io.c projects/zfsd/head/usr.bin/chat/chat.c projects/zfsd/head/usr.bin/chpass/chpass.c projects/zfsd/head/usr.bin/cksum/extern.h projects/zfsd/head/usr.bin/clang/clang/Makefile projects/zfsd/head/usr.bin/csup/lister.c projects/zfsd/head/usr.bin/ctlstat/ctlstat.c projects/zfsd/head/usr.bin/cut/cut.1 projects/zfsd/head/usr.bin/cut/cut.c projects/zfsd/head/usr.bin/du/du.1 projects/zfsd/head/usr.bin/elfdump/elfdump.c projects/zfsd/head/usr.bin/fetch/fetch.c projects/zfsd/head/usr.bin/find/find.1 projects/zfsd/head/usr.bin/finger/finger.c projects/zfsd/head/usr.bin/gencat/gencat.c projects/zfsd/head/usr.bin/grep/grep.c projects/zfsd/head/usr.bin/grep/regex/xmalloc.c projects/zfsd/head/usr.bin/gzip/zuncompress.c projects/zfsd/head/usr.bin/kdump/kdump.c projects/zfsd/head/usr.bin/kdump/mksubr projects/zfsd/head/usr.bin/ktrdump/ktrdump.c projects/zfsd/head/usr.bin/less/defines.h projects/zfsd/head/usr.bin/locale/locale.1 projects/zfsd/head/usr.bin/locale/locale.c projects/zfsd/head/usr.bin/lock/lock.c projects/zfsd/head/usr.bin/logger/logger.c projects/zfsd/head/usr.bin/m4/Makefile projects/zfsd/head/usr.bin/m4/expr.c projects/zfsd/head/usr.bin/m4/extern.h projects/zfsd/head/usr.bin/m4/gnum4.c projects/zfsd/head/usr.bin/m4/lib/ohash_init.3 projects/zfsd/head/usr.bin/m4/m4.1 projects/zfsd/head/usr.bin/m4/main.c projects/zfsd/head/usr.bin/m4/parser.y projects/zfsd/head/usr.bin/ministat/ministat.1 projects/zfsd/head/usr.bin/ministat/ministat.c projects/zfsd/head/usr.bin/mkcsmapper/Makefile.inc projects/zfsd/head/usr.bin/mktemp/mktemp.1 projects/zfsd/head/usr.bin/msgs/msgs.c projects/zfsd/head/usr.bin/ncal/ncal.c projects/zfsd/head/usr.bin/netstat/mbuf.c projects/zfsd/head/usr.bin/netstat/route.c projects/zfsd/head/usr.bin/passwd/Makefile projects/zfsd/head/usr.bin/pr/pr.1 projects/zfsd/head/usr.bin/rctl/rctl.8 projects/zfsd/head/usr.bin/rlogin/rlogin.c projects/zfsd/head/usr.bin/rpcgen/rpc_main.c projects/zfsd/head/usr.bin/rpcgen/rpc_svcout.c projects/zfsd/head/usr.bin/rpcgen/rpc_util.c projects/zfsd/head/usr.bin/script/script.1 projects/zfsd/head/usr.bin/script/script.c projects/zfsd/head/usr.bin/seq/seq.1 projects/zfsd/head/usr.bin/sort/Makefile projects/zfsd/head/usr.bin/sort/bwstring.c projects/zfsd/head/usr.bin/sort/bwstring.h projects/zfsd/head/usr.bin/sort/coll.c projects/zfsd/head/usr.bin/sort/coll.h projects/zfsd/head/usr.bin/sort/file.c projects/zfsd/head/usr.bin/sort/file.h projects/zfsd/head/usr.bin/sort/radixsort.c projects/zfsd/head/usr.bin/sort/sort.c projects/zfsd/head/usr.bin/sort/sort.h projects/zfsd/head/usr.bin/stat/stat.c projects/zfsd/head/usr.bin/tftp/main.c projects/zfsd/head/usr.bin/top/machine.c projects/zfsd/head/usr.bin/tset/extern.h projects/zfsd/head/usr.bin/tset/map.c projects/zfsd/head/usr.bin/tset/term.c projects/zfsd/head/usr.bin/unzip/unzip.1 projects/zfsd/head/usr.bin/uuencode/uuencode.1 projects/zfsd/head/usr.bin/w/extern.h projects/zfsd/head/usr.bin/w/proc_compare.c projects/zfsd/head/usr.bin/w/w.c projects/zfsd/head/usr.bin/wall/wall.c projects/zfsd/head/usr.bin/who/who.1 projects/zfsd/head/usr.sbin/Makefile projects/zfsd/head/usr.sbin/Makefile.amd64 projects/zfsd/head/usr.sbin/Makefile.i386 projects/zfsd/head/usr.sbin/Makefile.ia64 projects/zfsd/head/usr.sbin/Makefile.powerpc projects/zfsd/head/usr.sbin/Makefile.sparc64 projects/zfsd/head/usr.sbin/acpi/acpidb/Makefile projects/zfsd/head/usr.sbin/acpi/acpidump/acpi.c projects/zfsd/head/usr.sbin/acpi/acpidump/acpi_user.c projects/zfsd/head/usr.sbin/acpi/iasl/Makefile projects/zfsd/head/usr.sbin/bluetooth/btpand/client.c projects/zfsd/head/usr.sbin/bluetooth/btpand/server.c projects/zfsd/head/usr.sbin/bsdconfig/bsdconfig projects/zfsd/head/usr.sbin/bsdconfig/bsdconfig.8 projects/zfsd/head/usr.sbin/bsdconfig/console/console projects/zfsd/head/usr.sbin/bsdconfig/console/font projects/zfsd/head/usr.sbin/bsdconfig/console/keymap projects/zfsd/head/usr.sbin/bsdconfig/console/repeat projects/zfsd/head/usr.sbin/bsdconfig/console/saver projects/zfsd/head/usr.sbin/bsdconfig/console/screenmap projects/zfsd/head/usr.sbin/bsdconfig/console/ttys projects/zfsd/head/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/zfsd/head/usr.sbin/bsdconfig/docsinstall/docsinstall projects/zfsd/head/usr.sbin/bsdconfig/dot/dot projects/zfsd/head/usr.sbin/bsdconfig/include/Makefile projects/zfsd/head/usr.sbin/bsdconfig/include/messages.subr projects/zfsd/head/usr.sbin/bsdconfig/mouse/disable projects/zfsd/head/usr.sbin/bsdconfig/mouse/enable projects/zfsd/head/usr.sbin/bsdconfig/mouse/flags projects/zfsd/head/usr.sbin/bsdconfig/mouse/mouse projects/zfsd/head/usr.sbin/bsdconfig/mouse/port projects/zfsd/head/usr.sbin/bsdconfig/mouse/type projects/zfsd/head/usr.sbin/bsdconfig/networking/defaultrouter projects/zfsd/head/usr.sbin/bsdconfig/networking/devices projects/zfsd/head/usr.sbin/bsdconfig/networking/hostname projects/zfsd/head/usr.sbin/bsdconfig/networking/include/Makefile projects/zfsd/head/usr.sbin/bsdconfig/networking/include/messages.subr projects/zfsd/head/usr.sbin/bsdconfig/networking/nameservers projects/zfsd/head/usr.sbin/bsdconfig/networking/networking projects/zfsd/head/usr.sbin/bsdconfig/networking/share/device.subr projects/zfsd/head/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/zfsd/head/usr.sbin/bsdconfig/password/password projects/zfsd/head/usr.sbin/bsdconfig/security/include/Makefile projects/zfsd/head/usr.sbin/bsdconfig/security/kern_securelevel projects/zfsd/head/usr.sbin/bsdconfig/security/security projects/zfsd/head/usr.sbin/bsdconfig/share/common.subr projects/zfsd/head/usr.sbin/bsdconfig/share/dialog.subr projects/zfsd/head/usr.sbin/bsdconfig/share/mustberoot.subr projects/zfsd/head/usr.sbin/bsdconfig/share/strings.subr projects/zfsd/head/usr.sbin/bsdconfig/startup/misc projects/zfsd/head/usr.sbin/bsdconfig/startup/rcadd projects/zfsd/head/usr.sbin/bsdconfig/startup/rcconf projects/zfsd/head/usr.sbin/bsdconfig/startup/rcdelete projects/zfsd/head/usr.sbin/bsdconfig/startup/rcedit projects/zfsd/head/usr.sbin/bsdconfig/startup/rcvar projects/zfsd/head/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/zfsd/head/usr.sbin/bsdconfig/startup/startup projects/zfsd/head/usr.sbin/bsdconfig/timezone/share/zones.subr projects/zfsd/head/usr.sbin/bsdconfig/timezone/timezone projects/zfsd/head/usr.sbin/bsdconfig/ttys/ttys projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/groupadd projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/groupdel projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/groupedit projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/groupinput projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/include/Makefile projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/useradd projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/userdel projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/useredit projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/userinput projects/zfsd/head/usr.sbin/bsdconfig/usermgmt/usermgmt projects/zfsd/head/usr.sbin/bsdinstall/bsdinstall projects/zfsd/head/usr.sbin/bsdinstall/scripts/auto projects/zfsd/head/usr.sbin/chkgrp/chkgrp.8 projects/zfsd/head/usr.sbin/chkgrp/chkgrp.c projects/zfsd/head/usr.sbin/chroot/chroot.8 projects/zfsd/head/usr.sbin/config/mkmakefile.c projects/zfsd/head/usr.sbin/cpucontrol/cpucontrol.c projects/zfsd/head/usr.sbin/cron/cron/cron.c projects/zfsd/head/usr.sbin/cron/cron/cron.h projects/zfsd/head/usr.sbin/cron/crontab/crontab.5 projects/zfsd/head/usr.sbin/cron/lib/entry.c projects/zfsd/head/usr.sbin/crunch/examples/Makefile projects/zfsd/head/usr.sbin/crunch/examples/really-big.conf projects/zfsd/head/usr.sbin/ctladm/ctladm.c projects/zfsd/head/usr.sbin/ctladm/util.c projects/zfsd/head/usr.sbin/diskinfo/diskinfo.c projects/zfsd/head/usr.sbin/edquota/edquota.c projects/zfsd/head/usr.sbin/gpioctl/gpioctl.c projects/zfsd/head/usr.sbin/ifmcstat/ifmcstat.c projects/zfsd/head/usr.sbin/ip6addrctl/ip6addrctl.c projects/zfsd/head/usr.sbin/kgmon/kgmon.c projects/zfsd/head/usr.sbin/kldxref/ef.c projects/zfsd/head/usr.sbin/lpr/common_source/common.c projects/zfsd/head/usr.sbin/lpr/common_source/displayq.c projects/zfsd/head/usr.sbin/lpr/common_source/lp.h projects/zfsd/head/usr.sbin/lpr/common_source/net.c projects/zfsd/head/usr.sbin/lpr/common_source/rmjob.c projects/zfsd/head/usr.sbin/lpr/common_source/startdaemon.c projects/zfsd/head/usr.sbin/lpr/filters/lpf.c projects/zfsd/head/usr.sbin/lpr/lpc/cmds.c projects/zfsd/head/usr.sbin/lpr/lpc/lpc.c projects/zfsd/head/usr.sbin/lpr/lpc/movejobs.c projects/zfsd/head/usr.sbin/lpr/lpd/printjob.c projects/zfsd/head/usr.sbin/lpr/lpq/lpq.c projects/zfsd/head/usr.sbin/lpr/lpr/lpr.c projects/zfsd/head/usr.sbin/lpr/lprm/lprm.c projects/zfsd/head/usr.sbin/makefs/mtree.c projects/zfsd/head/usr.sbin/memcontrol/memcontrol.c projects/zfsd/head/usr.sbin/mfiutil/mfi_flash.c projects/zfsd/head/usr.sbin/mfiutil/mfi_show.c projects/zfsd/head/usr.sbin/mfiutil/mfiutil.c projects/zfsd/head/usr.sbin/mfiutil/mfiutil.h projects/zfsd/head/usr.sbin/mountd/exports.5 projects/zfsd/head/usr.sbin/mountd/mountd.8 projects/zfsd/head/usr.sbin/mountd/mountd.c projects/zfsd/head/usr.sbin/mtree/mtree.c projects/zfsd/head/usr.sbin/ndiscvt/ndiscvt.c projects/zfsd/head/usr.sbin/newsyslog/newsyslog.c projects/zfsd/head/usr.sbin/nfscbd/nfscbd.8 projects/zfsd/head/usr.sbin/nfscbd/nfscbd.c projects/zfsd/head/usr.sbin/nfsd/nfsd.c projects/zfsd/head/usr.sbin/pciconf/cap.c projects/zfsd/head/usr.sbin/pkg/elf_tables.h projects/zfsd/head/usr.sbin/pkg_install/add/main.c projects/zfsd/head/usr.sbin/pkg_install/add/pkg_add.1 projects/zfsd/head/usr.sbin/pkg_install/create/main.c projects/zfsd/head/usr.sbin/pkg_install/create/pkg_create.1 projects/zfsd/head/usr.sbin/pkg_install/delete/main.c projects/zfsd/head/usr.sbin/pkg_install/delete/pkg_delete.1 projects/zfsd/head/usr.sbin/pkg_install/info/main.c projects/zfsd/head/usr.sbin/pkg_install/info/pkg_info.1 projects/zfsd/head/usr.sbin/pkg_install/lib/Makefile projects/zfsd/head/usr.sbin/pkg_install/lib/lib.h projects/zfsd/head/usr.sbin/pkg_install/updating/main.c projects/zfsd/head/usr.sbin/pkg_install/updating/pkg_updating.1 projects/zfsd/head/usr.sbin/pkg_install/version/main.c projects/zfsd/head/usr.sbin/pkg_install/version/perform.c projects/zfsd/head/usr.sbin/pkg_install/version/pkg_version.1 projects/zfsd/head/usr.sbin/pmccontrol/pmccontrol.c projects/zfsd/head/usr.sbin/pmcstat/pmcpl_calltree.c projects/zfsd/head/usr.sbin/pmcstat/pmcstat.c projects/zfsd/head/usr.sbin/pmcstat/pmcstat_log.c projects/zfsd/head/usr.sbin/pmcstat/pmcstat_log.h projects/zfsd/head/usr.sbin/portsnap/portsnap/portsnap.8 projects/zfsd/head/usr.sbin/portsnap/portsnap/portsnap.sh projects/zfsd/head/usr.sbin/ppp/lqr.c projects/zfsd/head/usr.sbin/ppp/radius.c projects/zfsd/head/usr.sbin/pw/Makefile projects/zfsd/head/usr.sbin/pw/fileupd.c projects/zfsd/head/usr.sbin/pw/grupd.c projects/zfsd/head/usr.sbin/pw/pw.8 projects/zfsd/head/usr.sbin/pw/pw.c projects/zfsd/head/usr.sbin/pw/pw.h projects/zfsd/head/usr.sbin/pw/pw_group.c projects/zfsd/head/usr.sbin/pw/pw_log.c projects/zfsd/head/usr.sbin/pw/pw_nis.c projects/zfsd/head/usr.sbin/pw/pw_user.c projects/zfsd/head/usr.sbin/pw/pw_vpw.c projects/zfsd/head/usr.sbin/pw/pwupd.c projects/zfsd/head/usr.sbin/pw/pwupd.h projects/zfsd/head/usr.sbin/quotaon/quotaon.c projects/zfsd/head/usr.sbin/repquota/repquota.c projects/zfsd/head/usr.sbin/route6d/route6d.8 projects/zfsd/head/usr.sbin/route6d/route6d.c projects/zfsd/head/usr.sbin/rpcbind/util.c projects/zfsd/head/usr.sbin/services_mkdb/Makefile projects/zfsd/head/usr.sbin/services_mkdb/services_mkdb.c projects/zfsd/head/usr.sbin/services_mkdb/uniq.c projects/zfsd/head/usr.sbin/syslogd/syslogd.c projects/zfsd/head/usr.sbin/sysrc/sysrc projects/zfsd/head/usr.sbin/vidcontrol/vidcontrol.c projects/zfsd/head/usr.sbin/watchdogd/Makefile projects/zfsd/head/usr.sbin/watchdogd/watchdogd.c projects/zfsd/head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 Directory Properties: projects/zfsd/head/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/zfsd/head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/zfsd/head/contrib/atf/ (props changed) projects/zfsd/head/contrib/bind9/ (props changed) projects/zfsd/head/contrib/bmake/ (props changed) projects/zfsd/head/contrib/dialog/ (props changed) projects/zfsd/head/contrib/gcc/ (props changed) projects/zfsd/head/contrib/gdb/ (props changed) projects/zfsd/head/contrib/less/ (props changed) projects/zfsd/head/contrib/libc++/ (props changed) projects/zfsd/head/contrib/libstdc++/ (props changed) projects/zfsd/head/contrib/llvm/ (props changed) projects/zfsd/head/contrib/llvm/tools/clang/ (props changed) projects/zfsd/head/contrib/netcat/ (props changed) projects/zfsd/head/contrib/top/ (props changed) projects/zfsd/head/contrib/tzdata/ (props changed) projects/zfsd/head/contrib/wpa/ (props changed) projects/zfsd/head/crypto/heimdal/ (props changed) projects/zfsd/head/gnu/lib/ (props changed) projects/zfsd/head/lib/libc/ (props changed) projects/zfsd/head/lib/libutil/ (props changed) projects/zfsd/head/sbin/ (props changed) projects/zfsd/head/sbin/dumpon/ (props changed) projects/zfsd/head/sbin/ipfw/ (props changed) projects/zfsd/head/share/man/man4/ (props changed) projects/zfsd/head/sys/ (props changed) projects/zfsd/head/sys/boot/ (props changed) projects/zfsd/head/sys/boot/powerpc/boot1.chrp/ (props changed) projects/zfsd/head/sys/boot/powerpc/ofw/ (props changed) projects/zfsd/head/sys/cddl/contrib/opensolaris/ (props changed) projects/zfsd/head/sys/conf/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/common/ahpredef.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslanalyze.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslbtypes.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslcompiler.l (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslpredef.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/aslrestype2s.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/asluuid.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtcompiler.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtexpress.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtfield.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtparser.l (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtparser.y (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtsubtable.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/dtutils.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/preprocess.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prexpress.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prmacros.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prparser.l (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prparser.y (props changed) projects/zfsd/head/sys/contrib/dev/acpica/compiler/prscan.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dsargs.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/dispatcher/dswload.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evglock.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evgpe.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evgpeblk.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evgpeinit.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evgpeutil.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evmisc.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evregion.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evsci.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evxface.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/events/evxfevnt.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/executer/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwesleep.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwsleep.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nspredef.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsrepair.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/namespace/nsrepair2.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/parser/pswalk.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsinfo.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsirq.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/resources/rsserial.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utaddress.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utdecode.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/uteval.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utexcep.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utglobal.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utosi.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxfinit.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/components/utilities/utxfmutex.c (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acbuffer.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/accommon.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acdebug.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acdispat.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acevents.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/achware.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acinterp.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acnamesp.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acoutput.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acparser.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acpi.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acpredef.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/acresrc.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actables.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actbl.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/actbl1.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/amlcode.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/platform/acfreebsd.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/include/platform/acgcc.h (props changed) projects/zfsd/head/sys/contrib/dev/acpica/os_specific/ (props changed) projects/zfsd/head/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c (props changed) projects/zfsd/head/sys/contrib/octeon-sdk/ (props changed) projects/zfsd/head/usr.bin/calendar/ (props changed) projects/zfsd/head/usr.bin/csup/ (props changed) projects/zfsd/head/usr.sbin/ndiscvt/ (props changed) Modified: projects/zfsd/head/MAINTAINERS ============================================================================== --- projects/zfsd/head/MAINTAINERS Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/MAINTAINERS Tue Nov 27 20:22:36 2012 (r243630) @@ -21,7 +21,6 @@ It is not a registry of 'turf' or privat subsystem login notes ----------------------------- kqueue jmg Pre-commit review requested. -mergemaster dougb Prefers to pre-approve commits libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -75,8 +74,6 @@ drm rnoland Just keep me informed of ch unifdef(1) fanf Pre-commit review requested. ntp roberto Pre-commit review requested. inetd dwmalone Recommends pre-commit review. -nwfs bp In case of functional changes pre-commit review - requested. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. contrib/pf mlaier Pre-commit review requested. @@ -101,8 +98,6 @@ nfs alfred Will be happy to review code rpc.lockd alfred Will be happy to review code, but not mandatory. truss alfred Will be happy to review code, but not mandatory. rpc alfred Pre-commit review requested. -xfs kan@FreeBSD.org,rodrigc@FreeBSD.org,cattelan@xfs.org - Pre-commit review preferred. pkg_install portmgr Pre-commit review or approval from portmgr@ requested. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. @@ -125,16 +120,7 @@ lib/libc/stdtime edwin Heads-up apprec is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com isci(4) jimharris Pre-commit review requested. - -Following are the entries from the Makefiles, and a few other sources. -Please remove stale entries from both their origin, and this file. - -Please also consider removing the lines from the files listed below and -stating your preferences here instead. - -List below generated with: -$ cd /usr/src; find */* -type f|xargs egrep 'MAINTAINER[ ]*=' - -sys/modules/3dfx/Makefile:MAINTAINER= cokane@FreeBSD.org -sys/modules/urio/Makefile:MAINTAINER= Iwasa Kazmi -tools/tools/sysdoc/Makefile:MAINTAINER= trhodes@FreeBSD.org +3dfx cokane Pre-commit review preferred. +cmx daniel@roe.ch Pre-commit review preferred. +filemon obrien Pre-commit review preferred. +sysdoc trhodes Pre-commit review preferred. Modified: projects/zfsd/head/Makefile ============================================================================== --- projects/zfsd/head/Makefile Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/Makefile Tue Nov 27 20:22:36 2012 (r243630) @@ -280,12 +280,14 @@ kernel: buildkernel installkernel # for building the world. # upgrade_checks: +.if !defined(.PARSEDIR) @if ! (cd ${.CURDIR}/tools/build/make_check && \ PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ then \ (cd ${.CURDIR} && ${MAKE} make); \ fi +.endif # # Upgrade make(1) to the current version using the installed @@ -441,3 +443,6 @@ universe_epilogue: fi .endif .endif + +buildLINT: + ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT Modified: projects/zfsd/head/Makefile.inc1 ============================================================================== --- projects/zfsd/head/Makefile.inc1 Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/Makefile.inc1 Tue Nov 27 20:22:36 2012 (r243630) @@ -16,6 +16,8 @@ # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list # LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target +# LOCAL_MTREE="list of mtree files" to process to allow local directories +# to be created before files are installed # LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools # list # TARGET="machine" to crossbuild world for a different machine type @@ -295,9 +297,10 @@ LIB32CPUFLAGS= -march=i686 -mmmx -msse - LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ - MACHINE_CPU="i686 mmx sse sse2" \ - LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ - AS="${AS} --32" + MACHINE_CPU="i686 mmx sse sse2" +LIB32WMAKEFLAGS= \ + AS="${AS} --32" \ + LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" .elif ${TARGET_ARCH} == "powerpc64" .if empty(TARGET_CPUTYPE) @@ -305,7 +308,8 @@ LIB32CPUFLAGS= -mcpu=powerpc .else LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif -LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc \ +LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc +LIB32WMAKEFLAGS= \ LD="${LD} -m elf32ppc_fbsd" .endif @@ -322,16 +326,20 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ - CC="${CC} ${LIB32FLAGS}" \ - CXX="${CXX} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} +LIB32WMAKEFLAGS+= \ + CC="${CC} ${LIB32FLAGS}" \ + CXX="${CXX} ${LIB32FLAGS}" \ + DESTDIR=${LIB32TMP} \ + -DCOMPAT_32BIT \ + -DNO_CPU_CFLAGS \ + -DNO_CTF \ + -DNO_LINT -LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ - -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ - -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ - DESTDIR=${LIB32TMP} +LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \ + -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS .endif @@ -401,6 +409,9 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null .endif +.for _mtree in ${LOCAL_MTREE} + mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null +.endfor _legacy: @echo @echo "--------------------------------------------------------------" @@ -718,7 +729,8 @@ reinstall: @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy + ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ + LOCAL_MTREE=${LOCAL_MTREE} hierarchy @echo @echo "--------------------------------------------------------------" @echo ">>> Installing everything" @@ -1126,7 +1138,7 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" _gcc_tools= gnu/usr.bin/cc/cc_tools .endif @@ -1188,7 +1200,7 @@ _clang= usr.bin/clang _clang_libs= lib/clang .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") _cc= gnu/usr.bin/cc .endif @@ -1215,6 +1227,10 @@ cross-tools: # hierarchy hier: cd ${.CURDIR}/etc; ${MAKE} distrib-dirs +.for _mtree in ${LOCAL_MTREE} + mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/${_mtree} \ + -p ${DESTDIR}/ +.endfor # # libraries - build all libraries, and install them under ${DESTDIR}. @@ -1269,6 +1285,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ ${_kerberos5_lib_libwind} \ + ${_lib_atf_libatf_c} \ lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ @@ -1281,6 +1298,10 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} +.if ${MK_ATF} != "no" +_lib_atf_libatf_c= lib/atf/libatf-c +.endif + .if ${MK_LIBTHR} != "no" _lib_libthr= lib/libthr .endif @@ -1563,7 +1584,7 @@ check-old: check-old-files check-old-lib # showconfig - show build configuration. # showconfig: - @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort + @${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort .if !empty(KRNLOBJDIR) && !empty(KERNCONF) DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ Modified: projects/zfsd/head/ObsoleteFiles.inc ============================================================================== --- projects/zfsd/head/ObsoleteFiles.inc Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/ObsoleteFiles.inc Tue Nov 27 20:22:36 2012 (r243630) @@ -38,8 +38,20 @@ # xargs -n1 | sort | uniq -d; # done +# 20121114: zpool-features manual page moved from section 5 to 7 +OLD_FILES+=usr/share/man/man5/zpool-features.5.gz +# 20121022: remove harp, hfa and idt man page +OLD_FILES+=share/man/man4/harp.4 +OLD_FILES+=share/man/man4/hfa.4 +OLD_FILES+=share/man/man4/idt.4 +# 20121022: VFS_LOCK_GIANT elimination +OLD_FILES+=usr/share/man/man9/VFS_LOCK_GIANT.9.gz +OLD_FILES+=usr/share/man/man9/VFS_UNLOCK_GIANT.9.gz # 20121004: remove incomplete unwind.h OLD_FILES+=usr/include/clang/3.2/unwind.h +# 20120910: NetBSD compat shims removed +OLD_FILES+=usr/include/cam/scsi/scsi_low_pisa.h +OLD_FILES+=usr/include/sys/device_port.h # 20120908: pf cleanup OLD_FILES+=usr/include/net/if_pflow.h # 20120816: new clang import which bumps version from 3.1 to 3.2 @@ -88,13 +100,19 @@ OLD_FILES+=usr/include/openssl/ui_locl.h OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz # 20120621: remove old man page OLD_FILES+=usr/share/man/man8/vnconfig.8.gz +# 20120619: TOE support updated +OLD_FILES+=usr/include/netinet/toedev.h # 20120613: auth.conf removed OLD_FILES+=etc/auth.conf OLD_FILES+=usr/share/examples/etc/auth.conf OLD_FILES+=usr/share/man/man3/auth.3.gz +OLD_FILES+=usr/share/man/man3/auth_getval.3.gz OLD_FILES+=usr/share/man/man5/auth.conf.5.gz # 20120530: kde pam lives now in ports OLD_FILES+=etc/pam.d/kde +# 20120521: byacc import +OLD_FILES+=usr/bin/yyfix +OLD_FILES+=usr/share/man/man1/yyfix.1.gz # 20120505: new clang import installed a redundant internal header OLD_FILES+=usr/include/clang/3.1/stdalign.h # 20120428: MD2 removed from libmd Modified: projects/zfsd/head/UPDATING ============================================================================== --- projects/zfsd/head/UPDATING Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/UPDATING Tue Nov 27 20:22:36 2012 (r243630) @@ -24,6 +24,74 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121117: + The sin6_scope_id member variable in struct sockaddr_in6 is now + filled by the kernel before passing the structure to the userland via + sysctl or routing socket. This means the KAME-specific embedded scope + id in sin6_addr.s6_addr[2] is always cleared in userland application. + This behavior can be controlled by net.inet6.ip6.deembed_scopeid. + __FreeBSD_version is bumped to 1000025. + +20121105: + On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. + This means that the world and kernel will be compiled with clang + and that clang will be installed as /usr/bin/cc, /usr/bin/c++, + and /usr/bin/cpp. To disable this behavior and revert to building + with gcc, compile with WITHOUT_CLANG_IS_CC. + +20121102: + The IPFIREWALL_FORWARD kernel option has been removed. Its + functionality now turned on by default. + +20121023: + The ZERO_COPY_SOCKET kernel option has been removed and + split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP. + NB: SOCKET_SEND_COW uses the VM page based copy-on-write + mechanism which is not safe and may result in kernel crashes. + NB: The SOCKET_RECV_PFLIP mechanism is useless as no current + driver supports disposeable external page sized mbuf storage. + Proper replacements for both zero-copy mechanisms are under + consideration and will eventually lead to complete removal + of the two kernel options. + +20121023: + The IPv4 network stack has been converted to network byte + order. The following modules need to be recompiled together + with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4), + pf(4), ipfw(4), ng_ipfw(4), stf(4). + +20121022: + Support for non-MPSAFE filesystems was removed from VFS. The + VFS_VERSION was bumped, all filesystem modules shall be + recompiled. + +20121018: + All the non-MPSAFE filesystems have been disconnected from + the build. The full list includes: codafs, hpfs, ntfs, nwfs, + portalfs, smbfs, xfs. + +20121016: + The interface cloning API and ABI has changed. The following + modules need to be recompiled together with kernel: + ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4), + vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4), + faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4). + +20121015: + The sdhci driver was split in two parts: sdhci (generic SD Host + Controller logic) and sdhci_pci (actual hardware driver). + No kernel config modifications are required, but if you + load sdhc as a module you must switch to sdhci_pci instead. + +20121014: + Import the FUSE kernel and userland support into base system. + +20121013: + The GNU sort(1) program has been removed since the BSD-licensed + sort(1) has been the default for quite some time and no serious + problems have been reported. The corresponding WITH_GNU_SORT + knob has also gone. + 20121006: The pfil(9) API/ABI for AF_INET family has been changed. Packet filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled @@ -1541,7 +1609,7 @@ COMMON ITEMS: - To upgrade in-place from 8.x-stable to current + To upgrade in-place from stable to current ---------------------------------------------- make buildworld [9] Modified: projects/zfsd/head/bin/date/extern.h ============================================================================== --- projects/zfsd/head/bin/date/extern.h Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/date/extern.h Tue Nov 27 20:22:36 2012 (r243630) @@ -30,4 +30,6 @@ * $FreeBSD$ */ +extern int retval; + int netsettime(time_t); Modified: projects/zfsd/head/bin/date/netdate.c ============================================================================== --- projects/zfsd/head/bin/date/netdate.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/date/netdate.c Tue Nov 27 20:22:36 2012 (r243630) @@ -55,8 +55,6 @@ __FBSDID("$FreeBSD$"); #define WAITACK 2 /* seconds */ #define WAITDATEACK 5 /* seconds */ -extern int retval; - /* * Set the date in the machines controlled by timedaemons by communicating the * new date to the local timedaemon. If the timedaemon is in the master state, Modified: projects/zfsd/head/bin/dd/conv_tab.c ============================================================================== --- projects/zfsd/head/bin/dd/conv_tab.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/dd/conv_tab.c Tue Nov 27 20:22:36 2012 (r243630) @@ -41,6 +41,11 @@ __FBSDID("$FreeBSD$"); #include +#include + +#include "dd.h" +#include "extern.h" + /* * There are currently six tables: * Modified: projects/zfsd/head/bin/df/df.1 ============================================================================== --- projects/zfsd/head/bin/df/df.1 Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/df/df.1 Tue Nov 27 20:22:36 2012 (r243630) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd March 3, 2012 +.Dd November 16, 2012 .Dt DF 1 .Os .Sh NAME @@ -50,7 +50,8 @@ displays statistics about the amount of or on the file system of which .Ar file is a part. -Values are displayed in 512-byte per block counts. +By default block counts are displayed with an assumed block size of +512 bytes. If neither a file or a file system operand is specified, statistics for all mounted file systems are displayed (subject to the @@ -65,48 +66,54 @@ Show all mount points, including those t flag. This is implied for file systems specified on the command line. .It Fl b -Use 512-byte blocks rather than the default. -Note that -this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl P +option. +The +.Fl k +option overrides this option. .It Fl c Display a grand total. .It Fl g -Use 1073741824-byte (1-Gbyte) blocks rather than the default. -Note that -this overrides the +Use 1073741824 byte (1 Gibibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl H .Dq Human-readable output. -Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 10 for sizes. +Use unit suffixes: Byte, Kibibyte, Mebibyte, Gibibyte, Tebibyte and +Pebibyte (based on powers of 1024) in order to reduce the number of +digits to four or fewer. .It Fl h .Dq Human-readable output. Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 2 for sizes. -Inodes statistics, if enabled with -.Fl i , -are always printed in base 10. +Gigabyte, Terabyte and Petabyte (based on powers of 1000) in order to +reduce the number of +digits to four or fewer. .It Fl i -Include statistics on the number of free inodes. +Include statistics on the number of free and used inodes. +In conjunction with the +.Fl h +or +.Fl H +options, the number of inodes is scaled by powers of 1000. .It Fl k -Use 1024-byte (1-Kbyte) blocks rather than the default. -Note that -this overrides the +Use 1024 byte (1 Kibibyte) blocks rather than the default. +This overrides the +.Fl P +option and any .Ev BLOCKSIZE specification from the environment. .It Fl l Only display information about locally-mounted file systems. .It Fl m -Use 1048576-byte (1-Mbyte) blocks rather than the default. -Note that -this overrides the +Use 1048576 byte (1 Mebibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl n @@ -119,10 +126,15 @@ When this option is specified, will not request new statistics from the file systems, but will respond with the possibly stale statistics that were previously obtained. .It Fl P -Use POSIX compliant output of 512-byte blocks rather than the default. -Note that this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl b +option. +The +.Fl k +option overrides this option. .It Fl t Only print out statistics for file systems of the specified types. More than one type may be specified in a comma separated list. @@ -148,26 +160,53 @@ command can be used to find out the type that are available on the system. .It Fl T Include file system type. +.It Fl , +(Comma) Print sizes grouped and separated by thousands using the +non-monetary separator returned by +.Xr localeconv 3 , +typically a comma or period. +If no locale is set, or the locale does not have a non-monetary separator, this +option has no effect. .El .Sh ENVIRONMENT .Bl -tag -width BLOCKSIZE .It Ev BLOCKSIZE -If the environment variable -.Ev BLOCKSIZE -is set, the block counts will be displayed in units of that size block. +Specifies the units in which to report block counts. +This uses +.Xr getbsize 3 , +which allows units of bytes or numbers scaled with the letters +.Em k +(for multiples of 1024 bytes), +.Em m +(for multiples of 1048576 bytes) or +.Em g +(for gibibytes). +The allowed range is 512 bytes to 1 GB. +If the value is outside, it will be set to the appropriate limit. .El .Sh SEE ALSO .Xr lsvfs 1 , -.Xr pstat 1 , .Xr quota 1 , -.Xr swapinfo 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , +.Xr getbsize 3 , .Xr getmntinfo 3 , +.Xr localeconv 3 , .Xr fstab 5 , .Xr mount 8 , -.Xr quot 8 +.Xr quot 8 . +.Sh STANDARDS +With the exception of most options, +the +.Nm +utility conforms to +.St -p1003.1-2004 , +which defines only the +.Fl k , P +and +.Fl t +options. .Sh HISTORY A .Nm @@ -180,3 +219,13 @@ flag is ignored if a file or file system Also, if a mount point is not accessible by the user, it is possible that the file system information could be stale. +.Pp +The +.Fl b +and +.Fl P +options are identical. +The former comes from the BSD tradition, and the latter is required +for +.St -p1003.1-2004 +conformity. Modified: projects/zfsd/head/bin/df/df.c ============================================================================== --- projects/zfsd/head/bin/df/df.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/df/df.c Tue Nov 27 20:22:36 2012 (r243630) @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -95,6 +96,7 @@ imax(int a, int b) } static int aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag; +static int thousands; static struct ufs_args mdev; int @@ -111,12 +113,12 @@ main(int argc, char *argv[]) int ch, rv; fstype = "ufs"; - + (void)setlocale(LC_ALL, ""); memset(&totalbuf, 0, sizeof(totalbuf)); totalbuf.f_bsize = DEV_BSIZE; strlcpy(totalbuf.f_mntfromname, "total", MNAMELEN); vfslist = NULL; - while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T")) != -1) + while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T,")) != -1) switch (ch) { case 'a': aflag = 1; @@ -180,6 +182,9 @@ main(int argc, char *argv[]) case 'T': Tflag = 1; break; + case ',': + thousands = 1; + break; case '?': default: usage(); @@ -388,16 +393,11 @@ prthumanvalinode(int64_t bytes) /* * Convert statfs returned file system size into BLOCKSIZE units. - * Attempts to avoid overflow for large file systems. */ static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - - if (fsbs != 0 && fsbs < bs) - return (num / (intmax_t)(bs / fsbs)); - else - return (num * (intmax_t)(fsbs / bs)); + return (num * (intmax_t) fsbs / bs); } /* @@ -410,10 +410,18 @@ prtstat(struct statfs *sfsp, struct maxw static int headerlen, timesthrough = 0; static const char *header; int64_t used, availblks, inodes; + const char *format; if (++timesthrough == 1) { mwp->mntfrom = imax(mwp->mntfrom, (int)strlen("Filesystem")); mwp->fstype = imax(mwp->fstype, (int)strlen("Type")); + if (thousands) { /* make space for commas */ + mwp->total += (mwp->total - 1) / 3; + mwp->used += (mwp->used - 1) / 3; + mwp->avail += (mwp->avail - 1) / 3; + mwp->iused += (mwp->iused - 1) / 3; + mwp->ifree += (mwp->ifree - 1) / 3; + } if (hflag) { header = " Size"; mwp->total = mwp->used = mwp->avail = @@ -428,7 +436,7 @@ prtstat(struct statfs *sfsp, struct maxw (void)printf("%-*s", mwp->mntfrom, "Filesystem"); if (Tflag) (void)printf(" %-*s", mwp->fstype, "Type"); - (void)printf(" %-*s %*s %*s Capacity", mwp->total, header, + (void)printf(" %*s %*s %*s Capacity", mwp->total, header, mwp->used, "Used", mwp->avail, "Avail"); if (iflag) { mwp->iused = imax(hflag ? 0 : mwp->iused, @@ -440,6 +448,12 @@ prtstat(struct statfs *sfsp, struct maxw } (void)printf(" Mounted on\n"); } + /* Check for 0 block size. Can this happen? */ + if (sfsp->f_bsize == 0) { + warnx ("File system %s does not have a block size, assuming 512.", + sfsp->f_mntonname); + sfsp->f_bsize = 512; + } (void)printf("%-*s", mwp->mntfrom, sfsp->f_mntfromname); if (Tflag) (void)printf(" %-*s", mwp->fstype, sfsp->f_fstypename); @@ -448,7 +462,11 @@ prtstat(struct statfs *sfsp, struct maxw if (hflag) { prthuman(sfsp, used); } else { - (void)printf(" %*jd %*jd %*jd", + if (thousands) + format = " %*j'd %*j'd %*j'd"; + else + format = " %*jd %*jd %*jd"; + (void)printf(format, mwp->total, fsbtoblk(sfsp->f_blocks, sfsp->f_bsize, blocksize), mwp->used, fsbtoblk(used, sfsp->f_bsize, blocksize), @@ -465,7 +483,11 @@ prtstat(struct statfs *sfsp, struct maxw prthumanvalinode(used); prthumanvalinode(sfsp->f_ffree); } else { - (void)printf(" %*jd %*jd", mwp->iused, (intmax_t)used, + if (thousands) + format = " %*j'd %*j'd"; + else + format = " %*jd %*jd"; + (void)printf(format, mwp->iused, (intmax_t)used, mwp->ifree, (intmax_t)sfsp->f_ffree); } (void)printf(" %4.0f%% ", inodes == 0 ? 100.0 : @@ -542,7 +564,7 @@ usage(void) { (void)fprintf(stderr, -"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [file | filesystem ...]\n"); +"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [-,] [file | filesystem ...]\n"); exit(EX_USAGE); } Modified: projects/zfsd/head/bin/ed/buf.c ============================================================================== --- projects/zfsd/head/bin/ed/buf.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/buf.c Tue Nov 27 20:22:36 2012 (r243630) @@ -35,10 +35,10 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -FILE *sfp; /* scratch file pointer */ -off_t sfseek; /* scratch file position */ -int seek_write; /* seek before writing */ -line_t buffer_head; /* incore buffer */ +static FILE *sfp; /* scratch file pointer */ +static off_t sfseek; /* scratch file position */ +static int seek_write; /* seek before writing */ +static line_t buffer_head; /* incore buffer */ /* get_sbuf_line: get a line of text from the scratch file; return pointer to the text */ @@ -185,10 +185,7 @@ get_addressed_line_node(long n) return lp; } - -extern int newline_added; - -char sfn[15] = ""; /* scratch file name */ +static char sfn[15] = ""; /* scratch file name */ /* open_sbuf: open scratch file */ int @@ -244,7 +241,7 @@ quit(int n) } -unsigned char ctab[256]; /* character translation table */ +static unsigned char ctab[256]; /* character translation table */ /* init_buffers: open scratch buffer; initialize line queue */ void Modified: projects/zfsd/head/bin/ed/cbc.c ============================================================================== --- projects/zfsd/head/bin/ed/cbc.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/cbc.c Tue Nov 27 20:22:36 2012 (r243630) @@ -68,28 +68,24 @@ __FBSDID("$FreeBSD$"); * global variables and related macros */ -enum { /* encrypt, decrypt, authenticate */ - MODE_ENCRYPT, MODE_DECRYPT, MODE_AUTHENTICATE -} mode = MODE_ENCRYPT; - #ifdef DES -DES_cblock ivec; /* initialization vector */ -DES_cblock pvec; /* padding vector */ +static DES_cblock ivec; /* initialization vector */ +static DES_cblock pvec; /* padding vector */ #endif -char bits[] = { /* used to extract bits from a char */ +static char bits[] = { /* used to extract bits from a char */ '\200', '\100', '\040', '\020', '\010', '\004', '\002', '\001' }; -int pflag; /* 1 to preserve parity bits */ +static int pflag; /* 1 to preserve parity bits */ #ifdef DES -DES_key_schedule schedule; /* expanded DES key */ +static DES_key_schedule schedule; /* expanded DES key */ #endif -unsigned char des_buf[8]; /* shared buffer for get_des_char/put_des_char */ -int des_ct = 0; /* count for get_des_char/put_des_char */ -int des_n = 0; /* index for put_des_char/get_des_char */ +static unsigned char des_buf[8];/* shared buffer for get_des_char/put_des_char */ +static int des_ct = 0; /* count for get_des_char/put_des_char */ +static int des_n = 0; /* index for put_des_char/get_des_char */ /* init_des_cipher: initialize DES */ void Modified: projects/zfsd/head/bin/ed/ed.h ============================================================================== --- projects/zfsd/head/bin/ed/ed.h Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/ed.h Tue Nov 27 20:22:36 2012 (r243630) @@ -277,3 +277,9 @@ extern int lineno; extern long second_addr; extern long u_addr_last; extern long u_current_addr; +extern long rows; +extern int cols; +extern int newline_added; +extern int des; +extern int scripted; +extern int patlock; Modified: projects/zfsd/head/bin/ed/glbl.c ============================================================================== --- projects/zfsd/head/bin/ed/glbl.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/glbl.c Tue Nov 27 20:22:36 2012 (r243630) @@ -135,11 +135,11 @@ exec_global(int interact, int gflag) } -line_t **active_list; /* list of lines active in a global command */ -long active_last; /* index of last active line in active_list */ -long active_size; /* size of active_list */ -long active_ptr; /* active_list index (non-decreasing) */ -long active_ndx; /* active_list index (modulo active_last) */ +static line_t **active_list; /* list of lines active in a global command */ +static long active_last; /* index of last active line in active_list */ +static long active_size; /* size of active_list */ +static long active_ptr; /* active_list index (non-decreasing) */ +static long active_ndx; /* active_list index (modulo active_last) */ /* set_active_node: add a line node to the global-active list */ int Modified: projects/zfsd/head/bin/ed/io.c ============================================================================== --- projects/zfsd/head/bin/ed/io.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/io.c Tue Nov 27 20:22:36 2012 (r243630) @@ -30,9 +30,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int scripted; - /* read_file: read a named file/pipe into the buffer; return line count */ long read_file(char *fn, long n) @@ -58,11 +55,8 @@ read_file(char *fn, long n) return current_addr - n; } - -extern int des; - -char *sbuf; /* file i/o buffer */ -int sbufsz; /* file i/o buffer size */ +static char *sbuf; /* file i/o buffer */ +static int sbufsz; /* file i/o buffer size */ int newline_added; /* if set, newline appended to input file */ /* read_stream: read a stream into the editor buffer; return status */ @@ -298,9 +292,6 @@ get_tty_line(void) #define ESCAPES "\a\b\f\n\r\t\v\\" #define ESCCHARS "abfnrtv\\" -extern int rows; -extern int cols; - /* put_tty_line: print text to stdout */ int put_tty_line(const char *s, int l, long n, int gflag) Modified: projects/zfsd/head/bin/ed/main.c ============================================================================== --- projects/zfsd/head/bin/ed/main.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/main.c Tue Nov 27 20:22:36 2012 (r243630) @@ -66,40 +66,40 @@ __FBSDID("$FreeBSD$"); #ifdef _POSIX_SOURCE -sigjmp_buf env; +static sigjmp_buf env; #else -jmp_buf env; +static jmp_buf env; #endif /* static buffers */ char stdinbuf[1]; /* stdin buffer */ -char *shcmd; /* shell command buffer */ -int shcmdsz; /* shell command buffer size */ -int shcmdi; /* shell command buffer index */ +static char *shcmd; /* shell command buffer */ +static int shcmdsz; /* shell command buffer size */ +static int shcmdi; /* shell command buffer index */ char *ibuf; /* ed command-line buffer */ int ibufsz; /* ed command-line buffer size */ char *ibufp; /* pointer to ed command-line buffer */ /* global flags */ int des = 0; /* if set, use crypt(3) for i/o */ -int garrulous = 0; /* if set, print all error messages */ +static int garrulous = 0; /* if set, print all error messages */ int isbinary; /* if set, buffer contains ASCII NULs */ int isglobal; /* if set, doing a global command */ int modified; /* if set, buffer modified since last write */ int mutex = 0; /* if set, signals set "sigflags" */ -int red = 0; /* if set, restrict shell/directory access */ +static int red = 0; /* if set, restrict shell/directory access */ int scripted = 0; /* if set, suppress diagnostics */ int sigflags = 0; /* if set, signals received while mutex set */ -int sigactive = 0; /* if set, signal handlers are enabled */ +static int sigactive = 0; /* if set, signal handlers are enabled */ -char old_filename[PATH_MAX] = ""; /* default filename */ +static char old_filename[PATH_MAX] = ""; /* default filename */ long current_addr; /* current address in editor buffer */ long addr_last; /* last address in editor buffer */ int lineno; /* script line number */ -const char *prompt; /* command-line prompt */ -const char *dps = "*"; /* default command-line prompt */ +static const char *prompt; /* command-line prompt */ +static const char *dps = "*"; /* default command-line prompt */ -const char usage[] = "usage: %s [-] [-sx] [-p string] [file]\n"; +static const char *usage = "usage: %s [-] [-sx] [-p string] [file]\n"; /* ed: line editor */ int @@ -254,7 +254,8 @@ top: /*NOTREACHED*/ } -long first_addr, second_addr, addr_cnt; +long first_addr, second_addr; +static long addr_cnt; /* extract_addr_range: get line addresses from the command buffer until an illegal address is seen; return status */ @@ -1241,8 +1242,8 @@ display_lines(long from, long to, int gf #define MAXMARK 26 /* max number of marks */ -line_t *mark[MAXMARK]; /* line markers */ -int markno; /* line marker count */ +static line_t *mark[MAXMARK]; /* line markers */ +static int markno; /* line marker count */ /* mark_line_node: set a line node mark */ int Modified: projects/zfsd/head/bin/ed/re.c ============================================================================== --- projects/zfsd/head/bin/ed/re.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/re.c Tue Nov 27 20:22:36 2012 (r243630) @@ -31,9 +31,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int patlock; - const char *errmsg = ""; /* get_compiled_pattern: return pointer to compiled pattern from command Modified: projects/zfsd/head/bin/ed/sub.c ============================================================================== --- projects/zfsd/head/bin/ed/sub.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/sub.c Tue Nov 27 20:22:36 2012 (r243630) @@ -32,9 +32,9 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -char *rhbuf; /* rhs substitution buffer */ -int rhbufsz; /* rhs substitution buffer size */ -int rhbufi; /* rhs substitution buffer index */ +static char *rhbuf; /* rhs substitution buffer */ +static int rhbufsz; /* rhs substitution buffer size */ +static int rhbufi; /* rhs substitution buffer index */ /* extract_subst_tail: extract substitution tail from the command buffer */ int @@ -105,8 +105,8 @@ extract_subst_template(void) } -char *rbuf; /* substitute_matching_text buffer */ -int rbufsz; /* substitute_matching_text buffer size */ +static char *rbuf; /* substitute_matching_text buffer */ +static int rbufsz; /* substitute_matching_text buffer size */ /* search_and_replace: for each line in a range, change text matching a pattern according to a substitution template; return status */ Modified: projects/zfsd/head/bin/ed/undo.c ============================================================================== --- projects/zfsd/head/bin/ed/undo.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ed/undo.c Tue Nov 27 20:22:36 2012 (r243630) @@ -32,9 +32,9 @@ __FBSDID("$FreeBSD$"); #define USIZE 100 /* undo stack size */ -undo_t *ustack = NULL; /* undo stack */ -long usize = 0; /* stack size variable */ -long u_p = 0; /* undo stack pointer */ +static undo_t *ustack = NULL; /* undo stack */ +static long usize = 0; /* stack size variable */ +static long u_p = 0; /* undo stack pointer */ /* push_undo_stack: return pointer to initialized undo node */ undo_t * Modified: projects/zfsd/head/bin/getfacl/getfacl.c ============================================================================== --- projects/zfsd/head/bin/getfacl/getfacl.c Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/getfacl/getfacl.c Tue Nov 27 20:22:36 2012 (r243630) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include -int more_than_one = 0; +static int more_than_one = 0; static void usage(void) Modified: projects/zfsd/head/bin/ln/ln.1 ============================================================================== --- projects/zfsd/head/bin/ln/ln.1 Tue Nov 27 20:16:37 2012 (r243629) +++ projects/zfsd/head/bin/ln/ln.1 Tue Nov 27 20:22:36 2012 (r243630) @@ -32,7 +32,7 @@ .\" @(#)ln.1 8.2 (Berkeley) 12/30/93 .\" $FreeBSD$ .\" -.Dd July 17, 2009 +.Dd November 2, 2012 .Dt LN 1 .Os .Sh NAME @@ -212,6 +212,70 @@ No options may be supplied in this simpl which performs a .Xr link 2 operation using the two passed arguments. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 21:27:13 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E836A02; Tue, 27 Nov 2012 21:27:13 +0000 (UTC) (envelope-from cherry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 199158FC13; Tue, 27 Nov 2012 21:27:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qARLRCQw062357; Tue, 27 Nov 2012 21:27:12 GMT (envelope-from cherry@svn.freebsd.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qARLRCAD062353; Tue, 27 Nov 2012 21:27:12 GMT (envelope-from cherry@svn.freebsd.org) Message-Id: <201211272127.qARLRCAD062353@svn.freebsd.org> From: "Cherry G. Mathew" Date: Tue, 27 Nov 2012 21:27:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243632 - in projects/amd64_xen_pv/sys: amd64/amd64 amd64/include conf X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 21:27:13 -0000 Author: cherry Date: Tue Nov 27 21:27:12 2012 New Revision: 243632 URL: http://svnweb.freebsd.org/changeset/base/243632 Log: Stop using the MD specific uma backend allocator on Xen. Approved by: gibbs(implicit) Modified: projects/amd64_xen_pv/sys/amd64/amd64/uma_machdep.c projects/amd64_xen_pv/sys/amd64/include/vmparam.h projects/amd64_xen_pv/sys/conf/files.amd64 Modified: projects/amd64_xen_pv/sys/amd64/amd64/uma_machdep.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/amd64/uma_machdep.c Tue Nov 27 21:19:58 2012 (r243631) +++ projects/amd64_xen_pv/sys/amd64/amd64/uma_machdep.c Tue Nov 27 21:27:12 2012 (r243632) @@ -68,12 +68,6 @@ uma_small_alloc(uma_zone_t zone, int byt if ((wait & M_NODUMP) == 0) dump_add_page(pa); va = (void *)PHYS_TO_DMAP(pa); -#ifdef XEN - /* XXX: temp fix, dmap not yet implemented. */ - vm_offset_t vaddr = (vm_offset_t) va; - pmap_map(&vaddr, pa, pa + roundup(bytes, PAGE_SIZE), - VM_PROT_READ | VM_PROT_WRITE); -#endif if ((wait & M_ZERO) && (m->flags & PG_ZERO) == 0) pagezero(va); return (va); Modified: projects/amd64_xen_pv/sys/amd64/include/vmparam.h ============================================================================== --- projects/amd64_xen_pv/sys/amd64/include/vmparam.h Tue Nov 27 21:19:58 2012 (r243631) +++ projects/amd64_xen_pv/sys/amd64/include/vmparam.h Tue Nov 27 21:27:12 2012 (r243632) @@ -73,8 +73,12 @@ * We provide a machine specific single page allocator through the use * of the direct mapped segment. This uses 2MB pages for reduced * TLB pressure. + * Note: XEN does not use this as kmem_alloc() is functional via its + * own boot time mapped backend allocator. */ +#ifndef XEN #define UMA_MD_SMALL_ALLOC +#endif /* * The physical address space is densely populated. Modified: projects/amd64_xen_pv/sys/conf/files.amd64 ============================================================================== --- projects/amd64_xen_pv/sys/conf/files.amd64 Tue Nov 27 21:19:58 2012 (r243631) +++ projects/amd64_xen_pv/sys/conf/files.amd64 Tue Nov 27 21:27:12 2012 (r243632) @@ -135,7 +135,7 @@ amd64/amd64/support.S standard amd64/amd64/sys_machdep.c standard amd64/amd64/trap.c standard amd64/amd64/uio_machdep.c standard -amd64/amd64/uma_machdep.c standard +amd64/amd64/uma_machdep.c optional native amd64/amd64/vm_machdep.c standard amd64/pci/pci_cfgreg.c optional pci amd64/xen/clock.c optional xen From owner-svn-src-projects@FreeBSD.ORG Tue Nov 27 21:45:42 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D74AAEE7; Tue, 27 Nov 2012 21:45:42 +0000 (UTC) (envelope-from cherry@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BDB238FC13; Tue, 27 Nov 2012 21:45:42 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qARLjgao065813; Tue, 27 Nov 2012 21:45:42 GMT (envelope-from cherry@svn.freebsd.org) Received: (from cherry@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qARLjgoi065808; Tue, 27 Nov 2012 21:45:42 GMT (envelope-from cherry@svn.freebsd.org) Message-Id: <201211272145.qARLjgoi065808@svn.freebsd.org> From: "Cherry G. Mathew" Date: Tue, 27 Nov 2012 21:45:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243633 - in projects/amd64_xen_pv/sys: amd64/xen conf X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Nov 2012 21:45:42 -0000 Author: cherry Date: Tue Nov 27 21:45:42 2012 New Revision: 243633 URL: http://svnweb.freebsd.org/changeset/base/243633 Log: Separate out the pv code from pmap.c into a separate set of files. - Use the pv code to keep track of kernel_pmap P->V mappings. - Switch to post-boot PTOV(), VTOP() backends for mmu_map.[ch] This commit gets us along a bit further into the boot path. Approved by: gibbs(implicit) Added: projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.c projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.h Modified: projects/amd64_xen_pv/sys/amd64/xen/pmap.c projects/amd64_xen_pv/sys/conf/files.amd64 Modified: projects/amd64_xen_pv/sys/amd64/xen/pmap.c ============================================================================== --- projects/amd64_xen_pv/sys/amd64/xen/pmap.c Tue Nov 27 21:27:12 2012 (r243632) +++ projects/amd64_xen_pv/sys/amd64/xen/pmap.c Tue Nov 27 21:45:42 2012 (r243633) @@ -147,6 +147,7 @@ __FBSDID("$FreeBSD$"); #include #include +#include extern vm_offset_t pa_index; /* from machdep.c */ extern unsigned long physfree; /* from machdep.c */ @@ -187,14 +188,8 @@ static uma_zone_t xen_pagezone; static size_t tsz; /* mmu_map.h opaque cookie size */ static uintptr_t (*ptmb_mappedalloc)(void) = NULL; static void (*ptmb_mappedfree)(uintptr_t) = NULL; -static uintptr_t ptmb_ptov(vm_paddr_t p) -{ - return PTOV(p); -} -static vm_paddr_t ptmb_vtop(uintptr_t v) -{ - return VTOP(v); -} +static uintptr_t (*ptmb_ptov)(vm_paddr_t) = NULL; +static vm_paddr_t (*ptmb_vtop)(uintptr_t) = NULL; extern uint64_t xenstack; /* The stack Xen gives us at boot */ extern char *console_page; /* The shared ring for console i/o */ @@ -455,10 +450,21 @@ pmap_xen_bootpages(vm_paddr_t *firstaddr va = vallocpages(firstaddr, 1); PT_SET_MA(va, ma | PG_RW | PG_V | PG_U); - HYPERVISOR_shared_info = (void *) va; } +/* Boot time ptov - xen guarantees bootpages to be offset */ +static uintptr_t boot_ptov(vm_paddr_t p) +{ + return PTOV(p); +} + +/* Boot time vtop - xen guarantees bootpages to be offset */ +static vm_paddr_t boot_vtop(uintptr_t v) +{ + return VTOP(v); +} + /* alloc from linear mapped boot time virtual address space */ static uintptr_t mmu_alloc(void) @@ -486,6 +492,8 @@ pmap_bootstrap(vm_paddr_t *firstaddr) /* setup mmu_map backend function pointers for boot */ ptmb_mappedalloc = mmu_alloc; ptmb_mappedfree = NULL; + ptmb_ptov = boot_ptov; + ptmb_vtop = boot_vtop; create_boot_pagetables(firstaddr); @@ -509,7 +517,7 @@ pmap_bootstrap(vm_paddr_t *firstaddr) dump_avail[pa_index + 1] = phys_avail[pa_index] = VTOP(xen_start_info->pt_base); dump_avail[pa_index + 2] = phys_avail[pa_index + 1] = phys_avail[pa_index] + - ptoa(xen_start_info->nr_pt_frames - 1); + ptoa(xen_start_info->nr_pt_frames); pa_index += 2; /* Map in Xen related pages into VA space */ @@ -538,7 +546,8 @@ pmap_bootstrap(vm_paddr_t *firstaddr) kernel_pmap->pm_pml4 = (pdp_entry_t *)KPML4phys; kernel_pmap->pm_root = NULL; CPU_FILL(&kernel_pmap->pm_active); /* don't allow deactivation */ - TAILQ_INIT(&kernel_pmap->pm_pvchunk); + pmap_pv_init(); + pmap_pv_pmap_init(kernel_pmap); tsz = mmu_map_t_size(); @@ -552,11 +561,13 @@ pmap_bootstrap(vm_paddr_t *firstaddr) bzero(msgbufp, round_page(msgbufsize)); } +/* + * Initialize a vm_page's machine-dependent fields. + */ void pmap_page_init(vm_page_t m) { - /* XXX: TODO - pv_lists */ - + pmap_pv_vm_page_init(m); } /* @@ -601,15 +612,34 @@ pmap_growkernel(uintptr_t addr) mmu_map_t_fini(tptr); } +/* + * Initialize the pmap module. + * Called by vm_init, to initialize any structures that the pmap + * system needs to map virtual memory. + */ + void pmap_init(void) { uintptr_t va; /* XXX: review the use of gdtset for the purpose below */ - gdtset = 1; /* xpq may assert for locking sanity from this point onwards */ - /* XXX: switch the mmu_map.c backend to something more sane */ + /* + * At this point we initialise the pv mappings of all PAs that + * have been mapped into the kernel VA by pmap_bootstrap() + */ + + vm_paddr_t pa; + + for (pa = phys_avail[0]; pa < VTOP(virtual_avail); pa += PAGE_SIZE) { + vm_page_t m; + m = PHYS_TO_VM_PAGE(pa); + if (m == NULL) continue; + pmap_put_pv_entry(kernel_pmap, PTOV(pa), m); + } + + gdtset = 1; /* xpq may assert for locking sanity from this point onwards */ /* Get a va for console and map the console mfn into it */ vm_paddr_t console_ma = xen_start_info->console.domU.mfn << PAGE_SHIFT; @@ -629,7 +659,7 @@ pmap_pinit0(pmap_t pmap) pmap->pm_root = NULL; CPU_ZERO(&pmap->pm_active); PCPU_SET(curpmap, pmap); - TAILQ_INIT(&pmap->pm_pvchunk); + pmap_pv_pmap_init(pmap); bzero(&pmap->pm_stats, sizeof pmap->pm_stats); } @@ -665,7 +695,7 @@ pmap_pinit(pmap_t pmap) pmap->pm_root = NULL; CPU_ZERO(&pmap->pm_active); - TAILQ_INIT(&pmap->pm_pvchunk); + pmap_pv_pmap_init(pmap); bzero(&pmap->pm_stats, sizeof pmap->pm_stats); return 1; @@ -806,6 +836,10 @@ pmap_enter(pmap_t pmap, vm_offset_t va, VM_OBJECT_LOCKED(m->object), ("pmap_enter: page %p is not busy", m)); + KASSERT(pmap == kernel_pmap, ("XXX: TODO: Userland pmap\n")); + KASSERT(VM_PAGE_TO_PHYS(m) != 0, + ("VM_PAGE_TO_PHYS(m) == 0x%lx\n", VM_PAGE_TO_PHYS(m))); + pmap_kenter(va, VM_PAGE_TO_PHYS(m)); /* Shim to keep bootup * happy for now */ @@ -922,6 +956,18 @@ nomapping: void pmap_kenter(vm_offset_t va, vm_paddr_t pa) { + + vm_page_t m; + + m = PHYS_TO_VM_PAGE(pa); + + if (gdtset == 1 && m != NULL) { + /* + * Enter on the PV list if part of our managed memory. + */ + + pmap_put_pv_entry(kernel_pmap, va, m); + } pmap_kenter_ma(va, xpmap_ptom(pa)); } @@ -1220,6 +1266,39 @@ pmap_change_attr(vm_offset_t va, vm_size } static uintptr_t +xen_vm_ptov(vm_paddr_t pa) +{ + vm_page_t m; + + m = PHYS_TO_VM_PAGE(pa); + + /* Assert for valid PA *after* the VM has been init-ed */ + KASSERT(gdtset == 1 && m != NULL || pa < physfree, ("Stray PA 0x%lx passed\n", pa)); + + if (m == NULL) { /* Early boottime page - obeys early mapping rules */ + return PTOV(pa); + } + + KASSERT((m->oflags & VPO_UNMANAGED) == 0, + ("%s: page %p is not managed", __func__, m)); + + return pmap_pv_vm_page_to_v(kernel_pmap, m); +} + +static vm_paddr_t +xen_vm_vtop(uintptr_t va) +{ + vm_page_t m; + KASSERT((va >= VM_MIN_KERNEL_ADDRESS && + va <= VM_MAX_KERNEL_ADDRESS), + ("Invalid kernel virtual address")); + + m = vm_page_lookup(kernel_object, va - VM_MIN_KERNEL_ADDRESS); + + return VM_PAGE_TO_PHYS(m); +} + +static uintptr_t xen_pagezone_alloc(void) { uintptr_t ret; @@ -1270,9 +1349,11 @@ setup_xen_pagezone(void *dummy __unused) { xen_pagezone = uma_zcreate("XEN PAGEZONE", PAGE_SIZE, NULL, NULL, - xen_pagezone_init, xen_pagezone_fini, UMA_ALIGN_PTR, UMA_ZONE_ZINIT); + xen_pagezone_init, xen_pagezone_fini, UMA_ALIGN_PTR, 0); ptmb_mappedalloc = xen_pagezone_alloc; ptmb_mappedfree = xen_pagezone_free; + ptmb_vtop = xen_vm_vtop; + ptmb_ptov = xen_vm_ptov; } SYSINIT(setup_xen_pagezone, SI_SUB_VM_CONF, SI_ORDER_ANY, setup_xen_pagezone, NULL); Added: projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.c Tue Nov 27 21:45:42 2012 (r243633) @@ -0,0 +1,328 @@ +/*- + * + * Copyright (c) 1991 Regents of the University of California. + * All rights reserved. + * Copyright (c) 1994 John S. Dyson + * All rights reserved. + * Copyright (c) 1994 David Greenman + * All rights reserved. + * Copyright (c) 2005 Alan L. Cox + * All rights reserved. + * Copyright (c) 2012 Spectra Logic Corporation + * All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * the Systems Programming Group of the University of Utah Computer + * Science Department and William Jolitz of UUNET Technologies Inc. + * + * Portions of this software were developed by + * Cherry G. Mathew under sponsorship + * from Spectra Logic Corporation. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. All advertising materials mentioning features or use of this software + * must display the following acknowledgement: + * This product includes software developed by the University of + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE REGENTS 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 REGENTS 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. + * + * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 + */ +/*- + * Copyright (c) 2003 Networks Associates Technology, Inc. + * All rights reserved. + * + * This software was developed for the FreeBSD Project by Jake Burkholder, + * Safeport Network Services, and Network Associates Laboratories, the + * Security Research Division of Network Associates, Inc. under + * DARPA/SPAWAR contract N66001-01-C-8035 ("CBOSS"), as part of the DARPA + * CHATS research program. + * + * 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$"); + +/* + * This file contains the amd64 physical->virtual mapping management code. + * This code used to reside in pmap.c previously and has been excised + * out to make things a bit more modularised. + */ + +#include +#include +#include +#include +#include + +#include +#include +#include +#include + +#include + +#include + +#ifdef PV_STATS +#define PV_STAT(x) do { x ; } while (0) +#else +#define PV_STAT(x) do { } while (0) +#endif + +/* + * Isolate the global pv list lock from data and other locks to prevent false + * sharing within the cache. + */ +static struct { + struct rwlock lock; + char padding[CACHE_LINE_SIZE - sizeof(struct rwlock)]; +} pvh_global __aligned(CACHE_LINE_SIZE); + +#define pvh_global_lock pvh_global.lock + +/* + * Data for the pv entry allocation mechanism + */ +static TAILQ_HEAD(pch, pv_chunk) pv_chunks = TAILQ_HEAD_INITIALIZER(pv_chunks); +#define NPV_LIST_LOCKS MAXCPU +#define PHYS_TO_PV_LIST_LOCK(pa) \ + (&pv_list_locks[pa_index(pa) % NPV_LIST_LOCKS]) +#define VM_PAGE_TO_PV_LIST_LOCK(m) \ + PHYS_TO_PV_LIST_LOCK(VM_PAGE_TO_PHYS(m)) + +static struct mtx pv_chunks_mutex; +static struct rwlock pv_list_locks[NPV_LIST_LOCKS]; + +/*************************************************** + * page management routines. + ***************************************************/ + +CTASSERT(sizeof(struct pv_chunk) == PAGE_SIZE); +CTASSERT(_NPCM == 3); +CTASSERT(_NPCPV == 168); + +static __inline struct pv_chunk * +pv_to_chunk(pv_entry_t pv) +{ + + return ((struct pv_chunk *)((uintptr_t)pv & ~(uintptr_t)PAGE_MASK)); +} + +#define PV_PMAP(pv) (pv_to_chunk(pv)->pc_pmap) + +#define PC_FREE0 0xfffffffffffffffful +#define PC_FREE1 0xfffffffffffffffful +#define PC_FREE2 0x000000fffffffffful + +/* + * Returns a new PV entry, allocating a new PV chunk from the system when + * needed. If this PV chunk allocation fails and a PV list lock pointer was + * given, a PV chunk is reclaimed from an arbitrary pmap. Otherwise, NULL is + * returned. + * + */ + +pv_entry_t +pmap_get_pv_entry(pmap_t pmap) +{ + int bit, field; + pv_entry_t pv; + struct pv_chunk *pc; + vm_page_t m; + + rw_assert(&pvh_global_lock, RA_LOCKED); + PMAP_LOCK_ASSERT(pmap, MA_OWNED); + PV_STAT(atomic_add_long(&pv_entry_allocs, 1)); + pc = TAILQ_FIRST(&pmap->pm_pvchunk); + if (pc != NULL) { + for (field = 0; field < _NPCM; field++) { + if (pc->pc_map[field]) { + bit = bsfq(pc->pc_map[field]); + break; + } + } + if (field < _NPCM) { + pv = &pc->pc_pventry[field * 64 + bit]; + pc->pc_map[field] &= ~(1ul << bit); + /* If this was the last item, move it to tail */ + if (pc->pc_map[0] == 0 && pc->pc_map[1] == 0 && + pc->pc_map[2] == 0) { + TAILQ_REMOVE(&pmap->pm_pvchunk, pc, pc_list); + TAILQ_INSERT_TAIL(&pmap->pm_pvchunk, pc, + pc_list); + } + PV_STAT(atomic_add_long(&pv_entry_count, 1)); + PV_STAT(atomic_subtract_int(&pv_entry_spare, 1)); + return (pv); + } + } + + /* No free items, allocate another chunk */ + m = vm_page_alloc(NULL, 0, VM_ALLOC_NORMAL | VM_ALLOC_NOOBJ | + VM_ALLOC_WIRED); + if (m == NULL) { + panic("XXX: TODO: memory pressure reclaim\n"); + } + + PV_STAT(atomic_add_int(&pc_chunk_count, 1)); + PV_STAT(atomic_add_int(&pc_chunk_allocs, 1)); + dump_add_page(m->phys_addr); + + pc = (void *)PHYS_TO_DMAP(m->phys_addr); + + /* + * DMAP entries are kernel only, and don't need tracking, so + * we just wire in the va. + */ + pmap_kenter_ma((vm_offset_t)pc, xpmap_ptom(m->phys_addr)); + + pc->pc_pmap = pmap; + pc->pc_map[0] = PC_FREE0 & ~1ul; /* preallocated bit 0 */ + pc->pc_map[1] = PC_FREE1; + pc->pc_map[2] = PC_FREE2; + + mtx_lock(&pv_chunks_mutex); + TAILQ_INSERT_TAIL(&pv_chunks, pc, pc_lru); + mtx_unlock(&pv_chunks_mutex); + pv = &pc->pc_pventry[0]; + TAILQ_INSERT_HEAD(&pmap->pm_pvchunk, pc, pc_list); + PV_STAT(atomic_add_long(&pv_entry_count, 1)); + PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV - 1)); + return (pv); +} + +void +pmap_put_pv_entry(pmap_t pmap, vm_offset_t va, vm_page_t m) +{ + vm_paddr_t pa; + pv_entry_t pv; + + KASSERT(m != NULL, ("Invalid page")); + pa = VM_PAGE_TO_PHYS(m); + +// if ((m->oflags & VPO_UNMANAGED) == 0) { /* XXX: exclude +// unmanaged */ + + PMAP_LOCK(pmap); + rw_rlock(&pvh_global_lock); + pv = pmap_get_pv_entry(pmap); + pv->pv_va = va; + TAILQ_INSERT_TAIL(&m->md.pv_list, pv, pv_list); + rw_runlock(&pvh_global_lock); + PMAP_UNLOCK(pmap); +// } +} + +/* This function may be called after pmap_pv_pmap_init() */ +void +pmap_pv_init(void) +{ + int i; + + /* + * Initialize the global pv list lock. + */ + rw_init(&pvh_global_lock, "pmap pv global"); + + /* + * Initialize the pv chunk list mutex. + */ + + mtx_init(&pv_chunks_mutex, "pmap pv chunk list", NULL, MTX_DEF); + + /* + * Initialize the pool of pv list locks. + */ + for (i = 0; i < NPV_LIST_LOCKS; i++) + rw_init(&pv_list_locks[i], "pmap pv list"); + +} + +/* Initialise per-pmap pv data. OK to call it before pmap_pv_init() */ + +void +pmap_pv_pmap_init(pmap_t pmap) +{ + TAILQ_INIT(&pmap->pm_pvchunk); +} + +void +pmap_pv_vm_page_init(vm_page_t m) +{ + TAILQ_INIT(&m->md.pv_list); +} + +/* + * Return va mapping of vm_page + * Returns VM_MAX_KERNEL_ADDRESS + 1 on error. + */ + +vm_offset_t +pmap_pv_vm_page_to_v(pmap_t pmap, vm_page_t m) +{ + pv_entry_t pv; + + rw_rlock(&pvh_global_lock); + TAILQ_FOREACH(pv, &m->md.pv_list, pv_list) { + if (PV_PMAP(pv) == pmap) { /* We return the first hit */ + rw_runlock(&pvh_global_lock); + return pv->pv_va; + } + } + + rw_runlock(&pvh_global_lock); + return VM_MAX_KERNEL_ADDRESS + 1; +} + +/* + * Query if a given vm_page is mapped in the pmap + */ +bool +pmap_pv_vm_page_mapped(pmap_t pmap, vm_page_t m) +{ + return (pmap_pv_vm_page_to_v(pmap, m) == + (VM_MAX_KERNEL_ADDRESS + 1)) ? false : true; + +} Added: projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/amd64_xen_pv/sys/amd64/xen/pmap_pv.h Tue Nov 27 21:45:42 2012 (r243633) @@ -0,0 +1,47 @@ +/*- + * Copyright (c) 2011-2012 Spectra Logic Corporation + * All rights reserved. + * + * This software was developed by Cherry G. Mathew + * under sponsorship from Spectra Logic Corporation. + * + * 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, + * without modification. + * 2. Redistributions in binary form must reproduce at minimum a disclaimer + * substantially similar to the "NO WARRANTY" disclaimer below + * ("Disclaimer") and any redistribution must be conditioned upon + * including a substantially similar Disclaimer requirement for further + * binary redistribution. + * + * NO WARRANTY + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * HOLDERS OR CONTRIBUTORS BE LIABLE FOR 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 DAMAGES. + * + * $FreeBSD$ + */ + +#ifndef _MACHINE_PMAP_PV_H_ +#define _MACHINE_PMAP_PV_H_ + +void pmap_pv_init(void); +void pmap_pv_pmap_init(pmap_t pmap); +void pmap_pv_vm_page_init(vm_page_t m); +vm_offset_t pmap_pv_vm_page_to_v(pmap_t pmap, vm_page_t m); +bool pmap_pv_vm_page_mapped(pmap_t pmap, vm_page_t m); +pv_entry_t pmap_get_pv_entry(pmap_t pmap); +void pmap_put_pv_entry(pmap_t pmap, vm_offset_t va, vm_page_t m); + +#endif /* !_MACHINE_PMAP_PV_H_ */ Modified: projects/amd64_xen_pv/sys/conf/files.amd64 ============================================================================== --- projects/amd64_xen_pv/sys/conf/files.amd64 Tue Nov 27 21:27:12 2012 (r243632) +++ projects/amd64_xen_pv/sys/conf/files.amd64 Tue Nov 27 21:45:42 2012 (r243633) @@ -126,6 +126,7 @@ amd64/amd64/mpboot.S optional native sm amd64/xen/mpboot.c optional xen smp amd64/amd64/pmap.c optional native amd64/xen/pmap.c optional xen +amd64/xen/pmap_pv.c optional xen amd64/xen/mmu_map.c optional xen amd64/amd64/prof_machdep.c optional profiling-routine amd64/amd64/ptrace_machdep.c standard From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 00:02:17 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AED60874; Wed, 28 Nov 2012 00:02:17 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 930AC8FC0C; Wed, 28 Nov 2012 00:02:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAS02Hsx088194; Wed, 28 Nov 2012 00:02:17 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAS02HnU088183; Wed, 28 Nov 2012 00:02:17 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201211280002.qAS02HnU088183@svn.freebsd.org> From: Neel Natu Date: Wed, 28 Nov 2012 00:02:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243640 - in projects/bhyve: sys/amd64/include sys/amd64/vmm sys/amd64/vmm/intel usr.sbin/bhyve X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 00:02:17 -0000 Author: neel Date: Wed Nov 28 00:02:17 2012 New Revision: 243640 URL: http://svnweb.freebsd.org/changeset/base/243640 Log: Revamp the x86 instruction emulation in bhyve. On a nested page table fault the hypervisor will: - fetch the instruction using the guest %rip and %cr3 - decode the instruction in 'struct vie' - emulate the instruction in host kernel context for local apic accesses - any other type of mmio access is punted up to user-space (e.g. ioapic) The decoded instruction is passed as collateral to the user-space process that is handling the PAGING exit. The emulation code is fleshed out to include more addressing modes (e.g. SIB) and more types of operands (e.g. imm8). The source code is unified into a single file (vmm_instruction_emul.c) that is compiled into vmm.ko as well as /usr/sbin/bhyve. Reviewed by: grehan Obtained from: NetApp Added: projects/bhyve/sys/amd64/include/vmm_instruction_emul.h (contents, props changed) Deleted: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.h projects/bhyve/usr.sbin/bhyve/instruction_emul.c projects/bhyve/usr.sbin/bhyve/instruction_emul.h Modified: projects/bhyve/sys/amd64/include/vmm.h projects/bhyve/sys/amd64/vmm/intel/vmcs.h projects/bhyve/sys/amd64/vmm/intel/vmx.c projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c projects/bhyve/sys/amd64/vmm/vmm_lapic.c projects/bhyve/sys/amd64/vmm/vmm_lapic.h projects/bhyve/usr.sbin/bhyve/Makefile projects/bhyve/usr.sbin/bhyve/fbsdrun.c projects/bhyve/usr.sbin/bhyve/ioapic.c projects/bhyve/usr.sbin/bhyve/mem.c projects/bhyve/usr.sbin/bhyve/mem.h projects/bhyve/usr.sbin/bhyve/pci_passthru.c Modified: projects/bhyve/sys/amd64/include/vmm.h ============================================================================== --- projects/bhyve/sys/amd64/include/vmm.h Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/include/vmm.h Wed Nov 28 00:02:17 2012 (r243640) @@ -150,6 +150,8 @@ void vm_interrupt_hostcpu(struct vm *vm, #endif /* KERNEL */ +#include + #define VM_MAXCPU 8 /* maximum virtual cpus */ /* @@ -268,6 +270,7 @@ struct vm_exit { uint64_t cr3; uint64_t gpa; int rwx; + struct vie vie; } paging; /* * VMX specific payload. Used when there is no "better" Added: projects/bhyve/sys/amd64/include/vmm_instruction_emul.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/bhyve/sys/amd64/include/vmm_instruction_emul.h Wed Nov 28 00:02:17 2012 (r243640) @@ -0,0 +1,113 @@ +/*- + * Copyright (c) 2012 NetApp, Inc. + * 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 NETAPP, INC ``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 NETAPP, INC 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 _VMM_INSTRUCTION_EMUL_H_ +#define _VMM_INSTRUCTION_EMUL_H_ + +/* + * The data structures 'vie' and 'vie_op' are meant to be opaque to the + * consumers of instruction decoding. The only reason why their contents + * need to be exposed is because they are part of the 'vm_exit' structure. + */ +struct vie_op { + uint8_t op_byte; /* actual opcode byte */ + uint8_t op_type; /* type of operation (e.g. MOV) */ + uint16_t op_flags; +}; + +#define VIE_INST_SIZE 15 +struct vie { + uint8_t inst[VIE_INST_SIZE]; /* instruction bytes */ + uint8_t num_valid; /* size of the instruction */ + uint8_t num_processed; + + uint8_t rex_w:1, /* REX prefix */ + rex_r:1, + rex_x:1, + rex_b:1; + + uint8_t mod:2, /* ModRM byte */ + reg:4, + rm:4; + + uint8_t ss:2, /* SIB byte */ + index:4, + base:4; + + uint8_t disp_bytes; + uint8_t imm_bytes; + + uint8_t scale; + int base_register; /* VM_REG_GUEST_xyz */ + int index_register; /* VM_REG_GUEST_xyz */ + + int64_t displacement; /* optional addr displacement */ + int64_t immediate; /* optional immediate operand */ + + uint8_t decoded; /* set to 1 if successfully decoded */ + + struct vie_op op; /* opcode description */ +}; + +/* + * Callback functions to read and write memory regions. + */ +typedef int (*mem_region_read_t)(void *vm, int cpuid, uint64_t gpa, + uint64_t *rval, int rsize, void *arg); + +typedef int (*mem_region_write_t)(void *vm, int cpuid, uint64_t gpa, + uint64_t wval, int wsize, void *arg); + +/* + * Emulate the decoded 'vie' instruction. + * + * The callbacks 'mrr' and 'mrw' emulate reads and writes to the memory region + * containing 'gpa'. 'mrarg' is an opaque argument that is passed into the + * callback functions. + * + * 'void *vm' should be 'struct vm *' when called from kernel context and + * 'struct vmctx *' when called from user context. + * s + */ +int vmm_emulate_instruction(void *vm, int cpuid, uint64_t gpa, struct vie *vie, + mem_region_read_t mrr, mem_region_write_t mrw, + void *mrarg); + +#ifdef _KERNEL +/* + * APIs to fetch and decode the instruction from nested page fault handler. + */ +int vmm_fetch_instruction(struct vm *vm, int cpuid, + uint64_t rip, int inst_length, uint64_t cr3, + struct vie *vie); + +int vmm_decode_instruction(struct vm *vm, int cpuid, + uint64_t gla, struct vie *vie); +#endif /* _KERNEL */ + +#endif /* _VMM_INSTRUCTION_EMUL_H_ */ Modified: projects/bhyve/sys/amd64/vmm/intel/vmcs.h ============================================================================== --- projects/bhyve/sys/amd64/vmm/intel/vmcs.h Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/vmm/intel/vmcs.h Wed Nov 28 00:02:17 2012 (r243640) @@ -67,6 +67,7 @@ uint64_t vmcs_read(uint32_t encoding); #define vmcs_exit_qualification() vmcs_read(VMCS_EXIT_QUALIFICATION) #define vmcs_guest_cr3() vmcs_read(VMCS_GUEST_CR3) #define vmcs_gpa() vmcs_read(VMCS_GUEST_PHYSICAL_ADDRESS) +#define vmcs_gla() vmcs_read(VMCS_GUEST_LINEAR_ADDRESS) #endif /* _KERNEL */ Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/intel/vmx.c Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/vmm/intel/vmx.c Wed Nov 28 00:02:17 2012 (r243640) @@ -63,7 +63,6 @@ __FBSDID("$FreeBSD$"); #include "vmx.h" #include "x86.h" #include "vmx_controls.h" -#include "vmm_instruction_emul.h" #define PINBASED_CTLS_ONE_SETTING \ (PINBASED_EXTINT_EXITING | \ @@ -1150,23 +1149,11 @@ vmx_emulate_cr_access(struct vmx *vmx, i } static int -vmx_lapic_fault(struct vm *vm, int cpu, - uint64_t gpa, uint64_t rip, int inst_length, - uint64_t cr3, uint64_t ept_qual) +vmx_ept_fault(struct vm *vm, int cpu, + uint64_t gla, uint64_t gpa, uint64_t rip, int inst_length, + uint64_t cr3, uint64_t ept_qual, struct vie *vie) { - int read, write, handled; - struct vie vie; - - /* - * For this to be a legitimate access to the local apic: - * - the GPA in the local apic page - * - the GPA must be aligned on a 16 byte boundary - */ - if (gpa < DEFAULT_APIC_BASE || gpa >= DEFAULT_APIC_BASE + PAGE_SIZE) - return (UNHANDLED); - - if ((gpa & 0xF) != 0) - return (UNHANDLED); + int read, write, error; /* EPT violation on an instruction fetch doesn't make sense here */ if (ept_qual & EPT_VIOLATION_INST_FETCH) @@ -1188,15 +1175,22 @@ vmx_lapic_fault(struct vm *vm, int cpu, } /* Fetch, decode and emulate the faulting instruction */ - if (vmm_fetch_instruction(vm, rip, inst_length, cr3, &vie) != 0) + if (vmm_fetch_instruction(vm, cpu, rip, inst_length, cr3, vie) != 0) return (UNHANDLED); - if (vmm_decode_instruction(&vie) != 0) + if (vmm_decode_instruction(vm, cpu, gla, vie) != 0) return (UNHANDLED); - handled = lapic_mmio(vm, cpu, gpa - DEFAULT_APIC_BASE, read, &vie); + /* + * Check if this is a local apic access + */ + if (gpa < DEFAULT_APIC_BASE || gpa >= DEFAULT_APIC_BASE + PAGE_SIZE) + return (UNHANDLED); - return (handled); + error = vmm_emulate_instruction(vm, cpu, gpa, vie, + lapic_mmio_read, lapic_mmio_write, 0); + + return (error ? UNHANDLED : HANDLED); } static int @@ -1206,7 +1200,7 @@ vmx_exit_process(struct vmx *vmx, int vc struct vmcs *vmcs; struct vmxctx *vmxctx; uint32_t eax, ecx, edx; - uint64_t qual, gpa, cr3, intr_info; + uint64_t qual, gla, gpa, cr3, intr_info; handled = 0; vmcs = &vmx->vmcs[vcpu]; @@ -1299,11 +1293,12 @@ vmx_exit_process(struct vmx *vmx, int vc handled = vmx_handle_cpuid(vmx->vm, vcpu, vmxctx); break; case EXIT_REASON_EPT_FAULT: + gla = vmcs_gla(); gpa = vmcs_gpa(); cr3 = vmcs_guest_cr3(); - handled = vmx_lapic_fault(vmx->vm, vcpu, - gpa, vmexit->rip, vmexit->inst_length, - cr3, qual); + handled = vmx_ept_fault(vmx->vm, vcpu, gla, gpa, + vmexit->rip, vmexit->inst_length, + cr3, qual, &vmexit->u.paging.vie); if (!handled) { vmexit->exitcode = VM_EXITCODE_PAGING; vmexit->u.paging.cr3 = cr3; Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Wed Nov 28 00:02:17 2012 (r243640) @@ -30,6 +30,7 @@ #include __FBSDID("$FreeBSD$"); +#ifdef _KERNEL #include #include #include @@ -40,10 +41,60 @@ __FBSDID("$FreeBSD$"); #include #include #include +#else /* !_KERNEL */ +#include +#include -#include "vmm_instruction_emul.h" +#include + +#include +#endif /* _KERNEL */ + + + +/* struct vie_op.op_type */ +enum { + VIE_OP_TYPE_NONE = 0, + VIE_OP_TYPE_MOV, + VIE_OP_TYPE_AND, + VIE_OP_TYPE_LAST +}; + +/* struct vie_op.op_flags */ +#define VIE_OP_F_IMM (1 << 0) /* immediate operand present */ +#define VIE_OP_F_IMM8 (1 << 1) /* 8-bit immediate operand */ + +static const struct vie_op one_byte_opcodes[256] = { + [0x89] = { + .op_byte = 0x89, + .op_type = VIE_OP_TYPE_MOV, + }, + [0x8B] = { + .op_byte = 0x8B, + .op_type = VIE_OP_TYPE_MOV, + }, + [0xC7] = { + .op_byte = 0xC7, + .op_type = VIE_OP_TYPE_MOV, + .op_flags = VIE_OP_F_IMM, + }, + [0x23] = { + .op_byte = 0x23, + .op_type = VIE_OP_TYPE_AND, + } +}; + +/* struct vie.mod */ +#define VIE_MOD_INDIRECT 0 +#define VIE_MOD_INDIRECT_DISP8 1 +#define VIE_MOD_INDIRECT_DISP32 2 +#define VIE_MOD_DIRECT 3 + +/* struct vie.rm */ +#define VIE_RM_SIB 4 +#define VIE_RM_DISP32 5 -#define GB (1024 * 1024 * 1024) +#define GB (1024 * 1024 * 1024) static enum vm_reg_name gpr_map[16] = { VM_REG_GUEST_RAX, @@ -64,17 +115,232 @@ static enum vm_reg_name gpr_map[16] = { VM_REG_GUEST_R15 }; +static uint64_t size2mask[] = { + [1] = 0xff, + [2] = 0xffff, + [4] = 0xffffffff, + [8] = 0xffffffffffffffff, +}; + +static int +vie_valid_register(enum vm_reg_name reg) +{ +#ifdef _KERNEL + /* + * XXX + * The operand register in which we store the result of the + * read must be a GPR that we can modify even if the vcpu + * is "running". All the GPRs qualify except for %rsp. + * + * This is a limitation of the vm_set_register() API + * and can be fixed if necessary. + */ + if (reg == VM_REG_GUEST_RSP) + return (0); +#endif + return (1); +} + +static int +vie_read_register(void *vm, int vcpuid, enum vm_reg_name reg, uint64_t *rval) +{ + int error; + + if (!vie_valid_register(reg)) + return (EINVAL); + + error = vm_get_register(vm, vcpuid, reg, rval); + + return (error); +} + +static int +vie_update_register(void *vm, int vcpuid, enum vm_reg_name reg, + uint64_t val, int size) +{ + int error; + uint64_t origval; + + if (!vie_valid_register(reg)) + return (EINVAL); + + switch (size) { + case 1: + case 2: + error = vie_read_register(vm, vcpuid, reg, &origval); + if (error) + return (error); + val &= size2mask[size]; + val |= origval & ~size2mask[size]; + break; + case 4: + val &= 0xffffffffUL; + break; + case 8: + break; + default: + return (EINVAL); + } + + error = vm_set_register(vm, vcpuid, reg, val); + return (error); +} + +/* + * The following simplifying assumptions are made during emulation: + * + * - guest is in 64-bit mode + * - default address size is 64-bits + * - default operand size is 32-bits + * + * - operand size override is not supported + * + * - address size override is not supported + */ +static int +emulate_mov(void *vm, int vcpuid, uint64_t gpa, struct vie *vie, + mem_region_read_t memread, mem_region_write_t memwrite, void *arg) +{ + int error, size; + enum vm_reg_name reg; + uint64_t val; + + size = 4; + error = EINVAL; + + switch (vie->op.op_byte) { + case 0x89: + /* + * MOV from reg (ModRM:reg) to mem (ModRM:r/m) + * 89/r: mov r/m32, r32 + * REX.W + 89/r mov r/m64, r64 + */ + if (vie->rex_w) + size = 8; + reg = gpr_map[vie->reg]; + error = vie_read_register(vm, vcpuid, reg, &val); + if (error == 0) { + val &= size2mask[size]; + error = memwrite(vm, vcpuid, gpa, val, size, arg); + } + break; + case 0x8B: + /* + * MOV from mem (ModRM:r/m) to reg (ModRM:reg) + * 8B/r: mov r32, r/m32 + * REX.W 8B/r: mov r64, r/m64 + */ + if (vie->rex_w) + size = 8; + error = memread(vm, vcpuid, gpa, &val, size, arg); + if (error == 0) { + reg = gpr_map[vie->reg]; + error = vie_update_register(vm, vcpuid, reg, val, size); + } + break; + case 0xC7: + /* + * MOV from imm32 to mem (ModRM:r/m) + * C7/0 mov r/m32, imm32 + * REX.W + C7/0 mov r/m64, imm32 (sign-extended to 64-bits) + */ + val = vie->immediate; /* already sign-extended */ + + if (vie->rex_w) + size = 8; + + if (size != 8) + val &= size2mask[size]; + + error = memwrite(vm, vcpuid, gpa, val, size, arg); + break; + default: + break; + } + + return (error); +} + +static int +emulate_and(void *vm, int vcpuid, uint64_t gpa, struct vie *vie, + mem_region_read_t memread, mem_region_write_t memwrite, void *arg) +{ + int error, size; + enum vm_reg_name reg; + uint64_t val1, val2; + + size = 4; + error = EINVAL; + + switch (vie->op.op_byte) { + case 0x23: + /* + * AND reg (ModRM:reg) and mem (ModRM:r/m) and store the + * result in reg. + * + * 23/r and r32, r/m32 + * REX.W + 23/r and r64, r/m64 + */ + if (vie->rex_w) + size = 8; + + /* get the first operand */ + reg = gpr_map[vie->reg]; + error = vie_read_register(vm, vcpuid, reg, &val1); + if (error) + break; + + /* get the second operand */ + error = memread(vm, vcpuid, gpa, &val2, size, arg); + if (error) + break; + + /* perform the operation and write the result */ + val1 &= val2; + error = vie_update_register(vm, vcpuid, reg, val1, size); + break; + default: + break; + } + return (error); +} + +int +vmm_emulate_instruction(void *vm, int vcpuid, uint64_t gpa, struct vie *vie, + mem_region_read_t memread, mem_region_write_t memwrite, + void *memarg) +{ + int error; + + if (!vie->decoded) + return (EINVAL); + + switch (vie->op.op_type) { + case VIE_OP_TYPE_MOV: + error = emulate_mov(vm, vcpuid, gpa, vie, + memread, memwrite, memarg); + break; + case VIE_OP_TYPE_AND: + error = emulate_and(vm, vcpuid, gpa, vie, + memread, memwrite, memarg); + break; + default: + error = EINVAL; + break; + } + + return (error); +} + +#ifdef _KERNEL static void vie_init(struct vie *vie) { bzero(vie, sizeof(struct vie)); - vie->op_size = VIE_OP_SIZE_32BIT; - vie->base_register = VM_REG_LAST; vie->index_register = VM_REG_LAST; - vie->operand_register = VM_REG_LAST; } static int @@ -129,7 +395,7 @@ error: } int -vmm_fetch_instruction(struct vm *vm, uint64_t rip, int inst_length, +vmm_fetch_instruction(struct vm *vm, int cpuid, uint64_t rip, int inst_length, uint64_t cr3, struct vie *vie) { int n, err; @@ -172,6 +438,7 @@ vmm_fetch_instruction(struct vm *vm, uin static int vie_peek(struct vie *vie, uint8_t *x) { + if (vie->num_processed < vie->num_valid) { *x = vie->inst[vie->num_processed]; return (0); @@ -182,8 +449,6 @@ vie_peek(struct vie *vie, uint8_t *x) static void vie_advance(struct vie *vie) { - if (vie->num_processed >= vie->num_valid) - panic("vie_advance: %d/%d", vie->num_processed, vie->num_valid); vie->num_processed++; } @@ -213,24 +478,16 @@ decode_opcode(struct vie *vie) { uint8_t x; - static const uint8_t flags[256] = { - [0x89] = VIE_F_HAS_MODRM | VIE_F_FROM_REG | VIE_F_TO_RM, - [0x8B] = VIE_F_HAS_MODRM | VIE_F_FROM_RM | VIE_F_TO_REG, - [0xC7] = VIE_F_HAS_MODRM | VIE_F_FROM_IMM | VIE_F_TO_RM, - }; - if (vie_peek(vie, &x)) return (-1); - vie->opcode_byte = x; - vie->opcode_flags = flags[x]; + vie->op = one_byte_opcodes[x]; - vie_advance(vie); - - if (vie->opcode_flags == 0) + if (vie->op.op_type == VIE_OP_TYPE_NONE) return (-1); - else - return (0); + + vie_advance(vie); + return (0); } /* @@ -241,9 +498,6 @@ decode_modrm(struct vie *vie) { uint8_t x; - if ((vie->opcode_flags & VIE_F_HAS_MODRM) == 0) - return (0); - if (vie_peek(vie, &x)) return (-1); @@ -251,35 +505,40 @@ decode_modrm(struct vie *vie) vie->rm = (x >> 0) & 0x7; vie->reg = (x >> 3) & 0x7; + /* + * A direct addressing mode makes no sense in the context of an EPT + * fault. There has to be a memory access involved to cause the + * EPT fault. + */ + if (vie->mod == VIE_MOD_DIRECT) + return (-1); + if ((vie->mod == VIE_MOD_INDIRECT && vie->rm == VIE_RM_DISP32) || (vie->mod != VIE_MOD_DIRECT && vie->rm == VIE_RM_SIB)) { - /* - * Table 2-5: Special Cases of REX Encodings - * - * mod=0, r/m=5 is used in the compatibility mode to - * indicate a disp32 without a base register. - * - * mod!=3, r/m=4 is used in the compatibility mode to - * indicate that the SIB byte is present. - * - * The 'b' bit in the REX prefix is don't care in - * this case. - */ + /* + * Table 2-5: Special Cases of REX Encodings + * + * mod=0, r/m=5 is used in the compatibility mode to + * indicate a disp32 without a base register. + * + * mod!=3, r/m=4 is used in the compatibility mode to + * indicate that the SIB byte is present. + * + * The 'b' bit in the REX prefix is don't care in + * this case. + */ } else { vie->rm |= (vie->rex_b << 3); } vie->reg |= (vie->rex_r << 3); - /* SIB addressing not supported yet */ + /* SIB */ if (vie->mod != VIE_MOD_DIRECT && vie->rm == VIE_RM_SIB) - return (-1); + goto done; vie->base_register = gpr_map[vie->rm]; - if (vie->opcode_flags & (VIE_F_FROM_REG | VIE_F_TO_REG)) - vie->operand_register = gpr_map[vie->reg]; - switch (vie->mod) { case VIE_MOD_INDIRECT_DISP8: vie->disp_bytes = 1; @@ -295,12 +554,76 @@ decode_modrm(struct vie *vie) break; } - /* calculate the operand size */ - if (vie->rex_w) - vie->op_size = VIE_OP_SIZE_64BIT; - - if (vie->opcode_flags & VIE_F_FROM_IMM) + /* Figure out immediate operand size (if any) */ + if (vie->op.op_flags & VIE_OP_F_IMM) vie->imm_bytes = 4; + else if (vie->op.op_flags & VIE_OP_F_IMM8) + vie->imm_bytes = 1; + +done: + vie_advance(vie); + + return (0); +} + +static int +decode_sib(struct vie *vie) +{ + uint8_t x; + + /* Proceed only if SIB byte is present */ + if (vie->mod == VIE_MOD_DIRECT || vie->rm != VIE_RM_SIB) + return (0); + + if (vie_peek(vie, &x)) + return (-1); + + /* De-construct the SIB byte */ + vie->ss = (x >> 6) & 0x3; + vie->index = (x >> 3) & 0x7; + vie->base = (x >> 0) & 0x7; + + /* Apply the REX prefix modifiers */ + vie->index |= vie->rex_x << 3; + vie->base |= vie->rex_b << 3; + + switch (vie->mod) { + case VIE_MOD_INDIRECT_DISP8: + vie->disp_bytes = 1; + break; + case VIE_MOD_INDIRECT_DISP32: + vie->disp_bytes = 4; + break; + } + + if (vie->mod == VIE_MOD_INDIRECT && + (vie->base == 5 || vie->base == 13)) { + /* + * Special case when base register is unused if mod = 0 + * and base = %rbp or %r13. + * + * Documented in: + * Table 2-3: 32-bit Addressing Forms with the SIB Byte + * Table 2-5: Special Cases of REX Encodings + */ + vie->disp_bytes = 4; + } else { + vie->base_register = gpr_map[vie->base]; + } + + /* + * All encodings of 'index' are valid except for %rsp (4). + * + * Documented in: + * Table 2-3: 32-bit Addressing Forms with the SIB Byte + * Table 2-5: Special Cases of REX Encodings + */ + if (vie->index != 4) + vie->index_register = gpr_map[vie->index]; + + /* 'scale' makes sense only in the context of an index register */ + if (vie->index_register < VM_REG_LAST) + vie->scale = 1 << vie->ss; vie_advance(vie); @@ -348,13 +671,14 @@ decode_immediate(struct vie *vie) uint8_t x; union { char buf[4]; + int8_t signed8; int32_t signed32; } u; if ((n = vie->imm_bytes) == 0) return (0); - if (n != 4) + if (n != 1 && n != 4) panic("decode_immediate: invalid imm_bytes %d", n); for (i = 0; i < n; i++) { @@ -365,14 +689,62 @@ decode_immediate(struct vie *vie) vie_advance(vie); } - vie->immediate = u.signed32; /* sign-extended */ + if (n == 1) + vie->immediate = u.signed8; /* sign-extended */ + else + vie->immediate = u.signed32; /* sign-extended */ + + return (0); +} + +#define VERIFY_GLA +/* + * Verify that the 'guest linear address' provided as collateral of the nested + * page table fault matches with our instruction decoding. + */ +#ifdef VERIFY_GLA +static int +verify_gla(struct vm *vm, int cpuid, uint64_t gla, struct vie *vie) +{ + int error; + uint64_t base, idx; + + base = 0; + if (vie->base_register != VM_REG_LAST) { + error = vm_get_register(vm, cpuid, vie->base_register, &base); + if (error) { + printf("verify_gla: error %d getting base reg %d\n", + error, vie->base_register); + return (-1); + } + } + + idx = 0; + if (vie->index_register != VM_REG_LAST) { + error = vm_get_register(vm, cpuid, vie->index_register, &idx); + if (error) { + printf("verify_gla: error %d getting index reg %d\n", + error, vie->index_register); + return (-1); + } + } + + if (base + vie->scale * idx + vie->displacement != gla) { + printf("verify_gla mismatch: " + "base(0x%0lx), scale(%d), index(0x%0lx), " + "disp(0x%0lx), gla(0x%0lx)\n", + base, vie->scale, idx, vie->displacement, gla); + return (-1); + } return (0); } +#endif /* VERIFY_GLA */ int -vmm_decode_instruction(struct vie *vie) +vmm_decode_instruction(struct vm *vm, int cpuid, uint64_t gla, struct vie *vie) { + if (decode_rex(vie)) return (-1); @@ -382,11 +754,22 @@ vmm_decode_instruction(struct vie *vie) if (decode_modrm(vie)) return (-1); + if (decode_sib(vie)) + return (-1); + if (decode_displacement(vie)) return (-1); if (decode_immediate(vie)) return (-1); +#ifdef VERIFY_GLA + if (verify_gla(vm, cpuid, gla, vie)) + return (-1); +#endif + + vie->decoded = 1; /* success */ + return (0); } +#endif /* _KERNEL */ Modified: projects/bhyve/sys/amd64/vmm/vmm_lapic.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_lapic.c Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/vmm/vmm_lapic.c Wed Nov 28 00:02:17 2012 (r243640) @@ -34,12 +34,12 @@ __FBSDID("$FreeBSD$"); #include #include +#include #include #include "vmm_ipi.h" #include "vmm_lapic.h" #include "vlapic.h" -#include "vmm_instruction_emul.h" static int lapic_write(struct vlapic *vlapic, u_int offset, uint64_t val) @@ -177,64 +177,45 @@ lapic_wrmsr(struct vm *vm, int cpu, u_in } int -lapic_mmio(struct vm *vm, int cpu, u_int offset, int read, struct vie *vie) +lapic_mmio_write(void *vm, int cpu, uint64_t gpa, uint64_t wval, int size, + void *arg) { - int handled, error; - uint64_t val; + int error; + uint64_t off; struct vlapic *vlapic; - const int UNHANDLED = 0; + off = gpa - DEFAULT_APIC_BASE; + + /* + * Memory mapped local apic accesses must be 4 bytes wide and + * aligned on a 16-byte boundary. + */ + if (size != 4 || off & 0xf) + return (EINVAL); vlapic = vm_lapic(vm, cpu); + error = vlapic_op_mem_write(vlapic, off, DWORD, wval); + return (error); +} + +int +lapic_mmio_read(void *vm, int cpu, uint64_t gpa, uint64_t *rval, int size, + void *arg) +{ + int error; + uint64_t off; + struct vlapic *vlapic; - /* Only 32-bit accesses to local apic */ - if (vie->op_size != VIE_OP_SIZE_32BIT) - return (UNHANDLED); + off = gpa - DEFAULT_APIC_BASE; /* - * XXX - * The operand register in which we store the result of the - * read must be a GPR that we can modify even if the vcpu - * is "running". All the GPRs qualify except for %rsp. - * - * This is a limitation of the vm_set_register() API - * and can be fixed if necessary. + * Memory mapped local apic accesses must be 4 bytes wide and + * aligned on a 16-byte boundary. */ - if (vie->operand_register == VM_REG_GUEST_RSP) - return (UNHANDLED); - - if (read) { - if ((vie->opcode_flags & VIE_F_TO_REG) == 0) - return (UNHANDLED); - - if (vie->operand_register >= VM_REG_LAST) - return (UNHANDLED); - - handled = lapic_read(vlapic, offset, &val); - if (handled) { - error = vm_set_register(vm, cpu, vie->operand_register, - val); - if (error) - panic("lapic_mmio: error %d setting gpr %d", - error, vie->operand_register); - } - } else { - if ((vie->opcode_flags & VIE_F_FROM_REG) && - (vie->operand_register < VM_REG_LAST)) { - error = vm_get_register(vm, cpu, vie->operand_register, - &val); - if (error) { - panic("lapic_mmio: error %d getting gpr %d", - error, vie->operand_register); - } - } else if (vie->opcode_flags & VIE_F_FROM_IMM) { - val = vie->immediate; - } else { - return (UNHANDLED); - } - - handled = lapic_write(vlapic, offset, val); - } + if (size != 4 || off & 0xf) + return (EINVAL); - return (handled); + vlapic = vm_lapic(vm, cpu); + error = vlapic_op_mem_read(vlapic, off, DWORD, rval); + return (error); } Modified: projects/bhyve/sys/amd64/vmm/vmm_lapic.h ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_lapic.h Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/sys/amd64/vmm/vmm_lapic.h Wed Nov 28 00:02:17 2012 (r243640) @@ -30,13 +30,15 @@ #define _VMM_LAPIC_H_ struct vm; -struct vie; boolean_t lapic_msr(u_int num); int lapic_rdmsr(struct vm *vm, int cpu, u_int msr, uint64_t *rval); int lapic_wrmsr(struct vm *vm, int cpu, u_int msr, uint64_t wval); -int lapic_mmio(struct vm *vm, int cpu, u_int offset, int rd, struct vie *); +int lapic_mmio_read(void *vm, int cpu, uint64_t gpa, + uint64_t *rval, int size, void *arg); +int lapic_mmio_write(void *vm, int cpu, uint64_t gpa, + uint64_t wval, int size, void *arg); int lapic_timer_tick(struct vm *vm, int cpu); Modified: projects/bhyve/usr.sbin/bhyve/Makefile ============================================================================== --- projects/bhyve/usr.sbin/bhyve/Makefile Tue Nov 27 23:16:56 2012 (r243639) +++ projects/bhyve/usr.sbin/bhyve/Makefile Wed Nov 28 00:02:17 2012 (r243640) @@ -7,11 +7,14 @@ PROG= bhyve DEBUG_FLAGS= -g -O0 SRCS= acpi.c atpic.c consport.c dbgport.c elcr.c fbsdrun.c inout.c -SRCS+= instruction_emul.c ioapic.c mem.c mevent.c mptbl.c +SRCS+= ioapic.c mem.c mevent.c mptbl.c SRCS+= pci_emul.c pci_hostbridge.c pci_passthru.c pci_virtio_block.c SRCS+= pci_virtio_net.c pci_uart.c pit_8254.c pmtmr.c post.c rtc.c uart.c SRCS+= xmsr.c spinup_ap.c +.PATH: ${.CURDIR}/../../sys/amd64/vmm +SRCS+= vmm_instruction_emul.c *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 02:03:54 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FC3E8CA; Wed, 28 Nov 2012 02:03:54 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 408668FC08; Wed, 28 Nov 2012 02:03:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAS23s82009645; Wed, 28 Nov 2012 02:03:54 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAS23sO5009640; Wed, 28 Nov 2012 02:03:54 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211280203.qAS23sO5009640@svn.freebsd.org> From: Lawrence Stewart Date: Wed, 28 Nov 2012 02:03:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243643 - in projects/diffused_head: contrib/pf/man contrib/pf/pfctl include sbin/pfctl sbin/pfctl/missing share/man/man4 share/man/man5 sys/conf sys/contrib/pf sys/modules/diffuse/diff... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 02:03:54 -0000 Author: lstewart Date: Wed Nov 28 02:03:53 2012 New Revision: 243643 URL: http://svnweb.freebsd.org/changeset/base/243643 Log: Merge r240494 from head (take 2). Added: projects/diffused_head/sbin/pfctl/parse.y - copied unchanged from r240494, head/sbin/pfctl/parse.y projects/diffused_head/sbin/pfctl/pf_print_state.c - copied unchanged from r240494, head/sbin/pfctl/pf_print_state.c projects/diffused_head/sbin/pfctl/pfctl.8 - copied unchanged from r240494, head/sbin/pfctl/pfctl.8 projects/diffused_head/sbin/pfctl/pfctl.c - copied unchanged from r240494, head/sbin/pfctl/pfctl.c projects/diffused_head/sbin/pfctl/pfctl.h - copied unchanged from r240494, head/sbin/pfctl/pfctl.h projects/diffused_head/sbin/pfctl/pfctl_altq.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_altq.c projects/diffused_head/sbin/pfctl/pfctl_optimize.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_optimize.c projects/diffused_head/sbin/pfctl/pfctl_osfp.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_osfp.c projects/diffused_head/sbin/pfctl/pfctl_parser.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_parser.c projects/diffused_head/sbin/pfctl/pfctl_parser.h - copied unchanged from r240494, head/sbin/pfctl/pfctl_parser.h projects/diffused_head/sbin/pfctl/pfctl_qstats.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_qstats.c projects/diffused_head/sbin/pfctl/pfctl_radix.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_radix.c projects/diffused_head/sbin/pfctl/pfctl_table.c - copied unchanged from r240494, head/sbin/pfctl/pfctl_table.c projects/diffused_head/share/man/man4/pf.4 - copied unchanged from r240494, head/share/man/man4/pf.4 projects/diffused_head/share/man/man4/pflog.4 - copied unchanged from r240494, head/share/man/man4/pflog.4 projects/diffused_head/share/man/man4/pfsync.4 - copied unchanged from r240494, head/share/man/man4/pfsync.4 projects/diffused_head/share/man/man5/pf.conf.5 - copied unchanged from r240494, head/share/man/man5/pf.conf.5 projects/diffused_head/share/man/man5/pf.os.5 - copied unchanged from r240494, head/share/man/man5/pf.os.5 projects/diffused_head/sys/net/if_pflog.h - copied unchanged from r240494, head/sys/net/if_pflog.h projects/diffused_head/sys/net/if_pfsync.h - copied unchanged from r240494, head/sys/net/if_pfsync.h projects/diffused_head/sys/net/pf_mtag.h - copied unchanged from r240494, head/sys/net/pf_mtag.h projects/diffused_head/sys/net/pfvar.h - copied unchanged from r240494, head/sys/net/pfvar.h projects/diffused_head/sys/netpfil/ - copied from r240494, head/sys/netpfil/ projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier.h projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier_c45.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier_c45.c projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier_c45.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier_c45.h projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier_module.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier_module.h projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier_nbayes.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier_nbayes.c projects/diffused_head/sys/netpfil/ipfw/diffuse_classifier_nbayes.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_classifier_nbayes.h projects/diffused_head/sys/netpfil/ipfw/diffuse_common.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_common.h projects/diffused_head/sys/netpfil/ipfw/diffuse_export.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_export.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_iat.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_iat.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_iat.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_iat.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_iat_common.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_iat_common.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_iatbd.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_iatbd.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_iatbd.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_iatbd.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_module.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_module.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_pcnt.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_pcnt.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_pcnt.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_pcnt.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_plen.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_plen.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_plen.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_plen.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_plen_common.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_plen_common.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_plenbd.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_plenbd.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_plenbd.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_plenbd.h projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_skype.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_skype.c projects/diffused_head/sys/netpfil/ipfw/diffuse_feature_skype.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_feature_skype.h projects/diffused_head/sys/netpfil/ipfw/diffuse_flowtable.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_flowtable.c projects/diffused_head/sys/netpfil/ipfw/diffuse_private.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_private.h projects/diffused_head/sys/netpfil/ipfw/diffuse_user_compat.h - copied unchanged from r243600, projects/diffused_head/sys/netinet/ipfw/diffuse_user_compat.h projects/diffused_head/sys/netpfil/ipfw/ip_diffuse.c - copied, changed from r243600, projects/diffused_head/sys/netinet/ipfw/ip_diffuse.c Deleted: projects/diffused_head/contrib/pf/man/ projects/diffused_head/contrib/pf/pfctl/ projects/diffused_head/sbin/pfctl/missing/ projects/diffused_head/sys/contrib/pf/ projects/diffused_head/sys/netinet/ipfw/ Modified: projects/diffused_head/include/Makefile projects/diffused_head/sbin/pfctl/Makefile projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man5/Makefile projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/modules/diffuse/diffuse/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_classifier_c45/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_classifier_nbayes/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_iat/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_iatbd/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_pcnt/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_plen/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_plenbd/Makefile projects/diffused_head/sys/modules/diffuse/diffuse_feature_skype/Makefile projects/diffused_head/sys/modules/dummynet/Makefile projects/diffused_head/sys/modules/ipfw/Makefile projects/diffused_head/sys/modules/ipfw_nat/Makefile projects/diffused_head/sys/modules/pf/Makefile projects/diffused_head/sys/modules/pflog/Makefile projects/diffused_head/sys/modules/pfsync/Makefile projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/sys/netpfil/ipfw/ip_fw2.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_private.h projects/diffused_head/sys/netpfil/ipfw/ip_fw_sockopt.c projects/diffused_head/usr.sbin/authpf/Makefile projects/diffused_head/usr.sbin/ftp-proxy/ftp-proxy/Makefile Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/contrib/pf/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/conf/ (props changed) Modified: projects/diffused_head/include/Makefile ============================================================================== --- projects/diffused_head/include/Makefile Wed Nov 28 01:55:22 2012 (r243642) +++ projects/diffused_head/include/Makefile Wed Nov 28 02:03:53 2012 (r243643) @@ -186,9 +186,6 @@ copies: ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ ${DESTDIR}${INCLUDEDIR}/netinet .endif - cd ${.CURDIR}/../sys/contrib/pf/net; \ - ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ - ${DESTDIR}${INCLUDEDIR}/net cd ${.CURDIR}/../sys/crypto; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ ${DESTDIR}${INCLUDEDIR}/crypto @@ -222,7 +219,7 @@ copies: cd ${.CURDIR}/../sys/rpc; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ ${DESTDIR}${INCLUDEDIR}/rpc - cd ${.CURDIR}/../sys/netinet/ipfw; \ + cd ${.CURDIR}/../sys/netpfil/ipfw; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 diffuse_feature*.h \ ${DESTDIR}${INCLUDEDIR}/netinet/ipfw; \ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 diffuse_classifier*.h \ @@ -281,11 +278,6 @@ symlinks: ${DESTDIR}${INCLUDEDIR}/netinet; \ done .endif - cd ${.CURDIR}/../sys/contrib/pf/net; \ - for h in *.h; do \ - ln -fs ../../../sys/contrib/pf/net/$$h \ - ${DESTDIR}${INCLUDEDIR}/net; \ - done cd ${.CURDIR}/../sys/crypto; \ for h in rijndael/rijndael.h; do \ ln -fs ../../../sys/crypto/$$h \ @@ -338,12 +330,12 @@ symlinks: ln -fs ../../../sys/rpc/$$h \ ${DESTDIR}${INCLUDEDIR}/rpc; \ done - cd ${.CURDIR}/../sys/netinet/ipfw; \ + cd ${.CURDIR}/../sys/netpfil/ipfw; \ for h in diffuse_classifier*.h diffuse_feature*.h; do \ - ln -fs ../../../../sys/netinet/ipfw/$$h \ + ln -fs ../../../../sys/netpfil/ipfw/$$h \ ${DESTDIR}${INCLUDEDIR}/netinet/ipfw; \ done; \ - ln -fs ../../../../sys/netinet/ipfw/diffuse_common.h \ + ln -fs ../../../../sys/netpfil/ipfw/diffuse_common.h \ ${DESTDIR}${INCLUDEDIR}/netinet/ipfw; \ - ln -fs ../../../../sys/netinet/ipfw/diffuse_user_compat.h \ + ln -fs ../../../../sys/netpfil/ipfw/diffuse_user_compat.h \ ${DESTDIR}${INCLUDEDIR}/netinet/ipfw Modified: projects/diffused_head/sbin/pfctl/Makefile ============================================================================== --- projects/diffused_head/sbin/pfctl/Makefile Wed Nov 28 01:55:22 2012 (r243642) +++ projects/diffused_head/sbin/pfctl/Makefile Wed Nov 28 02:03:53 2012 (r243643) @@ -1,11 +1,10 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/pf/pfctl -.PATH: ${.CURDIR}/../../sys/contrib/pf/net -.PATH: ${.CURDIR}/../../contrib/pf/man +# pf_ruleset.c is shared between kernel and pfctl +.PATH: ${.CURDIR}/../../sys/netpfil/pf PROG= pfctl -MAN= pfctl.8 pf.4 pflog.4 pfsync.4 pf.conf.5 pf.os.5 +MAN= pfctl.8 SRCS = pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c SRCS+= pfctl_osfp.c pfctl_radix.c pfctl_table.c pfctl_qstats.c @@ -14,11 +13,8 @@ SRCS+= pf_ruleset.c WARNS?= 2 CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized -CFLAGS+= -Wstrict-prototypes -I${.CURDIR}/../../contrib/pf/pfctl - -# XXX ALTQ -CFLAGS+= -DENABLE_ALTQ -#CFLAGS+= -I${.CURDIR}/missing +CFLAGS+= -Wstrict-prototypes +CFLAGS+= -DENABLE_ALTQ -I${.CURDIR} YFLAGS= Copied: projects/diffused_head/sbin/pfctl/parse.y (from r240494, head/sbin/pfctl/parse.y) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/diffused_head/sbin/pfctl/parse.y Wed Nov 28 02:03:53 2012 (r243643, copy of r240494, head/sbin/pfctl/parse.y) @@ -0,0 +1,6038 @@ +/* $OpenBSD: parse.y,v 1.554 2008/10/17 12:59:53 henning Exp $ */ + +/* + * Copyright (c) 2001 Markus Friedl. All rights reserved. + * Copyright (c) 2001 Daniel Hartmeier. All rights reserved. + * Copyright (c) 2001 Theo de Raadt. All rights reserved. + * Copyright (c) 2002,2003 Henning Brauer. 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 ``AS IS'' AND ANY EXPRESS OR + * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES + * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, + * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT + * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF + * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ +%{ +#include +__FBSDID("$FreeBSD$"); + +#include +#include +#include +#ifdef __FreeBSD__ +#include +#endif +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "pfctl_parser.h" +#include "pfctl.h" + +static struct pfctl *pf = NULL; +static int debug = 0; +static int rulestate = 0; +static u_int16_t returnicmpdefault = + (ICMP_UNREACH << 8) | ICMP_UNREACH_PORT; +static u_int16_t returnicmp6default = + (ICMP6_DST_UNREACH << 8) | ICMP6_DST_UNREACH_NOPORT; +static int blockpolicy = PFRULE_DROP; +static int require_order = 1; +static int default_statelock; + +TAILQ_HEAD(files, file) files = TAILQ_HEAD_INITIALIZER(files); +static struct file { + TAILQ_ENTRY(file) entry; + FILE *stream; + char *name; + int lineno; + int errors; +} *file; +struct file *pushfile(const char *, int); +int popfile(void); +int check_file_secrecy(int, const char *); +int yyparse(void); +int yylex(void); +int yyerror(const char *, ...); +int kw_cmp(const void *, const void *); +int lookup(char *); +int lgetc(int); +int lungetc(int); +int findeol(void); + +TAILQ_HEAD(symhead, sym) symhead = TAILQ_HEAD_INITIALIZER(symhead); +struct sym { + TAILQ_ENTRY(sym) entry; + int used; + int persist; + char *nam; + char *val; +}; +int symset(const char *, const char *, int); +char *symget(const char *); + +int atoul(char *, u_long *); + +enum { + PFCTL_STATE_NONE, + PFCTL_STATE_OPTION, + PFCTL_STATE_SCRUB, + PFCTL_STATE_QUEUE, + PFCTL_STATE_NAT, + PFCTL_STATE_FILTER +}; + +struct node_proto { + u_int8_t proto; + struct node_proto *next; + struct node_proto *tail; +}; + +struct node_port { + u_int16_t port[2]; + u_int8_t op; + struct node_port *next; + struct node_port *tail; +}; + +struct node_uid { + uid_t uid[2]; + u_int8_t op; + struct node_uid *next; + struct node_uid *tail; +}; + +struct node_gid { + gid_t gid[2]; + u_int8_t op; + struct node_gid *next; + struct node_gid *tail; +}; + +struct node_icmp { + u_int8_t code; + u_int8_t type; + u_int8_t proto; + struct node_icmp *next; + struct node_icmp *tail; +}; + +enum { PF_STATE_OPT_MAX, PF_STATE_OPT_NOSYNC, PF_STATE_OPT_SRCTRACK, + PF_STATE_OPT_MAX_SRC_STATES, PF_STATE_OPT_MAX_SRC_CONN, + PF_STATE_OPT_MAX_SRC_CONN_RATE, PF_STATE_OPT_MAX_SRC_NODES, + PF_STATE_OPT_OVERLOAD, PF_STATE_OPT_STATELOCK, + PF_STATE_OPT_TIMEOUT, PF_STATE_OPT_SLOPPY, }; + +enum { PF_SRCTRACK_NONE, PF_SRCTRACK, PF_SRCTRACK_GLOBAL, PF_SRCTRACK_RULE }; + +struct node_state_opt { + int type; + union { + u_int32_t max_states; + u_int32_t max_src_states; + u_int32_t max_src_conn; + struct { + u_int32_t limit; + u_int32_t seconds; + } max_src_conn_rate; + struct { + u_int8_t flush; + char tblname[PF_TABLE_NAME_SIZE]; + } overload; + u_int32_t max_src_nodes; + u_int8_t src_track; + u_int32_t statelock; + struct { + int number; + u_int32_t seconds; + } timeout; + } data; + struct node_state_opt *next; + struct node_state_opt *tail; +}; + +struct peer { + struct node_host *host; + struct node_port *port; +}; + +struct node_queue { + char queue[PF_QNAME_SIZE]; + char parent[PF_QNAME_SIZE]; + char ifname[IFNAMSIZ]; + int scheduler; + struct node_queue *next; + struct node_queue *tail; +} *queues = NULL; + +struct node_qassign { + char *qname; + char *pqname; +}; + +struct filter_opts { + int marker; +#define FOM_FLAGS 0x01 +#define FOM_ICMP 0x02 +#define FOM_TOS 0x04 +#define FOM_KEEP 0x08 +#define FOM_SRCTRACK 0x10 + struct node_uid *uid; + struct node_gid *gid; + struct { + u_int8_t b1; + u_int8_t b2; + u_int16_t w; + u_int16_t w2; + } flags; + struct node_icmp *icmpspec; + u_int32_t tos; + u_int32_t prob; + struct { + int action; + struct node_state_opt *options; + } keep; + int fragment; + int allowopts; + char *label; + struct node_qassign queues; + char *tag; + char *match_tag; + u_int8_t match_tag_not; + u_int rtableid; + struct { + struct node_host *addr; + u_int16_t port; + } divert; +} filter_opts; + +struct antispoof_opts { + char *label; + u_int rtableid; +} antispoof_opts; + +struct scrub_opts { + int marker; +#define SOM_MINTTL 0x01 +#define SOM_MAXMSS 0x02 +#define SOM_FRAGCACHE 0x04 +#define SOM_SETTOS 0x08 + int nodf; + int minttl; + int maxmss; + int settos; + int fragcache; + int randomid; + int reassemble_tcp; + char *match_tag; + u_int8_t match_tag_not; + u_int rtableid; +} scrub_opts; + +struct queue_opts { + int marker; +#define QOM_BWSPEC 0x01 +#define QOM_SCHEDULER 0x02 +#define QOM_PRIORITY 0x04 +#define QOM_TBRSIZE 0x08 +#define QOM_QLIMIT 0x10 + struct node_queue_bw queue_bwspec; + struct node_queue_opt scheduler; + int priority; + int tbrsize; + int qlimit; +} queue_opts; + +struct table_opts { + int flags; + int init_addr; + struct node_tinithead init_nodes; +} table_opts; + +struct pool_opts { + int marker; +#define POM_TYPE 0x01 +#define POM_STICKYADDRESS 0x02 + u_int8_t opts; + int type; + int staticport; + struct pf_poolhashkey *key; + +} pool_opts; + + +struct node_hfsc_opts hfsc_opts; +struct node_state_opt *keep_state_defaults = NULL; + +int disallow_table(struct node_host *, const char *); +int disallow_urpf_failed(struct node_host *, const char *); +int disallow_alias(struct node_host *, const char *); +int rule_consistent(struct pf_rule *, int); +int filter_consistent(struct pf_rule *, int); +int nat_consistent(struct pf_rule *); +int rdr_consistent(struct pf_rule *); +int process_tabledef(char *, struct table_opts *); +void expand_label_str(char *, size_t, const char *, const char *); +void expand_label_if(const char *, char *, size_t, const char *); +void expand_label_addr(const char *, char *, size_t, u_int8_t, + struct node_host *); +void expand_label_port(const char *, char *, size_t, + struct node_port *); +void expand_label_proto(const char *, char *, size_t, u_int8_t); +void expand_label_nr(const char *, char *, size_t); +void expand_label(char *, size_t, const char *, u_int8_t, + struct node_host *, struct node_port *, struct node_host *, + struct node_port *, u_int8_t); +void expand_rule(struct pf_rule *, struct node_if *, + struct node_host *, struct node_proto *, struct node_os *, + struct node_host *, struct node_port *, struct node_host *, + struct node_port *, struct node_uid *, struct node_gid *, + struct node_icmp *, const char *); +int expand_altq(struct pf_altq *, struct node_if *, + struct node_queue *, struct node_queue_bw bwspec, + struct node_queue_opt *); +int expand_queue(struct pf_altq *, struct node_if *, + struct node_queue *, struct node_queue_bw, + struct node_queue_opt *); +int expand_skip_interface(struct node_if *); + +int check_rulestate(int); +int getservice(char *); +int rule_label(struct pf_rule *, char *); +int rt_tableid_max(void); + +void mv_rules(struct pf_ruleset *, struct pf_ruleset *); +void decide_address_family(struct node_host *, sa_family_t *); +void remove_invalid_hosts(struct node_host **, sa_family_t *); +int invalid_redirect(struct node_host *, sa_family_t); +u_int16_t parseicmpspec(char *, sa_family_t); + +TAILQ_HEAD(loadanchorshead, loadanchors) + loadanchorshead = TAILQ_HEAD_INITIALIZER(loadanchorshead); + +struct loadanchors { + TAILQ_ENTRY(loadanchors) entries; + char *anchorname; + char *filename; +}; + +typedef struct { + union { + int64_t number; + double probability; + int i; + char *string; + u_int rtableid; + struct { + u_int8_t b1; + u_int8_t b2; + u_int16_t w; + u_int16_t w2; + } b; + struct range { + int a; + int b; + int t; + } range; + struct node_if *interface; + struct node_proto *proto; + struct node_icmp *icmp; + struct node_host *host; + struct node_os *os; + struct node_port *port; + struct node_uid *uid; + struct node_gid *gid; + struct node_state_opt *state_opt; + struct peer peer; + struct { + struct peer src, dst; + struct node_os *src_os; + } fromto; + struct { + struct node_host *host; + u_int8_t rt; + u_int8_t pool_opts; + sa_family_t af; + struct pf_poolhashkey *key; + } route; + struct redirection { + struct node_host *host; + struct range rport; + } *redirection; + struct { + int action; + struct node_state_opt *options; + } keep_state; + struct { + u_int8_t log; + u_int8_t logif; + u_int8_t quick; + } logquick; + struct { + int neg; + char *name; + } tagged; + struct pf_poolhashkey *hashkey; + struct node_queue *queue; + struct node_queue_opt queue_options; + struct node_queue_bw queue_bwspec; + struct node_qassign qassign; + struct filter_opts filter_opts; + struct antispoof_opts antispoof_opts; + struct queue_opts queue_opts; + struct scrub_opts scrub_opts; + struct table_opts table_opts; + struct pool_opts pool_opts; + struct node_hfsc_opts hfsc_opts; + } v; + int lineno; +} YYSTYPE; + +#define PPORT_RANGE 1 +#define PPORT_STAR 2 +int parseport(char *, struct range *r, int); + +#define DYNIF_MULTIADDR(addr) ((addr).type == PF_ADDR_DYNIFTL && \ + (!((addr).iflags & PFI_AFLAG_NOALIAS) || \ + !isdigit((addr).v.ifname[strlen((addr).v.ifname)-1]))) + +%} + +%token PASS BLOCK SCRUB RETURN IN OS OUT LOG QUICK ON FROM TO FLAGS +%token RETURNRST RETURNICMP RETURNICMP6 PROTO INET INET6 ALL ANY ICMPTYPE +%token ICMP6TYPE CODE KEEP MODULATE STATE PORT RDR NAT BINAT ARROW NODF +%token MINTTL ERROR ALLOWOPTS FASTROUTE FILENAME ROUTETO DUPTO REPLYTO NO LABEL +%token NOROUTE URPFFAILED FRAGMENT USER GROUP MAXMSS MAXIMUM TTL TOS DROP TABLE +%token REASSEMBLE FRAGDROP FRAGCROP ANCHOR NATANCHOR RDRANCHOR BINATANCHOR +%token SET OPTIMIZATION TIMEOUT LIMIT LOGINTERFACE BLOCKPOLICY RANDOMID +%token REQUIREORDER SYNPROXY FINGERPRINTS NOSYNC DEBUG SKIP HOSTID +%token ANTISPOOF FOR INCLUDE +%token BITMASK RANDOM SOURCEHASH ROUNDROBIN STATICPORT PROBABILITY +%token ALTQ CBQ PRIQ HFSC BANDWIDTH TBRSIZE LINKSHARE REALTIME UPPERLIMIT +%token QUEUE PRIORITY QLIMIT RTABLE +%token LOAD RULESET_OPTIMIZATION +%token STICKYADDRESS MAXSRCSTATES MAXSRCNODES SOURCETRACK GLOBAL RULE +%token MAXSRCCONN MAXSRCCONNRATE OVERLOAD FLUSH SLOPPY +%token TAGGED TAG IFBOUND FLOATING STATEPOLICY STATEDEFAULTS ROUTE SETTOS +%token DIVERTTO DIVERTREPLY +%token STRING +%token NUMBER +%token PORTBINARY +%type interface if_list if_item_not if_item +%type number icmptype icmp6type uid gid +%type tos not yesno +%type probability +%type no dir af fragcache optimizer +%type sourcetrack flush unaryop statelock +%type action nataction natpasslog scrubaction +%type flags flag blockspec +%type portplain portstar portrange +%type hashkey +%type proto proto_list proto_item +%type protoval +%type icmpspec +%type icmp_list icmp_item +%type icmp6_list icmp6_item +%type reticmpspec reticmp6spec +%type fromto +%type ipportspec from to +%type ipspec toipspec xhost host dynaddr host_list +%type redir_host_list redirspec +%type route_host route_host_list routespec +%type os xos os_list +%type portspec port_list port_item +%type uids uid_list uid_item +%type gids gid_list gid_item +%type route +%type redirection redirpool +%type label stringall tag anchorname +%type string varstring numberstring +%type keep +%type state_opt_spec state_opt_list state_opt_item +%type logquick quick log logopts logopt +%type antispoof_ifspc antispoof_iflst antispoof_if +%type qname +%type qassign qassign_list qassign_item +%type scheduler +%type cbqflags_list cbqflags_item +%type priqflags_list priqflags_item +%type hfscopts_list hfscopts_item hfsc_opts +%type bandwidth +%type filter_opts filter_opt filter_opts_l +%type antispoof_opts antispoof_opt antispoof_opts_l +%type queue_opts queue_opt queue_opts_l +%type scrub_opts scrub_opt scrub_opts_l +%type table_opts table_opt table_opts_l +%type pool_opts pool_opt pool_opts_l +%type tagged +%type rtable +%% + +ruleset : /* empty */ + | ruleset include '\n' + | ruleset '\n' + | ruleset option '\n' + | ruleset scrubrule '\n' + | ruleset natrule '\n' + | ruleset binatrule '\n' + | ruleset pfrule '\n' + | ruleset anchorrule '\n' + | ruleset loadrule '\n' + | ruleset altqif '\n' + | ruleset queuespec '\n' + | ruleset varset '\n' + | ruleset antispoof '\n' + | ruleset tabledef '\n' + | '{' fakeanchor '}' '\n'; + | ruleset error '\n' { file->errors++; } + ; + +include : INCLUDE STRING { + struct file *nfile; + + if ((nfile = pushfile($2, 0)) == NULL) { + yyerror("failed to include file %s", $2); + free($2); + YYERROR; + } + free($2); + + file = nfile; + lungetc('\n'); + } + ; + +/* + * apply to previouslys specified rule: must be careful to note + * what that is: pf or nat or binat or rdr + */ +fakeanchor : fakeanchor '\n' + | fakeanchor anchorrule '\n' + | fakeanchor binatrule '\n' + | fakeanchor natrule '\n' + | fakeanchor pfrule '\n' + | fakeanchor error '\n' + ; + +optimizer : string { + if (!strcmp($1, "none")) + $$ = 0; + else if (!strcmp($1, "basic")) + $$ = PF_OPTIMIZE_BASIC; + else if (!strcmp($1, "profile")) + $$ = PF_OPTIMIZE_BASIC | PF_OPTIMIZE_PROFILE; + else { + yyerror("unknown ruleset-optimization %s", $1); + YYERROR; + } + } + ; + +option : SET OPTIMIZATION STRING { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_optimization(pf, $3) != 0) { + yyerror("unknown optimization %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET RULESET_OPTIMIZATION optimizer { + if (!(pf->opts & PF_OPT_OPTIMIZE)) { + pf->opts |= PF_OPT_OPTIMIZE; + pf->optimize = $3; + } + } + | SET TIMEOUT timeout_spec + | SET TIMEOUT '{' optnl timeout_list '}' + | SET LIMIT limit_spec + | SET LIMIT '{' optnl limit_list '}' + | SET LOGINTERFACE stringall { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_logif(pf, $3) != 0) { + yyerror("error setting loginterface %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET HOSTID number { + if ($3 == 0 || $3 > UINT_MAX) { + yyerror("hostid must be non-zero"); + YYERROR; + } + if (pfctl_set_hostid(pf, $3) != 0) { + yyerror("error setting hostid %08x", $3); + YYERROR; + } + } + | SET BLOCKPOLICY DROP { + if (pf->opts & PF_OPT_VERBOSE) + printf("set block-policy drop\n"); + if (check_rulestate(PFCTL_STATE_OPTION)) + YYERROR; + blockpolicy = PFRULE_DROP; + } + | SET BLOCKPOLICY RETURN { + if (pf->opts & PF_OPT_VERBOSE) + printf("set block-policy return\n"); + if (check_rulestate(PFCTL_STATE_OPTION)) + YYERROR; + blockpolicy = PFRULE_RETURN; + } + | SET REQUIREORDER yesno { + if (pf->opts & PF_OPT_VERBOSE) + printf("set require-order %s\n", + $3 == 1 ? "yes" : "no"); + require_order = $3; + } + | SET FINGERPRINTS STRING { + if (pf->opts & PF_OPT_VERBOSE) + printf("set fingerprints \"%s\"\n", $3); + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (!pf->anchor->name[0]) { + if (pfctl_file_fingerprints(pf->dev, + pf->opts, $3)) { + yyerror("error loading " + "fingerprints %s", $3); + free($3); + YYERROR; + } + } + free($3); + } + | SET STATEPOLICY statelock { + if (pf->opts & PF_OPT_VERBOSE) + switch ($3) { + case 0: + printf("set state-policy floating\n"); + break; + case PFRULE_IFBOUND: + printf("set state-policy if-bound\n"); + break; + } + default_statelock = $3; + } + | SET DEBUG STRING { + if (check_rulestate(PFCTL_STATE_OPTION)) { + free($3); + YYERROR; + } + if (pfctl_set_debug(pf, $3) != 0) { + yyerror("error setting debuglevel %s", $3); + free($3); + YYERROR; + } + free($3); + } + | SET SKIP interface { + if (expand_skip_interface($3) != 0) { + yyerror("error setting skip interface(s)"); + YYERROR; + } + } + | SET STATEDEFAULTS state_opt_list { + if (keep_state_defaults != NULL) { + yyerror("cannot redefine state-defaults"); + YYERROR; + } + keep_state_defaults = $3; + } + ; + +stringall : STRING { $$ = $1; } + | ALL { + if (($$ = strdup("all")) == NULL) { + err(1, "stringall: strdup"); + } + } + ; + +string : STRING string { + if (asprintf(&$$, "%s %s", $1, $2) == -1) + err(1, "string: asprintf"); + free($1); + free($2); + } + | STRING + ; + +varstring : numberstring varstring { + if (asprintf(&$$, "%s %s", $1, $2) == -1) + err(1, "string: asprintf"); + free($1); + free($2); + } + | numberstring + ; + +numberstring : NUMBER { + char *s; + if (asprintf(&s, "%lld", (long long)$1) == -1) { + yyerror("string: asprintf"); + YYERROR; + } + $$ = s; + } + | STRING + ; + +varset : STRING '=' varstring { + if (pf->opts & PF_OPT_VERBOSE) + printf("%s = \"%s\"\n", $1, $3); + if (symset($1, $3, 0) == -1) + err(1, "cannot store variable %s", $1); + free($1); + free($3); + } + ; + +anchorname : STRING { $$ = $1; } + | /* empty */ { $$ = NULL; } + ; + +pfa_anchorlist : /* empty */ + | pfa_anchorlist '\n' + | pfa_anchorlist pfrule '\n' + | pfa_anchorlist anchorrule '\n' + ; + +pfa_anchor : '{' + { + char ta[PF_ANCHOR_NAME_SIZE]; + struct pf_ruleset *rs; + + /* steping into a brace anchor */ + pf->asd++; + pf->bn++; + pf->brace = 1; + + /* create a holding ruleset in the root */ + snprintf(ta, PF_ANCHOR_NAME_SIZE, "_%d", pf->bn); + rs = pf_find_or_create_ruleset(ta); + if (rs == NULL) + err(1, "pfa_anchor: pf_find_or_create_ruleset"); + pf->astack[pf->asd] = rs->anchor; + pf->anchor = rs->anchor; + } '\n' pfa_anchorlist '}' + { + pf->alast = pf->anchor; + pf->asd--; + pf->anchor = pf->astack[pf->asd]; + } + | /* empty */ + ; + +anchorrule : ANCHOR anchorname dir quick interface af proto fromto + filter_opts pfa_anchor + { + struct pf_rule r; + struct node_proto *proto; + + if (check_rulestate(PFCTL_STATE_FILTER)) { + if ($2) + free($2); + YYERROR; + } + + if ($2 && ($2[0] == '_' || strstr($2, "/_") != NULL)) { + free($2); + yyerror("anchor names beginning with '_' " + "are reserved for internal use"); + YYERROR; + } + + memset(&r, 0, sizeof(r)); + if (pf->astack[pf->asd + 1]) { + /* move inline rules into relative location */ + pf_anchor_setup(&r, + &pf->astack[pf->asd]->ruleset, + $2 ? $2 : pf->alast->name); + + if (r.anchor == NULL) + err(1, "anchorrule: unable to " + "create ruleset"); + + if (pf->alast != r.anchor) { + if (r.anchor->match) { + yyerror("inline anchor '%s' " + "already exists", + r.anchor->name); + YYERROR; + } + mv_rules(&pf->alast->ruleset, + &r.anchor->ruleset); + } + pf_remove_if_empty_ruleset(&pf->alast->ruleset); + pf->alast = r.anchor; + } else { + if (!$2) { + yyerror("anchors without explicit " + "rules must specify a name"); + YYERROR; + } + } + r.direction = $3; + r.quick = $4.quick; + r.af = $6; + r.prob = $9.prob; + r.rtableid = $9.rtableid; + + if ($9.tag) + if (strlcpy(r.tagname, $9.tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + if ($9.match_tag) + if (strlcpy(r.match_tagname, $9.match_tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + r.match_tag_not = $9.match_tag_not; + if (rule_label(&r, $9.label)) + YYERROR; + free($9.label); + r.flags = $9.flags.b1; + r.flagset = $9.flags.b2; + if (($9.flags.b1 & $9.flags.b2) != $9.flags.b1) { + yyerror("flags always false"); + YYERROR; + } + if ($9.flags.b1 || $9.flags.b2 || $8.src_os) { + for (proto = $7; proto != NULL && + proto->proto != IPPROTO_TCP; + proto = proto->next) + ; /* nothing */ + if (proto == NULL && $7 != NULL) { + if ($9.flags.b1 || $9.flags.b2) + yyerror( + "flags only apply to tcp"); + if ($8.src_os) + yyerror( + "OS fingerprinting only " + "applies to tcp"); + YYERROR; + } + } + + r.tos = $9.tos; + + if ($9.keep.action) { + yyerror("cannot specify state handling " + "on anchors"); + YYERROR; + } + + if ($9.match_tag) + if (strlcpy(r.match_tagname, $9.match_tag, + PF_TAG_NAME_SIZE) >= PF_TAG_NAME_SIZE) { + yyerror("tag too long, max %u chars", + PF_TAG_NAME_SIZE - 1); + YYERROR; + } + r.match_tag_not = $9.match_tag_not; + + decide_address_family($8.src.host, &r.af); + decide_address_family($8.dst.host, &r.af); + + expand_rule(&r, $5, NULL, $7, $8.src_os, + $8.src.host, $8.src.port, $8.dst.host, $8.dst.port, + $9.uid, $9.gid, $9.icmpspec, + pf->astack[pf->asd + 1] ? pf->alast->name : $2); + free($2); + pf->astack[pf->asd + 1] = NULL; + } + | NATANCHOR string interface af proto fromto rtable { + struct pf_rule r; + + if (check_rulestate(PFCTL_STATE_NAT)) { + free($2); + YYERROR; + } + + memset(&r, 0, sizeof(r)); + r.action = PF_NAT; + r.af = $4; + r.rtableid = $7; + + decide_address_family($6.src.host, &r.af); + decide_address_family($6.dst.host, &r.af); + + expand_rule(&r, $3, NULL, $5, $6.src_os, + $6.src.host, $6.src.port, $6.dst.host, $6.dst.port, + 0, 0, 0, $2); + free($2); + } *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 03:04:41 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B5722ED6; Wed, 28 Nov 2012 03:04:41 +0000 (UTC) (envelope-from lstewart@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 8F85C8FC16; Wed, 28 Nov 2012 03:04:41 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAS34fEL021345; Wed, 28 Nov 2012 03:04:41 GMT (envelope-from lstewart@svn.freebsd.org) Received: (from lstewart@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAS34ef7021322; Wed, 28 Nov 2012 03:04:40 GMT (envelope-from lstewart@svn.freebsd.org) Message-Id: <201211280304.qAS34ef7021322@svn.freebsd.org> From: Lawrence Stewart Date: Wed, 28 Nov 2012 03:04:40 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243646 - in projects/diffused_head: . bin/date bin/dd bin/df bin/ed bin/getfacl bin/ln bin/ls bin/mv bin/pax bin/ps bin/rcp bin/rm bin/setfacl bin/sh cddl/contrib/opensolaris/cmd/zfs c... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 03:04:41 -0000 Author: lstewart Date: Wed Nov 28 03:04:38 2012 New Revision: 243646 URL: http://svnweb.freebsd.org/changeset/base/243646 Log: Merge revs 240494:243643 from head. Added: projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 - copied unchanged from r243643, head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.7 projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ - copied from r243643, head/cddl/contrib/opensolaris/lib/libdtrace/powerpc/ projects/diffused_head/contrib/atf/FREEBSD-Xlist - copied unchanged from r243643, head/contrib/atf/FREEBSD-Xlist projects/diffused_head/contrib/atf/FREEBSD-upgrade - copied unchanged from r243643, head/contrib/atf/FREEBSD-upgrade - copied from r243643, head/contrib/bmake/ projects/diffused_head/contrib/dialog/samples/dft-cancel - copied unchanged from r243643, head/contrib/dialog/samples/dft-cancel projects/diffused_head/contrib/dialog/samples/dft-extra - copied unchanged from r243643, head/contrib/dialog/samples/dft-extra projects/diffused_head/contrib/dialog/samples/dft-help - copied unchanged from r243643, head/contrib/dialog/samples/dft-help projects/diffused_head/contrib/dialog/samples/dft-no - copied unchanged from r243643, head/contrib/dialog/samples/dft-no projects/diffused_head/contrib/dialog/samples/fselect0 - copied unchanged from r243643, head/contrib/dialog/samples/fselect0 projects/diffused_head/contrib/dialog/samples/with-dquotes - copied unchanged from r243643, head/contrib/dialog/samples/with-dquotes projects/diffused_head/contrib/dialog/samples/with-squotes - copied unchanged from r243643, head/contrib/dialog/samples/with-squotes projects/diffused_head/contrib/libc++/CREDITS.TXT - copied unchanged from r243643, head/contrib/libc++/CREDITS.TXT projects/diffused_head/contrib/libc++/LICENSE.TXT - copied unchanged from r243643, head/contrib/libc++/LICENSE.TXT projects/diffused_head/contrib/libc-pwcache/ - copied from r243643, head/contrib/libc-pwcache/ projects/diffused_head/contrib/libpcap/pcap-canusb-linux.c - copied unchanged from r243643, head/contrib/libpcap/pcap-canusb-linux.c projects/diffused_head/contrib/libpcap/pcap-canusb-linux.h - copied unchanged from r243643, head/contrib/libpcap/pcap-canusb-linux.h projects/diffused_head/contrib/libpcap/tests/ - copied from r243643, head/contrib/libpcap/tests/ projects/diffused_head/contrib/mdocml/ - copied from r243643, head/contrib/mdocml/ projects/diffused_head/contrib/tcpdump/print-pfsync.c - copied unchanged from r243643, head/contrib/tcpdump/print-pfsync.c projects/diffused_head/contrib/tcpdump/print-tipc.c - copied unchanged from r243643, head/contrib/tcpdump/print-tipc.c projects/diffused_head/etc/atf/ - copied from r243643, head/etc/atf/ projects/diffused_head/lib/atf/ - copied from r243643, head/lib/atf/ projects/diffused_head/lib/libc/gen/waitid.c - copied unchanged from r243643, head/lib/libc/gen/waitid.c projects/diffused_head/lib/libcrypt/tests/ - copied from r243643, head/lib/libcrypt/tests/ projects/diffused_head/lib/libmandoc/ - copied from r243643, head/lib/libmandoc/ projects/diffused_head/lib/libpmc/pmc.sandybridgexeon.3 - copied unchanged from r243643, head/lib/libpmc/pmc.sandybridgexeon.3 projects/diffused_head/lib/libutil/pw_util.3 - copied unchanged from r243643, head/lib/libutil/pw_util.3 projects/diffused_head/libexec/atf/ - copied from r243643, head/libexec/atf/ projects/diffused_head/libexec/rpc.rusersd/extern.h - copied unchanged from r243643, head/libexec/rpc.rusersd/extern.h projects/diffused_head/release/doc/de_DE.ISO8859-1/early-adopter/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/early-adopter/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/errata/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/errata/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/common/dev.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/common/intro.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/i386/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/alpha/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/abstract.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/artheader.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/install.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/install.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/layout.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/layout.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/trouble.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/i386/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/i386/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/ia64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/pc98/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/readme/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/readme/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/common/new.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml - copied unchanged from r243643, head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.xml projects/diffused_head/release/doc/de_DE.ISO8859-1/share/xml/ - copied from r243643, head/release/doc/de_DE.ISO8859-1/share/xml/ projects/diffused_head/release/doc/en_US.ISO8859-1/errata/article.xml - copied unchanged from r243643, head/release/doc/en_US.ISO8859-1/errata/article.xml projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.xml - copied unchanged from r243643, head/release/doc/en_US.ISO8859-1/hardware/article.xml projects/diffused_head/release/doc/en_US.ISO8859-1/readme/article.xml - copied unchanged from r243643, head/release/doc/en_US.ISO8859-1/readme/article.xml projects/diffused_head/release/doc/en_US.ISO8859-1/relnotes/article.xml - copied unchanged from r243643, head/release/doc/en_US.ISO8859-1/relnotes/article.xml projects/diffused_head/release/doc/en_US.ISO8859-1/share/xml/ - copied from r243643, head/release/doc/en_US.ISO8859-1/share/xml/ projects/diffused_head/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/early-adopter/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/errata/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/errata/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/install.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/install.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/layout.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/i386/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml - copied unchanged from r243643, head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.xml projects/diffused_head/release/doc/fr_FR.ISO8859-1/share/xml/ - copied from r243643, head/release/doc/fr_FR.ISO8859-1/share/xml/ projects/diffused_head/release/doc/ja_JP.eucJP/errata/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/errata/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/alpha/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/alpha/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/amd64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/amd64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/artheader.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/common/artheader.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/dev.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/common/dev.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/intro.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/common/intro.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/i386/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/i386/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/ia64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/ia64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/pc98/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/pc98/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/sparc64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/alpha/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/amd64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/common/new.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/common/new.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/i386/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/i386/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/ia64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/pc98/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml - copied unchanged from r243643, head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.xml projects/diffused_head/release/doc/ja_JP.eucJP/share/xml/ - copied from r243643, head/release/doc/ja_JP.eucJP/share/xml/ projects/diffused_head/release/doc/ru_RU.KOI8-R/errata/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/errata/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/common/dev.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/common/intro.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/i386/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/alpha/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/amd64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/abstract.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/artheader.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/install.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/install.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/layout.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/layout.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/trouble.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/i386/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/i386/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/ia64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/pc98/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/readme/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/readme/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/common/new.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml - copied unchanged from r243643, head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.xml projects/diffused_head/release/doc/ru_RU.KOI8-R/share/xml/ - copied from r243643, head/release/doc/ru_RU.KOI8-R/share/xml/ projects/diffused_head/release/doc/share/xml/ - copied from r243643, head/release/doc/share/xml/ projects/diffused_head/release/doc/zh_CN.GB2312/errata/article.xml - copied unchanged from r243643, head/release/doc/zh_CN.GB2312/errata/article.xml projects/diffused_head/release/doc/zh_CN.GB2312/hardware/article.xml - copied unchanged from r243643, head/release/doc/zh_CN.GB2312/hardware/article.xml projects/diffused_head/release/doc/zh_CN.GB2312/readme/article.xml - copied unchanged from r243643, head/release/doc/zh_CN.GB2312/readme/article.xml projects/diffused_head/release/doc/zh_CN.GB2312/relnotes/article.xml - copied unchanged from r243643, head/release/doc/zh_CN.GB2312/relnotes/article.xml projects/diffused_head/release/doc/zh_CN.GB2312/share/xml/ - copied from r243643, head/release/doc/zh_CN.GB2312/share/xml/ projects/diffused_head/sbin/mount_fusefs/ - copied from r243643, head/sbin/mount_fusefs/ projects/diffused_head/sbin/nvmecontrol/ - copied from r243643, head/sbin/nvmecontrol/ projects/diffused_head/share/atf/ - copied from r243643, head/share/atf/ projects/diffused_head/share/doc/atf/ - copied from r243643, head/share/doc/atf/ projects/diffused_head/share/examples/atf/ - copied from r243643, head/share/examples/atf/ projects/diffused_head/share/man/man4/nvd.4 - copied unchanged from r243643, head/share/man/man4/nvd.4 projects/diffused_head/share/man/man4/nvme.4 - copied unchanged from r243643, head/share/man/man4/nvme.4 projects/diffused_head/share/man/man4/virtio_scsi.4 - copied unchanged from r243643, head/share/man/man4/virtio_scsi.4 projects/diffused_head/share/mk/atf.test.mk - copied unchanged from r243643, head/share/mk/atf.test.mk projects/diffused_head/share/mk/bsd.progs.mk - copied unchanged from r243643, head/share/mk/bsd.progs.mk projects/diffused_head/share/mk/bsd.test.mk - copied unchanged from r243643, head/share/mk/bsd.test.mk projects/diffused_head/share/syscons/keymaps/danish.iso.macbook.kbd - copied unchanged from r243643, head/share/syscons/keymaps/danish.iso.macbook.kbd projects/diffused_head/share/xml/ - copied from r243643, head/share/xml/ projects/diffused_head/share/xsl/ - copied from r243643, head/share/xsl/ projects/diffused_head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c - copied unchanged from r243643, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/diffused_head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c - copied unchanged from r243643, head/sys/arm/broadcom/bcm2835/bcm2835_sdhci.c projects/diffused_head/sys/arm/conf/AC100 - copied unchanged from r243643, head/sys/arm/conf/AC100 projects/diffused_head/sys/arm/conf/Makefile - copied unchanged from r243643, head/sys/arm/conf/Makefile projects/diffused_head/sys/arm/conf/NOTES - copied unchanged from r243643, head/sys/arm/conf/NOTES projects/diffused_head/sys/boot/fdt/dts/tegra20-paz00.dts - copied unchanged from r243643, head/sys/boot/fdt/dts/tegra20-paz00.dts projects/diffused_head/sys/boot/fdt/dts/tegra20.dtsi - copied unchanged from r243643, head/sys/boot/fdt/dts/tegra20.dtsi projects/diffused_head/sys/boot/forth/menusets.4th - copied unchanged from r243643, head/sys/boot/forth/menusets.4th projects/diffused_head/sys/boot/forth/menusets.4th.8 - copied unchanged from r243643, head/sys/boot/forth/menusets.4th.8 projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h - copied unchanged from r243643, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/trim_map.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c - copied unchanged from r243643, head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/trim_map.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/powerpc/ - copied from r243643, head/sys/cddl/contrib/opensolaris/uts/powerpc/ projects/diffused_head/sys/cddl/dev/dtrace/powerpc/ - copied from r243643, head/sys/cddl/dev/dtrace/powerpc/ projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c - copied unchanged from r243643, head/sys/contrib/dev/acpica/components/disassembler/dmdeferred.c projects/diffused_head/sys/dev/ath/if_ath_alq.c - copied unchanged from r243643, head/sys/dev/ath/if_ath_alq.c projects/diffused_head/sys/dev/ath/if_ath_alq.h - copied unchanged from r243643, head/sys/dev/ath/if_ath_alq.h projects/diffused_head/sys/dev/nvd/ - copied from r243643, head/sys/dev/nvd/ projects/diffused_head/sys/dev/nvme/ - copied from r243643, head/sys/dev/nvme/ projects/diffused_head/sys/dev/sdhci/sdhci_if.m - copied unchanged from r243643, head/sys/dev/sdhci/sdhci_if.m projects/diffused_head/sys/dev/sdhci/sdhci_pci.c - copied unchanged from r243643, head/sys/dev/sdhci/sdhci_pci.c projects/diffused_head/sys/dev/virtio/scsi/ - copied from r243643, head/sys/dev/virtio/scsi/ projects/diffused_head/sys/fs/fuse/ - copied from r243643, head/sys/fs/fuse/ projects/diffused_head/sys/mips/cavium/octeon_pci_console.c - copied unchanged from r243643, head/sys/mips/cavium/octeon_pci_console.c projects/diffused_head/sys/modules/fuse/ - copied from r243643, head/sys/modules/fuse/ projects/diffused_head/sys/modules/nvd/ - copied from r243643, head/sys/modules/nvd/ projects/diffused_head/sys/modules/nvme/ - copied from r243643, head/sys/modules/nvme/ projects/diffused_head/sys/modules/sdhci_pci/ - copied from r243643, head/sys/modules/sdhci_pci/ projects/diffused_head/sys/modules/virtio/scsi/ - copied from r243643, head/sys/modules/virtio/scsi/ projects/diffused_head/sys/powerpc/conf/WII - copied unchanged from r243643, head/sys/powerpc/conf/WII projects/diffused_head/sys/powerpc/wii/locore.S - copied unchanged from r243643, head/sys/powerpc/wii/locore.S projects/diffused_head/sys/ufs/ffs/ffs_suspend.c - copied unchanged from r243643, head/sys/ufs/ffs/ffs_suspend.c projects/diffused_head/tools/build/options/WITHOUT_ATF - copied unchanged from r243643, head/tools/build/options/WITHOUT_ATF projects/diffused_head/tools/build/options/WITHOUT_CLANG_IS_CC - copied unchanged from r243643, head/tools/build/options/WITHOUT_CLANG_IS_CC projects/diffused_head/tools/build/options/WITHOUT_KDUMP - copied unchanged from r243643, head/tools/build/options/WITHOUT_KDUMP projects/diffused_head/tools/build/options/WITH_BMAKE - copied unchanged from r243643, head/tools/build/options/WITH_BMAKE projects/diffused_head/tools/regression/bin/sh/builtins/alias3.0 - copied unchanged from r243643, head/tools/regression/bin/sh/builtins/alias3.0 projects/diffused_head/tools/regression/bin/sh/builtins/alias3.0.stdout - copied unchanged from r243643, head/tools/regression/bin/sh/builtins/alias3.0.stdout projects/diffused_head/tools/regression/bin/sh/parser/alias10.0 - copied unchanged from r243643, head/tools/regression/bin/sh/parser/alias10.0 projects/diffused_head/tools/regression/bin/sh/parser/alias7.0 - copied unchanged from r243643, head/tools/regression/bin/sh/parser/alias7.0 projects/diffused_head/tools/regression/bin/sh/parser/alias8.0 - copied unchanged from r243643, head/tools/regression/bin/sh/parser/alias8.0 projects/diffused_head/tools/regression/bin/sh/parser/alias9.0 - copied unchanged from r243643, head/tools/regression/bin/sh/parser/alias9.0 projects/diffused_head/tools/regression/filemon/timed-forkb.c - copied unchanged from r243643, head/tools/regression/filemon/timed-forkb.c projects/diffused_head/tools/regression/net/ - copied from r243643, head/tools/regression/net/ projects/diffused_head/tools/tools/ath/athalq/ - copied from r243643, head/tools/tools/ath/athalq/ projects/diffused_head/usr.bin/atf/ - copied from r243643, head/usr.bin/atf/ projects/diffused_head/usr.bin/bmake/ - copied from r243643, head/usr.bin/bmake/ projects/diffused_head/usr.bin/mandoc/ - copied from r243643, head/usr.bin/mandoc/ projects/diffused_head/usr.bin/ssh-copy-id/ - copied from r243643, head/usr.bin/ssh-copy-id/ projects/diffused_head/usr.sbin/bsdconfig/include/bsdconfig.hlp - copied unchanged from r243643, head/usr.sbin/bsdconfig/include/bsdconfig.hlp projects/diffused_head/usr.sbin/bsdconfig/include/usage.hlp - copied unchanged from r243643, head/usr.sbin/bsdconfig/include/usage.hlp projects/diffused_head/usr.sbin/bsdconfig/networking/include/tcp.hlp - copied unchanged from r243643, head/usr.sbin/bsdconfig/networking/include/tcp.hlp projects/diffused_head/usr.sbin/bsdconfig/networking/share/ - copied from r243643, head/usr.sbin/bsdconfig/networking/share/ projects/diffused_head/usr.sbin/bsdconfig/password/share/ - copied from r243643, head/usr.sbin/bsdconfig/password/share/ projects/diffused_head/usr.sbin/bsdconfig/security/include/securelevel.hlp - copied unchanged from r243643, head/usr.sbin/bsdconfig/security/include/securelevel.hlp projects/diffused_head/usr.sbin/bsdconfig/share/ - copied from r243643, head/usr.sbin/bsdconfig/share/ projects/diffused_head/usr.sbin/bsdconfig/startup/share/ - copied from r243643, head/usr.sbin/bsdconfig/startup/share/ projects/diffused_head/usr.sbin/bsdconfig/timezone/share/ - copied from r243643, head/usr.sbin/bsdconfig/timezone/share/ projects/diffused_head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp - copied unchanged from r243643, head/usr.sbin/bsdconfig/usermgmt/include/usermgmt.hlp projects/diffused_head/usr.sbin/bsdconfig/usermgmt/share/ - copied from r243643, head/usr.sbin/bsdconfig/usermgmt/share/ projects/diffused_head/usr.sbin/pkg_install/lib/pkgng.c - copied unchanged from r243643, head/usr.sbin/pkg_install/lib/pkgng.c projects/diffused_head/usr.sbin/services_mkdb/extern.h - copied unchanged from r243643, head/usr.sbin/services_mkdb/extern.h projects/diffused_head/usr.sbin/sysrc/ - copied from r243643, head/usr.sbin/sysrc/ Directory Properties: projects/diffused_head/contrib/bmake/ (props changed) Deleted: projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool-features.5 projects/diffused_head/contrib/dialog/samples/dselect projects/diffused_head/contrib/dialog/samples/valgrind.log projects/diffused_head/contrib/gnu-sort/ projects/diffused_head/contrib/libc++/src/support/ projects/diffused_head/contrib/libpcap/net/ projects/diffused_head/contrib/libpcap/test/ projects/diffused_head/gnu/usr.bin/sort/ projects/diffused_head/lib/libc/gen/pwcache.3 projects/diffused_head/lib/libc/gen/pwcache.c projects/diffused_head/release/doc/de_DE.ISO8859-1/early-adopter/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/errata/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/alpha/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/artheader.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/dev.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/intro.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/i386/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/i386/proc-i386.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/ia64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/pc98/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/alpha/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/abstract.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/artheader.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/install.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/layout.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/trouble.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/upgrade.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/i386/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/ia64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/pc98/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/sparc64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/sparc64/install.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/readme/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/alpha/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/common/new.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/i386/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/ia64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/pc98/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/article.sgml projects/diffused_head/release/doc/de_DE.ISO8859-1/share/sgml/ projects/diffused_head/release/doc/en_US.ISO8859-1/errata/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/readme/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/relnotes/article.sgml projects/diffused_head/release/doc/en_US.ISO8859-1/share/sgml/ projects/diffused_head/release/doc/fr_FR.ISO8859-1/early-adopter/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/errata/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/alpha/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/alpha/proc-alpha.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/artheader.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/dev.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/intro.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/i386/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/i386/proc-i386.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/ia64/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/ia64/proc-ia64.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/pc98/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/pc98/proc-pc98.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/dev-sparc64.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/proc-sparc64.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/alpha/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/abstract.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/artheader.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/install.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/layout.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/trouble.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/upgrade.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/i386/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/pc98/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/sparc64/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/sparc64/install.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/common/new.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/i386/article.sgml projects/diffused_head/release/doc/fr_FR.ISO8859-1/share/sgml/ projects/diffused_head/release/doc/ja_JP.eucJP/errata/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/alpha/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/amd64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/amd64/proc-amd64.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/artheader.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/dev.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/intro.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/i386/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/i386/proc-i386.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/ia64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/ia64/proc-ia64.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/pc98/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/pc98/proc-pc98.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/sparc64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/hardware/sparc64/proc-sparc64.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/alpha/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/amd64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/common/new.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/i386/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/ia64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/pc98/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/sparc64/article.sgml projects/diffused_head/release/doc/ja_JP.eucJP/share/sgml/ projects/diffused_head/release/doc/ru_RU.KOI8-R/errata/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/amd64/proc-amd64.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/artheader.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/intro.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/i386/proc-i386.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/ia64/proc-ia64.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/pc98/proc-pc98.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/sparc64/proc-sparc64.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/abstract.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/artheader.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/install.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/layout.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/trouble.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/upgrade.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/readme/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml projects/diffused_head/release/doc/ru_RU.KOI8-R/share/sgml/ projects/diffused_head/release/doc/share/sgml/ projects/diffused_head/release/doc/zh_CN.GB2312/errata/article.sgml projects/diffused_head/release/doc/zh_CN.GB2312/hardware/article.sgml projects/diffused_head/release/doc/zh_CN.GB2312/readme/article.sgml projects/diffused_head/release/doc/zh_CN.GB2312/relnotes/article.sgml projects/diffused_head/release/doc/zh_CN.GB2312/share/sgml/ projects/diffused_head/share/man/man4/harp.4 projects/diffused_head/share/man/man4/hfa.4 projects/diffused_head/share/man/man4/idt.4 projects/diffused_head/share/man/man9/VFS_LOCK_GIANT.9 projects/diffused_head/sys/conf/defines projects/diffused_head/sys/dev/mlx/mlx_compat.h projects/diffused_head/tools/build/options/WITH_GNU_SORT projects/diffused_head/usr.sbin/bsdconfig/include/common.subr projects/diffused_head/usr.sbin/bsdconfig/include/dialog.subr projects/diffused_head/usr.sbin/bsdconfig/include/mustberoot.subr projects/diffused_head/usr.sbin/bsdconfig/include/strings.subr projects/diffused_head/usr.sbin/bsdconfig/include/sysrc.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/common.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/device.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/hostname.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/ipaddr.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/media.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/netmask.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/resolv.subr projects/diffused_head/usr.sbin/bsdconfig/networking/include/routing.subr projects/diffused_head/usr.sbin/bsdconfig/password/include/password.subr projects/diffused_head/usr.sbin/bsdconfig/startup/include/rcconf.subr projects/diffused_head/usr.sbin/bsdconfig/startup/include/rcedit.subr projects/diffused_head/usr.sbin/bsdconfig/startup/include/rcvar.subr projects/diffused_head/usr.sbin/bsdconfig/timezone/include/continents.subr projects/diffused_head/usr.sbin/bsdconfig/timezone/include/countries.subr projects/diffused_head/usr.sbin/bsdconfig/timezone/include/iso3166.subr projects/diffused_head/usr.sbin/bsdconfig/timezone/include/menus.subr projects/diffused_head/usr.sbin/bsdconfig/timezone/include/zones.subr projects/diffused_head/usr.sbin/bsdconfig/usermgmt/include/group_input.subr projects/diffused_head/usr.sbin/bsdconfig/usermgmt/include/user_input.subr projects/diffused_head/usr.sbin/pw/edgroup.c Modified: projects/diffused_head/MAINTAINERS (contents, props changed) projects/diffused_head/Makefile projects/diffused_head/Makefile.inc1 projects/diffused_head/ObsoleteFiles.inc projects/diffused_head/UPDATING projects/diffused_head/bin/date/extern.h projects/diffused_head/bin/date/netdate.c projects/diffused_head/bin/dd/conv_tab.c projects/diffused_head/bin/df/df.1 projects/diffused_head/bin/df/df.c projects/diffused_head/bin/ed/buf.c projects/diffused_head/bin/ed/cbc.c projects/diffused_head/bin/ed/ed.h projects/diffused_head/bin/ed/glbl.c projects/diffused_head/bin/ed/io.c projects/diffused_head/bin/ed/main.c projects/diffused_head/bin/ed/re.c projects/diffused_head/bin/ed/sub.c projects/diffused_head/bin/ed/undo.c projects/diffused_head/bin/getfacl/getfacl.c projects/diffused_head/bin/ln/ln.1 projects/diffused_head/bin/ls/cmp.c projects/diffused_head/bin/ls/extern.h projects/diffused_head/bin/ls/ls.1 projects/diffused_head/bin/ls/ls.c projects/diffused_head/bin/ls/ls.h projects/diffused_head/bin/ls/print.c projects/diffused_head/bin/ls/util.c projects/diffused_head/bin/mv/mv.c projects/diffused_head/bin/pax/ar_io.c projects/diffused_head/bin/pax/ar_subs.c projects/diffused_head/bin/pax/extern.h projects/diffused_head/bin/pax/options.c projects/diffused_head/bin/ps/keyword.c projects/diffused_head/bin/ps/ps.1 projects/diffused_head/bin/rcp/rcp.c projects/diffused_head/bin/rm/rm.c projects/diffused_head/bin/setfacl/setfacl.c projects/diffused_head/bin/setfacl/setfacl.h projects/diffused_head/bin/sh/alias.c projects/diffused_head/bin/sh/cd.c projects/diffused_head/bin/sh/eval.c projects/diffused_head/bin/sh/exec.c projects/diffused_head/bin/sh/histedit.c projects/diffused_head/bin/sh/input.c projects/diffused_head/bin/sh/input.h projects/diffused_head/bin/sh/jobs.c projects/diffused_head/bin/sh/main.c projects/diffused_head/bin/sh/sh.1 projects/diffused_head/bin/sh/var.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/diffused_head/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c projects/diffused_head/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/diffused_head/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c projects/diffused_head/cddl/contrib/opensolaris/lib/libzpool/common/sys/zfs_context.h projects/diffused_head/cddl/lib/Makefile projects/diffused_head/cddl/lib/libdtrace/Makefile projects/diffused_head/cddl/lib/libzpool/Makefile projects/diffused_head/cddl/sbin/zfs/Makefile projects/diffused_head/cddl/sbin/zpool/Makefile projects/diffused_head/cddl/usr.sbin/Makefile projects/diffused_head/contrib/atf/atf-c/macros.h projects/diffused_head/contrib/atf/atf-report/atf-report.cpp projects/diffused_head/contrib/atf/atf-run/io.hpp projects/diffused_head/contrib/atf/atf-run/requirements_test.cpp projects/diffused_head/contrib/atf/atf-sh/atf_check_test.sh projects/diffused_head/contrib/atf/doc/atf-test-case.4 projects/diffused_head/contrib/bind9/CHANGES projects/diffused_head/contrib/bind9/bin/named/query.c projects/diffused_head/contrib/bind9/lib/dns/include/dns/rdata.h projects/diffused_head/contrib/bind9/lib/dns/master.c projects/diffused_head/contrib/bind9/lib/dns/rdata.c projects/diffused_head/contrib/bind9/lib/dns/rdataslab.c projects/diffused_head/contrib/bind9/version projects/diffused_head/contrib/bsnmp/snmp_mibII/mibII.h projects/diffused_head/contrib/bsnmp/snmp_mibII/mibII_route.c projects/diffused_head/contrib/bsnmp/snmpd/main.c projects/diffused_head/contrib/bsnmp/snmpd/trans_udp.c projects/diffused_head/contrib/byacc/CHANGES projects/diffused_head/contrib/byacc/VERSION projects/diffused_head/contrib/byacc/defs.h projects/diffused_head/contrib/byacc/lr0.c projects/diffused_head/contrib/byacc/main.c projects/diffused_head/contrib/byacc/mkpar.c projects/diffused_head/contrib/byacc/output.c projects/diffused_head/contrib/byacc/package/byacc.spec projects/diffused_head/contrib/byacc/package/debian/changelog projects/diffused_head/contrib/byacc/reader.c projects/diffused_head/contrib/byacc/symtab.c projects/diffused_head/contrib/byacc/verbose.c projects/diffused_head/contrib/dialog/CHANGES projects/diffused_head/contrib/dialog/VERSION projects/diffused_head/contrib/dialog/aclocal.m4 projects/diffused_head/contrib/dialog/arrows.c projects/diffused_head/contrib/dialog/buttons.c projects/diffused_head/contrib/dialog/calendar.c projects/diffused_head/contrib/dialog/checklist.c projects/diffused_head/contrib/dialog/columns.c projects/diffused_head/contrib/dialog/configure projects/diffused_head/contrib/dialog/configure.in projects/diffused_head/contrib/dialog/dialog.1 projects/diffused_head/contrib/dialog/dialog.3 projects/diffused_head/contrib/dialog/dialog.c projects/diffused_head/contrib/dialog/dialog.h projects/diffused_head/contrib/dialog/dlg_colors.h projects/diffused_head/contrib/dialog/dlg_keys.c projects/diffused_head/contrib/dialog/dlg_keys.h projects/diffused_head/contrib/dialog/editbox.c projects/diffused_head/contrib/dialog/formbox.c projects/diffused_head/contrib/dialog/fselect.c projects/diffused_head/contrib/dialog/guage.c projects/diffused_head/contrib/dialog/headers-sh.in projects/diffused_head/contrib/dialog/inputbox.c projects/diffused_head/contrib/dialog/inputstr.c projects/diffused_head/contrib/dialog/makefile.in projects/diffused_head/contrib/dialog/menubox.c projects/diffused_head/contrib/dialog/mixedform.c projects/diffused_head/contrib/dialog/mixedgauge.c projects/diffused_head/contrib/dialog/msgbox.c projects/diffused_head/contrib/dialog/package/debian/changelog projects/diffused_head/contrib/dialog/package/dialog.spec projects/diffused_head/contrib/dialog/pause.c projects/diffused_head/contrib/dialog/po/cs.po projects/diffused_head/contrib/dialog/po/el.po projects/diffused_head/contrib/dialog/po/hr.po projects/diffused_head/contrib/dialog/po/sr.po projects/diffused_head/contrib/dialog/prgbox.c projects/diffused_head/contrib/dialog/progressbox.c projects/diffused_head/contrib/dialog/rc.c projects/diffused_head/contrib/dialog/samples/copifuncs/admin.funcs projects/diffused_head/contrib/dialog/samples/copifuncs/common.funcs projects/diffused_head/contrib/dialog/samples/copifuncs/copi.funcs projects/diffused_head/contrib/dialog/samples/copifuncs/copi.ifman2 projects/diffused_head/contrib/dialog/samples/copifuncs/copi.ifpoll2 projects/diffused_head/contrib/dialog/samples/copifuncs/copi.ifreq2 projects/diffused_head/contrib/dialog/samples/copifuncs/copi.sendifm1 projects/diffused_head/contrib/dialog/samples/copifuncs/copi.wheel projects/diffused_head/contrib/dialog/samples/copismall projects/diffused_head/contrib/dialog/samples/debian.rc projects/diffused_head/contrib/dialog/samples/dialog.py projects/diffused_head/contrib/dialog/samples/form1 projects/diffused_head/contrib/dialog/samples/inputmenu projects/diffused_head/contrib/dialog/samples/inputmenu-stdout projects/diffused_head/contrib/dialog/samples/inputmenu1 projects/diffused_head/contrib/dialog/samples/inputmenu2 projects/diffused_head/contrib/dialog/samples/inputmenu3 projects/diffused_head/contrib/dialog/samples/inputmenu4 projects/diffused_head/contrib/dialog/samples/killall projects/diffused_head/contrib/dialog/samples/prgbox projects/diffused_head/contrib/dialog/samples/prgbox2 projects/diffused_head/contrib/dialog/samples/report-button projects/diffused_head/contrib/dialog/samples/report-edit projects/diffused_head/contrib/dialog/samples/report-string projects/diffused_head/contrib/dialog/samples/report-tempfile projects/diffused_head/contrib/dialog/samples/report-yesno projects/diffused_head/contrib/dialog/samples/setup-edit projects/diffused_head/contrib/dialog/samples/setup-tempfile projects/diffused_head/contrib/dialog/samples/setup-utf8 projects/diffused_head/contrib/dialog/samples/setup-vars projects/diffused_head/contrib/dialog/samples/slackware.rc projects/diffused_head/contrib/dialog/samples/sourcemage.rc projects/diffused_head/contrib/dialog/samples/suse.rc projects/diffused_head/contrib/dialog/samples/tailboxbg projects/diffused_head/contrib/dialog/samples/tailboxbg1 projects/diffused_head/contrib/dialog/samples/tailboxbg2 projects/diffused_head/contrib/dialog/samples/testdata-8bit projects/diffused_head/contrib/dialog/samples/wheel projects/diffused_head/contrib/dialog/samples/whiptail.rc projects/diffused_head/contrib/dialog/tailbox.c projects/diffused_head/contrib/dialog/textbox.c projects/diffused_head/contrib/dialog/timebox.c projects/diffused_head/contrib/dialog/trace.c projects/diffused_head/contrib/dialog/ui_getc.c projects/diffused_head/contrib/dialog/util.c projects/diffused_head/contrib/dialog/yesno.c projects/diffused_head/contrib/gcc/config/i386/xmmintrin.h projects/diffused_head/contrib/gdb/gdb/c-valprint.c projects/diffused_head/contrib/gdb/gdb/cp-valprint.c projects/diffused_head/contrib/gdb/gdb/dwarf2loc.c projects/diffused_head/contrib/gdb/gdb/f-valprint.c projects/diffused_head/contrib/gdb/gdb/frame.c projects/diffused_head/contrib/gdb/gdb/jv-valprint.c projects/diffused_head/contrib/gdb/gdb/p-valprint.c projects/diffused_head/contrib/gdb/gdb/scm-valprint.c projects/diffused_head/contrib/gdb/gdb/stack.c projects/diffused_head/contrib/gdb/gdb/valprint.c projects/diffused_head/contrib/gdb/gdb/value.h projects/diffused_head/contrib/gdb/gdb/varobj.c projects/diffused_head/contrib/groff/tmac/doc-syms projects/diffused_head/contrib/jemalloc/ChangeLog projects/diffused_head/contrib/jemalloc/FREEBSD-diffs projects/diffused_head/contrib/jemalloc/VERSION projects/diffused_head/contrib/jemalloc/doc/jemalloc.3 projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/arena.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/chunk.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/chunk_dss.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/chunk_mmap.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/ctl.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/extent.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/huge.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/jemalloc_internal.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/private_namespace.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/prof.h projects/diffused_head/contrib/jemalloc/include/jemalloc/internal/rtree.h projects/diffused_head/contrib/jemalloc/include/jemalloc/jemalloc.h projects/diffused_head/contrib/jemalloc/include/jemalloc/jemalloc_defs.h projects/diffused_head/contrib/jemalloc/src/arena.c projects/diffused_head/contrib/jemalloc/src/base.c projects/diffused_head/contrib/jemalloc/src/chunk.c projects/diffused_head/contrib/jemalloc/src/chunk_dss.c projects/diffused_head/contrib/jemalloc/src/chunk_mmap.c projects/diffused_head/contrib/jemalloc/src/ctl.c projects/diffused_head/contrib/jemalloc/src/huge.c projects/diffused_head/contrib/jemalloc/src/jemalloc.c projects/diffused_head/contrib/jemalloc/src/mutex.c projects/diffused_head/contrib/jemalloc/src/prof.c projects/diffused_head/contrib/jemalloc/src/rtree.c projects/diffused_head/contrib/jemalloc/src/stats.c projects/diffused_head/contrib/jemalloc/src/tcache.c projects/diffused_head/contrib/jemalloc/src/util.c projects/diffused_head/contrib/less/NEWS projects/diffused_head/contrib/less/README projects/diffused_head/contrib/less/configure projects/diffused_head/contrib/less/configure.ac projects/diffused_head/contrib/less/defines.ds projects/diffused_head/contrib/less/defines.h.in projects/diffused_head/contrib/less/defines.o2 projects/diffused_head/contrib/less/defines.o9 projects/diffused_head/contrib/less/defines.wn projects/diffused_head/contrib/less/less.man projects/diffused_head/contrib/less/less.nro projects/diffused_head/contrib/less/lessecho.man projects/diffused_head/contrib/less/lessecho.nro projects/diffused_head/contrib/less/lesskey.man projects/diffused_head/contrib/less/lesskey.nro projects/diffused_head/contrib/less/option.c projects/diffused_head/contrib/less/output.c projects/diffused_head/contrib/less/position.c projects/diffused_head/contrib/less/screen.c projects/diffused_head/contrib/less/version.c projects/diffused_head/contrib/libc++/include/__bit_reference projects/diffused_head/contrib/libc++/include/__config projects/diffused_head/contrib/libc++/include/__functional_base projects/diffused_head/contrib/libc++/include/__functional_base_03 projects/diffused_head/contrib/libc++/include/__hash_table projects/diffused_head/contrib/libc++/include/__locale projects/diffused_head/contrib/libc++/include/__mutex_base projects/diffused_head/contrib/libc++/include/__tree projects/diffused_head/contrib/libc++/include/__tuple projects/diffused_head/contrib/libc++/include/__undef_min_max projects/diffused_head/contrib/libc++/include/algorithm projects/diffused_head/contrib/libc++/include/array projects/diffused_head/contrib/libc++/include/atomic projects/diffused_head/contrib/libc++/include/bitset projects/diffused_head/contrib/libc++/include/chrono projects/diffused_head/contrib/libc++/include/cmath projects/diffused_head/contrib/libc++/include/complex projects/diffused_head/contrib/libc++/include/condition_variable projects/diffused_head/contrib/libc++/include/cstddef projects/diffused_head/contrib/libc++/include/cstdio projects/diffused_head/contrib/libc++/include/cstdlib projects/diffused_head/contrib/libc++/include/cwchar projects/diffused_head/contrib/libc++/include/deque projects/diffused_head/contrib/libc++/include/exception projects/diffused_head/contrib/libc++/include/ext/__hash projects/diffused_head/contrib/libc++/include/forward_list projects/diffused_head/contrib/libc++/include/fstream projects/diffused_head/contrib/libc++/include/functional projects/diffused_head/contrib/libc++/include/future projects/diffused_head/contrib/libc++/include/ios projects/diffused_head/contrib/libc++/include/iosfwd projects/diffused_head/contrib/libc++/include/istream projects/diffused_head/contrib/libc++/include/iterator projects/diffused_head/contrib/libc++/include/list projects/diffused_head/contrib/libc++/include/locale projects/diffused_head/contrib/libc++/include/map projects/diffused_head/contrib/libc++/include/memory projects/diffused_head/contrib/libc++/include/mutex projects/diffused_head/contrib/libc++/include/new projects/diffused_head/contrib/libc++/include/ostream projects/diffused_head/contrib/libc++/include/queue projects/diffused_head/contrib/libc++/include/random projects/diffused_head/contrib/libc++/include/regex projects/diffused_head/contrib/libc++/include/stack projects/diffused_head/contrib/libc++/include/streambuf projects/diffused_head/contrib/libc++/include/string projects/diffused_head/contrib/libc++/include/system_error projects/diffused_head/contrib/libc++/include/thread projects/diffused_head/contrib/libc++/include/tuple projects/diffused_head/contrib/libc++/include/type_traits projects/diffused_head/contrib/libc++/include/unordered_map projects/diffused_head/contrib/libc++/include/utility projects/diffused_head/contrib/libc++/include/valarray projects/diffused_head/contrib/libc++/include/vector projects/diffused_head/contrib/libc++/src/condition_variable.cpp projects/diffused_head/contrib/libc++/src/debug.cpp projects/diffused_head/contrib/libc++/src/exception.cpp projects/diffused_head/contrib/libc++/src/future.cpp projects/diffused_head/contrib/libc++/src/ios.cpp projects/diffused_head/contrib/libc++/src/iostream.cpp projects/diffused_head/contrib/libc++/src/locale.cpp projects/diffused_head/contrib/libc++/src/memory.cpp projects/diffused_head/contrib/libc++/src/mutex.cpp projects/diffused_head/contrib/libc++/src/new.cpp projects/diffused_head/contrib/libc++/src/random.cpp projects/diffused_head/contrib/libc++/src/stdexcept.cpp projects/diffused_head/contrib/libc++/src/thread.cpp projects/diffused_head/contrib/libc++/src/typeinfo.cpp projects/diffused_head/contrib/libpcap/CHANGES projects/diffused_head/contrib/libpcap/CREDITS projects/diffused_head/contrib/libpcap/Makefile.in projects/diffused_head/contrib/libpcap/VERSION projects/diffused_head/contrib/libpcap/config.h.in projects/diffused_head/contrib/libpcap/configure projects/diffused_head/contrib/libpcap/configure.in projects/diffused_head/contrib/libpcap/gencode.c projects/diffused_head/contrib/libpcap/gencode.h projects/diffused_head/contrib/libpcap/optimize.c projects/diffused_head/contrib/libpcap/packaging/pcap.spec.in projects/diffused_head/contrib/libpcap/pcap-bpf.c projects/diffused_head/contrib/libpcap/pcap-common.c projects/diffused_head/contrib/libpcap/pcap-linux.c projects/diffused_head/contrib/libpcap/pcap-netfilter-linux.c projects/diffused_head/contrib/libpcap/pcap-snoop.c projects/diffused_head/contrib/libpcap/pcap.c projects/diffused_head/contrib/libpcap/pcap/bpf.h projects/diffused_head/contrib/libstdc++/config/os/bsd/freebsd/ctype_base.h projects/diffused_head/contrib/libstdc++/include/bits/fstream.tcc projects/diffused_head/contrib/libstdc++/include/bits/locale_facets.h projects/diffused_head/contrib/libstdc++/include/bits/locale_facets.tcc projects/diffused_head/contrib/libstdc++/include/bits/streambuf_iterator.h projects/diffused_head/contrib/libstdc++/include/debug/safe_iterator.tcc projects/diffused_head/contrib/libstdc++/include/ext/ropeimpl.h projects/diffused_head/contrib/libstdc++/include/std/std_sstream.h projects/diffused_head/contrib/libstdc++/libsupc++/tinfo.cc projects/diffused_head/contrib/libstdc++/src/locale.cc projects/diffused_head/contrib/libstdc++/src/strstream.cc projects/diffused_head/contrib/libstdc++/src/tree.cc projects/diffused_head/contrib/llvm/include/llvm/Support/TargetRegistry.h projects/diffused_head/contrib/llvm/lib/Analysis/InlineCost.cpp projects/diffused_head/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp projects/diffused_head/contrib/llvm/lib/Support/Host.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/MBlazeMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h projects/diffused_head/contrib/llvm/lib/Target/X86/X86.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp projects/diffused_head/contrib/llvm/lib/Target/X86/X86InstrCompiler.td projects/diffused_head/contrib/llvm/lib/Target/X86/X86Subtarget.cpp projects/diffused_head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td projects/diffused_head/contrib/llvm/tools/clang/lib/Driver/Tools.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/Sema.cpp projects/diffused_head/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp projects/diffused_head/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp projects/diffused_head/contrib/llvm/tools/llvm-mc/llvm-mc.cpp projects/diffused_head/contrib/netcat/FREEBSD-vendor projects/diffused_head/contrib/netcat/nc.1 projects/diffused_head/contrib/netcat/netcat.c projects/diffused_head/contrib/netcat/socks.c projects/diffused_head/contrib/tcpdump/CHANGES projects/diffused_head/contrib/tcpdump/CREDITS projects/diffused_head/contrib/tcpdump/Makefile.in projects/diffused_head/contrib/tcpdump/VERSION projects/diffused_head/contrib/tcpdump/configure projects/diffused_head/contrib/tcpdump/configure.in projects/diffused_head/contrib/tcpdump/decode_prefix.h projects/diffused_head/contrib/tcpdump/ethertype.h projects/diffused_head/contrib/tcpdump/forces.h projects/diffused_head/contrib/tcpdump/interface.h projects/diffused_head/contrib/tcpdump/ipproto.c projects/diffused_head/contrib/tcpdump/netdissect.h projects/diffused_head/contrib/tcpdump/print-802_11.c projects/diffused_head/contrib/tcpdump/print-bgp.c projects/diffused_head/contrib/tcpdump/print-ether.c projects/diffused_head/contrib/tcpdump/print-forces.c projects/diffused_head/contrib/tcpdump/print-icmp6.c projects/diffused_head/contrib/tcpdump/print-igmp.c projects/diffused_head/contrib/tcpdump/print-ip.c projects/diffused_head/contrib/tcpdump/print-ip6opts.c projects/diffused_head/contrib/tcpdump/print-ldp.c projects/diffused_head/contrib/tcpdump/print-lldp.c projects/diffused_head/contrib/tcpdump/print-lwapp.c projects/diffused_head/contrib/tcpdump/print-ospf6.c projects/diffused_head/contrib/tcpdump/print-pim.c projects/diffused_head/contrib/tcpdump/print-pppoe.c projects/diffused_head/contrib/tcpdump/print-rrcp.c projects/diffused_head/contrib/tcpdump/tcpdump.1.in projects/diffused_head/contrib/tcpdump/tcpdump.c projects/diffused_head/contrib/telnet/telnetd/state.c projects/diffused_head/contrib/top/commands.c projects/diffused_head/contrib/tzdata/africa projects/diffused_head/contrib/tzdata/asia projects/diffused_head/contrib/tzdata/australasia projects/diffused_head/contrib/tzdata/europe projects/diffused_head/contrib/tzdata/northamerica projects/diffused_head/contrib/tzdata/southamerica projects/diffused_head/contrib/wpa/src/eap_server/eap_server_tls_common.c projects/diffused_head/crypto/heimdal/lib/sl/slc-lex.l projects/diffused_head/etc/Makefile projects/diffused_head/etc/defaults/periodic.conf projects/diffused_head/etc/defaults/rc.conf projects/diffused_head/etc/devd.conf projects/diffused_head/etc/devd/usb.conf projects/diffused_head/etc/disktab projects/diffused_head/etc/gettytab projects/diffused_head/etc/group projects/diffused_head/etc/master.passwd projects/diffused_head/etc/motd projects/diffused_head/etc/mtree/BSD.include.dist projects/diffused_head/etc/mtree/BSD.root.dist projects/diffused_head/etc/mtree/BSD.usr.dist projects/diffused_head/etc/network.subr projects/diffused_head/etc/newsyslog.conf projects/diffused_head/etc/pccard_ether projects/diffused_head/etc/periodic/daily/490.status-pkg-changes projects/diffused_head/etc/rc.d/ipfw projects/diffused_head/etc/rc.d/jail projects/diffused_head/etc/rc.d/routing projects/diffused_head/etc/rc.d/rtadvd projects/diffused_head/etc/rc.subr projects/diffused_head/etc/root/dot.cshrc projects/diffused_head/etc/root/dot.login projects/diffused_head/etc/sendmail/freefall.mc projects/diffused_head/games/bcd/bcd.c projects/diffused_head/games/caesar/caesar.c projects/diffused_head/games/fortune/datfiles/fortunes projects/diffused_head/games/fortune/datfiles/freebsd-tips projects/diffused_head/games/fortune/fortune/fortune.6 projects/diffused_head/games/fortune/fortune/fortune.c projects/diffused_head/games/fortune/tools/do_uniq.py projects/diffused_head/games/random/randomize_fd.c projects/diffused_head/gnu/lib/libdialog/dlg_config.h projects/diffused_head/gnu/lib/libstdc++/Makefile projects/diffused_head/gnu/lib/libsupc++/Makefile projects/diffused_head/gnu/usr.bin/Makefile projects/diffused_head/gnu/usr.bin/cc/cc_int/Makefile projects/diffused_head/gnu/usr.bin/cc/include/Makefile projects/diffused_head/gnu/usr.bin/send-pr/send-pr.sh projects/diffused_head/include/Makefile projects/diffused_head/include/grp.h projects/diffused_head/include/paths.h projects/diffused_head/include/pwd.h projects/diffused_head/include/rpc/auth.h projects/diffused_head/include/rpc/auth_unix.h projects/diffused_head/include/stdatomic.h projects/diffused_head/include/xlocale/_ctype.h projects/diffused_head/kerberos5/Makefile projects/diffused_head/kerberos5/tools/asn1_compile/Makefile projects/diffused_head/kerberos5/tools/slc/Makefile projects/diffused_head/lib/Makefile projects/diffused_head/lib/clang/include/Makefile projects/diffused_head/lib/libc++/Makefile projects/diffused_head/lib/libc/compat-43/killpg.2 projects/diffused_head/lib/libc/gen/Makefile.inc projects/diffused_head/lib/libc/gen/Symbol.map projects/diffused_head/lib/libc/gen/arc4random.c projects/diffused_head/lib/libc/gen/fstab.c projects/diffused_head/lib/libc/gen/fts-compat.c projects/diffused_head/lib/libc/gen/fts.c projects/diffused_head/lib/libc/gen/getbsize.3 projects/diffused_head/lib/libc/gen/getcap.c projects/diffused_head/lib/libc/gen/getcwd.c projects/diffused_head/lib/libc/gen/isnan.c projects/diffused_head/lib/libc/gen/nlist.c projects/diffused_head/lib/libc/gen/opendir.c projects/diffused_head/lib/libc/gen/pututxline.c projects/diffused_head/lib/libc/gen/readpassphrase.c projects/diffused_head/lib/libc/gen/sem_new.c projects/diffused_head/lib/libc/gen/syslog.c projects/diffused_head/lib/libc/include/namespace.h projects/diffused_head/lib/libc/include/un-namespace.h projects/diffused_head/lib/libc/locale/ldpart.c projects/diffused_head/lib/libc/net/getnetent.3 projects/diffused_head/lib/libc/net/getprotoent.3 projects/diffused_head/lib/libc/net/getservent.3 projects/diffused_head/lib/libc/net/ip6opt.c projects/diffused_head/lib/libc/net/sctp_sys_calls.c projects/diffused_head/lib/libc/nls/msgcat.c projects/diffused_head/lib/libc/rpc/auth_unix.c projects/diffused_head/lib/libc/rpc/authunix_prot.c projects/diffused_head/lib/libc/rpc/clnt_perror.c projects/diffused_head/lib/libc/rpc/rpc_generic.c projects/diffused_head/lib/libc/rpc/rpc_soc.3 projects/diffused_head/lib/libc/rpc/rpcb_clnt.c projects/diffused_head/lib/libc/rpc/svc_auth_unix.c projects/diffused_head/lib/libc/rpc/svc_run.c projects/diffused_head/lib/libc/stdio/fopen.3 projects/diffused_head/lib/libc/stdio/printf.3 projects/diffused_head/lib/libc/stdio/scanf_l.3 projects/diffused_head/lib/libc/stdlib/getenv.c projects/diffused_head/lib/libc/stdlib/rand.c projects/diffused_head/lib/libc/stdlib/random.c projects/diffused_head/lib/libc/string/ffs.3 projects/diffused_head/lib/libc/string/strsignal.c projects/diffused_head/lib/libc/sys/Makefile.inc projects/diffused_head/lib/libc/sys/Symbol.map projects/diffused_head/lib/libc/sys/fcntl.2 projects/diffused_head/lib/libc/sys/getpeername.2 projects/diffused_head/lib/libc/sys/getsockname.2 projects/diffused_head/lib/libc/sys/kill.2 projects/diffused_head/lib/libc/sys/listen.2 projects/diffused_head/lib/libc/sys/recv.2 projects/diffused_head/lib/libc/sys/rtprio.2 projects/diffused_head/lib/libc/sys/sendfile.2 projects/diffused_head/lib/libc/sys/sigaction.2 projects/diffused_head/lib/libc/sys/sigwait.2 projects/diffused_head/lib/libc/sys/sigwaitinfo.2 projects/diffused_head/lib/libc/sys/wait.2 projects/diffused_head/lib/libc/yp/yplib.c projects/diffused_head/lib/libdwarf/dwarf_errmsg.c projects/diffused_head/lib/libdwarf/dwarf_init.c projects/diffused_head/lib/libedit/read.c projects/diffused_head/lib/libelf/elf_errmsg.c projects/diffused_head/lib/libfetch/Makefile projects/diffused_head/lib/libfetch/file.c projects/diffused_head/lib/libfetch/http.c projects/diffused_head/lib/libfetch/http.errors projects/diffused_head/lib/libgeom/geom_xml2tree.c projects/diffused_head/lib/libjail/jail.c projects/diffused_head/lib/libkvm/kvm_proc.c projects/diffused_head/lib/libmemstat/memstat_uma.c projects/diffused_head/lib/libpam/modules/pam_krb5/pam_krb5.c projects/diffused_head/lib/libpam/modules/pam_lastlog/pam_lastlog.8 projects/diffused_head/lib/libpam/modules/pam_radius/pam_radius.c projects/diffused_head/lib/libpcap/config.h projects/diffused_head/lib/libpmc/Makefile projects/diffused_head/lib/libpmc/libpmc.c projects/diffused_head/lib/libpmc/pmc.ivybridge.3 projects/diffused_head/lib/libpmc/pmc.sandybridge.3 projects/diffused_head/lib/libpmc/pmc.sandybridgeuc.3 projects/diffused_head/lib/libproc/proc_bkpt.c projects/diffused_head/lib/libproc/proc_regs.c projects/diffused_head/lib/libprocstat/Makefile projects/diffused_head/lib/libprocstat/common_kvm.h projects/diffused_head/lib/libprocstat/libprocstat.c projects/diffused_head/lib/librpcsec_gss/svc_rpcsec_gss.c projects/diffused_head/lib/libstand/nandfs.c projects/diffused_head/lib/libstand/nfs.c projects/diffused_head/lib/libstdbuf/Makefile projects/diffused_head/lib/libthread_db/libpthread_db.c projects/diffused_head/lib/libthread_db/libthr_db.c projects/diffused_head/lib/libusbhid/descr.c projects/diffused_head/lib/libusbhid/parse.c projects/diffused_head/lib/libusbhid/usbhid.3 projects/diffused_head/lib/libutil/Makefile projects/diffused_head/lib/libutil/gr_util.c projects/diffused_head/lib/msun/i387/s_cos.S projects/diffused_head/lib/msun/i387/s_sin.S projects/diffused_head/lib/msun/i387/s_tan.S projects/diffused_head/lib/msun/ld128/s_expl.c projects/diffused_head/lib/msun/ld80/s_expl.c projects/diffused_head/lib/msun/man/ieee.3 projects/diffused_head/lib/msun/src/k_rem_pio2.c projects/diffused_head/lib/msun/src/math_private.h projects/diffused_head/lib/msun/src/s_cosl.c projects/diffused_head/lib/msun/src/s_isnan.c projects/diffused_head/lib/msun/src/s_sinl.c projects/diffused_head/lib/msun/src/s_tanl.c projects/diffused_head/libexec/Makefile projects/diffused_head/libexec/atrun/atrun.c projects/diffused_head/libexec/atrun/atrun.man projects/diffused_head/libexec/comsat/comsat.8 projects/diffused_head/libexec/ftpd/ftpd.8 projects/diffused_head/libexec/rpc.rusersd/Makefile projects/diffused_head/libexec/rpc.rusersd/rusers_proc.c projects/diffused_head/libexec/rpc.rusersd/rusersd.c projects/diffused_head/libexec/rtld-aout/shlib.c projects/diffused_head/libexec/rtld-elf/libmap.c projects/diffused_head/libexec/rtld-elf/rtld.c projects/diffused_head/libexec/talkd/announce.c projects/diffused_head/libexec/talkd/extern.h projects/diffused_head/libexec/talkd/process.c projects/diffused_head/libexec/talkd/table.c projects/diffused_head/libexec/talkd/talkd.c projects/diffused_head/libexec/tftpd/tftp-io.c projects/diffused_head/libexec/tftpd/tftp-utils.c projects/diffused_head/libexec/tftpd/tftpd.c projects/diffused_head/release/Makefile projects/diffused_head/release/doc/Makefile projects/diffused_head/release/doc/README projects/diffused_head/release/doc/de_DE.ISO8859-1/early-adopter/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/errata/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/alpha/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/common/hw.ent projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/i386/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/ia64/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/pc98/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/hardware/sparc64/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/alpha/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/common/install.ent projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/i386/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/ia64/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/pc98/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/installation/sparc64/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/readme/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/alpha/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/common/relnotes.ent projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/i386/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/ia64/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/pc98/Makefile projects/diffused_head/release/doc/de_DE.ISO8859-1/relnotes/sparc64/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/errata/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/hardware/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/readme/Makefile projects/diffused_head/release/doc/en_US.ISO8859-1/relnotes/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/early-adopter/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/errata/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/alpha/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/common/hw.ent projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/i386/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/ia64/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/pc98/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/hardware/sparc64/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/alpha/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/common/install.ent projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/i386/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/pc98/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/installation/sparc64/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/alpha/Makefile projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/common/relnotes.ent projects/diffused_head/release/doc/fr_FR.ISO8859-1/relnotes/i386/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/errata/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/alpha/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/amd64/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/common/hw.ent projects/diffused_head/release/doc/ja_JP.eucJP/hardware/i386/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/ia64/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/pc98/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/hardware/sparc64/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/alpha/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/amd64/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/common/relnotes.ent projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/i386/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/ia64/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/pc98/Makefile projects/diffused_head/release/doc/ja_JP.eucJP/relnotes/sparc64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/errata/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/common/hw.ent projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/alpha/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/amd64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/common/install.ent projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/i386/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/ia64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/pc98/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/installation/sparc64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/readme/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/alpha/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/amd64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/common/relnotes.ent projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/i386/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/ia64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/pc98/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/relnotes/sparc64/Makefile projects/diffused_head/release/doc/ru_RU.KOI8-R/share/examples/dev-auto-translate.pl projects/diffused_head/release/doc/share/mk/doc.relnotes.mk projects/diffused_head/release/doc/zh_CN.GB2312/errata/Makefile projects/diffused_head/release/doc/zh_CN.GB2312/hardware/Makefile projects/diffused_head/release/doc/zh_CN.GB2312/readme/Makefile projects/diffused_head/release/doc/zh_CN.GB2312/relnotes/Makefile projects/diffused_head/release/generate-release.sh projects/diffused_head/rescue/rescue/Makefile projects/diffused_head/sbin/Makefile projects/diffused_head/sbin/Makefile.amd64 projects/diffused_head/sbin/Makefile.i386 projects/diffused_head/sbin/camcontrol/camcontrol.c projects/diffused_head/sbin/camcontrol/camcontrol.h projects/diffused_head/sbin/camcontrol/fwdownload.c projects/diffused_head/sbin/camcontrol/modeedit.c projects/diffused_head/sbin/ccdconfig/ccdconfig.c projects/diffused_head/sbin/ddb/ddb.c projects/diffused_head/sbin/devd/devd.cc projects/diffused_head/sbin/devd/devd.conf.5 projects/diffused_head/sbin/dump/traverse.c projects/diffused_head/sbin/dumpfs/dumpfs.c projects/diffused_head/sbin/dumpon/dumpon.8 projects/diffused_head/sbin/dumpon/dumpon.c projects/diffused_head/sbin/etherswitchcfg/etherswitchcfg.c projects/diffused_head/sbin/etherswitchcfg/ifmedia.c projects/diffused_head/sbin/fsck/Makefile projects/diffused_head/sbin/fsck/fsck.c projects/diffused_head/sbin/fsck/fsutil.c projects/diffused_head/sbin/fsck/fsutil.h projects/diffused_head/sbin/fsck/preen.c projects/diffused_head/sbin/fsck_ffs/fsutil.c projects/diffused_head/sbin/fsck_ffs/gjournal.c projects/diffused_head/sbin/fsck_ffs/inode.c projects/diffused_head/sbin/fsck_ffs/main.c projects/diffused_head/sbin/fsck_ffs/pass1.c projects/diffused_head/sbin/fsck_ffs/pass2.c projects/diffused_head/sbin/fsck_ffs/pass4.c projects/diffused_head/sbin/fsck_ffs/suj.c projects/diffused_head/sbin/fsck_msdosfs/Makefile projects/diffused_head/sbin/fsck_msdosfs/boot.c projects/diffused_head/sbin/fsck_msdosfs/check.c projects/diffused_head/sbin/fsck_msdosfs/dir.c projects/diffused_head/sbin/fsck_msdosfs/ext.h projects/diffused_head/sbin/fsck_msdosfs/fat.c projects/diffused_head/sbin/fsdb/fsdb.c projects/diffused_head/sbin/fsdb/fsdbutil.c projects/diffused_head/sbin/fsirand/fsirand.c projects/diffused_head/sbin/geom/core/geom.c projects/diffused_head/sbin/ggate/ggatec/ggatec.c projects/diffused_head/sbin/ggate/ggated/ggated.c projects/diffused_head/sbin/ggate/ggatel/ggatel.c projects/diffused_head/sbin/growfs/growfs.8 projects/diffused_head/sbin/growfs/growfs.c projects/diffused_head/sbin/hastd/pjdlog.h projects/diffused_head/sbin/ifconfig/af_inet6.c projects/diffused_head/sbin/ifconfig/ifconfig.8 projects/diffused_head/sbin/ipfw/ipfw.8 projects/diffused_head/sbin/ipfw/ipv6.c projects/diffused_head/sbin/mdconfig/mdconfig.8 projects/diffused_head/sbin/mdconfig/mdconfig.c projects/diffused_head/sbin/mount/getmntopts.3 projects/diffused_head/sbin/mount/mount.8 projects/diffused_head/sbin/mount/mount.c projects/diffused_head/sbin/natd/natd.c projects/diffused_head/sbin/newfs/mkfs.c projects/diffused_head/sbin/newfs/newfs.c projects/diffused_head/sbin/newfs/newfs.h projects/diffused_head/sbin/pfctl/pf_print_state.c projects/diffused_head/sbin/pfctl/pfctl.8 projects/diffused_head/sbin/ping/ping.c projects/diffused_head/sbin/ping6/ping6.c projects/diffused_head/sbin/quotacheck/quotacheck.c projects/diffused_head/sbin/rcorder/rcorder.c projects/diffused_head/sbin/restore/dirs.c projects/diffused_head/sbin/restore/interactive.c projects/diffused_head/sbin/restore/restore.c projects/diffused_head/sbin/restore/symtab.c projects/diffused_head/sbin/restore/tape.c projects/diffused_head/sbin/route/keywords projects/diffused_head/sbin/route/route.8 projects/diffused_head/sbin/route/route.c projects/diffused_head/sbin/tunefs/tunefs.c projects/diffused_head/sbin/umount/umount.c projects/diffused_head/secure/usr.bin/bdes/bdes.1 projects/diffused_head/share/Makefile projects/diffused_head/share/dict/freebsd projects/diffused_head/share/doc/Makefile projects/diffused_head/share/doc/smm/01.setup/3.t projects/diffused_head/share/doc/smm/01.setup/4.t projects/diffused_head/share/examples/Makefile projects/diffused_head/share/examples/csh/dot.cshrc projects/diffused_head/share/examples/cvsup/ports-supfile projects/diffused_head/share/examples/diskless/README.BOOTP projects/diffused_head/share/examples/etc/README.examples projects/diffused_head/share/examples/etc/make.conf projects/diffused_head/share/examples/ses/sesd/sesd.0 projects/diffused_head/share/examples/ses/srcs/eltsub.c projects/diffused_head/share/examples/ses/srcs/sesd.c projects/diffused_head/share/man/man1/Makefile projects/diffused_head/share/man/man3/siginfo.3 projects/diffused_head/share/man/man3/sysexits.3 projects/diffused_head/share/man/man4/Makefile projects/diffused_head/share/man/man4/ata.4 projects/diffused_head/share/man/man4/carp.4 projects/diffused_head/share/man/man4/ddb.4 projects/diffused_head/share/man/man4/est.4 projects/diffused_head/share/man/man4/hptiop.4 projects/diffused_head/share/man/man4/hwpmc.4 projects/diffused_head/share/man/man4/icmp6.4 projects/diffused_head/share/man/man4/ip.4 projects/diffused_head/share/man/man4/ip6.4 projects/diffused_head/share/man/man4/ipfirewall.4 projects/diffused_head/share/man/man4/ipsec.4 projects/diffused_head/share/man/man4/ktr.4 projects/diffused_head/share/man/man4/lagg.4 projects/diffused_head/share/man/man4/ng_UI.4 projects/diffused_head/share/man/man4/ng_async.4 projects/diffused_head/share/man/man4/ng_atm.4 projects/diffused_head/share/man/man4/ng_atmllc.4 projects/diffused_head/share/man/man4/ng_bluetooth.4 projects/diffused_head/share/man/man4/ng_bpf.4 projects/diffused_head/share/man/man4/ng_bridge.4 projects/diffused_head/share/man/man4/ng_bt3c.4 projects/diffused_head/share/man/man4/ng_btsocket.4 projects/diffused_head/share/man/man4/ng_car.4 projects/diffused_head/share/man/man4/ng_ccatm.4 projects/diffused_head/share/man/man4/ng_cisco.4 projects/diffused_head/share/man/man4/ng_deflate.4 projects/diffused_head/share/man/man4/ng_eiface.4 projects/diffused_head/share/man/man4/ng_etf.4 projects/diffused_head/share/man/man4/ng_ether.4 projects/diffused_head/share/man/man4/ng_fec.4 projects/diffused_head/share/man/man4/ng_frame_relay.4 projects/diffused_head/share/man/man4/ng_gif.4 projects/diffused_head/share/man/man4/ng_gif_demux.4 projects/diffused_head/share/man/man4/ng_h4.4 projects/diffused_head/share/man/man4/ng_hci.4 projects/diffused_head/share/man/man4/ng_hole.4 projects/diffused_head/share/man/man4/ng_hub.4 projects/diffused_head/share/man/man4/ng_iface.4 projects/diffused_head/share/man/man4/ng_ksocket.4 projects/diffused_head/share/man/man4/ng_l2cap.4 projects/diffused_head/share/man/man4/ng_l2tp.4 projects/diffused_head/share/man/man4/ng_lmi.4 projects/diffused_head/share/man/man4/ng_mppc.4 projects/diffused_head/share/man/man4/ng_nat.4 projects/diffused_head/share/man/man4/ng_netflow.4 projects/diffused_head/share/man/man4/ng_one2many.4 projects/diffused_head/share/man/man4/ng_patch.4 projects/diffused_head/share/man/man4/ng_ppp.4 projects/diffused_head/share/man/man4/ng_pppoe.4 projects/diffused_head/share/man/man4/ng_pptpgre.4 projects/diffused_head/share/man/man4/ng_pred1.4 projects/diffused_head/share/man/man4/ng_rfc1490.4 projects/diffused_head/share/man/man4/ng_source.4 projects/diffused_head/share/man/man4/ng_split.4 projects/diffused_head/share/man/man4/ng_sppp.4 projects/diffused_head/share/man/man4/ng_sscfu.4 projects/diffused_head/share/man/man4/ng_sscop.4 projects/diffused_head/share/man/man4/ng_tag.4 projects/diffused_head/share/man/man4/ng_tcpmss.4 projects/diffused_head/share/man/man4/ng_tee.4 projects/diffused_head/share/man/man4/ng_tty.4 projects/diffused_head/share/man/man4/ng_ubt.4 projects/diffused_head/share/man/man4/ng_uni.4 projects/diffused_head/share/man/man4/ng_vjc.4 projects/diffused_head/share/man/man4/ng_vlan.4 projects/diffused_head/share/man/man4/pf.4 projects/diffused_head/share/man/man4/random.4 projects/diffused_head/share/man/man4/textdump.4 projects/diffused_head/share/man/man4/unix.4 projects/diffused_head/share/man/man4/usb_quirk.4 projects/diffused_head/share/man/man4/vale.4 projects/diffused_head/share/man/man4/virtio.4 projects/diffused_head/share/man/man5/Makefile projects/diffused_head/share/man/man5/core.5 projects/diffused_head/share/man/man5/fstab.5 projects/diffused_head/share/man/man5/make.conf.5 projects/diffused_head/share/man/man5/portindex.5 projects/diffused_head/share/man/man5/rc.conf.5 projects/diffused_head/share/man/man5/src.conf.5 projects/diffused_head/share/man/man7/Makefile projects/diffused_head/share/man/man7/build.7 projects/diffused_head/share/man/man7/development.7 projects/diffused_head/share/man/man7/environ.7 projects/diffused_head/share/man/man7/hier.7 projects/diffused_head/share/man/man7/ports.7 projects/diffused_head/share/man/man7/release.7 projects/diffused_head/share/man/man7/tuning.7 projects/diffused_head/share/man/man9/Makefile projects/diffused_head/share/man/man9/buf_ring.9 projects/diffused_head/share/man/man9/disk.9 projects/diffused_head/share/man/man9/domain.9 projects/diffused_head/share/man/man9/drbr.9 projects/diffused_head/share/man/man9/firmware.9 projects/diffused_head/share/man/man9/malloc.9 projects/diffused_head/share/man/man9/mbuf.9 projects/diffused_head/share/man/man9/mi_switch.9 projects/diffused_head/share/man/man9/module.9 projects/diffused_head/share/man/man9/namei.9 projects/diffused_head/share/man/man9/pfil.9 projects/diffused_head/share/man/man9/sleep.9 projects/diffused_head/share/man/man9/timeout.9 projects/diffused_head/share/man/man9/vinvalbuf.9 projects/diffused_head/share/man/man9/zero_copy.9 projects/diffused_head/share/man/man9/zone.9 projects/diffused_head/share/misc/bsd-family-tree projects/diffused_head/share/misc/committers-doc.dot projects/diffused_head/share/misc/committers-ports.dot projects/diffused_head/share/misc/committers-src.dot projects/diffused_head/share/misc/flowers (contents, props changed) projects/diffused_head/share/misc/organization.dot projects/diffused_head/share/misc/pci_vendors projects/diffused_head/share/mk/Makefile projects/diffused_head/share/mk/bsd.compiler.mk projects/diffused_head/share/mk/bsd.cpu.mk projects/diffused_head/share/mk/bsd.crunchgen.mk projects/diffused_head/share/mk/bsd.dep.mk projects/diffused_head/share/mk/bsd.libnames.mk projects/diffused_head/share/mk/bsd.obj.mk projects/diffused_head/share/mk/bsd.own.mk projects/diffused_head/share/mk/bsd.subdir.mk projects/diffused_head/share/mk/bsd.sys.mk projects/diffused_head/share/mk/sys.mk projects/diffused_head/share/skel/dot.cshrc projects/diffused_head/share/syscons/keymaps/INDEX.keymaps projects/diffused_head/share/syscons/keymaps/Makefile projects/diffused_head/share/termcap/termcap.src projects/diffused_head/sys/amd64/amd64/identcpu.c projects/diffused_head/sys/amd64/amd64/initcpu.c projects/diffused_head/sys/amd64/amd64/machdep.c projects/diffused_head/sys/amd64/amd64/minidump_machdep.c projects/diffused_head/sys/amd64/amd64/mp_machdep.c projects/diffused_head/sys/amd64/amd64/pmap.c projects/diffused_head/sys/amd64/amd64/trap.c projects/diffused_head/sys/amd64/amd64/uma_machdep.c projects/diffused_head/sys/amd64/conf/NOTES projects/diffused_head/sys/amd64/include/atomic.h projects/diffused_head/sys/amd64/include/intr_machdep.h projects/diffused_head/sys/amd64/include/md_var.h projects/diffused_head/sys/amd64/include/pc/bios.h projects/diffused_head/sys/amd64/pci/pci_cfgreg.c projects/diffused_head/sys/arm/arm/busdma_machdep-v6.c projects/diffused_head/sys/arm/arm/cpufunc.c projects/diffused_head/sys/arm/arm/cpufunc_asm_armv7.S projects/diffused_head/sys/arm/arm/locore.S projects/diffused_head/sys/arm/arm/machdep.c projects/diffused_head/sys/arm/arm/mpcore_timer.c projects/diffused_head/sys/arm/arm/pl310.c projects/diffused_head/sys/arm/arm/pmap-v6.c projects/diffused_head/sys/arm/arm/pmap.c projects/diffused_head/sys/arm/arm/vm_machdep.c projects/diffused_head/sys/arm/at91/at91_machdep.c projects/diffused_head/sys/arm/at91/at91_rtc.c projects/diffused_head/sys/arm/at91/at91_rtcreg.h projects/diffused_head/sys/arm/at91/files.at91 projects/diffused_head/sys/arm/broadcom/bcm2835/bcm2835_fb.c projects/diffused_head/sys/arm/broadcom/bcm2835/bcm2835_machdep.c projects/diffused_head/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/diffused_head/sys/arm/broadcom/bcm2835/files.bcm2835 projects/diffused_head/sys/arm/conf/ARMADAXP projects/diffused_head/sys/arm/conf/BEAGLEBONE projects/diffused_head/sys/arm/conf/CAMBRIA projects/diffused_head/sys/arm/conf/CNS11XXNAS projects/diffused_head/sys/arm/conf/DOCKSTAR projects/diffused_head/sys/arm/conf/EA3250 projects/diffused_head/sys/arm/conf/GUMSTIX-QEMU projects/diffused_head/sys/arm/conf/HL201 projects/diffused_head/sys/arm/conf/KB920X projects/diffused_head/sys/arm/conf/LN2410SBC projects/diffused_head/sys/arm/conf/PANDABOARD projects/diffused_head/sys/arm/conf/QILA9G20 projects/diffused_head/sys/arm/conf/RPI-B projects/diffused_head/sys/arm/conf/SAM9G20EK projects/diffused_head/sys/arm/conf/SAM9X25EK projects/diffused_head/sys/arm/conf/SHEEVAPLUG projects/diffused_head/sys/arm/conf/SN9G45 projects/diffused_head/sys/arm/conf/TS7800 projects/diffused_head/sys/arm/econa/econa_machdep.c projects/diffused_head/sys/arm/include/atomic.h projects/diffused_head/sys/arm/include/cpufunc.h projects/diffused_head/sys/arm/include/machdep.h projects/diffused_head/sys/arm/include/pmap.h projects/diffused_head/sys/arm/lpc/lpc_gpio.c projects/diffused_head/sys/arm/lpc/lpc_machdep.c projects/diffused_head/sys/arm/mv/armadaxp/armadaxp_mp.c projects/diffused_head/sys/arm/mv/mv_machdep.c projects/diffused_head/sys/arm/mv/mvreg.h projects/diffused_head/sys/arm/s3c2xx0/s3c24x0_machdep.c projects/diffused_head/sys/arm/sa11x0/assabet_machdep.c projects/diffused_head/sys/arm/tegra/common.c projects/diffused_head/sys/arm/tegra/std.tegra2 projects/diffused_head/sys/arm/tegra/tegra2_machdep.c projects/diffused_head/sys/arm/ti/am335x/am335x_dmtimer.c projects/diffused_head/sys/arm/ti/cpsw/if_cpsw.c projects/diffused_head/sys/arm/ti/omap4/omap4_mp.c projects/diffused_head/sys/arm/ti/ti_machdep.c projects/diffused_head/sys/arm/ti/ti_scm.c projects/diffused_head/sys/arm/ti/usb/omap_ehci.c projects/diffused_head/sys/arm/xscale/i80321/ep80219_machdep.c projects/diffused_head/sys/arm/xscale/i80321/iq31244_machdep.c projects/diffused_head/sys/arm/xscale/i8134x/crb_machdep.c projects/diffused_head/sys/arm/xscale/ixp425/avila_machdep.c projects/diffused_head/sys/arm/xscale/pxa/pxa_machdep.c projects/diffused_head/sys/boot/common/Makefile.inc projects/diffused_head/sys/boot/common/bootstrap.h projects/diffused_head/sys/boot/common/console.c projects/diffused_head/sys/boot/common/disk.c projects/diffused_head/sys/boot/common/disk.h projects/diffused_head/sys/boot/common/interp.c projects/diffused_head/sys/boot/common/interp_forth.c projects/diffused_head/sys/boot/common/module.c projects/diffused_head/sys/boot/common/reloc_elf.c projects/diffused_head/sys/boot/efi/Makefile.inc projects/diffused_head/sys/boot/fdt/dts/bcm2835-rpi-b.dts projects/diffused_head/sys/boot/ficl/Makefile projects/diffused_head/sys/boot/forth/beastie.4th projects/diffused_head/sys/boot/forth/color.4th.8 projects/diffused_head/sys/boot/forth/loader.4th projects/diffused_head/sys/boot/forth/loader.conf projects/diffused_head/sys/boot/forth/menu-commands.4th projects/diffused_head/sys/boot/forth/menu.4th projects/diffused_head/sys/boot/forth/menu.rc projects/diffused_head/sys/boot/i386/Makefile.inc projects/diffused_head/sys/boot/i386/boot2/boot2.c projects/diffused_head/sys/boot/i386/boot2/lib.h projects/diffused_head/sys/boot/i386/boot2/sio.S projects/diffused_head/sys/boot/i386/btx/btx/btx.S projects/diffused_head/sys/boot/i386/common/edd.h projects/diffused_head/sys/boot/i386/gptboot/gptboot.c projects/diffused_head/sys/boot/i386/libi386/biosdisk.c projects/diffused_head/sys/boot/i386/libi386/comconsole.c projects/diffused_head/sys/boot/i386/loader/Makefile projects/diffused_head/sys/boot/i386/loader/conf.c projects/diffused_head/sys/boot/i386/loader/main.c projects/diffused_head/sys/boot/i386/zfsboot/zfsboot.c projects/diffused_head/sys/boot/ia64/common/Makefile projects/diffused_head/sys/boot/ofw/libofw/devicename.c projects/diffused_head/sys/boot/pc98/Makefile.inc projects/diffused_head/sys/boot/pc98/boot2/Makefile projects/diffused_head/sys/boot/pc98/boot2/boot2.c projects/diffused_head/sys/boot/pc98/btx/btx/btx.S projects/diffused_head/sys/boot/pc98/cdboot/Makefile projects/diffused_head/sys/boot/pc98/libpc98/comconsole.c projects/diffused_head/sys/boot/pc98/loader/Makefile projects/diffused_head/sys/boot/pc98/loader/main.c projects/diffused_head/sys/boot/powerpc/boot1.chrp/boot1.c projects/diffused_head/sys/boot/powerpc/ofw/Makefile projects/diffused_head/sys/boot/powerpc/ps3/Makefile projects/diffused_head/sys/boot/sparc64/boot1/boot1.c projects/diffused_head/sys/boot/sparc64/loader/Makefile projects/diffused_head/sys/boot/uboot/lib/disk.c projects/diffused_head/sys/boot/uboot/lib/elf_freebsd.c projects/diffused_head/sys/boot/userboot/ficl/Makefile projects/diffused_head/sys/boot/userboot/test/test.c projects/diffused_head/sys/boot/userboot/userboot.h projects/diffused_head/sys/boot/userboot/userboot/libuserboot.h projects/diffused_head/sys/boot/userboot/userboot/main.c projects/diffused_head/sys/boot/userboot/userboot/userboot_disk.c projects/diffused_head/sys/boot/zfs/Makefile projects/diffused_head/sys/boot/zfs/libzfs.h projects/diffused_head/sys/boot/zfs/zfs.c projects/diffused_head/sys/boot/zfs/zfsimpl.c projects/diffused_head/sys/bsm/audit_kevents.h projects/diffused_head/sys/cam/ata/ata_da.c projects/diffused_head/sys/cam/ata/ata_pmp.c projects/diffused_head/sys/cam/ata/ata_xpt.c projects/diffused_head/sys/cam/cam.h projects/diffused_head/sys/cam/cam_periph.c projects/diffused_head/sys/cam/cam_queue.c projects/diffused_head/sys/cam/cam_xpt.c projects/diffused_head/sys/cam/ctl/ctl.c projects/diffused_head/sys/cam/ctl/ctl_backend_block.c projects/diffused_head/sys/cam/ctl/ctl_backend_ramdisk.c projects/diffused_head/sys/cam/ctl/ctl_frontend_cam_sim.c projects/diffused_head/sys/cam/ctl/scsi_ctl.c projects/diffused_head/sys/cam/scsi/scsi_cd.c projects/diffused_head/sys/cam/scsi/scsi_ch.c projects/diffused_head/sys/cam/scsi/scsi_da.c projects/diffused_head/sys/cam/scsi/scsi_enc.c projects/diffused_head/sys/cam/scsi/scsi_enc_ses.c projects/diffused_head/sys/cam/scsi/scsi_pass.c projects/diffused_head/sys/cam/scsi/scsi_pt.c projects/diffused_head/sys/cam/scsi/scsi_sa.c projects/diffused_head/sys/cam/scsi/scsi_sg.c projects/diffused_head/sys/cam/scsi/scsi_xpt.c projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_kobj.c projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_lookup.c projects/diffused_head/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c projects/diffused_head/sys/cddl/compat/opensolaris/sys/dkio.h projects/diffused_head/sys/cddl/compat/opensolaris/sys/vnode.h projects/diffused_head/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_tx.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_scan.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/sa_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/vdev_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_debug.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_file.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_label.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_mirror.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_raidz.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ctldir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/diffused_head/sys/cddl/contrib/opensolaris/uts/common/sys/procset.h projects/diffused_head/sys/cddl/dev/lockstat/lockstat.c projects/diffused_head/sys/cddl/dev/profile/profile.c projects/diffused_head/sys/compat/freebsd32/freebsd32.h projects/diffused_head/sys/compat/freebsd32/freebsd32_misc.c projects/diffused_head/sys/compat/freebsd32/freebsd32_proto.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscall.h projects/diffused_head/sys/compat/freebsd32/freebsd32_syscalls.c projects/diffused_head/sys/compat/freebsd32/freebsd32_sysent.c projects/diffused_head/sys/compat/freebsd32/freebsd32_systrace_args.c projects/diffused_head/sys/compat/freebsd32/syscalls.master projects/diffused_head/sys/compat/linprocfs/linprocfs.c projects/diffused_head/sys/compat/linux/linux_file.c projects/diffused_head/sys/compat/linux/linux_ioctl.c projects/diffused_head/sys/compat/linux/linux_misc.c projects/diffused_head/sys/compat/ndis/subr_ndis.c projects/diffused_head/sys/compat/svr4/svr4_misc.c projects/diffused_head/sys/conf/Makefile.arm projects/diffused_head/sys/conf/Makefile.pc98 projects/diffused_head/sys/conf/NOTES projects/diffused_head/sys/conf/files projects/diffused_head/sys/conf/files.amd64 projects/diffused_head/sys/conf/files.arm projects/diffused_head/sys/conf/files.i386 projects/diffused_head/sys/conf/files.ia64 projects/diffused_head/sys/conf/files.mips projects/diffused_head/sys/conf/files.pc98 projects/diffused_head/sys/conf/files.powerpc projects/diffused_head/sys/conf/files.sparc64 projects/diffused_head/sys/conf/kern.post.mk projects/diffused_head/sys/conf/kern.pre.mk projects/diffused_head/sys/conf/kmod.mk projects/diffused_head/sys/conf/newvers.sh projects/diffused_head/sys/conf/options projects/diffused_head/sys/conf/options.ia64 projects/diffused_head/sys/conf/options.mips projects/diffused_head/sys/contrib/altq/altq/altq_hfsc.c projects/diffused_head/sys/contrib/altq/altq/altq_priq.c projects/diffused_head/sys/contrib/altq/altq/altq_red.c projects/diffused_head/sys/contrib/altq/altq/altq_rio.c projects/diffused_head/sys/contrib/altq/altq/altq_rmclass.c projects/diffused_head/sys/contrib/dev/acpica/changes.txt (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/adfile.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/adisasm.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/adwalk.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/dmextern.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/dmrestag.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/dmtable.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/dmtbdump.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/dmtbinfo.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/common/getopt.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcodegen.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompile.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.y (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asldefine.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslerror.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfiles.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslfold.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslglobal.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asllength.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asllisting.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslload.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asllookup.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmain.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmap.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslmessages.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslopcodes.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asloperands.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslopt.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslresource.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype1.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype1i.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2d.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2e.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2q.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2w.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstartup.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslstubs.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslsupport.l (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asltransform.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asltree.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asltypes.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslwalks.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompile.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtio.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dttable.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dttemplate.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dttemplate.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/preprocess.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbcmds.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbdisply.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbexec.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbfileio.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbhistry.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbinput.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbmethod.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbnames.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbstats.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/dbxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmbuffer.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmnames.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmobject.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmopcode.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmresrc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmresrcl.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmresrcl2.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmresrcs.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/dmwalk.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dscontrol.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsfield.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsinit.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsmethod.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsmthdat.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsobject.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsopcode.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswexec.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswload2.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswscope.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswstate.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evevent.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evrgnini.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evxfgpe.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evxfregn.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exconfig.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exconvrt.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/excreate.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exdebug.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exdump.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exfield.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exfldio.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exmisc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exmutex.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exnames.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exoparg1.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exoparg2.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exoparg3.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exoparg6.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exprep.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exregion.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exresnte.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exresolv.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exresop.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exstore.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exstoren.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exstorob.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exsystem.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/exutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwacpi.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwgpe.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwpci.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwregs.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwtimer.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwvalid.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsaccess.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsalloc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsdump.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsdumpdv.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nseval.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsinit.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsload.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsnames.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsobject.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsparse.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nssearch.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nswalk.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsxfeval.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsxfname.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsxfobj.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psargs.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psloop.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psopcode.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psparse.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psscope.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/pstree.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/psxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsaddr.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rscalc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rscreate.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsdump.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsio.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rslist.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsmemory.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsmisc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbfadt.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbfind.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbinstal.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbutils.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxfload.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/tbxfroot.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utalloc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utcache.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utcopy.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utdebug.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utdelete.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utids.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utinit.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utlock.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utmath.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utmisc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utmutex.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utobject.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utresrc.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utstate.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/uttrack.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxface.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxferror.c (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acapps.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acconfig.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acdebug.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acdisasm.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acexcep.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acglobal.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/aclocal.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acmacros.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acnames.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acobject.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acopcode.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acpiosxf.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acpixf.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acrestyp.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acstruct.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actbl1.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actbl2.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actbl3.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actypes.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acutils.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/amlresrc.h (contents, props changed) projects/diffused_head/sys/contrib/dev/acpica/include/platform/acenv.h (contents, props changed) projects/diffused_head/sys/contrib/ipfilter/netinet/fil.c projects/diffused_head/sys/contrib/ipfilter/netinet/ip_auth.c projects/diffused_head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c projects/diffused_head/sys/contrib/ngatm/netnatm/msg/uni_ie.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-app-init.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-ebt3000.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-board.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper-spi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-helper.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-pow.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-spi.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx-utils.h projects/diffused_head/sys/contrib/octeon-sdk/cvmx-warn.c projects/diffused_head/sys/contrib/octeon-sdk/cvmx.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-feature.c projects/diffused_head/sys/contrib/octeon-sdk/octeon-feature.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-model.c projects/diffused_head/sys/contrib/octeon-sdk/octeon-model.h projects/diffused_head/sys/contrib/octeon-sdk/octeon-pci-console.c projects/diffused_head/sys/contrib/rdma/rdma_addr.c projects/diffused_head/sys/ddb/db_command.c projects/diffused_head/sys/ddb/db_textdump.c projects/diffused_head/sys/dev/aac/aac_cam.c projects/diffused_head/sys/dev/aac/aac_debug.c projects/diffused_head/sys/dev/acpi_support/acpi_ibm.c projects/diffused_head/sys/dev/acpi_support/acpi_wmi.c projects/diffused_head/sys/dev/acpica/acpi.c projects/diffused_head/sys/dev/acpica/acpi_cpu.c projects/diffused_head/sys/dev/acpica/acpi_pcib_acpi.c projects/diffused_head/sys/dev/acpica/acpi_thermal.c projects/diffused_head/sys/dev/acpica/acpi_video.c projects/diffused_head/sys/dev/acpica/acpivar.h projects/diffused_head/sys/dev/adb/adb_mouse.c projects/diffused_head/sys/dev/advansys/adv_eisa.c projects/diffused_head/sys/dev/advansys/adv_isa.c projects/diffused_head/sys/dev/advansys/adv_pci.c projects/diffused_head/sys/dev/advansys/advansys.c projects/diffused_head/sys/dev/advansys/advansys.h projects/diffused_head/sys/dev/advansys/advlib.c projects/diffused_head/sys/dev/advansys/advlib.h projects/diffused_head/sys/dev/advansys/adw_pci.c projects/diffused_head/sys/dev/advansys/adwcam.c projects/diffused_head/sys/dev/advansys/adwlib.c projects/diffused_head/sys/dev/advansys/adwlib.h projects/diffused_head/sys/dev/advansys/adwvar.h projects/diffused_head/sys/dev/age/if_age.c projects/diffused_head/sys/dev/agp/agp.c projects/diffused_head/sys/dev/agp/agp_ali.c projects/diffused_head/sys/dev/agp/agp_amd.c projects/diffused_head/sys/dev/agp/agp_amd64.c projects/diffused_head/sys/dev/agp/agp_apple.c projects/diffused_head/sys/dev/agp/agp_ati.c projects/diffused_head/sys/dev/agp/agp_i810.c projects/diffused_head/sys/dev/agp/agp_intel.c projects/diffused_head/sys/dev/agp/agp_nvidia.c projects/diffused_head/sys/dev/agp/agp_sis.c projects/diffused_head/sys/dev/agp/agp_via.c projects/diffused_head/sys/dev/aha/aha.c projects/diffused_head/sys/dev/aha/aha_isa.c projects/diffused_head/sys/dev/aha/aha_mca.c projects/diffused_head/sys/dev/aha/ahareg.h projects/diffused_head/sys/dev/ahb/ahb.c projects/diffused_head/sys/dev/ahb/ahbreg.h projects/diffused_head/sys/dev/ahci/ahci.c projects/diffused_head/sys/dev/ahci/ahciem.c projects/diffused_head/sys/dev/aic/aic.c projects/diffused_head/sys/dev/aic/aic_cbus.c projects/diffused_head/sys/dev/aic/aic_isa.c projects/diffused_head/sys/dev/aic/aic_pccard.c projects/diffused_head/sys/dev/aic/aicvar.h projects/diffused_head/sys/dev/aic7xxx/aicasm/aicasm_gram.y projects/diffused_head/sys/dev/alc/if_alc.c projects/diffused_head/sys/dev/ale/if_ale.c projects/diffused_head/sys/dev/altera/jtag_uart/altera_jtag_uart_cons.c projects/diffused_head/sys/dev/amr/amr.c projects/diffused_head/sys/dev/arcmsr/arcmsr.c projects/diffused_head/sys/dev/asmc/asmc.c projects/diffused_head/sys/dev/ata/ata-all.c projects/diffused_head/sys/dev/ata/ata-all.h projects/diffused_head/sys/dev/ata/ata-card.c projects/diffused_head/sys/dev/ata/ata-lowlevel.c projects/diffused_head/sys/dev/ata/ata-sata.c projects/diffused_head/sys/dev/ata/chipsets/ata-acard.c projects/diffused_head/sys/dev/ata/chipsets/ata-acerlabs.c projects/diffused_head/sys/dev/ata/chipsets/ata-adaptec.c projects/diffused_head/sys/dev/ata/chipsets/ata-ahci.c projects/diffused_head/sys/dev/ata/chipsets/ata-amd.c projects/diffused_head/sys/dev/ata/chipsets/ata-ati.c projects/diffused_head/sys/dev/ata/chipsets/ata-highpoint.c projects/diffused_head/sys/dev/ata/chipsets/ata-intel.c projects/diffused_head/sys/dev/ata/chipsets/ata-ite.c projects/diffused_head/sys/dev/ata/chipsets/ata-jmicron.c projects/diffused_head/sys/dev/ata/chipsets/ata-marvell.c projects/diffused_head/sys/dev/ata/chipsets/ata-nvidia.c projects/diffused_head/sys/dev/ata/chipsets/ata-promise.c projects/diffused_head/sys/dev/ata/chipsets/ata-serverworks.c projects/diffused_head/sys/dev/ata/chipsets/ata-siliconimage.c projects/diffused_head/sys/dev/ata/chipsets/ata-sis.c projects/diffused_head/sys/dev/ata/chipsets/ata-via.c projects/diffused_head/sys/dev/ath/ath_hal/ah.c projects/diffused_head/sys/dev/ath/ath_hal/ah.h projects/diffused_head/sys/dev/ath/ath_hal/ah_debug.h projects/diffused_head/sys/dev/ath/ath_hal/ah_devid.h projects/diffused_head/sys/dev/ath/ath_hal/ah_internal.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_reset.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210desc.h projects/diffused_head/sys/dev/ath/ath_hal/ar5210/ar5210reg.h projects/diffused_head/sys/dev/ath/ath_hal/ar5211/ar5211desc.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212.h projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5212/ar5212desc.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar2133.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416.h projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c projects/diffused_head/sys/dev/ath/ath_hal/ar5416/ar5416desc.h projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c projects/diffused_head/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c projects/diffused_head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c projects/diffused_head/sys/dev/ath/ath_rate/sample/sample.c projects/diffused_head/sys/dev/ath/if_ath.c projects/diffused_head/sys/dev/ath/if_ath_ahb.c projects/diffused_head/sys/dev/ath/if_ath_debug.c projects/diffused_head/sys/dev/ath/if_ath_debug.h projects/diffused_head/sys/dev/ath/if_ath_keycache.c projects/diffused_head/sys/dev/ath/if_ath_misc.h projects/diffused_head/sys/dev/ath/if_ath_pci.c projects/diffused_head/sys/dev/ath/if_ath_rx.c projects/diffused_head/sys/dev/ath/if_ath_rx_edma.c projects/diffused_head/sys/dev/ath/if_ath_sysctl.c projects/diffused_head/sys/dev/ath/if_ath_tdma.c projects/diffused_head/sys/dev/ath/if_ath_tx.c projects/diffused_head/sys/dev/ath/if_ath_tx.h projects/diffused_head/sys/dev/ath/if_ath_tx_edma.c projects/diffused_head/sys/dev/ath/if_ath_tx_ht.c projects/diffused_head/sys/dev/ath/if_athioctl.h projects/diffused_head/sys/dev/ath/if_athvar.h projects/diffused_head/sys/dev/atkbdc/psm.c projects/diffused_head/sys/dev/bce/if_bce.c projects/diffused_head/sys/dev/bce/if_bcereg.h projects/diffused_head/sys/dev/bge/if_bge.c projects/diffused_head/sys/dev/bge/if_bgereg.h projects/diffused_head/sys/dev/bktr/bktr_audio.c projects/diffused_head/sys/dev/buslogic/bt.c projects/diffused_head/sys/dev/buslogic/bt_eisa.c projects/diffused_head/sys/dev/buslogic/bt_isa.c projects/diffused_head/sys/dev/buslogic/bt_mca.c projects/diffused_head/sys/dev/buslogic/bt_pci.c projects/diffused_head/sys/dev/buslogic/btreg.h projects/diffused_head/sys/dev/bxe/if_bxe.c projects/diffused_head/sys/dev/cas/if_cas.c projects/diffused_head/sys/dev/ciss/cissvar.h projects/diffused_head/sys/dev/cpuctl/cpuctl.c projects/diffused_head/sys/dev/ct/bshw_machdep.c projects/diffused_head/sys/dev/ct/ct.c projects/diffused_head/sys/dev/ct/ct_isa.c projects/diffused_head/sys/dev/ct/ct_machdep.h projects/diffused_head/sys/dev/cxgb/cxgb_main.c projects/diffused_head/sys/dev/cxgb/cxgb_osdep.h projects/diffused_head/sys/dev/cxgb/cxgb_sge.c projects/diffused_head/sys/dev/cxgb/ulp/tom/cxgb_tom.h projects/diffused_head/sys/dev/cxgbe/adapter.h projects/diffused_head/sys/dev/cxgbe/common/common.h projects/diffused_head/sys/dev/cxgbe/common/t4_hw.c projects/diffused_head/sys/dev/cxgbe/osdep.h projects/diffused_head/sys/dev/cxgbe/t4_ioctl.h projects/diffused_head/sys/dev/cxgbe/t4_l2t.h projects/diffused_head/sys/dev/cxgbe/t4_main.c projects/diffused_head/sys/dev/cxgbe/t4_sge.c projects/diffused_head/sys/dev/cxgbe/tom/t4_cpl_io.c projects/diffused_head/sys/dev/cxgbe/tom/t4_listen.c projects/diffused_head/sys/dev/cxgbe/tom/t4_tom.h projects/diffused_head/sys/dev/dc/if_dc.c projects/diffused_head/sys/dev/dpt/dpt.h projects/diffused_head/sys/dev/dpt/dpt_eisa.c projects/diffused_head/sys/dev/dpt/dpt_isa.c projects/diffused_head/sys/dev/dpt/dpt_pci.c projects/diffused_head/sys/dev/dpt/dpt_scsi.c projects/diffused_head/sys/dev/drm/drmP.h projects/diffused_head/sys/dev/drm/via_dma.c projects/diffused_head/sys/dev/drm/via_dmablit.c projects/diffused_head/sys/dev/drm2/drm_drv.c projects/diffused_head/sys/dev/drm2/drm_gem.c projects/diffused_head/sys/dev/drm2/i915/i915_drv.c projects/diffused_head/sys/dev/drm2/i915/i915_drv.h projects/diffused_head/sys/dev/e1000/e1000_82575.c projects/diffused_head/sys/dev/e1000/e1000_ich8lan.c projects/diffused_head/sys/dev/e1000/if_em.c projects/diffused_head/sys/dev/e1000/if_igb.c projects/diffused_head/sys/dev/e1000/if_igb.h projects/diffused_head/sys/dev/e1000/if_lem.c projects/diffused_head/sys/dev/et/if_et.c projects/diffused_head/sys/dev/etherswitch/arswitch/arswitch.c projects/diffused_head/sys/dev/etherswitch/arswitch/arswitch_phy.c projects/diffused_head/sys/dev/etherswitch/arswitch/arswitch_reg.c projects/diffused_head/sys/dev/etherswitch/arswitch/arswitchvar.h projects/diffused_head/sys/dev/etherswitch/etherswitch.c projects/diffused_head/sys/dev/etherswitch/etherswitch_if.m projects/diffused_head/sys/dev/fdc/fdc.c projects/diffused_head/sys/dev/filemon/filemon.c projects/diffused_head/sys/dev/filemon/filemon_wrapper.c projects/diffused_head/sys/dev/flash/at45d.c projects/diffused_head/sys/dev/flash/mx25l.c projects/diffused_head/sys/dev/fxp/if_fxp.c projects/diffused_head/sys/dev/gem/if_gem_pci.c projects/diffused_head/sys/dev/gpio/gpiobus.c projects/diffused_head/sys/dev/gxemul/cons/gxemul_cons.c projects/diffused_head/sys/dev/hpt27xx/os_bsd.c projects/diffused_head/sys/dev/hptiop/hptiop.c projects/diffused_head/sys/dev/hptiop/hptiop.h projects/diffused_head/sys/dev/hwpmc/hwpmc_amd.c projects/diffused_head/sys/dev/hwpmc/hwpmc_core.c projects/diffused_head/sys/dev/hwpmc/hwpmc_intel.c projects/diffused_head/sys/dev/hwpmc/hwpmc_mod.c projects/diffused_head/sys/dev/hwpmc/pmc_events.h projects/diffused_head/sys/dev/ie/if_ie_isa.c projects/diffused_head/sys/dev/iicbus/iic.c projects/diffused_head/sys/dev/iicbus/pcf8563.c projects/diffused_head/sys/dev/iicbus/s35390a.c projects/diffused_head/sys/dev/ipmi/ipmi_smbios.c projects/diffused_head/sys/dev/isci/isci.c projects/diffused_head/sys/dev/isci/isci.h projects/diffused_head/sys/dev/isci/isci_controller.c projects/diffused_head/sys/dev/isci/scil/sati.c projects/diffused_head/sys/dev/isci/scil/sati_callbacks.h projects/diffused_head/sys/dev/isci/scil/sati_util.c projects/diffused_head/sys/dev/isci/scil/sati_write_buffer.c projects/diffused_head/sys/dev/isci/scil/sci_base_controller.h projects/diffused_head/sys/dev/isci/scil/sci_base_domain.h projects/diffused_head/sys/dev/isci/scil/sci_base_phy.h projects/diffused_head/sys/dev/isci/scil/sci_base_remote_device.h projects/diffused_head/sys/dev/isci/scil/scic_io_request.h projects/diffused_head/sys/dev/isci/scil/scic_sds_phy.c projects/diffused_head/sys/dev/isci/scil/scic_sds_port.h projects/diffused_head/sys/dev/isci/scil/scic_sds_remote_device.h projects/diffused_head/sys/dev/isci/scil/scic_sds_remote_node_context.h projects/diffused_head/sys/dev/isci/scil/scic_sds_request.c projects/diffused_head/sys/dev/isci/scil/scu_bios_definitions.h projects/diffused_head/sys/dev/isf/isf.c projects/diffused_head/sys/dev/isp/isp_freebsd.c projects/diffused_head/sys/dev/isp/isp_pci.c projects/diffused_head/sys/dev/isp/isp_sbus.c projects/diffused_head/sys/dev/iwn/if_iwn.c projects/diffused_head/sys/dev/ixgbe/ixgbe.c projects/diffused_head/sys/dev/ixgbe/ixgbe.h projects/diffused_head/sys/dev/ixgbe/ixv.c projects/diffused_head/sys/dev/jme/if_jme.c projects/diffused_head/sys/dev/lge/if_lge.c projects/diffused_head/sys/dev/md/md.c projects/diffused_head/sys/dev/mfi/mfi.c projects/diffused_head/sys/dev/mfi/mfi_cam.c projects/diffused_head/sys/dev/mfi/mfi_disk.c projects/diffused_head/sys/dev/mfi/mfi_syspd.c projects/diffused_head/sys/dev/mfi/mfi_tbolt.c projects/diffused_head/sys/dev/mfi/mfivar.h projects/diffused_head/sys/dev/mii/brgphy.c projects/diffused_head/sys/dev/mii/e1000phy.c projects/diffused_head/sys/dev/mii/mii.c projects/diffused_head/sys/dev/mii/smscphy.c projects/diffused_head/sys/dev/mlx/mlx.c projects/diffused_head/sys/dev/mlx/mlx_disk.c projects/diffused_head/sys/dev/mlx/mlx_pci.c projects/diffused_head/sys/dev/mlx/mlxreg.h projects/diffused_head/sys/dev/mlx/mlxvar.h projects/diffused_head/sys/dev/mly/mly.c projects/diffused_head/sys/dev/mmc/mmc.c projects/diffused_head/sys/dev/mn/if_mn.c projects/diffused_head/sys/dev/mps/mps_sas.c projects/diffused_head/sys/dev/mps/mps_user.c projects/diffused_head/sys/dev/mpt/mpt.c projects/diffused_head/sys/dev/mpt/mpt.h projects/diffused_head/sys/dev/mpt/mpt_cam.c projects/diffused_head/sys/dev/mpt/mpt_debug.c projects/diffused_head/sys/dev/mpt/mpt_pci.c projects/diffused_head/sys/dev/mpt/mpt_raid.c projects/diffused_head/sys/dev/mxge/if_mxge.c projects/diffused_head/sys/dev/nand/nandsim_swap.c projects/diffused_head/sys/dev/netmap/netmap.c projects/diffused_head/sys/dev/netmap/netmap_kern.h projects/diffused_head/sys/dev/netmap/netmap_mem2.c projects/diffused_head/sys/dev/nge/if_nge.c projects/diffused_head/sys/dev/null/null.c projects/diffused_head/sys/dev/nve/if_nve.c projects/diffused_head/sys/dev/nve/if_nvereg.h projects/diffused_head/sys/dev/nxge/xgehal/xgehal-device.c projects/diffused_head/sys/dev/oce/oce_if.c projects/diffused_head/sys/dev/pci/pci.c projects/diffused_head/sys/dev/pci/pci_user.c projects/diffused_head/sys/dev/pci/pcireg.h projects/diffused_head/sys/dev/puc/pucdata.c projects/diffused_head/sys/dev/re/if_re.c projects/diffused_head/sys/dev/sdhci/sdhci.c projects/diffused_head/sys/dev/sdhci/sdhci.h projects/diffused_head/sys/dev/sio/sio_isa.c projects/diffused_head/sys/dev/sis/if_sis.c projects/diffused_head/sys/dev/snc/dp83932.c projects/diffused_head/sys/dev/snc/dp83932subr.c projects/diffused_head/sys/dev/snc/if_snc.c projects/diffused_head/sys/dev/snc/if_snc_cbus.c projects/diffused_head/sys/dev/sound/pci/emu10kx.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa.c projects/diffused_head/sys/dev/sound/pci/hda/hdaa.h projects/diffused_head/sys/dev/sound/pci/hda/hdaa_patches.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.c projects/diffused_head/sys/dev/sound/pci/hda/hdac.h projects/diffused_head/sys/dev/sound/pci/hda/hdacc.c projects/diffused_head/sys/dev/sound/pci/hdspe-pcm.c projects/diffused_head/sys/dev/sound/pci/hdspe.c projects/diffused_head/sys/dev/sound/pcm/buffer.c projects/diffused_head/sys/dev/sound/pcm/channel.c projects/diffused_head/sys/dev/sound/pcm/feeder_matrix.c projects/diffused_head/sys/dev/sound/pcm/matrix.h projects/diffused_head/sys/dev/sound/pcm/matrix_map.h projects/diffused_head/sys/dev/sound/pcm/mixer.h projects/diffused_head/sys/dev/sound/pcm/sound.c projects/diffused_head/sys/dev/sound/usb/uaudio.c projects/diffused_head/sys/dev/sound/usb/uaudioreg.h projects/diffused_head/sys/dev/ste/if_ste.c projects/diffused_head/sys/dev/stge/if_stge.c projects/diffused_head/sys/dev/syscons/scvidctl.c projects/diffused_head/sys/dev/ti/if_ti.c projects/diffused_head/sys/dev/tl/if_tl.c projects/diffused_head/sys/dev/twa/tw_cl_misc.c projects/diffused_head/sys/dev/tws/tws.c projects/diffused_head/sys/dev/tws/tws.h projects/diffused_head/sys/dev/tws/tws_cam.c projects/diffused_head/sys/dev/tws/tws_hdm.h projects/diffused_head/sys/dev/tws/tws_user.c projects/diffused_head/sys/dev/uart/uart_bus_acpi.c projects/diffused_head/sys/dev/uart/uart_bus_isa.c projects/diffused_head/sys/dev/uart/uart_dev_pl011.c projects/diffused_head/sys/dev/usb/controller/at91dci.c projects/diffused_head/sys/dev/usb/controller/atmegadci.c projects/diffused_head/sys/dev/usb/controller/avr32dci.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.c projects/diffused_head/sys/dev/usb/controller/dwc_otg.h projects/diffused_head/sys/dev/usb/controller/dwc_otgreg.h projects/diffused_head/sys/dev/usb/controller/ehci.c projects/diffused_head/sys/dev/usb/controller/ehci.h projects/diffused_head/sys/dev/usb/controller/musb_otg.c projects/diffused_head/sys/dev/usb/controller/ohci.c projects/diffused_head/sys/dev/usb/controller/uhci.c projects/diffused_head/sys/dev/usb/controller/usb_controller.c projects/diffused_head/sys/dev/usb/controller/uss820dci.c projects/diffused_head/sys/dev/usb/controller/xhci.c projects/diffused_head/sys/dev/usb/input/uhid.c projects/diffused_head/sys/dev/usb/input/ukbd.c projects/diffused_head/sys/dev/usb/input/ums.c projects/diffused_head/sys/dev/usb/net/if_ipheth.c projects/diffused_head/sys/dev/usb/net/if_smsc.c projects/diffused_head/sys/dev/usb/net/if_udav.c projects/diffused_head/sys/dev/usb/net/uhso.c projects/diffused_head/sys/dev/usb/quirk/usb_quirk.c projects/diffused_head/sys/dev/usb/quirk/usb_quirk.h projects/diffused_head/sys/dev/usb/serial/u3g.c projects/diffused_head/sys/dev/usb/serial/uchcom.c projects/diffused_head/sys/dev/usb/serial/uftdi_reg.h projects/diffused_head/sys/dev/usb/serial/uplcom.c projects/diffused_head/sys/dev/usb/serial/usb_serial.c projects/diffused_head/sys/dev/usb/serial/usb_serial.h projects/diffused_head/sys/dev/usb/storage/umass.c projects/diffused_head/sys/dev/usb/usb.h projects/diffused_head/sys/dev/usb/usb_debug.c projects/diffused_head/sys/dev/usb/usb_debug.h projects/diffused_head/sys/dev/usb/usb_dev.c projects/diffused_head/sys/dev/usb/usb_device.c projects/diffused_head/sys/dev/usb/usb_generic.c projects/diffused_head/sys/dev/usb/usb_hub.c projects/diffused_head/sys/dev/usb/usb_msctest.c projects/diffused_head/sys/dev/usb/usb_pf.c projects/diffused_head/sys/dev/usb/usb_process.c projects/diffused_head/sys/dev/usb/usb_request.c projects/diffused_head/sys/dev/usb/usbdevs projects/diffused_head/sys/dev/usb/wlan/if_uath.c projects/diffused_head/sys/dev/usb/wlan/if_upgt.c projects/diffused_head/sys/dev/usb/wlan/if_urtw.c projects/diffused_head/sys/dev/virtio/virtio.c projects/diffused_head/sys/dev/virtio/virtio.h projects/diffused_head/sys/dev/virtio/virtqueue.c projects/diffused_head/sys/dev/vr/if_vr.c projects/diffused_head/sys/dev/vxge/include/vxgehal-ll.h projects/diffused_head/sys/dev/vxge/vxge.c projects/diffused_head/sys/dev/wb/if_wb.c projects/diffused_head/sys/dev/xen/blkback/blkback.c projects/diffused_head/sys/dev/xen/netback/netback_unit_tests.c projects/diffused_head/sys/dev/xl/if_xl.c projects/diffused_head/sys/fs/cd9660/cd9660_vfsops.c projects/diffused_head/sys/fs/coda/coda_subr.c projects/diffused_head/sys/fs/devfs/devfs_devs.c projects/diffused_head/sys/fs/devfs/devfs_int.h projects/diffused_head/sys/fs/devfs/devfs_vfsops.c projects/diffused_head/sys/fs/ext2fs/ext2_alloc.c projects/diffused_head/sys/fs/ext2fs/ext2_inode_cnv.c projects/diffused_head/sys/fs/ext2fs/ext2_vfsops.c projects/diffused_head/sys/fs/fdescfs/fdesc_vfsops.c projects/diffused_head/sys/fs/hpfs/hpfs_vfsops.c projects/diffused_head/sys/fs/msdosfs/msdosfs_denode.c projects/diffused_head/sys/fs/msdosfs/msdosfs_vfsops.c projects/diffused_head/sys/fs/nandfs/nandfs_subr.c projects/diffused_head/sys/fs/nandfs/nandfs_vfsops.c projects/diffused_head/sys/fs/nfs/nfs.h projects/diffused_head/sys/fs/nfs/nfs_commonacl.c projects/diffused_head/sys/fs/nfs/nfs_commonport.c projects/diffused_head/sys/fs/nfs/nfs_commonsubs.c projects/diffused_head/sys/fs/nfs/nfs_var.h projects/diffused_head/sys/fs/nfsclient/nfs_clcomsubs.c projects/diffused_head/sys/fs/nfsclient/nfs_clnode.c projects/diffused_head/sys/fs/nfsclient/nfs_clport.c projects/diffused_head/sys/fs/nfsclient/nfs_clvfsops.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdkrpc.c projects/diffused_head/sys/fs/nfsserver/nfs_nfsdport.c projects/diffused_head/sys/fs/ntfs/ntfs_subr.c projects/diffused_head/sys/fs/ntfs/ntfs_vfsops.c projects/diffused_head/sys/fs/ntfs/ntfs_vnops.c projects/diffused_head/sys/fs/nullfs/null_subr.c projects/diffused_head/sys/fs/nullfs/null_vfsops.c projects/diffused_head/sys/fs/nullfs/null_vnops.c projects/diffused_head/sys/fs/procfs/procfs_map.c projects/diffused_head/sys/fs/pseudofs/pseudofs.c projects/diffused_head/sys/fs/smbfs/smbfs.h projects/diffused_head/sys/fs/smbfs/smbfs_io.c projects/diffused_head/sys/fs/smbfs/smbfs_node.c projects/diffused_head/sys/fs/smbfs/smbfs_node.h projects/diffused_head/sys/fs/smbfs/smbfs_smb.c projects/diffused_head/sys/fs/smbfs/smbfs_subr.c projects/diffused_head/sys/fs/smbfs/smbfs_subr.h projects/diffused_head/sys/fs/smbfs/smbfs_vfsops.c projects/diffused_head/sys/fs/smbfs/smbfs_vnops.c projects/diffused_head/sys/fs/tmpfs/tmpfs_vfsops.c projects/diffused_head/sys/fs/udf/udf_vfsops.c projects/diffused_head/sys/fs/unionfs/union_subr.c projects/diffused_head/sys/fs/unionfs/union_vfsops.c projects/diffused_head/sys/fs/unionfs/union_vnops.c projects/diffused_head/sys/geom/bde/g_bde.c projects/diffused_head/sys/geom/cache/g_cache.c projects/diffused_head/sys/geom/geom.h projects/diffused_head/sys/geom/geom_aes.c projects/diffused_head/sys/geom/geom_dev.c projects/diffused_head/sys/geom/geom_disk.c projects/diffused_head/sys/geom/geom_disk.h projects/diffused_head/sys/geom/geom_mbr.c projects/diffused_head/sys/geom/geom_slice.c projects/diffused_head/sys/geom/geom_slice.h projects/diffused_head/sys/geom/geom_vfs.c projects/diffused_head/sys/geom/journal/g_journal.c projects/diffused_head/sys/geom/label/g_label.c projects/diffused_head/sys/geom/label/g_label_ufs.c projects/diffused_head/sys/geom/mountver/g_mountver.c projects/diffused_head/sys/geom/multipath/g_multipath.c projects/diffused_head/sys/geom/nop/g_nop.c projects/diffused_head/sys/geom/part/g_part.c projects/diffused_head/sys/geom/raid/g_raid.c projects/diffused_head/sys/geom/raid/g_raid.h projects/diffused_head/sys/geom/raid/g_raid_ctl.c projects/diffused_head/sys/geom/raid/md_ddf.c projects/diffused_head/sys/geom/raid/md_intel.c projects/diffused_head/sys/geom/raid/md_jmicron.c projects/diffused_head/sys/geom/raid/md_nvidia.c projects/diffused_head/sys/geom/raid/md_promise.c projects/diffused_head/sys/geom/raid/md_sii.c projects/diffused_head/sys/geom/raid/tr_concat.c projects/diffused_head/sys/geom/raid/tr_raid0.c projects/diffused_head/sys/geom/raid/tr_raid1.c projects/diffused_head/sys/geom/raid/tr_raid1e.c projects/diffused_head/sys/geom/sched/g_sched.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_inode.c projects/diffused_head/sys/gnu/fs/reiserfs/reiserfs_vfsops.c projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_compat.h projects/diffused_head/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd.h projects/diffused_head/sys/i386/bios/smapi.c projects/diffused_head/sys/i386/conf/GENERIC projects/diffused_head/sys/i386/conf/NOTES projects/diffused_head/sys/i386/i386/identcpu.c projects/diffused_head/sys/i386/i386/machdep.c projects/diffused_head/sys/i386/i386/mp_machdep.c projects/diffused_head/sys/i386/i386/pmap.c projects/diffused_head/sys/i386/i386/trap.c projects/diffused_head/sys/i386/ibcs2/ibcs2_misc.c projects/diffused_head/sys/i386/ibcs2/imgact_coff.c projects/diffused_head/sys/i386/include/atomic.h projects/diffused_head/sys/i386/include/intr_machdep.h projects/diffused_head/sys/i386/include/pc/bios.h projects/diffused_head/sys/i386/include/vmparam.h projects/diffused_head/sys/i386/include/xen/xen-os.h projects/diffused_head/sys/i386/pci/pci_cfgreg.c projects/diffused_head/sys/i386/xen/clock.c projects/diffused_head/sys/i386/xen/mp_machdep.c projects/diffused_head/sys/i386/xen/pmap.c projects/diffused_head/sys/i386/xen/xen_machdep.c projects/diffused_head/sys/ia64/ia64/pmap.c projects/diffused_head/sys/ia64/ia64/uma_machdep.c projects/diffused_head/sys/ia64/include/pmap.h projects/diffused_head/sys/kern/Make.tags.inc projects/diffused_head/sys/kern/capabilities.conf projects/diffused_head/sys/kern/dtio_kdtrace.c projects/diffused_head/sys/kern/imgact_elf.c projects/diffused_head/sys/kern/init_sysent.c projects/diffused_head/sys/kern/kern_acct.c projects/diffused_head/sys/kern/kern_alq.c projects/diffused_head/sys/kern/kern_clocksource.c projects/diffused_head/sys/kern/kern_cons.c projects/diffused_head/sys/kern/kern_ctf.c projects/diffused_head/sys/kern/kern_descrip.c projects/diffused_head/sys/kern/kern_exec.c projects/diffused_head/sys/kern/kern_exit.c projects/diffused_head/sys/kern/kern_gzio.c projects/diffused_head/sys/kern/kern_intr.c projects/diffused_head/sys/kern/kern_jail.c projects/diffused_head/sys/kern/kern_ktr.c projects/diffused_head/sys/kern/kern_ktrace.c projects/diffused_head/sys/kern/kern_linker.c projects/diffused_head/sys/kern/kern_malloc.c projects/diffused_head/sys/kern/kern_mbuf.c projects/diffused_head/sys/kern/kern_mutex.c projects/diffused_head/sys/kern/kern_proc.c projects/diffused_head/sys/kern/kern_prot.c projects/diffused_head/sys/kern/kern_racct.c projects/diffused_head/sys/kern/kern_rctl.c projects/diffused_head/sys/kern/kern_rmlock.c projects/diffused_head/sys/kern/kern_rwlock.c projects/diffused_head/sys/kern/kern_shutdown.c projects/diffused_head/sys/kern/kern_sig.c projects/diffused_head/sys/kern/kern_thread.c projects/diffused_head/sys/kern/kern_timeout.c projects/diffused_head/sys/kern/kern_umtx.c projects/diffused_head/sys/kern/link_elf.c projects/diffused_head/sys/kern/link_elf_obj.c projects/diffused_head/sys/kern/sched_4bsd.c projects/diffused_head/sys/kern/sched_ule.c projects/diffused_head/sys/kern/subr_bus.c projects/diffused_head/sys/kern/subr_lock.c projects/diffused_head/sys/kern/subr_param.c projects/diffused_head/sys/kern/subr_smp.c projects/diffused_head/sys/kern/subr_taskqueue.c projects/diffused_head/sys/kern/subr_trap.c projects/diffused_head/sys/kern/subr_uio.c projects/diffused_head/sys/kern/subr_unit.c projects/diffused_head/sys/kern/sys_generic.c projects/diffused_head/sys/kern/sys_procdesc.c projects/diffused_head/sys/kern/sys_process.c projects/diffused_head/sys/kern/syscalls.c projects/diffused_head/sys/kern/syscalls.master projects/diffused_head/sys/kern/systrace_args.c projects/diffused_head/sys/kern/tty.c projects/diffused_head/sys/kern/tty_pts.c projects/diffused_head/sys/kern/tty_ttydisc.c projects/diffused_head/sys/kern/uipc_domain.c projects/diffused_head/sys/kern/uipc_mbuf.c projects/diffused_head/sys/kern/uipc_mqueue.c projects/diffused_head/sys/kern/uipc_socket.c projects/diffused_head/sys/kern/uipc_syscalls.c projects/diffused_head/sys/kern/uipc_usrreq.c projects/diffused_head/sys/kern/vfs_acl.c projects/diffused_head/sys/kern/vfs_aio.c projects/diffused_head/sys/kern/vfs_bio.c projects/diffused_head/sys/kern/vfs_cache.c projects/diffused_head/sys/kern/vfs_default.c projects/diffused_head/sys/kern/vfs_extattr.c projects/diffused_head/sys/kern/vfs_init.c projects/diffused_head/sys/kern/vfs_lookup.c projects/diffused_head/sys/kern/vfs_mount.c projects/diffused_head/sys/kern/vfs_mountroot.c projects/diffused_head/sys/kern/vfs_subr.c projects/diffused_head/sys/kern/vfs_syscalls.c projects/diffused_head/sys/kern/vfs_vnops.c projects/diffused_head/sys/kern/vnode_if.src projects/diffused_head/sys/libkern/jenkins_hash.c projects/diffused_head/sys/libkern/strlcpy.c projects/diffused_head/sys/libkern/strlen.c projects/diffused_head/sys/mips/atheros/files.ar71xx projects/diffused_head/sys/mips/cavium/files.octeon1 projects/diffused_head/sys/mips/cavium/octe/ethernet-common.c projects/diffused_head/sys/mips/cavium/octe/ethernet-rgmii.c projects/diffused_head/sys/mips/cavium/octe/ethernet-rx.c projects/diffused_head/sys/mips/cavium/octe/ethernet-sgmii.c projects/diffused_head/sys/mips/cavium/octe/ethernet-tx.c projects/diffused_head/sys/mips/cavium/octe/ethernet-xaui.c projects/diffused_head/sys/mips/cavium/octe/ethernet.c projects/diffused_head/sys/mips/cavium/octeon_ebt3000_cf.c projects/diffused_head/sys/mips/cavium/octeon_machdep.c projects/diffused_head/sys/mips/cavium/octeon_pcmap_regs.h projects/diffused_head/sys/mips/cavium/octopci.c projects/diffused_head/sys/mips/cavium/uart_cpu_octeonusart.c projects/diffused_head/sys/mips/cavium/uart_dev_oct16550.c projects/diffused_head/sys/mips/cavium/usb/octusb.c projects/diffused_head/sys/mips/conf/AP91.hints projects/diffused_head/sys/mips/conf/AP93.hints projects/diffused_head/sys/mips/conf/AP96.hints projects/diffused_head/sys/mips/conf/AR71XX_BASE projects/diffused_head/sys/mips/conf/AR724X_BASE projects/diffused_head/sys/mips/conf/AR91XX_BASE projects/diffused_head/sys/mips/conf/OCTEON1 projects/diffused_head/sys/mips/conf/PB92 projects/diffused_head/sys/mips/conf/RSPRO.hints projects/diffused_head/sys/mips/conf/RT305X projects/diffused_head/sys/mips/include/cpufunc.h projects/diffused_head/sys/mips/include/pmap.h projects/diffused_head/sys/mips/include/tlb.h projects/diffused_head/sys/mips/mips/busdma_machdep.c projects/diffused_head/sys/mips/mips/pmap.c projects/diffused_head/sys/mips/mips/support.S projects/diffused_head/sys/mips/mips/tlb.c projects/diffused_head/sys/mips/mips/uma_machdep.c projects/diffused_head/sys/mips/rmi/rootfs_list.txt projects/diffused_head/sys/mips/rmi/xlr_i2c.c projects/diffused_head/sys/mips/rt305x/files.rt305x projects/diffused_head/sys/modules/3dfx/Makefile projects/diffused_head/sys/modules/Makefile projects/diffused_head/sys/modules/acpi/acpi/Makefile projects/diffused_head/sys/modules/agp/Makefile projects/diffused_head/sys/modules/cmx/Makefile projects/diffused_head/sys/modules/drm/r128/Makefile projects/diffused_head/sys/modules/drm/radeon/Makefile projects/diffused_head/sys/modules/drm/via/Makefile projects/diffused_head/sys/modules/dtrace/Makefile projects/diffused_head/sys/modules/filemon/Makefile projects/diffused_head/sys/modules/nxge/Makefile projects/diffused_head/sys/modules/sdhci/Makefile projects/diffused_head/sys/modules/ufs/Makefile projects/diffused_head/sys/modules/virtio/Makefile projects/diffused_head/sys/modules/zfs/Makefile projects/diffused_head/sys/net/bpf.c projects/diffused_head/sys/net/bpf.h projects/diffused_head/sys/net/if.c projects/diffused_head/sys/net/if.h projects/diffused_head/sys/net/if_bridge.c projects/diffused_head/sys/net/if_clone.c projects/diffused_head/sys/net/if_clone.h projects/diffused_head/sys/net/if_disc.c projects/diffused_head/sys/net/if_edsc.c projects/diffused_head/sys/net/if_ef.c projects/diffused_head/sys/net/if_enc.c projects/diffused_head/sys/net/if_epair.c projects/diffused_head/sys/net/if_ethersubr.c projects/diffused_head/sys/net/if_faith.c projects/diffused_head/sys/net/if_gif.c projects/diffused_head/sys/net/if_gre.c projects/diffused_head/sys/net/if_lagg.c projects/diffused_head/sys/net/if_loop.c projects/diffused_head/sys/net/if_spppsubr.c projects/diffused_head/sys/net/if_stf.c projects/diffused_head/sys/net/if_tap.c projects/diffused_head/sys/net/if_tun.c projects/diffused_head/sys/net/if_var.h projects/diffused_head/sys/net/if_vlan.c projects/diffused_head/sys/net/netmap_user.h projects/diffused_head/sys/net/pfil.c projects/diffused_head/sys/net/pfil.h projects/diffused_head/sys/net/pfvar.h projects/diffused_head/sys/net/rtsock.c projects/diffused_head/sys/net80211/ieee80211.c projects/diffused_head/sys/net80211/ieee80211_adhoc.c projects/diffused_head/sys/net80211/ieee80211_freebsd.c projects/diffused_head/sys/net80211/ieee80211_freebsd.h projects/diffused_head/sys/net80211/ieee80211_hostap.c projects/diffused_head/sys/net80211/ieee80211_hostap.h projects/diffused_head/sys/net80211/ieee80211_ht.c projects/diffused_head/sys/net80211/ieee80211_mesh.c projects/diffused_head/sys/net80211/ieee80211_node.c projects/diffused_head/sys/net80211/ieee80211_power.c projects/diffused_head/sys/net80211/ieee80211_power.h projects/diffused_head/sys/net80211/ieee80211_scan.c projects/diffused_head/sys/net80211/ieee80211_sta.c projects/diffused_head/sys/net80211/ieee80211_var.h projects/diffused_head/sys/netgraph/atm/ccatm/ng_ccatm.c projects/diffused_head/sys/netgraph/atm/sscfu/ng_sscfu.c projects/diffused_head/sys/netgraph/atm/sscop/ng_sscop.c projects/diffused_head/sys/netgraph/atm/uni/ng_uni.c projects/diffused_head/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c projects/diffused_head/sys/netgraph/netflow/netflow_v9.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.c projects/diffused_head/sys/netgraph/netflow/ng_netflow.h projects/diffused_head/sys/netgraph/ng_base.c projects/diffused_head/sys/netgraph/ng_eiface.c projects/diffused_head/sys/netgraph/ng_ether.c projects/diffused_head/sys/netgraph/ng_fec.c projects/diffused_head/sys/netgraph/ng_gif.c projects/diffused_head/sys/netgraph/ng_ipfw.c projects/diffused_head/sys/netgraph/ng_ksocket.c projects/diffused_head/sys/netgraph/ng_nat.c projects/diffused_head/sys/netgraph/ng_source.c projects/diffused_head/sys/netinet/igmp.c projects/diffused_head/sys/netinet/in.h projects/diffused_head/sys/netinet/in_gif.c projects/diffused_head/sys/netinet/in_pcb.c projects/diffused_head/sys/netinet/in_pcb.h projects/diffused_head/sys/netinet/in_rmx.c projects/diffused_head/sys/netinet/in_var.h projects/diffused_head/sys/netinet/ip_carp.c projects/diffused_head/sys/netinet/ip_divert.c projects/diffused_head/sys/netinet/ip_fastfwd.c projects/diffused_head/sys/netinet/ip_gre.c projects/diffused_head/sys/netinet/ip_icmp.c projects/diffused_head/sys/netinet/ip_input.c projects/diffused_head/sys/netinet/ip_ipsec.c projects/diffused_head/sys/netinet/ip_mroute.c projects/diffused_head/sys/netinet/ip_options.c projects/diffused_head/sys/netinet/ip_options.h projects/diffused_head/sys/netinet/ip_output.c projects/diffused_head/sys/netinet/ip_var.h projects/diffused_head/sys/netinet/libalias/alias_proxy.c projects/diffused_head/sys/netinet/libalias/alias_skinny.c projects/diffused_head/sys/netinet/raw_ip.c projects/diffused_head/sys/netinet/sctp_constants.h projects/diffused_head/sys/netinet/sctp_indata.c projects/diffused_head/sys/netinet/sctp_input.c projects/diffused_head/sys/netinet/sctp_output.c projects/diffused_head/sys/netinet/sctp_output.h projects/diffused_head/sys/netinet/sctp_pcb.c projects/diffused_head/sys/netinet/sctp_pcb.h projects/diffused_head/sys/netinet/sctp_peeloff.c projects/diffused_head/sys/netinet/sctp_peeloff.h projects/diffused_head/sys/netinet/sctp_structs.h projects/diffused_head/sys/netinet/sctp_sysctl.c projects/diffused_head/sys/netinet/sctp_timer.c projects/diffused_head/sys/netinet/sctp_uio.h projects/diffused_head/sys/netinet/sctp_usrreq.c projects/diffused_head/sys/netinet/sctp_var.h projects/diffused_head/sys/netinet/sctputil.c projects/diffused_head/sys/netinet/sctputil.h projects/diffused_head/sys/netinet/siftr.c projects/diffused_head/sys/netinet/tcp_debug.c projects/diffused_head/sys/netinet/tcp_hostcache.c projects/diffused_head/sys/netinet/tcp_input.c projects/diffused_head/sys/netinet/tcp_output.c projects/diffused_head/sys/netinet/tcp_reass.c projects/diffused_head/sys/netinet/tcp_subr.c projects/diffused_head/sys/netinet/tcp_syncache.c projects/diffused_head/sys/netinet/tcp_syncache.h projects/diffused_head/sys/netinet/tcp_timer.c projects/diffused_head/sys/netinet/tcp_timer.h projects/diffused_head/sys/netinet/tcp_timewait.c projects/diffused_head/sys/netinet/tcp_usrreq.c projects/diffused_head/sys/netinet/tcp_var.h projects/diffused_head/sys/netinet/udp_usrreq.c projects/diffused_head/sys/netinet6/icmp6.c projects/diffused_head/sys/netinet6/in6.c projects/diffused_head/sys/netinet6/in6.h projects/diffused_head/sys/netinet6/in6_gif.h projects/diffused_head/sys/netinet6/in6_ifattach.h projects/diffused_head/sys/netinet6/in6_pcb.h projects/diffused_head/sys/netinet6/in6_rmx.c projects/diffused_head/sys/netinet6/in6_src.c projects/diffused_head/sys/netinet6/in6_var.h projects/diffused_head/sys/netinet6/ip6_forward.c projects/diffused_head/sys/netinet6/ip6_input.c projects/diffused_head/sys/netinet6/ip6_ipsec.c projects/diffused_head/sys/netinet6/ip6_mroute.c projects/diffused_head/sys/netinet6/ip6_output.c projects/diffused_head/sys/netinet6/ip6_var.h projects/diffused_head/sys/netinet6/ip6protosw.h projects/diffused_head/sys/netinet6/nd6.c projects/diffused_head/sys/netinet6/nd6.h projects/diffused_head/sys/netinet6/nd6_nbr.c projects/diffused_head/sys/netinet6/nd6_rtr.c projects/diffused_head/sys/netinet6/pim6_var.h projects/diffused_head/sys/netinet6/scope6.c projects/diffused_head/sys/netinet6/scope6_var.h projects/diffused_head/sys/netinet6/sctp6_usrreq.c projects/diffused_head/sys/netinet6/sctp6_var.h projects/diffused_head/sys/netinet6/tcp6_var.h projects/diffused_head/sys/netinet6/udp6_usrreq.c projects/diffused_head/sys/netipsec/ipsec.c projects/diffused_head/sys/netipsec/ipsec_input.c projects/diffused_head/sys/netipsec/ipsec_output.c projects/diffused_head/sys/netipsec/key.c projects/diffused_head/sys/netipsec/xform_ah.c projects/diffused_head/sys/netipsec/xform_ipip.c projects/diffused_head/sys/netpfil/ipfw/ip_dn_glue.c projects/diffused_head/sys/netpfil/ipfw/ip_dn_io.c projects/diffused_head/sys/netpfil/ipfw/ip_fw2.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_dynamic.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_log.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_nat.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_pfil.c projects/diffused_head/sys/netpfil/ipfw/ip_fw_private.h projects/diffused_head/sys/netpfil/ipfw/ip_fw_sockopt.c projects/diffused_head/sys/netpfil/pf/if_pflog.c projects/diffused_head/sys/netpfil/pf/if_pfsync.c projects/diffused_head/sys/netpfil/pf/pf.c projects/diffused_head/sys/netpfil/pf/pf_ioctl.c projects/diffused_head/sys/netpfil/pf/pf_lb.c projects/diffused_head/sys/netpfil/pf/pf_table.c projects/diffused_head/sys/netsmb/smb_conn.c projects/diffused_head/sys/netsmb/smb_dev.c projects/diffused_head/sys/netsmb/smb_trantcp.c projects/diffused_head/sys/netsmb/smb_usr.c projects/diffused_head/sys/nfs/nfs_nfssvc.c projects/diffused_head/sys/nfs/nfssvc.h projects/diffused_head/sys/nfsclient/nfs_node.c projects/diffused_head/sys/nfsclient/nfs_vfsops.c projects/diffused_head/sys/nfsserver/nfs.h projects/diffused_head/sys/nfsserver/nfs_serv.c projects/diffused_head/sys/nfsserver/nfs_srvsubs.c projects/diffused_head/sys/nlm/nlm_prot_impl.c projects/diffused_head/sys/ofed/drivers/infiniband/core/cma.c projects/diffused_head/sys/ofed/drivers/infiniband/core/ud_header.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_multicast.c projects/diffused_head/sys/ofed/drivers/infiniband/ulp/sdp/sdp_rx.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_netdev.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_rx.c projects/diffused_head/sys/ofed/drivers/net/mlx4/en_tx.c projects/diffused_head/sys/ofed/include/linux/cdev.h projects/diffused_head/sys/ofed/include/linux/pci.h projects/diffused_head/sys/ofed/include/rdma/ib_addr.h projects/diffused_head/sys/pc98/include/bus.h projects/diffused_head/sys/pc98/pc98/machdep.c projects/diffused_head/sys/pci/if_rl.c projects/diffused_head/sys/powerpc/aim/locore32.S projects/diffused_head/sys/powerpc/aim/locore64.S projects/diffused_head/sys/powerpc/aim/mmu_oea.c projects/diffused_head/sys/powerpc/aim/mmu_oea64.c projects/diffused_head/sys/powerpc/aim/slb.c projects/diffused_head/sys/powerpc/aim/trap.c projects/diffused_head/sys/powerpc/aim/trap_subr32.S projects/diffused_head/sys/powerpc/aim/trap_subr64.S projects/diffused_head/sys/powerpc/aim/uma_machdep.c projects/diffused_head/sys/powerpc/booke/locore.S projects/diffused_head/sys/powerpc/booke/machdep.c projects/diffused_head/sys/powerpc/booke/platform_bare.c projects/diffused_head/sys/powerpc/booke/pmap.c projects/diffused_head/sys/powerpc/conf/GENERIC projects/diffused_head/sys/powerpc/conf/NOTES projects/diffused_head/sys/powerpc/include/bat.h projects/diffused_head/sys/powerpc/include/cpu.h projects/diffused_head/sys/powerpc/include/pcb.h projects/diffused_head/sys/powerpc/mpc85xx/pci_fdt.c projects/diffused_head/sys/powerpc/ofw/ofw_real.c projects/diffused_head/sys/powerpc/powermac/openpic_macio.c projects/diffused_head/sys/powerpc/wii/platform_wii.c projects/diffused_head/sys/powerpc/wii/wii_ipcreg.h projects/diffused_head/sys/rpc/auth.h projects/diffused_head/sys/rpc/rpcb_clnt.c projects/diffused_head/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c projects/diffused_head/sys/security/audit/audit_arg.c projects/diffused_head/sys/security/audit/audit_syscalls.c projects/diffused_head/sys/security/audit/audit_worker.c projects/diffused_head/sys/security/mac/mac_process.c projects/diffused_head/sys/security/mac/mac_syscalls.c projects/diffused_head/sys/sparc64/include/atomic.h projects/diffused_head/sys/sparc64/include/intr_machdep.h projects/diffused_head/sys/sparc64/include/ktr.h projects/diffused_head/sys/sparc64/include/pmap.h projects/diffused_head/sys/sparc64/pci/fire.c projects/diffused_head/sys/sparc64/pci/psycho.c projects/diffused_head/sys/sparc64/pci/schizo.c projects/diffused_head/sys/sparc64/sparc64/ata_machdep.c projects/diffused_head/sys/sparc64/sparc64/interrupt.S projects/diffused_head/sys/sparc64/sparc64/intr_machdep.c projects/diffused_head/sys/sparc64/sparc64/machdep.c projects/diffused_head/sys/sparc64/sparc64/pmap.c projects/diffused_head/sys/sparc64/sparc64/tick.c projects/diffused_head/sys/sparc64/sparc64/vm_machdep.c projects/diffused_head/sys/sys/_mutex.h projects/diffused_head/sys/sys/_rmlock.h projects/diffused_head/sys/sys/_rwlock.h projects/diffused_head/sys/sys/buf.h projects/diffused_head/sys/sys/buf_ring.h projects/diffused_head/sys/sys/bufobj.h projects/diffused_head/sys/sys/capability.h projects/diffused_head/sys/sys/cdefs.h projects/diffused_head/sys/sys/conf.h projects/diffused_head/sys/sys/eventhandler.h projects/diffused_head/sys/sys/ipc.h projects/diffused_head/sys/sys/kernel.h projects/diffused_head/sys/sys/ktr.h projects/diffused_head/sys/sys/lock.h projects/diffused_head/sys/sys/mbuf.h projects/diffused_head/sys/sys/mount.h projects/diffused_head/sys/sys/mutex.h projects/diffused_head/sys/sys/namei.h projects/diffused_head/sys/sys/param.h projects/diffused_head/sys/sys/pcpu.h projects/diffused_head/sys/sys/pmc.h projects/diffused_head/sys/sys/proc.h projects/diffused_head/sys/sys/racct.h projects/diffused_head/sys/sys/rctl.h projects/diffused_head/sys/sys/resource.h projects/diffused_head/sys/sys/rwlock.h projects/diffused_head/sys/sys/sched.h projects/diffused_head/sys/sys/smp.h projects/diffused_head/sys/sys/socketvar.h projects/diffused_head/sys/sys/syscall.h projects/diffused_head/sys/sys/syscall.mk projects/diffused_head/sys/sys/syscallsubr.h projects/diffused_head/sys/sys/sysproto.h projects/diffused_head/sys/sys/tty.h projects/diffused_head/sys/sys/vmmeter.h projects/diffused_head/sys/sys/vnode.h projects/diffused_head/sys/sys/wait.h projects/diffused_head/sys/ufs/ffs/ffs_alloc.c projects/diffused_head/sys/ufs/ffs/ffs_balloc.c projects/diffused_head/sys/ufs/ffs/ffs_extern.h projects/diffused_head/sys/ufs/ffs/ffs_snapshot.c projects/diffused_head/sys/ufs/ffs/ffs_softdep.c projects/diffused_head/sys/ufs/ffs/ffs_vfsops.c projects/diffused_head/sys/ufs/ffs/fs.h projects/diffused_head/sys/ufs/ufs/inode.h projects/diffused_head/sys/ufs/ufs/ufs_acl.c projects/diffused_head/sys/ufs/ufs/ufs_extattr.c projects/diffused_head/sys/ufs/ufs/ufs_lookup.c projects/diffused_head/sys/ufs/ufs/ufs_quota.c projects/diffused_head/sys/ufs/ufs/ufs_vnops.c projects/diffused_head/sys/ufs/ufs/ufsmount.h projects/diffused_head/sys/vm/device_pager.c projects/diffused_head/sys/vm/sg_pager.c projects/diffused_head/sys/vm/swap_pager.c projects/diffused_head/sys/vm/uma.h projects/diffused_head/sys/vm/uma_core.c projects/diffused_head/sys/vm/uma_int.h projects/diffused_head/sys/vm/vm_fault.c projects/diffused_head/sys/vm/vm_glue.c projects/diffused_head/sys/vm/vm_kern.c projects/diffused_head/sys/vm/vm_map.c projects/diffused_head/sys/vm/vm_mmap.c projects/diffused_head/sys/vm/vm_object.c projects/diffused_head/sys/vm/vm_page.c projects/diffused_head/sys/vm/vm_page.h projects/diffused_head/sys/vm/vm_pageout.c projects/diffused_head/sys/vm/vm_phys.h projects/diffused_head/sys/vm/vnode_pager.c projects/diffused_head/sys/x86/bios/smbios.c projects/diffused_head/sys/x86/include/bus.h projects/diffused_head/sys/x86/include/specialreg.h projects/diffused_head/sys/x86/x86/intr_machdep.c projects/diffused_head/sys/xen/evtchn/evtchn.c projects/diffused_head/sys/xen/interface/foreign/mkheader.py projects/diffused_head/tools/build/make_check/Makefile projects/diffused_head/tools/build/mk/OptionalObsoleteFiles.inc projects/diffused_head/tools/kerneldoc/subsys/common-Doxyfile projects/diffused_head/tools/regression/filemon/Makefile projects/diffused_head/tools/regression/lib/libc/nss/test-gethostby.c projects/diffused_head/tools/regression/lib/libc/resolv/resolv.c projects/diffused_head/tools/regression/netinet/arphold/arphold.c projects/diffused_head/tools/regression/netinet/ip_id_period/ip_id_period.py projects/diffused_head/tools/regression/netinet/udpzerobyte/udpzerobyte.c projects/diffused_head/tools/regression/netipx/ipxdgramloopback/ipxdgramloopback.c projects/diffused_head/tools/regression/sockets/sblock/sblock.c projects/diffused_head/tools/regression/sockets/sigpipe/sigpipe.c projects/diffused_head/tools/regression/sockets/unix_cmsg/unix_cmsg.c projects/diffused_head/tools/regression/sockets/unix_seqpacket_exercise/unix_seqpacket_exercise.c projects/diffused_head/tools/regression/sockets/zerosend/zerosend.c projects/diffused_head/tools/regression/ufs/uprintf/ufs_uprintf.c projects/diffused_head/tools/test/hwpmc/pmctest.py projects/diffused_head/tools/tools/cxgbetool/cxgbetool.c projects/diffused_head/tools/tools/netmap/pcap.c projects/diffused_head/tools/tools/sysdoc/Makefile projects/diffused_head/usr.bin/Makefile projects/diffused_head/usr.bin/Makefile.amd64 projects/diffused_head/usr.bin/Makefile.i386 projects/diffused_head/usr.bin/Makefile.ia64 projects/diffused_head/usr.bin/Makefile.powerpc projects/diffused_head/usr.bin/Makefile.sparc64 projects/diffused_head/usr.bin/ar/ar.h projects/diffused_head/usr.bin/at/parsetime.c projects/diffused_head/usr.bin/at/privs.h projects/diffused_head/usr.bin/bc/bc.y projects/diffused_head/usr.bin/calendar/calendar.1 projects/diffused_head/usr.bin/calendar/calendar.c projects/diffused_head/usr.bin/calendar/calendars/calendar.freebsd projects/diffused_head/usr.bin/calendar/calendars/calendar.history projects/diffused_head/usr.bin/calendar/dates.c projects/diffused_head/usr.bin/calendar/day.c projects/diffused_head/usr.bin/calendar/io.c projects/diffused_head/usr.bin/chat/chat.c projects/diffused_head/usr.bin/chpass/chpass.c projects/diffused_head/usr.bin/cksum/extern.h projects/diffused_head/usr.bin/clang/clang/Makefile projects/diffused_head/usr.bin/csup/lister.c projects/diffused_head/usr.bin/csup/proto.c projects/diffused_head/usr.bin/ctlstat/ctlstat.c projects/diffused_head/usr.bin/cut/cut.1 projects/diffused_head/usr.bin/cut/cut.c projects/diffused_head/usr.bin/du/du.1 projects/diffused_head/usr.bin/elfdump/elfdump.c projects/diffused_head/usr.bin/fetch/Makefile projects/diffused_head/usr.bin/fetch/fetch.c projects/diffused_head/usr.bin/find/find.1 projects/diffused_head/usr.bin/find/ls.c projects/diffused_head/usr.bin/find/main.c projects/diffused_head/usr.bin/finger/finger.1 projects/diffused_head/usr.bin/finger/finger.c projects/diffused_head/usr.bin/gencat/gencat.c projects/diffused_head/usr.bin/getent/getent.c projects/diffused_head/usr.bin/grep/grep.c projects/diffused_head/usr.bin/grep/regex/xmalloc.c projects/diffused_head/usr.bin/gzip/zuncompress.c projects/diffused_head/usr.bin/kdump/kdump.c projects/diffused_head/usr.bin/kdump/mksubr projects/diffused_head/usr.bin/ktrdump/ktrdump.c projects/diffused_head/usr.bin/last/last.1 projects/diffused_head/usr.bin/less/defines.h projects/diffused_head/usr.bin/lex/NEWS projects/diffused_head/usr.bin/locale/locale.1 projects/diffused_head/usr.bin/locale/locale.c projects/diffused_head/usr.bin/lock/lock.c projects/diffused_head/usr.bin/logger/logger.c projects/diffused_head/usr.bin/m4/Makefile projects/diffused_head/usr.bin/m4/expr.c projects/diffused_head/usr.bin/m4/extern.h projects/diffused_head/usr.bin/m4/gnum4.c projects/diffused_head/usr.bin/m4/lib/ohash_init.3 projects/diffused_head/usr.bin/m4/m4.1 projects/diffused_head/usr.bin/m4/main.c projects/diffused_head/usr.bin/m4/parser.y projects/diffused_head/usr.bin/make/var.c projects/diffused_head/usr.bin/ministat/ministat.1 projects/diffused_head/usr.bin/ministat/ministat.c projects/diffused_head/usr.bin/mkcsmapper/Makefile.inc projects/diffused_head/usr.bin/mktemp/mktemp.1 projects/diffused_head/usr.bin/mktemp/mktemp.c projects/diffused_head/usr.bin/msgs/msgs.c projects/diffused_head/usr.bin/ncal/ncal.c projects/diffused_head/usr.bin/ncplist/ncplist.1 projects/diffused_head/usr.bin/netstat/mbuf.c projects/diffused_head/usr.bin/netstat/route.c projects/diffused_head/usr.bin/passwd/Makefile projects/diffused_head/usr.bin/pr/pr.1 projects/diffused_head/usr.bin/printf/printf.c projects/diffused_head/usr.bin/procstat/procstat.1 projects/diffused_head/usr.bin/procstat/procstat_auxv.c projects/diffused_head/usr.bin/rctl/rctl.8 projects/diffused_head/usr.bin/rlogin/rlogin.c projects/diffused_head/usr.bin/rpcgen/rpc_main.c projects/diffused_head/usr.bin/rpcgen/rpc_svcout.c projects/diffused_head/usr.bin/rpcgen/rpc_util.c projects/diffused_head/usr.bin/script/script.1 projects/diffused_head/usr.bin/script/script.c projects/diffused_head/usr.bin/seq/seq.1 projects/diffused_head/usr.bin/sort/Makefile projects/diffused_head/usr.bin/sort/bwstring.c projects/diffused_head/usr.bin/sort/bwstring.h projects/diffused_head/usr.bin/sort/coll.c projects/diffused_head/usr.bin/sort/coll.h projects/diffused_head/usr.bin/sort/file.c projects/diffused_head/usr.bin/sort/file.h projects/diffused_head/usr.bin/sort/radixsort.c projects/diffused_head/usr.bin/sort/sort.c projects/diffused_head/usr.bin/sort/sort.h projects/diffused_head/usr.bin/stat/stat.c projects/diffused_head/usr.bin/systat/cmds.c projects/diffused_head/usr.bin/systat/extern.h projects/diffused_head/usr.bin/systat/icmp.c projects/diffused_head/usr.bin/systat/icmp6.c projects/diffused_head/usr.bin/systat/ip.c projects/diffused_head/usr.bin/systat/ip6.c projects/diffused_head/usr.bin/systat/keyboard.c projects/diffused_head/usr.bin/systat/main.c projects/diffused_head/usr.bin/systat/systat.1 projects/diffused_head/usr.bin/systat/tcp.c projects/diffused_head/usr.bin/talk/talk.1 projects/diffused_head/usr.bin/tftp/main.c projects/diffused_head/usr.bin/top/machine.c projects/diffused_head/usr.bin/truss/amd64-fbsd.c projects/diffused_head/usr.bin/truss/amd64-fbsd32.c projects/diffused_head/usr.bin/truss/amd64-linux32.c projects/diffused_head/usr.bin/truss/i386-fbsd.c projects/diffused_head/usr.bin/truss/i386-linux.c projects/diffused_head/usr.bin/truss/ia64-fbsd.c projects/diffused_head/usr.bin/truss/main.c projects/diffused_head/usr.bin/truss/mips-fbsd.c projects/diffused_head/usr.bin/truss/powerpc-fbsd.c projects/diffused_head/usr.bin/truss/powerpc64-fbsd.c projects/diffused_head/usr.bin/truss/setup.c projects/diffused_head/usr.bin/truss/sparc64-fbsd.c projects/diffused_head/usr.bin/truss/syscalls.c projects/diffused_head/usr.bin/truss/truss.h projects/diffused_head/usr.bin/tset/extern.h projects/diffused_head/usr.bin/tset/map.c projects/diffused_head/usr.bin/tset/term.c projects/diffused_head/usr.bin/unzip/unzip.1 projects/diffused_head/usr.bin/users/users.1 projects/diffused_head/usr.bin/uuencode/uuencode.1 projects/diffused_head/usr.bin/w/extern.h projects/diffused_head/usr.bin/w/proc_compare.c projects/diffused_head/usr.bin/w/w.1 projects/diffused_head/usr.bin/w/w.c projects/diffused_head/usr.bin/wall/wall.c projects/diffused_head/usr.bin/who/who.1 projects/diffused_head/usr.bin/yes/yes.1 projects/diffused_head/usr.sbin/Makefile projects/diffused_head/usr.sbin/Makefile.amd64 projects/diffused_head/usr.sbin/Makefile.i386 projects/diffused_head/usr.sbin/Makefile.ia64 projects/diffused_head/usr.sbin/Makefile.powerpc projects/diffused_head/usr.sbin/Makefile.sparc64 projects/diffused_head/usr.sbin/ac/ac.8 projects/diffused_head/usr.sbin/acpi/acpidb/Makefile projects/diffused_head/usr.sbin/acpi/acpidump/acpi.c projects/diffused_head/usr.sbin/acpi/acpidump/acpi_user.c projects/diffused_head/usr.sbin/acpi/iasl/Makefile projects/diffused_head/usr.sbin/adduser/adduser.8 projects/diffused_head/usr.sbin/bluetooth/btpand/client.c projects/diffused_head/usr.sbin/bluetooth/btpand/server.c projects/diffused_head/usr.sbin/bsdconfig/Makefile projects/diffused_head/usr.sbin/bsdconfig/bsdconfig projects/diffused_head/usr.sbin/bsdconfig/bsdconfig.8 projects/diffused_head/usr.sbin/bsdconfig/console/console projects/diffused_head/usr.sbin/bsdconfig/console/font projects/diffused_head/usr.sbin/bsdconfig/console/keymap projects/diffused_head/usr.sbin/bsdconfig/console/repeat projects/diffused_head/usr.sbin/bsdconfig/console/saver projects/diffused_head/usr.sbin/bsdconfig/console/screenmap projects/diffused_head/usr.sbin/bsdconfig/console/ttys projects/diffused_head/usr.sbin/bsdconfig/diskmgmt/diskmgmt projects/diffused_head/usr.sbin/bsdconfig/docsinstall/docsinstall projects/diffused_head/usr.sbin/bsdconfig/dot/dot projects/diffused_head/usr.sbin/bsdconfig/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/include/messages.subr projects/diffused_head/usr.sbin/bsdconfig/mouse/disable projects/diffused_head/usr.sbin/bsdconfig/mouse/enable projects/diffused_head/usr.sbin/bsdconfig/mouse/flags projects/diffused_head/usr.sbin/bsdconfig/mouse/mouse projects/diffused_head/usr.sbin/bsdconfig/mouse/port projects/diffused_head/usr.sbin/bsdconfig/mouse/type projects/diffused_head/usr.sbin/bsdconfig/networking/Makefile projects/diffused_head/usr.sbin/bsdconfig/networking/defaultrouter projects/diffused_head/usr.sbin/bsdconfig/networking/devices projects/diffused_head/usr.sbin/bsdconfig/networking/hostname projects/diffused_head/usr.sbin/bsdconfig/networking/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/networking/include/messages.subr projects/diffused_head/usr.sbin/bsdconfig/networking/nameservers projects/diffused_head/usr.sbin/bsdconfig/networking/networking projects/diffused_head/usr.sbin/bsdconfig/password/Makefile projects/diffused_head/usr.sbin/bsdconfig/password/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/password/password projects/diffused_head/usr.sbin/bsdconfig/security/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/security/kern_securelevel projects/diffused_head/usr.sbin/bsdconfig/security/security projects/diffused_head/usr.sbin/bsdconfig/startup/Makefile projects/diffused_head/usr.sbin/bsdconfig/startup/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/startup/misc projects/diffused_head/usr.sbin/bsdconfig/startup/rcadd projects/diffused_head/usr.sbin/bsdconfig/startup/rcconf projects/diffused_head/usr.sbin/bsdconfig/startup/rcdelete projects/diffused_head/usr.sbin/bsdconfig/startup/rcedit projects/diffused_head/usr.sbin/bsdconfig/startup/rcvar projects/diffused_head/usr.sbin/bsdconfig/startup/startup projects/diffused_head/usr.sbin/bsdconfig/timezone/Makefile projects/diffused_head/usr.sbin/bsdconfig/timezone/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/timezone/timezone projects/diffused_head/usr.sbin/bsdconfig/ttys/ttys projects/diffused_head/usr.sbin/bsdconfig/usermgmt/Makefile projects/diffused_head/usr.sbin/bsdconfig/usermgmt/groupadd projects/diffused_head/usr.sbin/bsdconfig/usermgmt/groupdel projects/diffused_head/usr.sbin/bsdconfig/usermgmt/groupedit projects/diffused_head/usr.sbin/bsdconfig/usermgmt/groupinput projects/diffused_head/usr.sbin/bsdconfig/usermgmt/include/Makefile projects/diffused_head/usr.sbin/bsdconfig/usermgmt/useradd projects/diffused_head/usr.sbin/bsdconfig/usermgmt/userdel projects/diffused_head/usr.sbin/bsdconfig/usermgmt/useredit projects/diffused_head/usr.sbin/bsdconfig/usermgmt/userinput projects/diffused_head/usr.sbin/bsdconfig/usermgmt/usermgmt projects/diffused_head/usr.sbin/bsdinstall/bsdinstall projects/diffused_head/usr.sbin/bsdinstall/scripts/auto projects/diffused_head/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_diskstorage_tbl.c projects/diffused_head/usr.sbin/chkgrp/chkgrp.8 projects/diffused_head/usr.sbin/chkgrp/chkgrp.c projects/diffused_head/usr.sbin/chroot/chroot.8 projects/diffused_head/usr.sbin/config/mkmakefile.c projects/diffused_head/usr.sbin/cpucontrol/cpucontrol.c projects/diffused_head/usr.sbin/cron/cron/cron.c projects/diffused_head/usr.sbin/cron/cron/cron.h projects/diffused_head/usr.sbin/cron/crontab/crontab.5 projects/diffused_head/usr.sbin/cron/lib/entry.c projects/diffused_head/usr.sbin/cron/lib/misc.c projects/diffused_head/usr.sbin/crunch/examples/Makefile projects/diffused_head/usr.sbin/crunch/examples/really-big.conf projects/diffused_head/usr.sbin/ctladm/ctladm.c projects/diffused_head/usr.sbin/ctladm/util.c projects/diffused_head/usr.sbin/diskinfo/diskinfo.c projects/diffused_head/usr.sbin/edquota/edquota.c projects/diffused_head/usr.sbin/fifolog/fifolog_create/fifolog.1 projects/diffused_head/usr.sbin/gpioctl/gpioctl.c projects/diffused_head/usr.sbin/ifmcstat/ifmcstat.c projects/diffused_head/usr.sbin/ip6addrctl/Makefile projects/diffused_head/usr.sbin/ip6addrctl/ip6addrctl.c projects/diffused_head/usr.sbin/jail/config.c projects/diffused_head/usr.sbin/jail/jail.8 projects/diffused_head/usr.sbin/kgmon/kgmon.c projects/diffused_head/usr.sbin/kldxref/ef.c projects/diffused_head/usr.sbin/lpr/common_source/common.c projects/diffused_head/usr.sbin/lpr/common_source/displayq.c projects/diffused_head/usr.sbin/lpr/common_source/lp.h projects/diffused_head/usr.sbin/lpr/common_source/net.c projects/diffused_head/usr.sbin/lpr/common_source/rmjob.c projects/diffused_head/usr.sbin/lpr/common_source/startdaemon.c projects/diffused_head/usr.sbin/lpr/filters/lpf.c projects/diffused_head/usr.sbin/lpr/lpc/cmds.c projects/diffused_head/usr.sbin/lpr/lpc/lpc.c projects/diffused_head/usr.sbin/lpr/lpc/movejobs.c projects/diffused_head/usr.sbin/lpr/lpd/printjob.c projects/diffused_head/usr.sbin/lpr/lpq/lpq.c projects/diffused_head/usr.sbin/lpr/lpr/lpr.c projects/diffused_head/usr.sbin/lpr/lprm/lprm.c projects/diffused_head/usr.sbin/makefs/ffs/ffs_alloc.c projects/diffused_head/usr.sbin/makefs/mtree.c projects/diffused_head/usr.sbin/memcontrol/memcontrol.c projects/diffused_head/usr.sbin/mergemaster/mergemaster.sh projects/diffused_head/usr.sbin/mfiutil/mfi_flash.c projects/diffused_head/usr.sbin/mfiutil/mfi_show.c projects/diffused_head/usr.sbin/mfiutil/mfiutil.c projects/diffused_head/usr.sbin/mfiutil/mfiutil.h projects/diffused_head/usr.sbin/mountd/exports.5 projects/diffused_head/usr.sbin/mountd/mountd.8 projects/diffused_head/usr.sbin/mountd/mountd.c projects/diffused_head/usr.sbin/moused/moused.c projects/diffused_head/usr.sbin/mtree/mtree.c projects/diffused_head/usr.sbin/ndiscvt/ndiscvt.c projects/diffused_head/usr.sbin/newsyslog/newsyslog.c projects/diffused_head/usr.sbin/nfscbd/nfscbd.8 projects/diffused_head/usr.sbin/nfscbd/nfscbd.c projects/diffused_head/usr.sbin/nfsd/nfsd.c projects/diffused_head/usr.sbin/pciconf/cap.c projects/diffused_head/usr.sbin/pciconf/err.c projects/diffused_head/usr.sbin/pciconf/pciconf.c projects/diffused_head/usr.sbin/pkg/elf_tables.h projects/diffused_head/usr.sbin/pkg_install/add/main.c projects/diffused_head/usr.sbin/pkg_install/add/pkg_add.1 projects/diffused_head/usr.sbin/pkg_install/create/main.c projects/diffused_head/usr.sbin/pkg_install/create/perform.c projects/diffused_head/usr.sbin/pkg_install/create/pkg_create.1 projects/diffused_head/usr.sbin/pkg_install/delete/main.c projects/diffused_head/usr.sbin/pkg_install/delete/pkg_delete.1 projects/diffused_head/usr.sbin/pkg_install/info/info.h projects/diffused_head/usr.sbin/pkg_install/info/main.c projects/diffused_head/usr.sbin/pkg_install/info/perform.c projects/diffused_head/usr.sbin/pkg_install/info/pkg_info.1 projects/diffused_head/usr.sbin/pkg_install/info/show.c projects/diffused_head/usr.sbin/pkg_install/lib/Makefile projects/diffused_head/usr.sbin/pkg_install/lib/exec.c projects/diffused_head/usr.sbin/pkg_install/lib/lib.h projects/diffused_head/usr.sbin/pkg_install/lib/plist.c projects/diffused_head/usr.sbin/pkg_install/updating/main.c projects/diffused_head/usr.sbin/pkg_install/updating/pkg_updating.1 projects/diffused_head/usr.sbin/pkg_install/version/main.c projects/diffused_head/usr.sbin/pkg_install/version/perform.c projects/diffused_head/usr.sbin/pkg_install/version/pkg_version.1 projects/diffused_head/usr.sbin/pmccontrol/pmccontrol.c projects/diffused_head/usr.sbin/pmcstat/pmcpl_calltree.c projects/diffused_head/usr.sbin/pmcstat/pmcstat.c projects/diffused_head/usr.sbin/pmcstat/pmcstat_log.c projects/diffused_head/usr.sbin/pmcstat/pmcstat_log.h projects/diffused_head/usr.sbin/portsnap/portsnap/portsnap.8 projects/diffused_head/usr.sbin/portsnap/portsnap/portsnap.sh projects/diffused_head/usr.sbin/ppp/lqr.c projects/diffused_head/usr.sbin/ppp/radius.c projects/diffused_head/usr.sbin/pw/Makefile projects/diffused_head/usr.sbin/pw/fileupd.c projects/diffused_head/usr.sbin/pw/grupd.c projects/diffused_head/usr.sbin/pw/pw.8 projects/diffused_head/usr.sbin/pw/pw.c projects/diffused_head/usr.sbin/pw/pw.h projects/diffused_head/usr.sbin/pw/pw_group.c projects/diffused_head/usr.sbin/pw/pw_log.c projects/diffused_head/usr.sbin/pw/pw_nis.c projects/diffused_head/usr.sbin/pw/pw_user.c projects/diffused_head/usr.sbin/pw/pw_vpw.c projects/diffused_head/usr.sbin/pw/pwupd.c projects/diffused_head/usr.sbin/pw/pwupd.h projects/diffused_head/usr.sbin/quot/quot.c projects/diffused_head/usr.sbin/quotaon/quotaon.c projects/diffused_head/usr.sbin/repquota/repquota.c projects/diffused_head/usr.sbin/route6d/route6d.8 projects/diffused_head/usr.sbin/route6d/route6d.c projects/diffused_head/usr.sbin/rpcbind/util.c projects/diffused_head/usr.sbin/rtprio/rtprio.1 projects/diffused_head/usr.sbin/rwhod/rwhod.8 projects/diffused_head/usr.sbin/services_mkdb/Makefile projects/diffused_head/usr.sbin/services_mkdb/services_mkdb.c projects/diffused_head/usr.sbin/services_mkdb/uniq.c projects/diffused_head/usr.sbin/snapinfo/snapinfo.c projects/diffused_head/usr.sbin/syslogd/syslogd.c projects/diffused_head/usr.sbin/tcpdump/tcpdump/Makefile projects/diffused_head/usr.sbin/tcpdump/tcpdump/tcpdump.1 projects/diffused_head/usr.sbin/vidcontrol/vidcontrol.c projects/diffused_head/usr.sbin/watchdogd/Makefile projects/diffused_head/usr.sbin/watchdogd/watchdogd.c projects/diffused_head/usr.sbin/wpa/wpa_supplicant/wpa_supplicant.8 Directory Properties: projects/diffused_head/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/diffused_head/cddl/contrib/opensolaris/lib/libzfs/ (props changed) projects/diffused_head/contrib/atf/ (props changed) projects/diffused_head/contrib/bind9/ (props changed) projects/diffused_head/contrib/byacc/ (props changed) projects/diffused_head/contrib/dialog/ (props changed) projects/diffused_head/contrib/gcc/ (props changed) projects/diffused_head/contrib/gdb/ (props changed) projects/diffused_head/contrib/groff/ (props changed) projects/diffused_head/contrib/less/ (props changed) projects/diffused_head/contrib/libc++/ (props changed) projects/diffused_head/contrib/libpcap/ (props changed) projects/diffused_head/contrib/libstdc++/ (props changed) projects/diffused_head/contrib/llvm/ (props changed) projects/diffused_head/contrib/llvm/tools/clang/ (props changed) projects/diffused_head/contrib/netcat/ (props changed) projects/diffused_head/contrib/tcpdump/ (props changed) projects/diffused_head/contrib/top/ (props changed) projects/diffused_head/contrib/tzdata/ (props changed) projects/diffused_head/contrib/wpa/ (props changed) projects/diffused_head/crypto/heimdal/ (props changed) projects/diffused_head/gnu/lib/ (props changed) projects/diffused_head/lib/libc/ (props changed) projects/diffused_head/lib/libutil/ (props changed) projects/diffused_head/sbin/ (props changed) projects/diffused_head/sbin/dumpon/ (props changed) projects/diffused_head/sbin/ipfw/ (props changed) projects/diffused_head/share/man/man4/ (props changed) projects/diffused_head/sys/ (props changed) projects/diffused_head/sys/boot/ (props changed) projects/diffused_head/sys/boot/powerpc/boot1.chrp/ (props changed) projects/diffused_head/sys/boot/powerpc/ofw/ (props changed) projects/diffused_head/sys/cddl/contrib/opensolaris/ (props changed) projects/diffused_head/sys/conf/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/common/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/common/ahpredef.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslanalyze.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslbtypes.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslcompiler.l (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslpredef.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/aslrestype2s.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/asluuid.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtcompiler.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtexpress.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtfield.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtparser.l (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtparser.y (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtsubtable.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/dtutils.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prexpress.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prmacros.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prparser.l (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prparser.y (props changed) projects/diffused_head/sys/contrib/dev/acpica/compiler/prscan.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/debugger/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/disassembler/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dsargs.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/dispatcher/dswload.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evglock.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpe.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpeblk.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpeinit.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evgpeutil.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evmisc.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evregion.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evsci.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evxface.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/events/evxfevnt.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/executer/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwesleep.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwsleep.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/hardware/hwxfsleep.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nspredef.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsrepair.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/namespace/nsrepair2.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/parser/pswalk.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsinfo.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsirq.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/resources/rsserial.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/tables/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utaddress.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utdecode.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/uteval.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utexcep.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utglobal.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utosi.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxfinit.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/components/utilities/utxfmutex.c (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acbuffer.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/accommon.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acdispat.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acevents.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/achware.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acinterp.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acnamesp.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acoutput.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acparser.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acpi.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acpredef.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/acresrc.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actables.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/actbl.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/amlcode.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/platform/acfreebsd.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/include/platform/acgcc.h (props changed) projects/diffused_head/sys/contrib/dev/acpica/os_specific/ (props changed) projects/diffused_head/sys/contrib/dev/acpica/os_specific/service_layers/osunixxf.c (props changed) projects/diffused_head/sys/contrib/octeon-sdk/ (props changed) projects/diffused_head/usr.bin/calendar/ (props changed) projects/diffused_head/usr.bin/csup/ (props changed) projects/diffused_head/usr.bin/procstat/ (props changed) projects/diffused_head/usr.sbin/jail/ (props changed) projects/diffused_head/usr.sbin/ndiscvt/ (props changed) Modified: projects/diffused_head/MAINTAINERS ============================================================================== --- projects/diffused_head/MAINTAINERS Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/MAINTAINERS Wed Nov 28 03:04:38 2012 (r243646) @@ -21,7 +21,6 @@ It is not a registry of 'turf' or privat subsystem login notes ----------------------------- kqueue jmg Pre-commit review requested. -mergemaster dougb Prefers to pre-approve commits libc/posix1e rwatson Pre-commit review requested. POSIX.1e ACLs rwatson Pre-commit review requested. UFS EAs rwatson Pre-commit review requested. @@ -75,8 +74,6 @@ drm rnoland Just keep me informed of ch unifdef(1) fanf Pre-commit review requested. ntp roberto Pre-commit review requested. inetd dwmalone Recommends pre-commit review. -nwfs bp In case of functional changes pre-commit review - requested. contrib/smbfs bp Open for in-tree committs. In case of functional changes pre-commit review requested. contrib/pf mlaier Pre-commit review requested. @@ -101,8 +98,6 @@ nfs alfred Will be happy to review code rpc.lockd alfred Will be happy to review code, but not mandatory. truss alfred Will be happy to review code, but not mandatory. rpc alfred Pre-commit review requested. -xfs kan@FreeBSD.org,rodrigc@FreeBSD.org,cattelan@xfs.org - Pre-commit review preferred. pkg_install portmgr Pre-commit review or approval from portmgr@ requested. linux emul emulation Please discuss changes here. bs{diff,patch} cperciva Pre-commit review requested. @@ -125,16 +120,7 @@ lib/libc/stdtime edwin Heads-up apprec is maintained by a third party source. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com isci(4) jimharris Pre-commit review requested. - -Following are the entries from the Makefiles, and a few other sources. -Please remove stale entries from both their origin, and this file. - -Please also consider removing the lines from the files listed below and -stating your preferences here instead. - -List below generated with: -$ cd /usr/src; find */* -type f|xargs egrep 'MAINTAINER[ ]*=' - -sys/modules/3dfx/Makefile:MAINTAINER= cokane@FreeBSD.org -sys/modules/urio/Makefile:MAINTAINER= Iwasa Kazmi -tools/tools/sysdoc/Makefile:MAINTAINER= trhodes@FreeBSD.org +3dfx cokane Pre-commit review preferred. +cmx daniel@roe.ch Pre-commit review preferred. +filemon obrien Pre-commit review preferred. +sysdoc trhodes Pre-commit review preferred. Modified: projects/diffused_head/Makefile ============================================================================== --- projects/diffused_head/Makefile Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/Makefile Wed Nov 28 03:04:38 2012 (r243646) @@ -280,12 +280,14 @@ kernel: buildkernel installkernel # for building the world. # upgrade_checks: +.if !defined(.PARSEDIR) @if ! (cd ${.CURDIR}/tools/build/make_check && \ PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \ PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \ then \ (cd ${.CURDIR} && ${MAKE} make); \ fi +.endif # # Upgrade make(1) to the current version using the installed @@ -441,3 +443,6 @@ universe_epilogue: fi .endif .endif + +buildLINT: + ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT Modified: projects/diffused_head/Makefile.inc1 ============================================================================== --- projects/diffused_head/Makefile.inc1 Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/Makefile.inc1 Wed Nov 28 03:04:38 2012 (r243646) @@ -16,6 +16,8 @@ # -DNO_CTF do not run the DTrace CTF conversion tools on built objects # LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list # LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target +# LOCAL_MTREE="list of mtree files" to process to allow local directories +# to be created before files are installed # LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools # list # TARGET="machine" to crossbuild world for a different machine type @@ -295,9 +297,10 @@ LIB32CPUFLAGS= -march=i686 -mmmx -msse - LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} .endif LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ - MACHINE_CPU="i686 mmx sse sse2" \ - LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ - AS="${AS} --32" + MACHINE_CPU="i686 mmx sse sse2" +LIB32WMAKEFLAGS= \ + AS="${AS} --32" \ + LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" .elif ${TARGET_ARCH} == "powerpc64" .if empty(TARGET_CPUTYPE) @@ -305,7 +308,8 @@ LIB32CPUFLAGS= -mcpu=powerpc .else LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} .endif -LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc \ +LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc +LIB32WMAKEFLAGS= \ LD="${LD} -m elf32ppc_fbsd" .endif @@ -322,16 +326,20 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR VERSION="${VERSION}" \ INSTALL="sh ${.CURDIR}/tools/install.sh" \ PATH=${TMPPATH} \ - CC="${CC} ${LIB32FLAGS}" \ - CXX="${CXX} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 \ COMPILER_TYPE=${WMAKE_COMPILER_TYPE} +LIB32WMAKEFLAGS+= \ + CC="${CC} ${LIB32FLAGS}" \ + CXX="${CXX} ${LIB32FLAGS}" \ + DESTDIR=${LIB32TMP} \ + -DCOMPAT_32BIT \ + -DNO_CPU_CFLAGS \ + -DNO_CTF \ + -DNO_LINT -LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ - -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO \ - -DWITHOUT_HTML -DNO_CTF -DNO_LINT -ECC -ECXX -EAS -ELD \ - DESTDIR=${LIB32TMP} +LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \ + -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_INFO -DWITHOUT_HTML LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} -DNO_INCS .endif @@ -401,6 +409,9 @@ _worldtmp: mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ -p ${WORLDTMP}/usr/include >/dev/null .endif +.for _mtree in ${LOCAL_MTREE} + mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null +.endfor _legacy: @echo @echo "--------------------------------------------------------------" @@ -718,7 +729,8 @@ reinstall: @echo "--------------------------------------------------------------" @echo ">>> Making hierarchy" @echo "--------------------------------------------------------------" - ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy + ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ + LOCAL_MTREE=${LOCAL_MTREE} hierarchy @echo @echo "--------------------------------------------------------------" @echo ">>> Installing everything" @@ -1126,7 +1138,7 @@ _aicasm= sys/modules/aic7xxx/aicasm _share= share/syscons/scrnmaps .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" _gcc_tools= gnu/usr.bin/cc/cc_tools .endif @@ -1188,7 +1200,7 @@ _clang= usr.bin/clang _clang_libs= lib/clang .endif -.if ${MK_GCC} != "no" && ${MK_CLANG_IS_CC} == "no" +.if ${MK_GCC} != "no" && (${MK_CLANG_IS_CC} == "no" || ${TARGET} == "pc98") _cc= gnu/usr.bin/cc .endif @@ -1215,6 +1227,10 @@ cross-tools: # hierarchy hier: cd ${.CURDIR}/etc; ${MAKE} distrib-dirs +.for _mtree in ${LOCAL_MTREE} + mtree -eU ${MTREE_FOLLOWS_SYMLINKS} -f ${.CURDIR}/${_mtree} \ + -p ${DESTDIR}/ +.endfor # # libraries - build all libraries, and install them under ${DESTDIR}. @@ -1269,6 +1285,7 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ ${_kerberos5_lib_libwind} \ + ${_lib_atf_libatf_c} \ lib/libbz2 ${_libcom_err} lib/libcrypt \ lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ @@ -1281,6 +1298,10 @@ _prebuild_libs= ${_kerberos5_lib_libasn1 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ ${_secure_lib_libssl} +.if ${MK_ATF} != "no" +_lib_atf_libatf_c= lib/atf/libatf-c +.endif + .if ${MK_LIBTHR} != "no" _lib_libthr= lib/libthr .endif @@ -1563,7 +1584,7 @@ check-old: check-old-files check-old-lib # showconfig - show build configuration. # showconfig: - @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort + @${MAKE} -n -f bsd.own.mk -V dummy -dg1 2>&1 | grep ^MK_ | sort .if !empty(KRNLOBJDIR) && !empty(KERNCONF) DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ Modified: projects/diffused_head/ObsoleteFiles.inc ============================================================================== --- projects/diffused_head/ObsoleteFiles.inc Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/ObsoleteFiles.inc Wed Nov 28 03:04:38 2012 (r243646) @@ -38,6 +38,20 @@ # xargs -n1 | sort | uniq -d; # done +# 20121114: zpool-features manual page moved from section 5 to 7 +OLD_FILES+=usr/share/man/man5/zpool-features.5.gz +# 20121022: remove harp, hfa and idt man page +OLD_FILES+=share/man/man4/harp.4 +OLD_FILES+=share/man/man4/hfa.4 +OLD_FILES+=share/man/man4/idt.4 +# 20121022: VFS_LOCK_GIANT elimination +OLD_FILES+=usr/share/man/man9/VFS_LOCK_GIANT.9.gz +OLD_FILES+=usr/share/man/man9/VFS_UNLOCK_GIANT.9.gz +# 20121004: remove incomplete unwind.h +OLD_FILES+=usr/include/clang/3.2/unwind.h +# 20120910: NetBSD compat shims removed +OLD_FILES+=usr/include/cam/scsi/scsi_low_pisa.h +OLD_FILES+=usr/include/sys/device_port.h # 20120908: pf cleanup OLD_FILES+=usr/include/net/if_pflow.h # 20120816: new clang import which bumps version from 3.1 to 3.2 @@ -86,13 +100,19 @@ OLD_FILES+=usr/include/openssl/ui_locl.h OLD_FILES+=usr/share/openssl/man/man3/CRYPTO_set_id_callback.3.gz # 20120621: remove old man page OLD_FILES+=usr/share/man/man8/vnconfig.8.gz +# 20120619: TOE support updated +OLD_FILES+=usr/include/netinet/toedev.h # 20120613: auth.conf removed OLD_FILES+=etc/auth.conf OLD_FILES+=usr/share/examples/etc/auth.conf OLD_FILES+=usr/share/man/man3/auth.3.gz +OLD_FILES+=usr/share/man/man3/auth_getval.3.gz OLD_FILES+=usr/share/man/man5/auth.conf.5.gz # 20120530: kde pam lives now in ports OLD_FILES+=etc/pam.d/kde +# 20120521: byacc import +OLD_FILES+=usr/bin/yyfix +OLD_FILES+=usr/share/man/man1/yyfix.1.gz # 20120505: new clang import installed a redundant internal header OLD_FILES+=usr/include/clang/3.1/stdalign.h # 20120428: MD2 removed from libmd Modified: projects/diffused_head/UPDATING ============================================================================== --- projects/diffused_head/UPDATING Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/UPDATING Wed Nov 28 03:04:38 2012 (r243646) @@ -24,6 +24,92 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121117: + The sin6_scope_id member variable in struct sockaddr_in6 is now + filled by the kernel before passing the structure to the userland via + sysctl or routing socket. This means the KAME-specific embedded scope + id in sin6_addr.s6_addr[2] is always cleared in userland application. + This behavior can be controlled by net.inet6.ip6.deembed_scopeid. + __FreeBSD_version is bumped to 1000025. + +20121105: + On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. + This means that the world and kernel will be compiled with clang + and that clang will be installed as /usr/bin/cc, /usr/bin/c++, + and /usr/bin/cpp. To disable this behavior and revert to building + with gcc, compile with WITHOUT_CLANG_IS_CC. + +20121102: + The IPFIREWALL_FORWARD kernel option has been removed. Its + functionality now turned on by default. + +20121023: + The ZERO_COPY_SOCKET kernel option has been removed and + split into SOCKET_SEND_COW and SOCKET_RECV_PFLIP. + NB: SOCKET_SEND_COW uses the VM page based copy-on-write + mechanism which is not safe and may result in kernel crashes. + NB: The SOCKET_RECV_PFLIP mechanism is useless as no current + driver supports disposeable external page sized mbuf storage. + Proper replacements for both zero-copy mechanisms are under + consideration and will eventually lead to complete removal + of the two kernel options. + +20121023: + The IPv4 network stack has been converted to network byte + order. The following modules need to be recompiled together + with kernel: carp(4), divert(4), gif(4), siftr(4), gre(4), + pf(4), ipfw(4), ng_ipfw(4), stf(4). + +20121022: + Support for non-MPSAFE filesystems was removed from VFS. The + VFS_VERSION was bumped, all filesystem modules shall be + recompiled. + +20121018: + All the non-MPSAFE filesystems have been disconnected from + the build. The full list includes: codafs, hpfs, ntfs, nwfs, + portalfs, smbfs, xfs. + +20121016: + The interface cloning API and ABI has changed. The following + modules need to be recompiled together with kernel: + ipfw(4), pfsync(4), pflog(4), usb(4), wlan(4), stf(4), + vlan(4), disc(4), edsc(4), if_bridge(4), gif(4), tap(4), + faith(4), epair(4), enc(4), tun(4), if_lagg(4), gre(4). + +20121015: + The sdhci driver was split in two parts: sdhci (generic SD Host + Controller logic) and sdhci_pci (actual hardware driver). + No kernel config modifications are required, but if you + load sdhc as a module you must switch to sdhci_pci instead. + +20121014: + Import the FUSE kernel and userland support into base system. + +20121013: + The GNU sort(1) program has been removed since the BSD-licensed + sort(1) has been the default for quite some time and no serious + problems have been reported. The corresponding WITH_GNU_SORT + knob has also gone. + +20121006: + The pfil(9) API/ABI for AF_INET family has been changed. Packet + filtering modules: pf(4), ipfw(4), ipfilter(4) need to be recompiled + with new kernel. + +20121001: + The net80211(4) ABI has been changed to allow for improved driver + PS-POLL and power-save support. All wireless drivers need to be + recompiled to work with the new kernel. + +20120913: + The random(4) support for the VIA hardware random number + generator (`PADLOCK') is no longer enabled unconditionally. + Add the PADLOCK_RNG option in the custom kernel config if + needed. The GENERIC kernels on i386 and amd64 do include the + option, so the change only affects the custom kernel + configurations. + 20120908: The pf(4) packet filter ABI has been changed. pfctl(8) and snmp_pf module need to be recompiled to work with new kernel. @@ -1523,7 +1609,7 @@ COMMON ITEMS: - To upgrade in-place from 8.x-stable to current + To upgrade in-place from stable to current ---------------------------------------------- make buildworld [9] Modified: projects/diffused_head/bin/date/extern.h ============================================================================== --- projects/diffused_head/bin/date/extern.h Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/date/extern.h Wed Nov 28 03:04:38 2012 (r243646) @@ -30,4 +30,6 @@ * $FreeBSD$ */ +extern int retval; + int netsettime(time_t); Modified: projects/diffused_head/bin/date/netdate.c ============================================================================== --- projects/diffused_head/bin/date/netdate.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/date/netdate.c Wed Nov 28 03:04:38 2012 (r243646) @@ -55,8 +55,6 @@ __FBSDID("$FreeBSD$"); #define WAITACK 2 /* seconds */ #define WAITDATEACK 5 /* seconds */ -extern int retval; - /* * Set the date in the machines controlled by timedaemons by communicating the * new date to the local timedaemon. If the timedaemon is in the master state, Modified: projects/diffused_head/bin/dd/conv_tab.c ============================================================================== --- projects/diffused_head/bin/dd/conv_tab.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/dd/conv_tab.c Wed Nov 28 03:04:38 2012 (r243646) @@ -41,6 +41,11 @@ __FBSDID("$FreeBSD$"); #include +#include + +#include "dd.h" +#include "extern.h" + /* * There are currently six tables: * Modified: projects/diffused_head/bin/df/df.1 ============================================================================== --- projects/diffused_head/bin/df/df.1 Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/df/df.1 Wed Nov 28 03:04:38 2012 (r243646) @@ -29,7 +29,7 @@ .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD$ .\" -.Dd March 3, 2012 +.Dd November 16, 2012 .Dt DF 1 .Os .Sh NAME @@ -50,7 +50,8 @@ displays statistics about the amount of or on the file system of which .Ar file is a part. -Values are displayed in 512-byte per block counts. +By default block counts are displayed with an assumed block size of +512 bytes. If neither a file or a file system operand is specified, statistics for all mounted file systems are displayed (subject to the @@ -65,48 +66,54 @@ Show all mount points, including those t flag. This is implied for file systems specified on the command line. .It Fl b -Use 512-byte blocks rather than the default. -Note that -this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl P +option. +The +.Fl k +option overrides this option. .It Fl c Display a grand total. .It Fl g -Use 1073741824-byte (1-Gbyte) blocks rather than the default. -Note that -this overrides the +Use 1073741824 byte (1 Gibibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl H .Dq Human-readable output. -Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 10 for sizes. +Use unit suffixes: Byte, Kibibyte, Mebibyte, Gibibyte, Tebibyte and +Pebibyte (based on powers of 1024) in order to reduce the number of +digits to four or fewer. .It Fl h .Dq Human-readable output. Use unit suffixes: Byte, Kilobyte, Megabyte, -Gigabyte, Terabyte and Petabyte in order to reduce the number of -digits to four or fewer using base 2 for sizes. -Inodes statistics, if enabled with -.Fl i , -are always printed in base 10. +Gigabyte, Terabyte and Petabyte (based on powers of 1000) in order to +reduce the number of +digits to four or fewer. .It Fl i -Include statistics on the number of free inodes. +Include statistics on the number of free and used inodes. +In conjunction with the +.Fl h +or +.Fl H +options, the number of inodes is scaled by powers of 1000. .It Fl k -Use 1024-byte (1-Kbyte) blocks rather than the default. -Note that -this overrides the +Use 1024 byte (1 Kibibyte) blocks rather than the default. +This overrides the +.Fl P +option and any .Ev BLOCKSIZE specification from the environment. .It Fl l Only display information about locally-mounted file systems. .It Fl m -Use 1048576-byte (1-Mbyte) blocks rather than the default. -Note that -this overrides the +Use 1048576 byte (1 Mebibyte) blocks rather than the default. +This overrides any .Ev BLOCKSIZE specification from the environment. .It Fl n @@ -119,10 +126,15 @@ When this option is specified, will not request new statistics from the file systems, but will respond with the possibly stale statistics that were previously obtained. .It Fl P -Use POSIX compliant output of 512-byte blocks rather than the default. -Note that this overrides the +Explicitly use 512 byte blocks, overriding any .Ev BLOCKSIZE specification from the environment. +This is the same as the +.Fl b +option. +The +.Fl k +option overrides this option. .It Fl t Only print out statistics for file systems of the specified types. More than one type may be specified in a comma separated list. @@ -148,26 +160,53 @@ command can be used to find out the type that are available on the system. .It Fl T Include file system type. +.It Fl , +(Comma) Print sizes grouped and separated by thousands using the +non-monetary separator returned by +.Xr localeconv 3 , +typically a comma or period. +If no locale is set, or the locale does not have a non-monetary separator, this +option has no effect. .El .Sh ENVIRONMENT .Bl -tag -width BLOCKSIZE .It Ev BLOCKSIZE -If the environment variable -.Ev BLOCKSIZE -is set, the block counts will be displayed in units of that size block. +Specifies the units in which to report block counts. +This uses +.Xr getbsize 3 , +which allows units of bytes or numbers scaled with the letters +.Em k +(for multiples of 1024 bytes), +.Em m +(for multiples of 1048576 bytes) or +.Em g +(for gibibytes). +The allowed range is 512 bytes to 1 GB. +If the value is outside, it will be set to the appropriate limit. .El .Sh SEE ALSO .Xr lsvfs 1 , -.Xr pstat 1 , .Xr quota 1 , -.Xr swapinfo 1 , .Xr fstatfs 2 , .Xr getfsstat 2 , .Xr statfs 2 , +.Xr getbsize 3 , .Xr getmntinfo 3 , +.Xr localeconv 3 , .Xr fstab 5 , .Xr mount 8 , -.Xr quot 8 +.Xr quot 8 . +.Sh STANDARDS +With the exception of most options, +the +.Nm +utility conforms to +.St -p1003.1-2004 , +which defines only the +.Fl k , P +and +.Fl t +options. .Sh HISTORY A .Nm @@ -180,3 +219,13 @@ flag is ignored if a file or file system Also, if a mount point is not accessible by the user, it is possible that the file system information could be stale. +.Pp +The +.Fl b +and +.Fl P +options are identical. +The former comes from the BSD tradition, and the latter is required +for +.St -p1003.1-2004 +conformity. Modified: projects/diffused_head/bin/df/df.c ============================================================================== --- projects/diffused_head/bin/df/df.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/df/df.c Wed Nov 28 03:04:38 2012 (r243646) @@ -53,6 +53,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -95,6 +96,7 @@ imax(int a, int b) } static int aflag = 0, cflag, hflag, iflag, kflag, lflag = 0, nflag, Tflag; +static int thousands; static struct ufs_args mdev; int @@ -111,12 +113,12 @@ main(int argc, char *argv[]) int ch, rv; fstype = "ufs"; - + (void)setlocale(LC_ALL, ""); memset(&totalbuf, 0, sizeof(totalbuf)); totalbuf.f_bsize = DEV_BSIZE; strlcpy(totalbuf.f_mntfromname, "total", MNAMELEN); vfslist = NULL; - while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T")) != -1) + while ((ch = getopt(argc, argv, "abcgHhiklmnPt:T,")) != -1) switch (ch) { case 'a': aflag = 1; @@ -180,6 +182,9 @@ main(int argc, char *argv[]) case 'T': Tflag = 1; break; + case ',': + thousands = 1; + break; case '?': default: usage(); @@ -388,16 +393,11 @@ prthumanvalinode(int64_t bytes) /* * Convert statfs returned file system size into BLOCKSIZE units. - * Attempts to avoid overflow for large file systems. */ static intmax_t fsbtoblk(int64_t num, uint64_t fsbs, u_long bs) { - - if (fsbs != 0 && fsbs < bs) - return (num / (intmax_t)(bs / fsbs)); - else - return (num * (intmax_t)(fsbs / bs)); + return (num * (intmax_t) fsbs / bs); } /* @@ -410,10 +410,18 @@ prtstat(struct statfs *sfsp, struct maxw static int headerlen, timesthrough = 0; static const char *header; int64_t used, availblks, inodes; + const char *format; if (++timesthrough == 1) { mwp->mntfrom = imax(mwp->mntfrom, (int)strlen("Filesystem")); mwp->fstype = imax(mwp->fstype, (int)strlen("Type")); + if (thousands) { /* make space for commas */ + mwp->total += (mwp->total - 1) / 3; + mwp->used += (mwp->used - 1) / 3; + mwp->avail += (mwp->avail - 1) / 3; + mwp->iused += (mwp->iused - 1) / 3; + mwp->ifree += (mwp->ifree - 1) / 3; + } if (hflag) { header = " Size"; mwp->total = mwp->used = mwp->avail = @@ -428,7 +436,7 @@ prtstat(struct statfs *sfsp, struct maxw (void)printf("%-*s", mwp->mntfrom, "Filesystem"); if (Tflag) (void)printf(" %-*s", mwp->fstype, "Type"); - (void)printf(" %-*s %*s %*s Capacity", mwp->total, header, + (void)printf(" %*s %*s %*s Capacity", mwp->total, header, mwp->used, "Used", mwp->avail, "Avail"); if (iflag) { mwp->iused = imax(hflag ? 0 : mwp->iused, @@ -440,6 +448,12 @@ prtstat(struct statfs *sfsp, struct maxw } (void)printf(" Mounted on\n"); } + /* Check for 0 block size. Can this happen? */ + if (sfsp->f_bsize == 0) { + warnx ("File system %s does not have a block size, assuming 512.", + sfsp->f_mntonname); + sfsp->f_bsize = 512; + } (void)printf("%-*s", mwp->mntfrom, sfsp->f_mntfromname); if (Tflag) (void)printf(" %-*s", mwp->fstype, sfsp->f_fstypename); @@ -448,7 +462,11 @@ prtstat(struct statfs *sfsp, struct maxw if (hflag) { prthuman(sfsp, used); } else { - (void)printf(" %*jd %*jd %*jd", + if (thousands) + format = " %*j'd %*j'd %*j'd"; + else + format = " %*jd %*jd %*jd"; + (void)printf(format, mwp->total, fsbtoblk(sfsp->f_blocks, sfsp->f_bsize, blocksize), mwp->used, fsbtoblk(used, sfsp->f_bsize, blocksize), @@ -465,7 +483,11 @@ prtstat(struct statfs *sfsp, struct maxw prthumanvalinode(used); prthumanvalinode(sfsp->f_ffree); } else { - (void)printf(" %*jd %*jd", mwp->iused, (intmax_t)used, + if (thousands) + format = " %*j'd %*j'd"; + else + format = " %*jd %*jd"; + (void)printf(format, mwp->iused, (intmax_t)used, mwp->ifree, (intmax_t)sfsp->f_ffree); } (void)printf(" %4.0f%% ", inodes == 0 ? 100.0 : @@ -542,7 +564,7 @@ usage(void) { (void)fprintf(stderr, -"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [file | filesystem ...]\n"); +"usage: df [-b | -g | -H | -h | -k | -m | -P] [-acilnT] [-t type] [-,] [file | filesystem ...]\n"); exit(EX_USAGE); } Modified: projects/diffused_head/bin/ed/buf.c ============================================================================== --- projects/diffused_head/bin/ed/buf.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/buf.c Wed Nov 28 03:04:38 2012 (r243646) @@ -35,10 +35,10 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -FILE *sfp; /* scratch file pointer */ -off_t sfseek; /* scratch file position */ -int seek_write; /* seek before writing */ -line_t buffer_head; /* incore buffer */ +static FILE *sfp; /* scratch file pointer */ +static off_t sfseek; /* scratch file position */ +static int seek_write; /* seek before writing */ +static line_t buffer_head; /* incore buffer */ /* get_sbuf_line: get a line of text from the scratch file; return pointer to the text */ @@ -185,10 +185,7 @@ get_addressed_line_node(long n) return lp; } - -extern int newline_added; - -char sfn[15] = ""; /* scratch file name */ +static char sfn[15] = ""; /* scratch file name */ /* open_sbuf: open scratch file */ int @@ -244,7 +241,7 @@ quit(int n) } -unsigned char ctab[256]; /* character translation table */ +static unsigned char ctab[256]; /* character translation table */ /* init_buffers: open scratch buffer; initialize line queue */ void Modified: projects/diffused_head/bin/ed/cbc.c ============================================================================== --- projects/diffused_head/bin/ed/cbc.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/cbc.c Wed Nov 28 03:04:38 2012 (r243646) @@ -68,28 +68,24 @@ __FBSDID("$FreeBSD$"); * global variables and related macros */ -enum { /* encrypt, decrypt, authenticate */ - MODE_ENCRYPT, MODE_DECRYPT, MODE_AUTHENTICATE -} mode = MODE_ENCRYPT; - #ifdef DES -DES_cblock ivec; /* initialization vector */ -DES_cblock pvec; /* padding vector */ +static DES_cblock ivec; /* initialization vector */ +static DES_cblock pvec; /* padding vector */ #endif -char bits[] = { /* used to extract bits from a char */ +static char bits[] = { /* used to extract bits from a char */ '\200', '\100', '\040', '\020', '\010', '\004', '\002', '\001' }; -int pflag; /* 1 to preserve parity bits */ +static int pflag; /* 1 to preserve parity bits */ #ifdef DES -DES_key_schedule schedule; /* expanded DES key */ +static DES_key_schedule schedule; /* expanded DES key */ #endif -unsigned char des_buf[8]; /* shared buffer for get_des_char/put_des_char */ -int des_ct = 0; /* count for get_des_char/put_des_char */ -int des_n = 0; /* index for put_des_char/get_des_char */ +static unsigned char des_buf[8];/* shared buffer for get_des_char/put_des_char */ +static int des_ct = 0; /* count for get_des_char/put_des_char */ +static int des_n = 0; /* index for put_des_char/get_des_char */ /* init_des_cipher: initialize DES */ void Modified: projects/diffused_head/bin/ed/ed.h ============================================================================== --- projects/diffused_head/bin/ed/ed.h Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/ed.h Wed Nov 28 03:04:38 2012 (r243646) @@ -277,3 +277,9 @@ extern int lineno; extern long second_addr; extern long u_addr_last; extern long u_current_addr; +extern long rows; +extern int cols; +extern int newline_added; +extern int des; +extern int scripted; +extern int patlock; Modified: projects/diffused_head/bin/ed/glbl.c ============================================================================== --- projects/diffused_head/bin/ed/glbl.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/glbl.c Wed Nov 28 03:04:38 2012 (r243646) @@ -135,11 +135,11 @@ exec_global(int interact, int gflag) } -line_t **active_list; /* list of lines active in a global command */ -long active_last; /* index of last active line in active_list */ -long active_size; /* size of active_list */ -long active_ptr; /* active_list index (non-decreasing) */ -long active_ndx; /* active_list index (modulo active_last) */ +static line_t **active_list; /* list of lines active in a global command */ +static long active_last; /* index of last active line in active_list */ +static long active_size; /* size of active_list */ +static long active_ptr; /* active_list index (non-decreasing) */ +static long active_ndx; /* active_list index (modulo active_last) */ /* set_active_node: add a line node to the global-active list */ int Modified: projects/diffused_head/bin/ed/io.c ============================================================================== --- projects/diffused_head/bin/ed/io.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/io.c Wed Nov 28 03:04:38 2012 (r243646) @@ -30,9 +30,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int scripted; - /* read_file: read a named file/pipe into the buffer; return line count */ long read_file(char *fn, long n) @@ -58,11 +55,8 @@ read_file(char *fn, long n) return current_addr - n; } - -extern int des; - -char *sbuf; /* file i/o buffer */ -int sbufsz; /* file i/o buffer size */ +static char *sbuf; /* file i/o buffer */ +static int sbufsz; /* file i/o buffer size */ int newline_added; /* if set, newline appended to input file */ /* read_stream: read a stream into the editor buffer; return status */ @@ -298,9 +292,6 @@ get_tty_line(void) #define ESCAPES "\a\b\f\n\r\t\v\\" #define ESCCHARS "abfnrtv\\" -extern int rows; -extern int cols; - /* put_tty_line: print text to stdout */ int put_tty_line(const char *s, int l, long n, int gflag) Modified: projects/diffused_head/bin/ed/main.c ============================================================================== --- projects/diffused_head/bin/ed/main.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/main.c Wed Nov 28 03:04:38 2012 (r243646) @@ -66,40 +66,40 @@ __FBSDID("$FreeBSD$"); #ifdef _POSIX_SOURCE -sigjmp_buf env; +static sigjmp_buf env; #else -jmp_buf env; +static jmp_buf env; #endif /* static buffers */ char stdinbuf[1]; /* stdin buffer */ -char *shcmd; /* shell command buffer */ -int shcmdsz; /* shell command buffer size */ -int shcmdi; /* shell command buffer index */ +static char *shcmd; /* shell command buffer */ +static int shcmdsz; /* shell command buffer size */ +static int shcmdi; /* shell command buffer index */ char *ibuf; /* ed command-line buffer */ int ibufsz; /* ed command-line buffer size */ char *ibufp; /* pointer to ed command-line buffer */ /* global flags */ int des = 0; /* if set, use crypt(3) for i/o */ -int garrulous = 0; /* if set, print all error messages */ +static int garrulous = 0; /* if set, print all error messages */ int isbinary; /* if set, buffer contains ASCII NULs */ int isglobal; /* if set, doing a global command */ int modified; /* if set, buffer modified since last write */ int mutex = 0; /* if set, signals set "sigflags" */ -int red = 0; /* if set, restrict shell/directory access */ +static int red = 0; /* if set, restrict shell/directory access */ int scripted = 0; /* if set, suppress diagnostics */ int sigflags = 0; /* if set, signals received while mutex set */ -int sigactive = 0; /* if set, signal handlers are enabled */ +static int sigactive = 0; /* if set, signal handlers are enabled */ -char old_filename[PATH_MAX] = ""; /* default filename */ +static char old_filename[PATH_MAX] = ""; /* default filename */ long current_addr; /* current address in editor buffer */ long addr_last; /* last address in editor buffer */ int lineno; /* script line number */ -const char *prompt; /* command-line prompt */ -const char *dps = "*"; /* default command-line prompt */ +static const char *prompt; /* command-line prompt */ +static const char *dps = "*"; /* default command-line prompt */ -const char usage[] = "usage: %s [-] [-sx] [-p string] [file]\n"; +static const char *usage = "usage: %s [-] [-sx] [-p string] [file]\n"; /* ed: line editor */ int @@ -254,7 +254,8 @@ top: /*NOTREACHED*/ } -long first_addr, second_addr, addr_cnt; +long first_addr, second_addr; +static long addr_cnt; /* extract_addr_range: get line addresses from the command buffer until an illegal address is seen; return status */ @@ -1241,8 +1242,8 @@ display_lines(long from, long to, int gf #define MAXMARK 26 /* max number of marks */ -line_t *mark[MAXMARK]; /* line markers */ -int markno; /* line marker count */ +static line_t *mark[MAXMARK]; /* line markers */ +static int markno; /* line marker count */ /* mark_line_node: set a line node mark */ int Modified: projects/diffused_head/bin/ed/re.c ============================================================================== --- projects/diffused_head/bin/ed/re.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/re.c Wed Nov 28 03:04:38 2012 (r243646) @@ -31,9 +31,6 @@ __FBSDID("$FreeBSD$"); #include "ed.h" - -extern int patlock; - const char *errmsg = ""; /* get_compiled_pattern: return pointer to compiled pattern from command Modified: projects/diffused_head/bin/ed/sub.c ============================================================================== --- projects/diffused_head/bin/ed/sub.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/sub.c Wed Nov 28 03:04:38 2012 (r243646) @@ -32,9 +32,9 @@ __FBSDID("$FreeBSD$"); #include "ed.h" -char *rhbuf; /* rhs substitution buffer */ -int rhbufsz; /* rhs substitution buffer size */ -int rhbufi; /* rhs substitution buffer index */ +static char *rhbuf; /* rhs substitution buffer */ +static int rhbufsz; /* rhs substitution buffer size */ +static int rhbufi; /* rhs substitution buffer index */ /* extract_subst_tail: extract substitution tail from the command buffer */ int @@ -105,8 +105,8 @@ extract_subst_template(void) } -char *rbuf; /* substitute_matching_text buffer */ -int rbufsz; /* substitute_matching_text buffer size */ +static char *rbuf; /* substitute_matching_text buffer */ +static int rbufsz; /* substitute_matching_text buffer size */ /* search_and_replace: for each line in a range, change text matching a pattern according to a substitution template; return status */ Modified: projects/diffused_head/bin/ed/undo.c ============================================================================== --- projects/diffused_head/bin/ed/undo.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/ed/undo.c Wed Nov 28 03:04:38 2012 (r243646) @@ -32,9 +32,9 @@ __FBSDID("$FreeBSD$"); #define USIZE 100 /* undo stack size */ -undo_t *ustack = NULL; /* undo stack */ -long usize = 0; /* stack size variable */ -long u_p = 0; /* undo stack pointer */ +static undo_t *ustack = NULL; /* undo stack */ +static long usize = 0; /* stack size variable */ +static long u_p = 0; /* undo stack pointer */ /* push_undo_stack: return pointer to initialized undo node */ undo_t * Modified: projects/diffused_head/bin/getfacl/getfacl.c ============================================================================== --- projects/diffused_head/bin/getfacl/getfacl.c Wed Nov 28 02:47:31 2012 (r243645) +++ projects/diffused_head/bin/getfacl/getfacl.c Wed Nov 28 03:04:38 2012 (r243646) @@ -48,7 +48,7 @@ __FBSDID("$FreeBSD$"); #include #include -int more_than_one = 0; +static int more_than_one = 0; *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 13:10:18 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D381DB95; Wed, 28 Nov 2012 13:10:18 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BB6FC8FC0C; Wed, 28 Nov 2012 13:10:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qASDAIiQ033908; Wed, 28 Nov 2012 13:10:18 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qASDAIjd033905; Wed, 28 Nov 2012 13:10:18 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201211281310.qASDAIjd033905@svn.freebsd.org> From: Neel Natu Date: Wed, 28 Nov 2012 13:10:18 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243650 - in projects/bhyve/sys/amd64/vmm: . intel X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 13:10:18 -0000 Author: neel Date: Wed Nov 28 13:10:18 2012 New Revision: 243650 URL: http://svnweb.freebsd.org/changeset/base/243650 Log: Change emulate_rdmsr() and emulate_wrmsr() to return 0 on sucess and errno on failure. The conversion from the return value to HANDLED or UNHANDLED can be done locally in vmx_exit_process(). Obtained from: NetApp Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c projects/bhyve/sys/amd64/vmm/vmm_lapic.c projects/bhyve/sys/amd64/vmm/vmm_msr.c Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/intel/vmx.c Wed Nov 28 11:47:47 2012 (r243649) +++ projects/bhyve/sys/amd64/vmm/intel/vmx.c Wed Nov 28 13:10:18 2012 (r243650) @@ -1214,23 +1214,25 @@ vmx_exit_process(struct vmx *vmx, int vc break; case EXIT_REASON_RDMSR: ecx = vmxctx->guest_rcx; - handled = emulate_rdmsr(vmx->vm, vcpu, ecx); - if (!handled) { + error = emulate_rdmsr(vmx->vm, vcpu, ecx); + if (error) { vmexit->exitcode = VM_EXITCODE_RDMSR; vmexit->u.msr.code = ecx; - } + } else + handled = 1; break; case EXIT_REASON_WRMSR: eax = vmxctx->guest_rax; ecx = vmxctx->guest_rcx; edx = vmxctx->guest_rdx; - handled = emulate_wrmsr(vmx->vm, vcpu, ecx, + error = emulate_wrmsr(vmx->vm, vcpu, ecx, (uint64_t)edx << 32 | eax); - if (!handled) { + if (error) { vmexit->exitcode = VM_EXITCODE_WRMSR; vmexit->u.msr.code = ecx; vmexit->u.msr.wval = (uint64_t)edx << 32 | eax; - } + } else + handled = 1; break; case EXIT_REASON_HLT: vmm_stat_incr(vmx->vm, vcpu, VMEXIT_HLT, 1); Modified: projects/bhyve/sys/amd64/vmm/vmm_lapic.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_lapic.c Wed Nov 28 11:47:47 2012 (r243649) +++ projects/bhyve/sys/amd64/vmm/vmm_lapic.c Wed Nov 28 13:10:18 2012 (r243650) @@ -41,32 +41,6 @@ __FBSDID("$FreeBSD$"); #include "vmm_lapic.h" #include "vlapic.h" -static int -lapic_write(struct vlapic *vlapic, u_int offset, uint64_t val) -{ - int handled; - - if (vlapic_op_mem_write(vlapic, offset, DWORD, val) == 0) - handled = 1; - else - handled = 0; - - return (handled); -} - -static int -lapic_read(struct vlapic *vlapic, u_int offset, uint64_t *rv) -{ - int handled; - - if (vlapic_op_mem_read(vlapic, offset, DWORD, rv) == 0) - handled = 1; - else - handled = 0; - - return (handled); -} - int lapic_pending_intr(struct vm *vm, int cpu) { @@ -145,35 +119,41 @@ lapic_msr(u_int msr) int lapic_rdmsr(struct vm *vm, int cpu, u_int msr, uint64_t *rval) { - int handled; + int error; + u_int offset; struct vlapic *vlapic; vlapic = vm_lapic(vm, cpu); if (msr == MSR_APICBASE) { *rval = vlapic_get_apicbase(vlapic); - handled = 1; - } else - handled = lapic_read(vlapic, x2apic_msr_to_regoff(msr), rval); + error = 0; + } else { + offset = x2apic_msr_to_regoff(msr); + error = vlapic_op_mem_read(vlapic, offset, DWORD, rval); + } - return (handled); + return (error); } int lapic_wrmsr(struct vm *vm, int cpu, u_int msr, uint64_t val) { - int handled; + int error; + u_int offset; struct vlapic *vlapic; vlapic = vm_lapic(vm, cpu); if (msr == MSR_APICBASE) { vlapic_set_apicbase(vlapic, val); - handled = 1; - } else - handled = lapic_write(vlapic, x2apic_msr_to_regoff(msr), val); + error = 0; + } else { + offset = x2apic_msr_to_regoff(msr); + error = vlapic_op_mem_write(vlapic, offset, DWORD, val); + } - return (handled); + return (error); } int Modified: projects/bhyve/sys/amd64/vmm/vmm_msr.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_msr.c Wed Nov 28 11:47:47 2012 (r243649) +++ projects/bhyve/sys/amd64/vmm/vmm_msr.c Wed Nov 28 13:10:18 2012 (r243650) @@ -41,7 +41,7 @@ __FBSDID("$FreeBSD$"); #define VMM_MSR_F_EMULATE 0x01 #define VMM_MSR_F_READONLY 0x02 -#define VMM_MSR_F_INVALID 0x04 +#define VMM_MSR_F_INVALID 0x04 /* guest_msr_valid() can override this */ struct vmm_msr { int num; @@ -137,20 +137,15 @@ msr_num_to_idx(u_int num) int emulate_wrmsr(struct vm *vm, int cpu, u_int num, uint64_t val) { - int handled, idx; + int idx; uint64_t *guest_msrs; - handled = 0; - if (lapic_msr(num)) return (lapic_wrmsr(vm, cpu, num, val)); idx = msr_num_to_idx(num); - if (idx < 0) - goto done; - - if (invalid_msr(idx)) - goto done; + if (idx < 0 || invalid_msr(idx)) + return (EINVAL); if (!readonly_msr(idx)) { guest_msrs = vm_guest_msrs(vm, cpu); @@ -163,31 +158,26 @@ emulate_wrmsr(struct vm *vm, int cpu, u_ wrmsr(vmm_msr[idx].num, val); } - handled = 1; -done: - return (handled); + return (0); } int emulate_rdmsr(struct vm *vm, int cpu, u_int num) { - int error, handled, idx; + int error, idx; uint32_t eax, edx; uint64_t result, *guest_msrs; - handled = 0; - if (lapic_msr(num)) { - handled = lapic_rdmsr(vm, cpu, num, &result); + error = lapic_rdmsr(vm, cpu, num, &result); goto done; } idx = msr_num_to_idx(num); - if (idx < 0) - goto done; - - if (invalid_msr(idx)) + if (idx < 0 || invalid_msr(idx)) { + error = EINVAL; goto done; + } guest_msrs = vm_guest_msrs(vm, cpu); result = guest_msrs[idx]; @@ -202,10 +192,10 @@ emulate_rdmsr(struct vm *vm, int cpu, u_ result, rdmsr(num)); } - handled = 1; + error = 0; done: - if (handled) { + if (error == 0) { eax = result; edx = result >> 32; error = vm_set_register(vm, cpu, VM_REG_GUEST_RAX, eax); @@ -215,7 +205,7 @@ done: if (error) panic("vm_set_register(rdx) error %d", error); } - return (handled); + return (error); } void From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 13:34:44 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B507313E; Wed, 28 Nov 2012 13:34:44 +0000 (UTC) (envelope-from neel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 99A058FC08; Wed, 28 Nov 2012 13:34:44 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qASDYinI038378; Wed, 28 Nov 2012 13:34:44 GMT (envelope-from neel@svn.freebsd.org) Received: (from neel@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qASDYioA038373; Wed, 28 Nov 2012 13:34:44 GMT (envelope-from neel@svn.freebsd.org) Message-Id: <201211281334.qASDYioA038373@svn.freebsd.org> From: Neel Natu Date: Wed, 28 Nov 2012 13:34:44 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243651 - in projects/bhyve: sys/amd64/include sys/amd64/vmm/intel usr.sbin/bhyve X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 13:34:44 -0000 Author: neel Date: Wed Nov 28 13:34:44 2012 New Revision: 243651 URL: http://svnweb.freebsd.org/changeset/base/243651 Log: Cleanup the user-space paging exit handler now that the unified instruction emulation is in place. Obtained from: NetApp Modified: projects/bhyve/sys/amd64/include/vmm.h projects/bhyve/sys/amd64/vmm/intel/vmx.c projects/bhyve/usr.sbin/bhyve/fbsdrun.c projects/bhyve/usr.sbin/bhyve/mem.c projects/bhyve/usr.sbin/bhyve/mem.h Modified: projects/bhyve/sys/amd64/include/vmm.h ============================================================================== --- projects/bhyve/sys/amd64/include/vmm.h Wed Nov 28 13:10:18 2012 (r243650) +++ projects/bhyve/sys/amd64/include/vmm.h Wed Nov 28 13:34:44 2012 (r243651) @@ -267,9 +267,7 @@ struct vm_exit { uint32_t eax; /* valid for out */ } inout; struct { - uint64_t cr3; uint64_t gpa; - int rwx; struct vie vie; } paging; /* Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/intel/vmx.c Wed Nov 28 13:10:18 2012 (r243650) +++ projects/bhyve/sys/amd64/vmm/intel/vmx.c Wed Nov 28 13:34:44 2012 (r243651) @@ -1303,9 +1303,7 @@ vmx_exit_process(struct vmx *vmx, int vc cr3, qual, &vmexit->u.paging.vie); if (!handled) { vmexit->exitcode = VM_EXITCODE_PAGING; - vmexit->u.paging.cr3 = cr3; vmexit->u.paging.gpa = gpa; - vmexit->u.paging.rwx = qual & 0x7; } break; default: Modified: projects/bhyve/usr.sbin/bhyve/fbsdrun.c ============================================================================== --- projects/bhyve/usr.sbin/bhyve/fbsdrun.c Wed Nov 28 13:10:18 2012 (r243650) +++ projects/bhyve/usr.sbin/bhyve/fbsdrun.c Wed Nov 28 13:34:44 2012 (r243651) @@ -453,8 +453,7 @@ vmexit_paging(struct vmctx *ctx, struct int err; stats.vmexit_paging++; - err = emulate_mem(ctx, *pvcpu, vmexit->u.paging.gpa, vmexit->rip, - vmexit->u.paging.cr3, vmexit->u.paging.rwx, + err = emulate_mem(ctx, *pvcpu, vmexit->u.paging.gpa, &vmexit->u.paging.vie); if (err) { Modified: projects/bhyve/usr.sbin/bhyve/mem.c ============================================================================== --- projects/bhyve/usr.sbin/bhyve/mem.c Wed Nov 28 13:10:18 2012 (r243650) +++ projects/bhyve/usr.sbin/bhyve/mem.c Wed Nov 28 13:34:44 2012 (r243651) @@ -156,8 +156,7 @@ mem_write(void *ctx, int vcpu, uint64_t } int -emulate_mem(struct vmctx *ctx, int vcpu, uint64_t paddr, uint64_t rip, - uint64_t cr3, int mode, struct vie *vie) +emulate_mem(struct vmctx *ctx, int vcpu, uint64_t paddr, struct vie *vie) { struct mmio_rb_range *entry; int err; Modified: projects/bhyve/usr.sbin/bhyve/mem.h ============================================================================== --- projects/bhyve/usr.sbin/bhyve/mem.h Wed Nov 28 13:10:18 2012 (r243650) +++ projects/bhyve/usr.sbin/bhyve/mem.h Wed Nov 28 13:34:44 2012 (r243651) @@ -50,8 +50,7 @@ struct mem_range { #define MEM_F_RW 0x3 void init_mem(void); -int emulate_mem(struct vmctx *, int vcpu, uint64_t paddr, uint64_t rip, - uint64_t cr3, int mode, struct vie *vie); +int emulate_mem(struct vmctx *, int vcpu, uint64_t paddr, struct vie *vie); int register_mem(struct mem_range *memp); From owner-svn-src-projects@FreeBSD.ORG Wed Nov 28 17:34:18 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6CFF790D; Wed, 28 Nov 2012 17:34:18 +0000 (UTC) (envelope-from glebius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4F1F68FC18; Wed, 28 Nov 2012 17:34:18 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qASHYIpd097964; Wed, 28 Nov 2012 17:34:18 GMT (envelope-from glebius@svn.freebsd.org) Received: (from glebius@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qASHYHwY097942; Wed, 28 Nov 2012 17:34:17 GMT (envelope-from glebius@svn.freebsd.org) Message-Id: <201211281734.qASHYHwY097942@svn.freebsd.org> From: Gleb Smirnoff Date: Wed, 28 Nov 2012 17:34:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243653 - in projects/counters: . cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/cmd/ztest contrib/libc++/include contrib/sendmail/src etc ... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 28 Nov 2012 17:34:18 -0000 Author: glebius Date: Wed Nov 28 17:34:17 2012 New Revision: 243653 URL: http://svnweb.freebsd.org/changeset/base/243653 Log: Merge r243428 through r243651 from head. Added: projects/counters/sys/arm/broadcom/bcm2835/bcm2835_gpio.c - copied unchanged from r243651, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c projects/counters/sys/arm/conf/Makefile - copied unchanged from r243651, head/sys/arm/conf/Makefile projects/counters/sys/arm/conf/NOTES - copied unchanged from r243651, head/sys/arm/conf/NOTES projects/counters/tools/tools/ath/athalq/ar5416_ds_tdma.c - copied unchanged from r243651, head/tools/tools/ath/athalq/ar5416_ds_tdma.c Modified: projects/counters/UPDATING projects/counters/cddl/contrib/opensolaris/cmd/zfs/zfs.8 projects/counters/cddl/contrib/opensolaris/cmd/zpool/zpool.8 projects/counters/cddl/contrib/opensolaris/cmd/ztest/ztest.c projects/counters/contrib/libc++/include/__config projects/counters/contrib/libc++/include/cstdlib projects/counters/contrib/libc++/include/cwchar projects/counters/contrib/sendmail/src/sasl.c projects/counters/etc/newsyslog.conf projects/counters/lib/libc/sys/getpeername.2 projects/counters/lib/libc/sys/getsockname.2 projects/counters/share/man/man4/ktr.4 projects/counters/share/man/man4/usb_quirk.4 projects/counters/share/misc/committers-ports.dot projects/counters/sys/arm/arm/cpufunc.c projects/counters/sys/arm/arm/locore.S projects/counters/sys/arm/arm/machdep.c projects/counters/sys/arm/arm/mpcore_timer.c projects/counters/sys/arm/at91/files.at91 projects/counters/sys/arm/broadcom/bcm2835/bcm2835_systimer.c projects/counters/sys/arm/broadcom/bcm2835/files.bcm2835 projects/counters/sys/arm/conf/RPI-B projects/counters/sys/arm/include/cpufunc.h projects/counters/sys/arm/mv/mvreg.h projects/counters/sys/arm/ti/am335x/am335x_dmtimer.c projects/counters/sys/arm/ti/ti_machdep.c projects/counters/sys/boot/uboot/lib/elf_freebsd.c projects/counters/sys/cam/ata/ata_xpt.c projects/counters/sys/cddl/compat/opensolaris/kern/opensolaris_cmn_err.c projects/counters/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/arc.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dbuf.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_pool.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/space_map.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dbuf.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/space_map.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_znode.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio_impl.h projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c projects/counters/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c projects/counters/sys/conf/Makefile.arm projects/counters/sys/conf/NOTES projects/counters/sys/conf/options.mips projects/counters/sys/contrib/octeon-sdk/cvmx-dma-engine.c projects/counters/sys/contrib/octeon-sdk/cvmx-pow.h projects/counters/sys/contrib/octeon-sdk/cvmx-spi.c projects/counters/sys/contrib/octeon-sdk/cvmx-utils.h projects/counters/sys/contrib/octeon-sdk/cvmx-warn.c projects/counters/sys/contrib/octeon-sdk/cvmx.h projects/counters/sys/contrib/octeon-sdk/octeon-model.c projects/counters/sys/contrib/octeon-sdk/octeon-model.h projects/counters/sys/dev/ath/ath_hal/ah.h projects/counters/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c projects/counters/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c projects/counters/sys/dev/ath/if_ath.c projects/counters/sys/dev/ath/if_ath_alq.h projects/counters/sys/dev/ath/if_ath_tdma.c projects/counters/sys/dev/ath/if_ath_tx.c projects/counters/sys/dev/bce/if_bce.c projects/counters/sys/dev/bxe/if_bxe.c projects/counters/sys/dev/e1000/if_igb.c projects/counters/sys/dev/gpio/gpiobus.c projects/counters/sys/dev/iwn/if_iwn.c projects/counters/sys/dev/sound/pci/hda/hdaa.c projects/counters/sys/dev/sound/pcm/buffer.c projects/counters/sys/dev/sound/pcm/sound.c projects/counters/sys/dev/usb/quirk/usb_quirk.c projects/counters/sys/dev/usb/quirk/usb_quirk.h projects/counters/sys/fs/ext2fs/ext2_alloc.c projects/counters/sys/fs/smbfs/smbfs_node.c projects/counters/sys/fs/smbfs/smbfs_vnops.c projects/counters/sys/kern/capabilities.conf projects/counters/sys/kern/init_sysent.c projects/counters/sys/kern/kern_mbuf.c projects/counters/sys/kern/kern_proc.c projects/counters/sys/kern/kern_shutdown.c projects/counters/sys/kern/kern_sig.c projects/counters/sys/kern/subr_param.c projects/counters/sys/kern/uipc_socket.c projects/counters/sys/kern/vfs_lookup.c projects/counters/sys/kern/vfs_subr.c projects/counters/sys/kern/vfs_vnops.c projects/counters/sys/mips/cavium/octeon_machdep.c projects/counters/sys/mips/conf/OCTEON1 projects/counters/sys/net/if_ethersubr.c projects/counters/sys/net/if_tap.c projects/counters/sys/net/if_vlan.c projects/counters/sys/net80211/ieee80211_freebsd.h projects/counters/sys/netinet/ip_output.c projects/counters/sys/netinet/sctp_pcb.c projects/counters/sys/netinet/sctp_peeloff.c projects/counters/sys/netinet/sctp_peeloff.h projects/counters/sys/netinet/sctp_usrreq.c projects/counters/sys/netinet/tcp_subr.c projects/counters/sys/netinet/tcp_timer.c projects/counters/sys/netinet/tcp_timer.h projects/counters/sys/sys/eventhandler.h projects/counters/sys/sys/mbuf.h projects/counters/sys/sys/namei.h projects/counters/sys/sys/param.h projects/counters/sys/sys/vnode.h projects/counters/sys/vm/vm_map.c projects/counters/usr.bin/cut/cut.c projects/counters/usr.bin/passwd/Makefile projects/counters/usr.sbin/bsdconfig/networking/include/messages.subr projects/counters/usr.sbin/bsdconfig/networking/share/ipaddr.subr projects/counters/usr.sbin/bsdconfig/share/dialog.subr projects/counters/usr.sbin/bsdconfig/share/mustberoot.subr projects/counters/usr.sbin/bsdconfig/startup/share/rcedit.subr projects/counters/usr.sbin/bsdconfig/timezone/share/zones.subr projects/counters/usr.sbin/ifmcstat/ifmcstat.c projects/counters/usr.sbin/nfsd/nfsd.c projects/counters/usr.sbin/pkg_install/add/main.c projects/counters/usr.sbin/pkg_install/add/pkg_add.1 projects/counters/usr.sbin/pkg_install/create/pkg_create.1 projects/counters/usr.sbin/pkg_install/delete/pkg_delete.1 projects/counters/usr.sbin/pkg_install/info/pkg_info.1 projects/counters/usr.sbin/pkg_install/lib/lib.h projects/counters/usr.sbin/pkg_install/lib/pkgng.c projects/counters/usr.sbin/pkg_install/updating/pkg_updating.1 projects/counters/usr.sbin/pkg_install/version/pkg_version.1 Directory Properties: projects/counters/ (props changed) projects/counters/cddl/contrib/opensolaris/ (props changed) projects/counters/cddl/contrib/opensolaris/cmd/zfs/ (props changed) projects/counters/contrib/libc++/ (props changed) projects/counters/contrib/sendmail/ (props changed) projects/counters/lib/libc/ (props changed) projects/counters/share/man/man4/ (props changed) projects/counters/sys/ (props changed) projects/counters/sys/boot/ (props changed) projects/counters/sys/cddl/contrib/opensolaris/ (props changed) projects/counters/sys/conf/ (props changed) projects/counters/sys/contrib/octeon-sdk/ (props changed) Modified: projects/counters/UPDATING ============================================================================== --- projects/counters/UPDATING Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/UPDATING Wed Nov 28 17:34:17 2012 (r243653) @@ -24,6 +24,14 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 disable the most expensive debugging functionality run "ln -s 'abort:false,junk:false' /etc/malloc.conf".) +20121117: + The sin6_scope_id member variable in struct sockaddr_in6 is now + filled by the kernel before passing the structure to the userland via + sysctl or routing socket. This means the KAME-specific embedded scope + id in sin6_addr.s6_addr[2] is always cleared in userland application. + This behavior can be controlled by net.inet6.ip6.deembed_scopeid. + __FreeBSD_version is bumped to 1000025. + 20121105: On i386 and amd64 systems WITH_CLANG_IS_CC is now the default. This means that the world and kernel will be compiled with clang Modified: projects/counters/cddl/contrib/opensolaris/cmd/zfs/zfs.8 ============================================================================== --- projects/counters/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/cddl/contrib/opensolaris/cmd/zfs/zfs.8 Wed Nov 28 17:34:17 2012 (r243653) @@ -27,7 +27,7 @@ .\" .\" $FreeBSD$ .\" -.Dd September 5, 2012 +.Dd November 26, 2012 .Dt ZFS 8 .Os .Sh NAME @@ -760,7 +760,7 @@ If no inheritable .Tn ACE Ns s exist that affect the mode, then the mode is set in accordance to the requested mode from the application. -.It Sy aclmode Ns = Ns Cm discard | groupmask | passthrough +.It Sy aclmode Ns = Ns Cm discard | groupmask | passthrough | restricted Controls how an .Tn ACL is modified during @@ -790,6 +790,32 @@ indicates that no changes are made to th other than creating or updating the necessary .Tn ACL entries to represent the new mode of the file or directory. +An +.Sy aclmode +property of +.Cm restricted +will cause the +.Xr chmod 2 +operation to return an error when used on any file or directory which has +a non-trivial +.Tn ACL +whose entries can not be represented by a mode. +.Xr chmod 2 +is required to change the set user ID, set group ID, or sticky bits on a file +or directory, as they do not have equivalent +.Tn ACL +entries. +In order to use +.Xr chmod 2 +on a file or directory with a non-trivial +.Tn ACL +when +.Sy aclmode +is set to +.Cm restricted , +you must first remove all +.Tn ACL +entries which do not represent the current mode. .It Sy atime Ns = Ns Cm on | off Controls whether the access time for files is updated when they are read. Turning this property off avoids producing write traffic when reading files and @@ -830,7 +856,7 @@ command or unmounted by the command. .Pp This property is not inherited. -.It Sy checksum Ns = Ns Cm on | off | fletcher2 | fletcher4 +.It Sy checksum Ns = Ns Cm on | off | fletcher2 | fletcher4 | sha256 Controls the checksum used to verify data integrity. The default value is .Cm on , which automatically selects an appropriate algorithm (currently, Modified: projects/counters/cddl/contrib/opensolaris/cmd/zpool/zpool.8 ============================================================================== --- projects/counters/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/cddl/contrib/opensolaris/cmd/zpool/zpool.8 Wed Nov 28 17:34:17 2012 (r243653) @@ -25,7 +25,7 @@ .\" .\" $FreeBSD$ .\" -.Dd November 28, 2011 +.Dd November 15, 2012 .Dt ZPOOL 8 .Os .Sh NAME Modified: projects/counters/cddl/contrib/opensolaris/cmd/ztest/ztest.c ============================================================================== --- projects/counters/cddl/contrib/opensolaris/cmd/ztest/ztest.c Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/cddl/contrib/opensolaris/cmd/ztest/ztest.c Wed Nov 28 17:34:17 2012 (r243653) @@ -204,6 +204,7 @@ enum ztest_io_type { ZTEST_IO_WRITE_ZEROES, ZTEST_IO_TRUNCATE, ZTEST_IO_SETATTR, + ZTEST_IO_REWRITE, ZTEST_IO_TYPES }; @@ -330,6 +331,7 @@ ztest_func_t ztest_vdev_add_remove; ztest_func_t ztest_vdev_aux_add_remove; ztest_func_t ztest_split_pool; ztest_func_t ztest_reguid; +ztest_func_t ztest_spa_upgrade; uint64_t zopt_always = 0ULL * NANOSEC; /* all the time */ uint64_t zopt_incessant = 1ULL * NANOSEC / 10; /* every 1/10 second */ @@ -363,6 +365,7 @@ ztest_info_t ztest_info[] = { { ztest_reguid, 1, &zopt_sometimes }, { ztest_spa_rename, 1, &zopt_rarely }, { ztest_scrub, 1, &zopt_rarely }, + { ztest_spa_upgrade, 1, &zopt_rarely }, { ztest_dsl_dataset_promote_busy, 1, &zopt_rarely }, { ztest_vdev_attach_detach, 1, &zopt_rarely }, { ztest_vdev_LUN_growth, 1, &zopt_rarely }, @@ -797,7 +800,7 @@ ztest_get_ashift(void) } static nvlist_t * -make_vdev_file(char *path, char *aux, size_t size, uint64_t ashift) +make_vdev_file(char *path, char *aux, char *pool, size_t size, uint64_t ashift) { char pathbuf[MAXPATHLEN]; uint64_t vdev; @@ -813,12 +816,13 @@ make_vdev_file(char *path, char *aux, si vdev = ztest_shared->zs_vdev_aux; (void) snprintf(path, sizeof (pathbuf), ztest_aux_template, ztest_opts.zo_dir, - ztest_opts.zo_pool, aux, vdev); + pool == NULL ? ztest_opts.zo_pool : pool, + aux, vdev); } else { vdev = ztest_shared->zs_vdev_next_leaf++; (void) snprintf(path, sizeof (pathbuf), ztest_dev_template, ztest_opts.zo_dir, - ztest_opts.zo_pool, vdev); + pool == NULL ? ztest_opts.zo_pool : pool, vdev); } } @@ -840,17 +844,18 @@ make_vdev_file(char *path, char *aux, si } static nvlist_t * -make_vdev_raidz(char *path, char *aux, size_t size, uint64_t ashift, int r) +make_vdev_raidz(char *path, char *aux, char *pool, size_t size, + uint64_t ashift, int r) { nvlist_t *raidz, **child; int c; if (r < 2) - return (make_vdev_file(path, aux, size, ashift)); + return (make_vdev_file(path, aux, pool, size, ashift)); child = umem_alloc(r * sizeof (nvlist_t *), UMEM_NOFAIL); for (c = 0; c < r; c++) - child[c] = make_vdev_file(path, aux, size, ashift); + child[c] = make_vdev_file(path, aux, pool, size, ashift); VERIFY(nvlist_alloc(&raidz, NV_UNIQUE_NAME, 0) == 0); VERIFY(nvlist_add_string(raidz, ZPOOL_CONFIG_TYPE, @@ -869,19 +874,19 @@ make_vdev_raidz(char *path, char *aux, s } static nvlist_t * -make_vdev_mirror(char *path, char *aux, size_t size, uint64_t ashift, - int r, int m) +make_vdev_mirror(char *path, char *aux, char *pool, size_t size, + uint64_t ashift, int r, int m) { nvlist_t *mirror, **child; int c; if (m < 1) - return (make_vdev_raidz(path, aux, size, ashift, r)); + return (make_vdev_raidz(path, aux, pool, size, ashift, r)); child = umem_alloc(m * sizeof (nvlist_t *), UMEM_NOFAIL); for (c = 0; c < m; c++) - child[c] = make_vdev_raidz(path, aux, size, ashift, r); + child[c] = make_vdev_raidz(path, aux, pool, size, ashift, r); VERIFY(nvlist_alloc(&mirror, NV_UNIQUE_NAME, 0) == 0); VERIFY(nvlist_add_string(mirror, ZPOOL_CONFIG_TYPE, @@ -898,8 +903,8 @@ make_vdev_mirror(char *path, char *aux, } static nvlist_t * -make_vdev_root(char *path, char *aux, size_t size, uint64_t ashift, - int log, int r, int m, int t) +make_vdev_root(char *path, char *aux, char *pool, size_t size, uint64_t ashift, + int log, int r, int m, int t) { nvlist_t *root, **child; int c; @@ -909,7 +914,8 @@ make_vdev_root(char *path, char *aux, si child = umem_alloc(t * sizeof (nvlist_t *), UMEM_NOFAIL); for (c = 0; c < t; c++) { - child[c] = make_vdev_mirror(path, aux, size, ashift, r, m); + child[c] = make_vdev_mirror(path, aux, pool, size, ashift, + r, m); VERIFY(nvlist_add_uint64(child[c], ZPOOL_CONFIG_IS_LOG, log) == 0); } @@ -927,6 +933,27 @@ make_vdev_root(char *path, char *aux, si return (root); } +/* + * Find a random spa version. Returns back a random spa version in the + * range [initial_version, SPA_VERSION_FEATURES]. + */ +static uint64_t +ztest_random_spa_version(uint64_t initial_version) +{ + uint64_t version = initial_version; + + if (version <= SPA_VERSION_BEFORE_FEATURES) { + version = version + + ztest_random(SPA_VERSION_BEFORE_FEATURES - version + 1); + } + + if (version > SPA_VERSION_BEFORE_FEATURES) + version = SPA_VERSION_FEATURES; + + ASSERT(SPA_VERSION_IS_SUPPORTED(version)); + return (version); +} + static int ztest_random_blocksize(void) { @@ -1841,6 +1868,12 @@ ztest_get_data(void *arg, lr_write_t *lr DMU_READ_NO_PREFETCH); if (error == 0) { + blkptr_t *obp = dmu_buf_get_blkptr(db); + if (obp) { + ASSERT(BP_IS_HOLE(bp)); + *bp = *obp; + } + zgd->zgd_db = db; zgd->zgd_bp = bp; @@ -1986,6 +2019,9 @@ ztest_remove(ztest_ds_t *zd, ztest_od_t continue; } + /* + * No object was found. + */ if (od->od_object == 0) continue; @@ -2101,6 +2137,7 @@ ztest_prealloc(ztest_ds_t *zd, uint64_t static void ztest_io(ztest_ds_t *zd, uint64_t object, uint64_t offset) { + int err; ztest_block_tag_t wbt; dmu_object_info_t doi; enum ztest_io_type io_type; @@ -2153,6 +2190,25 @@ ztest_io(ztest_ds_t *zd, uint64_t object case ZTEST_IO_SETATTR: (void) ztest_setattr(zd, object); break; + + case ZTEST_IO_REWRITE: + (void) rw_rdlock(&ztest_name_lock); + err = ztest_dsl_prop_set_uint64(zd->zd_name, + ZFS_PROP_CHECKSUM, spa_dedup_checksum(ztest_spa), + B_FALSE); + VERIFY(err == 0 || err == ENOSPC); + err = ztest_dsl_prop_set_uint64(zd->zd_name, + ZFS_PROP_COMPRESSION, + ztest_random_dsl_prop(ZFS_PROP_COMPRESSION), + B_FALSE); + VERIFY(err == 0 || err == ENOSPC); + (void) rw_unlock(&ztest_name_lock); + + VERIFY0(dmu_read(zd->zd_os, object, offset, blocksize, data, + DMU_READ_NO_PREFETCH)); + + (void) ztest_write(zd, object, offset, blocksize, data); + break; } (void) rw_unlock(&zd->zd_zilog_lock); @@ -2240,7 +2296,12 @@ ztest_zil_remount(ztest_ds_t *zd, uint64 { objset_t *os = zd->zd_os; - VERIFY(mutex_lock(&zd->zd_dirobj_lock) == 0); + /* + * We grab the zd_dirobj_lock to ensure that no other thread is + * updating the zil (i.e. adding in-memory log records) and the + * zd_zilog_lock to block any I/O. + */ + VERIFY0(mutex_lock(&zd->zd_dirobj_lock)); (void) rw_wrlock(&zd->zd_zilog_lock); /* zfsvfs_teardown() */ @@ -2269,7 +2330,7 @@ ztest_spa_create_destroy(ztest_ds_t *zd, /* * Attempt to create using a bad file. */ - nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 0, 1); + nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1); VERIFY3U(ENOENT, ==, spa_create("ztest_bad_file", nvroot, NULL, NULL, NULL)); nvlist_free(nvroot); @@ -2277,7 +2338,7 @@ ztest_spa_create_destroy(ztest_ds_t *zd, /* * Attempt to create using a bad mirror. */ - nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 2, 1); + nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 2, 1); VERIFY3U(ENOENT, ==, spa_create("ztest_bad_mirror", nvroot, NULL, NULL, NULL)); nvlist_free(nvroot); @@ -2287,7 +2348,7 @@ ztest_spa_create_destroy(ztest_ds_t *zd, * what's in the nvroot; we should fail with EEXIST. */ (void) rw_rdlock(&ztest_name_lock); - nvroot = make_vdev_root("/dev/bogus", NULL, 0, 0, 0, 0, 0, 1); + nvroot = make_vdev_root("/dev/bogus", NULL, NULL, 0, 0, 0, 0, 0, 1); VERIFY3U(EEXIST, ==, spa_create(zo->zo_pool, nvroot, NULL, NULL, NULL)); nvlist_free(nvroot); VERIFY3U(0, ==, spa_open(zo->zo_pool, &spa, FTAG)); @@ -2297,6 +2358,78 @@ ztest_spa_create_destroy(ztest_ds_t *zd, (void) rw_unlock(&ztest_name_lock); } +/* ARGSUSED */ +void +ztest_spa_upgrade(ztest_ds_t *zd, uint64_t id) +{ + spa_t *spa; + uint64_t initial_version = SPA_VERSION_INITIAL; + uint64_t version, newversion; + nvlist_t *nvroot, *props; + char *name; + + VERIFY0(mutex_lock(&ztest_vdev_lock)); + name = kmem_asprintf("%s_upgrade", ztest_opts.zo_pool); + + /* + * Clean up from previous runs. + */ + (void) spa_destroy(name); + + nvroot = make_vdev_root(NULL, NULL, name, ztest_opts.zo_vdev_size, 0, + 0, ztest_opts.zo_raidz, ztest_opts.zo_mirrors, 1); + + /* + * If we're configuring a RAIDZ device then make sure that the + * the initial version is capable of supporting that feature. + */ + switch (ztest_opts.zo_raidz_parity) { + case 0: + case 1: + initial_version = SPA_VERSION_INITIAL; + break; + case 2: + initial_version = SPA_VERSION_RAIDZ2; + break; + case 3: + initial_version = SPA_VERSION_RAIDZ3; + break; + } + + /* + * Create a pool with a spa version that can be upgraded. Pick + * a value between initial_version and SPA_VERSION_BEFORE_FEATURES. + */ + do { + version = ztest_random_spa_version(initial_version); + } while (version > SPA_VERSION_BEFORE_FEATURES); + + props = fnvlist_alloc(); + fnvlist_add_uint64(props, + zpool_prop_to_name(ZPOOL_PROP_VERSION), version); + VERIFY0(spa_create(name, nvroot, props, NULL, NULL)); + fnvlist_free(nvroot); + fnvlist_free(props); + + VERIFY0(spa_open(name, &spa, FTAG)); + VERIFY3U(spa_version(spa), ==, version); + newversion = ztest_random_spa_version(version + 1); + + if (ztest_opts.zo_verbose >= 4) { + (void) printf("upgrading spa version from %llu to %llu\n", + (u_longlong_t)version, (u_longlong_t)newversion); + } + + spa_upgrade(spa, newversion); + VERIFY3U(spa_version(spa), >, version); + VERIFY3U(spa_version(spa), ==, fnvlist_lookup_uint64(spa->spa_config, + zpool_prop_to_name(ZPOOL_PROP_VERSION))); + spa_close(spa, FTAG); + + strfree(name); + VERIFY0(mutex_unlock(&ztest_vdev_lock)); +} + static vdev_t * vdev_lookup_by_path(vdev_t *vd, const char *path) { @@ -2386,7 +2519,7 @@ ztest_vdev_add_remove(ztest_ds_t *zd, ui /* * Make 1/4 of the devices be log devices. */ - nvroot = make_vdev_root(NULL, NULL, + nvroot = make_vdev_root(NULL, NULL, NULL, ztest_opts.zo_vdev_size, 0, ztest_random(4) == 0, ztest_opts.zo_raidz, zs->zs_mirrors, 1); @@ -2463,7 +2596,7 @@ ztest_vdev_aux_add_remove(ztest_ds_t *zd /* * Add a new device. */ - nvlist_t *nvroot = make_vdev_root(NULL, aux, + nvlist_t *nvroot = make_vdev_root(NULL, aux, NULL, (ztest_opts.zo_vdev_size * 5) / 4, 0, 0, 0, 0, 1); error = spa_vdev_add(spa, nvroot); if (error != 0) @@ -2732,7 +2865,7 @@ ztest_vdev_attach_detach(ztest_ds_t *zd, /* * Build the nvlist describing newpath. */ - root = make_vdev_root(newpath, NULL, newvd == NULL ? newsize : 0, + root = make_vdev_root(newpath, NULL, NULL, newvd == NULL ? newsize : 0, ashift, 0, 0, 0, 1); error = spa_vdev_attach(spa, oldguid, root, replacing); @@ -4827,8 +4960,8 @@ ztest_ddt_repair(ztest_ds_t *zd, uint64_ */ for (int i = 0; i < copies; i++) { uint64_t offset = i * blocksize; - VERIFY(dmu_buf_hold(os, object, offset, FTAG, &db, - DMU_READ_NO_PREFETCH) == 0); + VERIFY0(dmu_buf_hold(os, object, offset, FTAG, &db, + DMU_READ_NO_PREFETCH)); ASSERT(db->db_offset == offset); ASSERT(db->db_size == blocksize); ASSERT(ztest_pattern_match(db->db_data, db->db_size, pattern) || @@ -4844,8 +4977,8 @@ ztest_ddt_repair(ztest_ds_t *zd, uint64_ /* * Find out what block we got. */ - VERIFY(dmu_buf_hold(os, object, 0, FTAG, &db, - DMU_READ_NO_PREFETCH) == 0); + VERIFY0(dmu_buf_hold(os, object, 0, FTAG, &db, + DMU_READ_NO_PREFETCH)); blk = *((dmu_buf_impl_t *)db)->db_blkptr; dmu_buf_rele(db, FTAG); @@ -4900,7 +5033,7 @@ ztest_reguid(ztest_ds_t *zd, uint64_t id if (error != 0) return; - if (ztest_opts.zo_verbose >= 3) { + if (ztest_opts.zo_verbose >= 4) { (void) printf("Changed guid old %llu -> %llu\n", (u_longlong_t)orig, (u_longlong_t)spa_guid(spa)); } @@ -5523,6 +5656,8 @@ ztest_freeze(void) kernel_init(FREAD | FWRITE); VERIFY3U(0, ==, spa_open(ztest_opts.zo_pool, &spa, FTAG)); VERIFY3U(0, ==, ztest_dataset_open(0)); + spa->spa_debug = B_TRUE; + ztest_spa = spa; /* * Force the first log block to be transactionally allocated. @@ -5647,7 +5782,7 @@ ztest_init(ztest_shared_t *zs) ztest_shared->zs_vdev_next_leaf = 0; zs->zs_splits = 0; zs->zs_mirrors = ztest_opts.zo_mirrors; - nvroot = make_vdev_root(NULL, NULL, ztest_opts.zo_vdev_size, 0, + nvroot = make_vdev_root(NULL, NULL, NULL, ztest_opts.zo_vdev_size, 0, 0, ztest_opts.zo_raidz, zs->zs_mirrors, 1); props = make_random_props(); for (int i = 0; i < SPA_FEATURES; i++) { Modified: projects/counters/contrib/libc++/include/__config ============================================================================== --- projects/counters/contrib/libc++/include/__config Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/contrib/libc++/include/__config Wed Nov 28 17:34:17 2012 (r243653) @@ -51,6 +51,9 @@ # define _LIBCPP_LITTLE_ENDIAN 0 # define _LIBCPP_BIG_ENDIAN 1 # endif // _BYTE_ORDER == _LITTLE_ENDIAN +# ifndef __LONG_LONG_SUPPORTED +# define _LIBCPP_HAS_NO_LONG_LONG +# endif // __LONG_LONG_SUPPORTED #endif // __FreeBSD__ #ifdef _WIN32 Modified: projects/counters/contrib/libc++/include/cstdlib ============================================================================== --- projects/counters/contrib/libc++/include/cstdlib Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/contrib/libc++/include/cstdlib Wed Nov 28 17:34:17 2012 (r243653) @@ -97,18 +97,26 @@ _LIBCPP_BEGIN_NAMESPACE_STD using ::size_t; using ::div_t; using ::ldiv_t; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::lldiv_t; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::atof; using ::atoi; using ::atol; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::atoll; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::strtod; using ::strtof; using ::strtold; using ::strtol; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::strtoll; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::strtoul; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::strtoull; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::rand; using ::srand; using ::calloc; @@ -125,10 +133,14 @@ using ::bsearch; using ::qsort; using ::abs; using ::labs; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::llabs; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::div; using ::ldiv; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::lldiv; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::mblen; using ::mbtowc; using ::wctomb; @@ -145,10 +157,14 @@ using ::aligned_alloc; // MSVC already has the correct prototype in #ifdef __cplusplus #if !defined(_MSC_VER) && !defined(__sun__) inline _LIBCPP_INLINE_VISIBILITY long abs( long __x) _NOEXCEPT {return labs(__x);} +#ifndef _LIBCPP_HAS_NO_LONG_LONG inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT {return llabs(__x);} +#endif // _LIBCPP_HAS_NO_LONG_LONG inline _LIBCPP_INLINE_VISIBILITY ldiv_t div( long __x, long __y) _NOEXCEPT {return ldiv(__x, __y);} +#ifndef _LIBCPP_HAS_NO_LONG_LONG inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, long long __y) _NOEXCEPT {return lldiv(__x, __y);} +#endif // _LIBCPP_HAS_NO_LONG_LONG #endif // _MSC_VER _LIBCPP_END_NAMESPACE_STD Modified: projects/counters/contrib/libc++/include/cwchar ============================================================================== --- projects/counters/contrib/libc++/include/cwchar Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/contrib/libc++/include/cwchar Wed Nov 28 17:34:17 2012 (r243653) @@ -151,9 +151,13 @@ using ::wcstof; using ::wcstold; #endif // _MSC_VER using ::wcstol; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::wcstoll; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::wcstoul; +#ifndef _LIBCPP_HAS_NO_LONG_LONG using ::wcstoull; +#endif // _LIBCPP_HAS_NO_LONG_LONG using ::wcscpy; using ::wcsncpy; using ::wcscat; Modified: projects/counters/contrib/sendmail/src/sasl.c ============================================================================== --- projects/counters/contrib/sendmail/src/sasl.c Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/contrib/sendmail/src/sasl.c Wed Nov 28 17:34:17 2012 (r243653) @@ -24,9 +24,15 @@ SM_RCSID("@(#)$Id: sasl.c,v 8.22 2006/08 ** using unsigned long: for portability, it should be size_t. */ -void *sm_sasl_malloc __P((unsigned long)); -static void *sm_sasl_calloc __P((unsigned long, unsigned long)); -static void *sm_sasl_realloc __P((void *, unsigned long)); +#if defined(SASL_VERSION_FULL) && SASL_VERSION_FULL >= 0x02011a +#define SM_SASL_SIZE_T size_t +#else /* defined(SASL_VERSION_FULL) && SASL_VERSION_FULL >= 0x02011a */ +#define SM_SASL_SIZE_T unsigned long +#endif /* defined(SASL_VERSION_FULL) && SASL_VERSION_FULL >= 0x02011a */ + +void *sm_sasl_malloc __P((SM_SASL_SIZE_T)); +static void *sm_sasl_calloc __P((SM_SASL_SIZE_T, SM_SASL_SIZE_T)); +static void *sm_sasl_realloc __P((void *, SM_SASL_SIZE_T)); void sm_sasl_free __P((void *)); /* @@ -50,7 +56,7 @@ void sm_sasl_free __P((void *)); void * sm_sasl_malloc(size) - unsigned long size; + SM_SASL_SIZE_T size; { return sm_malloc((size_t) size); } @@ -71,8 +77,8 @@ sm_sasl_malloc(size) static void * sm_sasl_calloc(nelem, elemsize) - unsigned long nelem; - unsigned long elemsize; + SM_SASL_SIZE_T nelem; + SM_SASL_SIZE_T elemsize; { size_t size; void *p; @@ -99,7 +105,7 @@ sm_sasl_calloc(nelem, elemsize) static void * sm_sasl_realloc(o, size) void *o; - unsigned long size; + SM_SASL_SIZE_T size; { return sm_realloc(o, (size_t) size); } Modified: projects/counters/etc/newsyslog.conf ============================================================================== --- projects/counters/etc/newsyslog.conf Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/etc/newsyslog.conf Wed Nov 28 17:34:17 2012 (r243653) @@ -35,5 +35,5 @@ /var/log/security 600 10 100 * JC /var/log/sendmail.st 640 10 * 168 B /var/log/utx.log 644 3 * @01T05 B -/var/log/weekly.log 640 5 1 $W6D0 JN +/var/log/weekly.log 640 5 * $W6D0 JN /var/log/xferlog 600 7 100 * JC Modified: projects/counters/lib/libc/sys/getpeername.2 ============================================================================== --- projects/counters/lib/libc/sys/getpeername.2 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/lib/libc/sys/getpeername.2 Wed Nov 28 17:34:17 2012 (r243653) @@ -67,6 +67,10 @@ The argument is not a valid descriptor. .It Bq Er ECONNRESET The connection has been reset by the peer. +.It Bq Er EINVAL +The value of the +.Fa namelen +argument is not valid. .It Bq Er ENOTSOCK The argument .Fa s Modified: projects/counters/lib/libc/sys/getsockname.2 ============================================================================== --- projects/counters/lib/libc/sys/getsockname.2 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/lib/libc/sys/getsockname.2 Wed Nov 28 17:34:17 2012 (r243653) @@ -66,6 +66,10 @@ The argument is not a valid descriptor. .It Bq Er ECONNRESET The connection has been reset by the peer. +.It Bq Er EINVAL +The value of the +.Fa namelen +argument is not valid. .It Bq Er ENOTSOCK The argument .Fa s Modified: projects/counters/share/man/man4/ktr.4 ============================================================================== --- projects/counters/share/man/man4/ktr.4 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/share/man/man4/ktr.4 Wed Nov 28 17:34:17 2012 (r243653) @@ -53,7 +53,7 @@ The .Dv KTR_ENTRIES option sets the size of the buffer of events. The size of the buffer in the currently running kernel can be found via the -read-only sysctl +sysctl .Va debug.ktr.entries . By default the buffer contains 1024 entries. .Ss Event Masking Modified: projects/counters/share/man/man4/usb_quirk.4 ============================================================================== --- projects/counters/share/man/man4/usb_quirk.4 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/share/man/man4/usb_quirk.4 Wed Nov 28 17:34:17 2012 (r243653) @@ -76,8 +76,6 @@ mouse sends an unknown leading byte mouse has Z-axis reversed .It UQ_NO_STRINGS string descriptors are broken -.It UQ_OPEN_CLEARSTALL -device needs clear endpoint stall .It UQ_POWER_CLAIM hub lies about power status .It UQ_SPUR_BUT_UP Modified: projects/counters/share/misc/committers-ports.dot ============================================================================== --- projects/counters/share/misc/committers-ports.dot Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/share/misc/committers-ports.dot Wed Nov 28 17:34:17 2012 (r243653) @@ -58,6 +58,7 @@ avilla [label="Alberto Villa\navilla@Fre avl [label="Alexander Logvinov\navl@FreeBSD.org\n2009/05/27"] az [label="Andrej Zverev\naz@FreeBSD.org\n2005/10/03"] bapt [label="Baptiste Daroussin\nbapt@FreeBSD.org\n2010/07/27"] +bar [label="Barbara Guida\nbar@FreeBSD.org\n2012/11/25"] bdrewery [label="Bryan Drewery\nbdrewery@FreeBSD.org\n2012/07/31"] beat [label="Beat Gaetzi\nbeat@FreeBSD.org\n2009/01/28"] beech [label="Beech Rintoul\nbeech@FreeBSD.org\n2007/05/30"] @@ -297,6 +298,7 @@ fjoe -> flo fjoe -> krion fjoe -> osa +flo -> bar flo -> jase flz -> garga @@ -437,6 +439,7 @@ philip -> koitsu rafan -> chinsan +rene -> bar rene -> crees rene -> jgh rene -> olivierd Modified: projects/counters/sys/arm/arm/cpufunc.c ============================================================================== --- projects/counters/sys/arm/arm/cpufunc.c Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/sys/arm/arm/cpufunc.c Wed Nov 28 17:34:17 2012 (r243653) @@ -74,7 +74,13 @@ __FBSDID("$FreeBSD$"); #include #endif -#if defined(CPU_XSCALE_81342) +/* + * Some definitions in i81342reg.h clash with i80321reg.h. + * This only happens for the LINT kernel. As it happens, + * we don't need anything from i81342reg.h that we already + * got from somewhere else during a LINT compile. + */ +#if defined(CPU_XSCALE_81342) && !defined(COMPILING_LINT) #include #endif Modified: projects/counters/sys/arm/arm/locore.S ============================================================================== --- projects/counters/sys/arm/arm/locore.S Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/sys/arm/arm/locore.S Wed Nov 28 17:34:17 2012 (r243653) @@ -181,7 +181,7 @@ Lunmapped: #if defined(CPU_ARM11) || defined(CPU_CORTEXA) || defined(CPU_MV_PJ4B) orr r0, r0, #CPU_CONTROL_V6_EXTPAGE #endif - orr r0, r0, #(CPU_CONTROL_MMU_ENABLE | CPU_CONTROL_DC_ENABLE) + orr r0, r0, #(CPU_CONTROL_MMU_ENABLE) mcr p15, 0, r0, c1, c0, 0 nop nop Modified: projects/counters/sys/arm/arm/machdep.c ============================================================================== --- projects/counters/sys/arm/arm/machdep.c Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/sys/arm/arm/machdep.c Wed Nov 28 17:34:17 2012 (r243653) @@ -1038,18 +1038,6 @@ print_kenv(void) } static void -print_kernel_section_addr(void) -{ - - debugf("kernel image addresses:\n"); - debugf(" kernbase = 0x%08x\n", (uint32_t)kernbase); - debugf(" _etext (sdata) = 0x%08x\n", (uint32_t)_etext); - debugf(" _edata = 0x%08x\n", (uint32_t)_edata); - debugf(" __bss_start = 0x%08x\n", (uint32_t)__bss_start); - debugf(" _end = 0x%08x\n", (uint32_t)_end); -} - -static void physmap_init(struct mem_region *availmem_regions, int availmem_regions_sz) { int i, j, cnt; @@ -1344,7 +1332,6 @@ initarm(struct arm_boot_params *abp) debugf(" arg1 kmdp = 0x%08x\n", (uint32_t)kmdp); debugf(" boothowto = 0x%08x\n", boothowto); debugf(" dtbp = 0x%08x\n", (uint32_t)dtbp); - print_kernel_section_addr(); print_kenv(); env = getenv("kernelname"); Modified: projects/counters/sys/arm/arm/mpcore_timer.c ============================================================================== --- projects/counters/sys/arm/arm/mpcore_timer.c Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/sys/arm/arm/mpcore_timer.c Wed Nov 28 17:34:17 2012 (r243653) @@ -128,7 +128,7 @@ static struct arm_tmr_softc *arm_tmr_sc static timecounter_get_t arm_tmr_get_timecount; static struct timecounter arm_tmr_timecount = { - .tc_name = "ARM MPCore Timecouter", + .tc_name = "ARM MPCore Timecounter", .tc_get_timecount = arm_tmr_get_timecount, .tc_poll_pps = NULL, .tc_counter_mask = ~0u, Modified: projects/counters/sys/arm/at91/files.at91 ============================================================================== --- projects/counters/sys/arm/at91/files.at91 Wed Nov 28 15:48:32 2012 (r243652) +++ projects/counters/sys/arm/at91/files.at91 Wed Nov 28 17:34:17 2012 (r243653) @@ -55,4 +55,3 @@ arm/at91/board_tsc4370.c optional at91_b dev/usb/controller/at91dci.c optional at91_dci dev/usb/controller/at91dci_atmelarm.c optional at91_dci dev/usb/controller/ohci_atmelarm.c optional ohci -dev/usb/controller/ehci_atmelarm.c optional ehci Copied: projects/counters/sys/arm/broadcom/bcm2835/bcm2835_gpio.c (from r243651, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/counters/sys/arm/broadcom/bcm2835/bcm2835_gpio.c Wed Nov 28 17:34:17 2012 (r243653, copy of r243651, head/sys/arm/broadcom/bcm2835/bcm2835_gpio.c) @@ -0,0 +1,656 @@ +/*- + * Copyright (c) 2012 Oleksandr Tymoshenko + * Copyright (c) 2012 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 + +#include "gpio_if.h" + +#undef DEBUG + +#ifdef DEBUG +#define dprintf(fmt, args...) do { printf("%s(): ", __func__); \ + printf(fmt,##args); } while (0) +#else +#define dprintf(fmt, args...) +#endif + +#define BCM_GPIO_PINS 54 +#define BCM_GPIO_DEFAULT_CAPS (GPIO_PIN_INPUT | GPIO_PIN_OUTPUT | \ + GPIO_PIN_PULLUP | GPIO_PIN_PULLDOWN) + +struct bcm_gpio_softc { + device_t sc_dev; + struct mtx sc_mtx; + struct resource * sc_mem_res; + struct resource * sc_irq_res; + bus_space_tag_t sc_bst; + bus_space_handle_t sc_bsh; + void * sc_intrhand; + int sc_gpio_npins; + int sc_ro_npins; + int sc_ro_pins[BCM_GPIO_PINS]; + struct gpio_pin sc_gpio_pins[BCM_GPIO_PINS]; +}; + +enum bcm_gpio_fsel { + BCM_GPIO_INPUT, + BCM_GPIO_OUTPUT, + BCM_GPIO_ALT5, + BCM_GPIO_ALT4, + BCM_GPIO_ALT0, + BCM_GPIO_ALT1, + BCM_GPIO_ALT2, + BCM_GPIO_ALT3, +}; + +enum bcm_gpio_pud { + BCM_GPIO_NONE, + BCM_GPIO_PULLDOWN, + BCM_GPIO_PULLUP, +}; + +#define BCM_GPIO_LOCK(_sc) mtx_lock(&_sc->sc_mtx) +#define BCM_GPIO_UNLOCK(_sc) mtx_unlock(&_sc->sc_mtx) + +#define BCM_GPIO_GPFSEL(_bank) 0x00 + _bank * 4 +#define BCM_GPIO_GPSET(_bank) 0x1c + _bank * 4 +#define BCM_GPIO_GPCLR(_bank) 0x28 + _bank * 4 +#define BCM_GPIO_GPLEV(_bank) 0x34 + _bank * 4 +#define BCM_GPIO_GPPUD(_bank) 0x94 +#define BCM_GPIO_GPPUDCLK(_bank) 0x98 + _bank * 4 + +#define BCM_GPIO_WRITE(_sc, _off, _val) \ + bus_space_write_4(_sc->sc_bst, _sc->sc_bsh, _off, _val) +#define BCM_GPIO_READ(_sc, _off) \ + bus_space_read_4(_sc->sc_bst, _sc->sc_bsh, _off) + +static int +bcm_gpio_pin_is_ro(struct bcm_gpio_softc *sc, int pin) +{ + int i; + + for (i = 0; i < sc->sc_ro_npins; i++) + if (pin == sc->sc_ro_pins[i]) + return (1); + return (0); +} + +static uint32_t +bcm_gpio_get_function(struct bcm_gpio_softc *sc, uint32_t pin) +{ + uint32_t bank, data, offset; + + /* Five banks, 10 pins per bank, 3 bits per pin. */ + bank = pin / 10; + offset = (pin - bank * 10) * 3; + + BCM_GPIO_LOCK(sc); + data = (BCM_GPIO_READ(sc, BCM_GPIO_GPFSEL(bank)) >> offset) & 7; + BCM_GPIO_UNLOCK(sc); + +#ifdef DEBUG + device_printf(sc->sc_dev, "pin %d function: ", pin); + switch (data) { + case BCM_GPIO_INPUT: + printf("input\n"); + break; + case BCM_GPIO_OUTPUT: + printf("output\n"); + break; + case BCM_GPIO_ALT0: + printf("alt0\n"); + break; + case BCM_GPIO_ALT1: + printf("alt1\n"); + break; + case BCM_GPIO_ALT2: + printf("alt2\n"); + break; + case BCM_GPIO_ALT3: + printf("alt3\n"); + break; + case BCM_GPIO_ALT4: + printf("alt4\n"); + break; + case BCM_GPIO_ALT5: + printf("alt5\n"); + break; + } +#endif + + switch (data) { + case BCM_GPIO_INPUT: + return (GPIO_PIN_INPUT); + case BCM_GPIO_OUTPUT: + return (GPIO_PIN_OUTPUT); + } + + return (0); +} + +static void +bcm_gpio_set_function(struct bcm_gpio_softc *sc, uint32_t pin, uint32_t f) +{ + uint32_t bank, data, offset; + + /* Five banks, 10 pins per bank, 3 bits per pin. */ + bank = pin / 10; + offset = (pin - bank * 10) * 3; + + BCM_GPIO_LOCK(sc); + data = BCM_GPIO_READ(sc, BCM_GPIO_GPFSEL(bank)); + data &= ~(7 << offset); + data |= (f << offset); + BCM_GPIO_WRITE(sc, BCM_GPIO_GPFSEL(bank), data); + BCM_GPIO_UNLOCK(sc); +} + +static void +bcm_gpio_set_pud(struct bcm_gpio_softc *sc, uint32_t pin, uint32_t state) +{ + uint32_t bank, offset; + + bank = pin / 32; + offset = pin - 32 * bank; + + BCM_GPIO_LOCK(sc); + BCM_GPIO_WRITE(sc, BCM_GPIO_GPPUD(0), state); + DELAY(10); + BCM_GPIO_WRITE(sc, BCM_GPIO_GPPUDCLK(bank), (1 << offset)); + DELAY(10); + BCM_GPIO_WRITE(sc, BCM_GPIO_GPPUD(0), 0); + BCM_GPIO_WRITE(sc, BCM_GPIO_GPPUDCLK(bank), 0); + BCM_GPIO_UNLOCK(sc); +} + *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-projects@FreeBSD.ORG Thu Nov 29 06:26:43 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6BE65FA1; Thu, 29 Nov 2012 06:26:43 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 4EDBA8FC0C; Thu, 29 Nov 2012 06:26:43 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAT6QhJQ007960; Thu, 29 Nov 2012 06:26:43 GMT (envelope-from grehan@svn.freebsd.org) Received: (from grehan@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAT6QhOr007958; Thu, 29 Nov 2012 06:26:43 GMT (envelope-from grehan@svn.freebsd.org) Message-Id: <201211290626.qAT6QhOr007958@svn.freebsd.org> From: Peter Grehan Date: Thu, 29 Nov 2012 06:26:43 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243667 - in projects/bhyve/sys/amd64/vmm: . intel X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 06:26:43 -0000 Author: grehan Date: Thu Nov 29 06:26:42 2012 New Revision: 243667 URL: http://svnweb.freebsd.org/changeset/base/243667 Log: Add support for the 0x81 AND instruction, now generated by clang in the local APIC code. 0x81 is a read-modify-write instruction - the EPT check that only allowed read or write and not both has been relaxed to allow read and write. Reviewed by: neel Obtained from: NetApp Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/intel/vmx.c Thu Nov 29 05:46:46 2012 (r243666) +++ projects/bhyve/sys/amd64/vmm/intel/vmx.c Thu Nov 29 06:26:42 2012 (r243667) @@ -1159,15 +1159,16 @@ vmx_ept_fault(struct vm *vm, int cpu, if (ept_qual & EPT_VIOLATION_INST_FETCH) return (UNHANDLED); - /* EPT violation must be a read fault or a write fault but not both */ + /* EPT violation must be a read fault or a write fault */ read = ept_qual & EPT_VIOLATION_DATA_READ ? 1 : 0; write = ept_qual & EPT_VIOLATION_DATA_WRITE ? 1 : 0; - if ((read ^ write) == 0) + if ((read | write) == 0) return (UNHANDLED); /* - * The EPT violation must have been caused by accessing a guest-physical - * address that is a translation of a guest-linear address. + * The EPT violation must have been caused by accessing a + * guest-physical address that is a translation of a guest-linear + * address. */ if ((ept_qual & EPT_VIOLATION_GLA_VALID) == 0 || (ept_qual & EPT_VIOLATION_XLAT_VALID) == 0) { Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 05:46:46 2012 (r243666) +++ projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 06:26:42 2012 (r243667) @@ -81,6 +81,11 @@ static const struct vie_op one_byte_opco [0x23] = { .op_byte = 0x23, .op_type = VIE_OP_TYPE_AND, + }, + [0x81] = { + .op_byte = 0x81, + .op_type = VIE_OP_TYPE_AND, + .op_flags = VIE_OP_F_IMM, } }; @@ -299,6 +304,30 @@ emulate_and(void *vm, int vcpuid, uint64 val1 &= val2; error = vie_update_register(vm, vcpuid, reg, val1, size); break; + case 0x81: + printf("0x81 AND\n"); + /* + * AND reg (ModRM:reg) with immediate and store the + * result in reg + * + * 81/ and r/m32, imm32 + * REX.W + 81/ and r/m64, imm32 sign-extended to 64 + */ + if (vie->rex_w) + size = 8; + + /* get the first operand */ + error = memread(vm, vcpuid, gpa, &val1, size, arg); + if (error) + break; + + /* + * perform the operation with the pre-fetched immediate + * operand and write the result + */ + val1 &= vie->immediate; + error = memwrite(vm, vcpuid, gpa, val1, size, arg); + break; default: break; } From owner-svn-src-projects@FreeBSD.ORG Thu Nov 29 15:08:14 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 28FCA239; Thu, 29 Nov 2012 15:08:14 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 0E2788FC0C; Thu, 29 Nov 2012 15:08:14 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qATF8DVf002495; Thu, 29 Nov 2012 15:08:13 GMT (envelope-from grehan@svn.freebsd.org) Received: (from grehan@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qATF8DUb002494; Thu, 29 Nov 2012 15:08:13 GMT (envelope-from grehan@svn.freebsd.org) Message-Id: <201211291508.qATF8DUb002494@svn.freebsd.org> From: Peter Grehan Date: Thu, 29 Nov 2012 15:08:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243675 - projects/bhyve/sys/amd64/vmm X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 15:08:14 -0000 Author: grehan Date: Thu Nov 29 15:08:13 2012 New Revision: 243675 URL: http://svnweb.freebsd.org/changeset/base/243675 Log: Remove debug printf. Pointed out by: emaste Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 14:05:04 2012 (r243674) +++ projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 15:08:13 2012 (r243675) @@ -305,7 +305,6 @@ emulate_and(void *vm, int vcpuid, uint64 error = vie_update_register(vm, vcpuid, reg, val1, size); break; case 0x81: - printf("0x81 AND\n"); /* * AND reg (ModRM:reg) with immediate and store the * result in reg From owner-svn-src-projects@FreeBSD.ORG Thu Nov 29 15:25:53 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E27D4154; Thu, 29 Nov 2012 15:25:52 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from mx1.stack.nl (relay02.stack.nl [IPv6:2001:610:1108:5010::104]) by mx1.freebsd.org (Postfix) with ESMTP id 652AD8FC12; Thu, 29 Nov 2012 15:25:51 +0000 (UTC) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mx1.stack.nl (Postfix) with ESMTP id 82BB6358C58; Thu, 29 Nov 2012 16:25:50 +0100 (CET) Received: by snail.stack.nl (Postfix, from userid 1677) id 5E1B92848C; Thu, 29 Nov 2012 16:25:50 +0100 (CET) Date: Thu, 29 Nov 2012 16:25:50 +0100 From: Jilles Tjoelker To: Peter Grehan Subject: Re: svn commit: r243667 - in projects/bhyve/sys/amd64/vmm: . intel Message-ID: <20121129152550.GB29338@stack.nl> References: <201211290626.qAT6QhOr007958@svn.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201211290626.qAT6QhOr007958@svn.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 15:25:53 -0000 On Thu, Nov 29, 2012 at 06:26:43AM +0000, Peter Grehan wrote: > Author: grehan > Date: Thu Nov 29 06:26:42 2012 > New Revision: 243667 > URL: http://svnweb.freebsd.org/changeset/base/243667 > Log: > Add support for the 0x81 AND instruction, now generated > by clang in the local APIC code. > 0x81 is a read-modify-write instruction - the EPT check > that only allowed read or write and not both has been > relaxed to allow read and write. > Reviewed by: neel > Obtained from: NetApp I don't see a check on the ModRM reg field, which indicates whether the 0x81 opcode is an ADD, OR, ADC, SBB, AND, SUB, XOR or CMP. So if one of the other seven happens, it will silently execute as an AND. I don't think it is useful to implement the other seven but they should be rejected explicitly (if the ModRM reg field is not 4). A hardware AND of any kind will update %rflags and compilers may take advantage of this to branch based on the result without the need for a separate instruction to test it. I suppose this is unlikely here (the AND serving only to clear one or more bits). > Modified: > projects/bhyve/sys/amd64/vmm/intel/vmx.c > projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c > > Modified: projects/bhyve/sys/amd64/vmm/intel/vmx.c > ============================================================================== > --- projects/bhyve/sys/amd64/vmm/intel/vmx.c Thu Nov 29 05:46:46 2012 (r243666) > +++ projects/bhyve/sys/amd64/vmm/intel/vmx.c Thu Nov 29 06:26:42 2012 (r243667) > @@ -1159,15 +1159,16 @@ vmx_ept_fault(struct vm *vm, int cpu, > if (ept_qual & EPT_VIOLATION_INST_FETCH) > return (UNHANDLED); > > - /* EPT violation must be a read fault or a write fault but not both */ > + /* EPT violation must be a read fault or a write fault */ > read = ept_qual & EPT_VIOLATION_DATA_READ ? 1 : 0; > write = ept_qual & EPT_VIOLATION_DATA_WRITE ? 1 : 0; > - if ((read ^ write) == 0) > + if ((read | write) == 0) > return (UNHANDLED); > > /* > - * The EPT violation must have been caused by accessing a guest-physical > - * address that is a translation of a guest-linear address. > + * The EPT violation must have been caused by accessing a > + * guest-physical address that is a translation of a guest-linear > + * address. > */ > if ((ept_qual & EPT_VIOLATION_GLA_VALID) == 0 || > (ept_qual & EPT_VIOLATION_XLAT_VALID) == 0) { > > Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c > ============================================================================== > --- projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 05:46:46 2012 (r243666) > +++ projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Thu Nov 29 06:26:42 2012 (r243667) > @@ -81,6 +81,11 @@ static const struct vie_op one_byte_opco > [0x23] = { > .op_byte = 0x23, > .op_type = VIE_OP_TYPE_AND, > + }, > + [0x81] = { > + .op_byte = 0x81, > + .op_type = VIE_OP_TYPE_AND, > + .op_flags = VIE_OP_F_IMM, > } > }; > > @@ -299,6 +304,30 @@ emulate_and(void *vm, int vcpuid, uint64 > val1 &= val2; > error = vie_update_register(vm, vcpuid, reg, val1, size); > break; > + case 0x81: > + printf("0x81 AND\n"); > + /* > + * AND reg (ModRM:reg) with immediate and store the > + * result in reg > + * > + * 81/ and r/m32, imm32 > + * REX.W + 81/ and r/m64, imm32 sign-extended to 64 > + */ + /* + * OP mem (ModRM:r/m) with immediate and store the + * result in mem + * + * 81/ op r/m32, imm32 + * REX.W + 81/ op r/m64, imm32 sign-extended to 64 + * + * Currently, only the AND operation is implemented + * (ModRM:reg = 4). + */ > + if (vie->rex_w) > + size = 8; > + > + /* get the first operand */ > + error = memread(vm, vcpuid, gpa, &val1, size, arg); > + if (error) > + break; > + > + /* > + * perform the operation with the pre-fetched immediate > + * operand and write the result > + */ > + val1 &= vie->immediate; > + error = memwrite(vm, vcpuid, gpa, val1, size, arg); > + break; > default: > break; > } -- Jilles Tjoelker From owner-svn-src-projects@FreeBSD.ORG Thu Nov 29 15:44:29 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0B6008AC; Thu, 29 Nov 2012 15:44:29 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id B170E8FC08; Thu, 29 Nov 2012 15:44:28 +0000 (UTC) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by alto.onthenet.com.au (Postfix) with ESMTPS id 0668511C7F; Fri, 30 Nov 2012 01:44:27 +1000 (EST) Received: from Peter-Grehans-MacBook-Pro.local (c-67-190-8-21.hsd1.co.comcast.net [67.190.8.21]) by dommail.onthenet.com.au (MOS 4.2.4-GA) with ESMTP id BHY85708 (AUTH peterg@ptree32.com.au); Fri, 30 Nov 2012 01:44:24 +1000 Message-ID: <50B782D6.5060507@freebsd.org> Date: Thu, 29 Nov 2012 08:44:22 -0700 From: Peter Grehan User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.28) Gecko/20120306 Thunderbird/3.1.20 MIME-Version: 1.0 To: Jilles Tjoelker Subject: Re: svn commit: r243667 - in projects/bhyve/sys/amd64/vmm: . intel References: <201211290626.qAT6QhOr007958@svn.freebsd.org> <20121129152550.GB29338@stack.nl> In-Reply-To: <20121129152550.GB29338@stack.nl> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Junkmail-Info: RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,SPF_SOFTFAIL X-Junkmail-Status: score=24/51, host=dommail.onthenet.com.au Cc: svn-src-projects@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Nov 2012 15:44:29 -0000 > I don't see a check on the ModRM reg field, which indicates whether the > 0x81 opcode is an ADD, OR, ADC, SBB, AND, SUB, XOR or CMP. So if one of > the other seven happens, it will silently execute as an AND. I don't > think it is useful to implement the other seven but they should be > rejected explicitly (if the ModRM reg field is not 4). Will do, thanks. > A hardware AND of any kind will update %rflags and compilers may take > advantage of this to branch based on the result without the need for a > separate instruction to test it. I suppose this is unlikely here (the > AND serving only to clear one or more bits). Yeh... x86 sucks :( later, Peter. From owner-svn-src-projects@FreeBSD.ORG Fri Nov 30 05:40:25 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BB72935A; Fri, 30 Nov 2012 05:40:25 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 9E1B78FC16; Fri, 30 Nov 2012 05:40:25 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAU5ePjN024990; Fri, 30 Nov 2012 05:40:25 GMT (envelope-from grehan@svn.freebsd.org) Received: (from grehan@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAU5ePZj024989; Fri, 30 Nov 2012 05:40:25 GMT (envelope-from grehan@svn.freebsd.org) Message-Id: <201211300540.qAU5ePZj024989@svn.freebsd.org> From: Peter Grehan Date: Fri, 30 Nov 2012 05:40:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243703 - projects/bhyve/sys/amd64/vmm X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Nov 2012 05:40:26 -0000 Author: grehan Date: Fri Nov 30 05:40:24 2012 New Revision: 243703 URL: http://svnweb.freebsd.org/changeset/base/243703 Log: Properly screen for the AND 0x81 instruction from the set of group1 0x81 instructions that use the reg bits as an extended opcode. Still todo: properly update rflags. Pointed out by: jilles@ Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Modified: projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c ============================================================================== --- projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Fri Nov 30 05:30:31 2012 (r243702) +++ projects/bhyve/sys/amd64/vmm/vmm_instruction_emul.c Fri Nov 30 05:40:24 2012 (r243703) @@ -83,6 +83,7 @@ static const struct vie_op one_byte_opco .op_type = VIE_OP_TYPE_AND, }, [0x81] = { + /* XXX Group 1 extended opcode - not just AND */ .op_byte = 0x81, .op_type = VIE_OP_TYPE_AND, .op_flags = VIE_OP_F_IMM, @@ -311,7 +312,13 @@ emulate_and(void *vm, int vcpuid, uint64 * * 81/ and r/m32, imm32 * REX.W + 81/ and r/m64, imm32 sign-extended to 64 + * + * Currently, only the AND operation of the 0x81 opcode + * is implemented (ModRM:reg = b100). */ + if ((vie->reg & 7) != 4) + break; + if (vie->rex_w) size = 8; From owner-svn-src-projects@FreeBSD.ORG Fri Nov 30 07:00:15 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 61A29D82; Fri, 30 Nov 2012 07:00:15 +0000 (UTC) (envelope-from grehan@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 45B2E8FC12; Fri, 30 Nov 2012 07:00:15 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAU70F6e036051; Fri, 30 Nov 2012 07:00:15 GMT (envelope-from grehan@svn.freebsd.org) Received: (from grehan@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAU70Ftt036049; Fri, 30 Nov 2012 07:00:15 GMT (envelope-from grehan@svn.freebsd.org) Message-Id: <201211300700.qAU70Ftt036049@svn.freebsd.org> From: Peter Grehan Date: Fri, 30 Nov 2012 07:00:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243704 - projects/bhyve/usr.sbin/bhyve X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Nov 2012 07:00:15 -0000 Author: grehan Date: Fri Nov 30 07:00:14 2012 New Revision: 243704 URL: http://svnweb.freebsd.org/changeset/base/243704 Log: - Add in an XSDT to stop acpidump from exiting with a 'XSDT corrupted' error - Fix up OEMID/OEM Table ID string padding in the DSDT. Output on a verbose boot now looks like ... ACPI: RSDP 0xf0400 00024 (v02 BHYVE ) ACPI: XSDT 0xf0480 00034 (v01 BHYVE BVXSDT 00000001 INTL 20120320) ACPI: APIC 0xf0500 0004A (v01 BHYVE BVMADT 00000001 INTL 20120320) ACPI: FACP 0xf0600 0010C (v05 BHYVE BVFACP 00000001 INTL 20120320) ACPI: DSDT 0xf0800 000F2 (v02 BHYVE BVDSDT 00000001 INTL 20120320) ACPI: FACS 0xf0780 00040 ... Obtained from: NetApp Modified: projects/bhyve/usr.sbin/bhyve/acpi.c Modified: projects/bhyve/usr.sbin/bhyve/acpi.c ============================================================================== --- projects/bhyve/usr.sbin/bhyve/acpi.c Fri Nov 30 05:40:24 2012 (r243703) +++ projects/bhyve/usr.sbin/bhyve/acpi.c Fri Nov 30 07:00:14 2012 (r243704) @@ -40,11 +40,12 @@ * Layout * ------ * RSDP -> 0xf0400 (36 bytes fixed) - * RSDT -> 0xf0440 (36 bytes + 4*N table addrs, 2 used) - * MADT -> 0xf04a0 (depends on #CPUs) - * FADT -> 0xf0600 (268 bytes) - * FACS -> 0xf0780 (64 bytes) - * DSDT -> 0xf0800 (variable - can go up to 0x100000) + * RSDT -> 0xf0440 (36 bytes + 4*N table addrs, 2 used) + * XSDT -> 0xf0480 (36 bytes + 8*N table addrs, 2 used) + * MADT -> 0xf0500 (depends on #CPUs) + * FADT -> 0xf0600 (268 bytes) + * FACS -> 0xf0780 (64 bytes) + * DSDT -> 0xf0800 (variable - can go up to 0x100000) */ #include @@ -69,7 +70,8 @@ __FBSDID("$FreeBSD$"); */ #define BHYVE_ACPI_BASE 0xf0400 #define RSDT_OFFSET 0x040 -#define MADT_OFFSET 0x0a0 +#define XSDT_OFFSET 0x080 +#define MADT_OFFSET 0x100 #define FADT_OFFSET 0x200 #define FACS_OFFSET 0x380 #define DSDT_OFFSET 0x400 @@ -121,7 +123,8 @@ basl_fwrite_rsdp(FILE *fp) EFPRINTF(fp, "[0004]\t\tRSDT Address : %08X\n", basl_acpi_base + RSDT_OFFSET); EFPRINTF(fp, "[0004]\t\tLength : 00000024\n"); - EFPRINTF(fp, "[0008]\t\tXSDT Address : 0000000000000000\n"); + EFPRINTF(fp, "[0008]\t\tXSDT Address : 00000000%08X\n", + basl_acpi_base + XSDT_OFFSET); EFPRINTF(fp, "[0001]\t\tExtended Checksum : 00\n"); EFPRINTF(fp, "[0003]\t\tReserved : 000000\n"); @@ -170,6 +173,42 @@ err_exit: } static int +basl_fwrite_xsdt(FILE *fp) +{ + int err; + + err = 0; + + EFPRINTF(fp, "/*\n"); + EFPRINTF(fp, " * bhyve XSDT template\n"); + EFPRINTF(fp, " */\n"); + EFPRINTF(fp, "[0004]\t\tSignature : \"XSDT\"\n"); + EFPRINTF(fp, "[0004]\t\tTable Length : 00000000\n"); + EFPRINTF(fp, "[0001]\t\tRevision : 01\n"); + EFPRINTF(fp, "[0001]\t\tChecksum : 00\n"); + EFPRINTF(fp, "[0006]\t\tOem ID : \"BHYVE \"\n"); + EFPRINTF(fp, "[0008]\t\tOem Table ID : \"BVXSDT \"\n"); + EFPRINTF(fp, "[0004]\t\tOem Revision : 00000001\n"); + /* iasl will fill in the compiler ID/revision fields */ + EFPRINTF(fp, "[0004]\t\tAsl Compiler ID : \"xxxx\"\n"); + EFPRINTF(fp, "[0004]\t\tAsl Compiler Revision : 00000000\n"); + EFPRINTF(fp, "\n"); + + /* Add in pointers to the MADT and FADT */ + EFPRINTF(fp, "[0004]\t\tACPI Table Address 0 : 00000000%08X\n", + basl_acpi_base + MADT_OFFSET); + EFPRINTF(fp, "[0004]\t\tACPI Table Address 1 : 00000000%08X\n", + basl_acpi_base + FADT_OFFSET); + + EFFLUSH(fp); + + return (0); + +err_exit: + return (errno); +} + +static int basl_fwrite_madt(FILE *fp) { int err; @@ -491,7 +530,7 @@ basl_fwrite_dsdt(FILE *fp) EFPRINTF(fp, " * bhyve DSDT template\n"); EFPRINTF(fp, " */\n"); EFPRINTF(fp, "DefinitionBlock (\"bhyve_dsdt.aml\", \"DSDT\", 2," - "\"BHYV\", \"BVDSDT\", 0x00000001)\n"); + "\"BHYVE \", \"BVDSDT \", 0x00000001)\n"); EFPRINTF(fp, "{\n"); EFPRINTF(fp, " Scope (_SB)\n"); EFPRINTF(fp, " {\n"); @@ -752,6 +791,7 @@ static struct { { { basl_fwrite_rsdp, 0}, { basl_fwrite_rsdt, RSDT_OFFSET }, + { basl_fwrite_xsdt, XSDT_OFFSET }, { basl_fwrite_madt, MADT_OFFSET }, { basl_fwrite_fadt, FADT_OFFSET }, { basl_fwrite_facs, FACS_OFFSET }, From owner-svn-src-projects@FreeBSD.ORG Sat Dec 1 05:07:55 2012 Return-Path: Delivered-To: svn-src-projects@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F4782D1F; Sat, 1 Dec 2012 05:07:55 +0000 (UTC) (envelope-from andrew@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 7E6098FC1E; Sat, 1 Dec 2012 05:07:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qB157smP029209; Sat, 1 Dec 2012 05:07:54 GMT (envelope-from andrew@svn.freebsd.org) Received: (from andrew@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qB157sGE029180; Sat, 1 Dec 2012 05:07:54 GMT (envelope-from andrew@svn.freebsd.org) Message-Id: <201212010507.qB157sGE029180@svn.freebsd.org> From: Andrew Turner Date: Sat, 1 Dec 2012 05:07:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r243744 - in projects/arm_eabi: gnu/lib/csu gnu/lib/libgcc gnu/lib/libgcov gnu/lib/libstdc++ gnu/usr.bin/cc gnu/usr.bin/cc/c++filt gnu/usr.bin/cc/cc1 gnu/usr.bin/cc/cc1plus gnu/usr.bin/... X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Dec 2012 05:07:55 -0000 Author: andrew Date: Sat Dec 1 05:07:49 2012 New Revision: 243744 URL: http://svnweb.freebsd.org/changeset/base/243744 Log: Allow the ABI to be toggled between the current ARM ABI and the EABI with the ARM EABI the default on this branch. Added: projects/arm_eabi/tools/build/options/WITHOUT_ARM_EABI Modified: projects/arm_eabi/gnu/lib/csu/Makefile projects/arm_eabi/gnu/lib/libgcc/Makefile projects/arm_eabi/gnu/lib/libgcov/Makefile projects/arm_eabi/gnu/lib/libstdc++/Makefile projects/arm_eabi/gnu/usr.bin/cc/Makefile.inc projects/arm_eabi/gnu/usr.bin/cc/c++filt/Makefile projects/arm_eabi/gnu/usr.bin/cc/cc1/Makefile projects/arm_eabi/gnu/usr.bin/cc/cc1plus/Makefile projects/arm_eabi/gnu/usr.bin/cc/cc_int/Makefile projects/arm_eabi/gnu/usr.bin/cc/cc_tools/Makefile projects/arm_eabi/gnu/usr.bin/cc/doc/Makefile projects/arm_eabi/gnu/usr.bin/cc/gcov/Makefile projects/arm_eabi/gnu/usr.bin/cc/include/Makefile projects/arm_eabi/gnu/usr.bin/cc/libcpp/Makefile projects/arm_eabi/gnu/usr.bin/cc/libdecnumber/Makefile projects/arm_eabi/gnu/usr.bin/cc/libiberty/Makefile projects/arm_eabi/lib/libc/arm/Makefile.inc projects/arm_eabi/lib/libc/arm/gen/Makefile.inc projects/arm_eabi/lib/libc/quad/Makefile.inc projects/arm_eabi/lib/libcompiler_rt/Makefile projects/arm_eabi/share/mk/bsd.own.mk Modified: projects/arm_eabi/gnu/lib/csu/Makefile ============================================================================== --- projects/arm_eabi/gnu/lib/csu/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/lib/csu/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -24,7 +24,7 @@ CFLAGS+= -I${GCCLIB}/include -I${GCCDIR} CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG} MKDEP= -DCRT_BEGIN -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" CFLAGS+= -DTARGET_ARM_EABI .endif Modified: projects/arm_eabi/gnu/lib/libgcc/Makefile ============================================================================== --- projects/arm_eabi/gnu/lib/libgcc/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/lib/libgcc/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -15,7 +15,7 @@ MK_SSP= no .include "${.CURDIR}/../../usr.bin/cc/Makefile.tgt" -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" CFLAGS+= -DTARGET_ARM_EABI .endif @@ -56,7 +56,7 @@ LIB2FUNCS+= _fixuns${mode}si .endfor # Likewise double-word routines. -.if ${TARGET_CPUARCH} != "arm" +.if ${TARGET_CPUARCH} != "arm" && ${MK_ARM_EABI} != "no" # These are implemented in an ARM specific file but will not be filtered out .for mode in sf df xf tf LIB2FUNCS+= _fix${mode}di _fixuns${mode}di @@ -115,10 +115,14 @@ LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udi CFLAGS+= -Dinhibit_libc -fno-inline LIB1ASMSRC = lib1funcs.asm LIB1ASMFUNCS = _dvmd_tls _bb_init_func +.if ${MK_ARM_EABI} != "no" LIB1ASMFUNCS+= _addsubdf3 _addsubsf3 _cmpdf2 _cmpsf2 _fixdfsi _fixsfsi \ _fixunsdfsi _fixunsdfsi _muldivdf3 _muldivsf3 _udivsi3 LIB2ADDEH = unwind-arm.c libunwind.S pr-support.c unwind-c.c +.else +LIB2FUNCS_EXTRA = floatunsidf.c floatunsisf.c +.endif .endif .if ${TARGET_CPUARCH} == mips @@ -324,7 +328,7 @@ CLEANFILES += cs-*.h option* SHLIB_MKMAP = ${GCCDIR}/mkmap-symver.awk SHLIB_MKMAP_OPTS = SHLIB_MAPFILES = ${GCCDIR}/libgcc-std.ver -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" SHLIB_MAPFILES += ${GCCDIR}/config/arm/libgcc-bpabi.ver .endif VERSION_MAP = libgcc.map Modified: projects/arm_eabi/gnu/lib/libgcov/Makefile ============================================================================== --- projects/arm_eabi/gnu/lib/libgcov/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/lib/libgcov/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -16,7 +16,7 @@ CFLAGS+= -D_PTHREADS -DGTHREAD_USE_WEAK CFLAGS+= -I${.CURDIR}/../../usr.bin/cc/cc_tools \ -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" CFLAGS+= -DTARGET_ARM_EABI .endif Modified: projects/arm_eabi/gnu/lib/libstdc++/Makefile ============================================================================== --- projects/arm_eabi/gnu/lib/libstdc++/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/lib/libstdc++/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + GCCVER= 4.2 GCCDIR= ${.CURDIR}/../../../contrib/gcc GCCLIB= ${.CURDIR}/../../../contrib/gcclibs @@ -14,8 +16,8 @@ LIB= stdc++ SHLIB_MAJOR= 6 CFLAGS+= -DIN_GLIBCPP_V3 -DHAVE_CONFIG_H -.if ${MACHINE_CPUARCH} == "arm" -#CFLAGS+= -D_GLIBCXX_SJLJ_EXCEPTIONS=1 +.if ${MACHINE_CPUARCH} == "arm" && ${MK_ARM_EABI} == "no" +CFLAGS+= -D_GLIBCXX_SJLJ_EXCEPTIONS=1 .endif CFLAGS+= -I${.CURDIR} -I${SUPDIR} -I${GCCDIR} -I${SRCDIR}/include CFLAGS+= -I${GCCLIB}/include -I${SRCDIR}/include -I. @@ -594,7 +596,7 @@ gthr-default.h: ${GCCDIR}/gthr-posix.h CLEANFILES+= ${THRHDRS} -.if ${MACHINE_CPUARCH} == "arm" +.if ${MACHINE_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" unwind.h: ${GCCDIR}/config/arm/unwind-arm.h .else unwind.h: ${GCCDIR}/unwind-generic.h Modified: projects/arm_eabi/gnu/usr.bin/cc/Makefile.inc ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/Makefile.inc Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/Makefile.inc Sat Dec 1 05:07:49 2012 (r243744) @@ -26,7 +26,7 @@ CSTD?= gnu89 CFLAGS+= -DCROSS_COMPILE .endif -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" CFLAGS+= -DTARGET_ARM_EABI .endif Modified: projects/arm_eabi/gnu/usr.bin/cc/c++filt/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/c++filt/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/c++filt/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,8 @@ # $FreeBSD$ +NO_MAN= +.include + .include "../Makefile.inc" .include "../Makefile.fe" @@ -7,7 +10,6 @@ PROG= c++filt SRCS= cp-demangle.c -NO_MAN= CFLAGS+= -DSTANDALONE_DEMANGLER -DVERSION=\"$(GCC_VERSION)\" Modified: projects/arm_eabi/gnu/usr.bin/cc/cc1/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/cc1/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/cc1/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,9 +1,10 @@ # $FreeBSD$ -.include "../Makefile.inc" NO_MAN= .include +.include "../Makefile.inc" + .PATH: ${GCCDIR} PROG= cc1 Modified: projects/arm_eabi/gnu/usr.bin/cc/cc1plus/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/cc1plus/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/cc1plus/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,9 +1,10 @@ # $FreeBSD$ -.include "../Makefile.inc" NO_MAN= .include +.include "../Makefile.inc" + .PATH: ${GCCDIR}/cp ${GCCDIR} PROG= cc1plus Modified: projects/arm_eabi/gnu/usr.bin/cc/cc_int/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/cc_int/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/cc_int/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + .include "../Makefile.inc" .include "../Makefile.ver" Modified: projects/arm_eabi/gnu/usr.bin/cc/cc_tools/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/cc_tools/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/cc_tools/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -51,8 +51,10 @@ TARGET_INC+= ${GCC_CPU}/elf.h .endif .if ${TARGET_CPUARCH} == "arm" TARGET_INC+= ${GCC_CPU}/aout.h +.if ${MK_ARM_EABI} != "no" TARGET_INC+= ${GCC_CPU}/bpabi.h .endif +.endif .if ${TARGET_ARCH} == "powerpc64" TARGET_INC+= ${GCC_CPU}/biarch64.h TARGET_INC+= ${GCC_CPU}/default64.h @@ -350,7 +352,7 @@ gthr-default.h: ${GCCDIR}/gthr-posix.h GENSRCS+= gthr-default.h -.if ${TARGET_CPUARCH} == "arm" +.if ${TARGET_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" unwind.h: ${GCCDIR}/config/arm/unwind-arm.h .else unwind.h: ${GCCDIR}/unwind-generic.h Modified: projects/arm_eabi/gnu/usr.bin/cc/doc/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/doc/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/doc/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + .include "../Makefile.inc" .include "../Makefile.ver" Modified: projects/arm_eabi/gnu/usr.bin/cc/gcov/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/gcov/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/gcov/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + .include "../Makefile.inc" .include "../Makefile.ver" Modified: projects/arm_eabi/gnu/usr.bin/cc/include/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/include/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/include/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + .include "../Makefile.inc" INCSDIR=${INCLUDEDIR}/gcc/${GCCVER} Modified: projects/arm_eabi/gnu/usr.bin/cc/libcpp/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/libcpp/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/libcpp/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + # Use our headers in preference to ones from ../cc_tools. CFLAGS+= -I${.CURDIR} -I. Modified: projects/arm_eabi/gnu/usr.bin/cc/libdecnumber/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/libdecnumber/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/libdecnumber/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + # Use our headers in preference to ones from ../cc_tools. CFLAGS+= -I${.CURDIR} -I. Modified: projects/arm_eabi/gnu/usr.bin/cc/libiberty/Makefile ============================================================================== --- projects/arm_eabi/gnu/usr.bin/cc/libiberty/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/gnu/usr.bin/cc/libiberty/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -1,5 +1,7 @@ # $FreeBSD$ +.include + # # Make sure we will pick up our config.h file first, not the one from # cc_tools. Modified: projects/arm_eabi/lib/libc/arm/Makefile.inc ============================================================================== --- projects/arm_eabi/lib/libc/arm/Makefile.inc Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/lib/libc/arm/Makefile.inc Sat Dec 1 05:07:49 2012 (r243744) @@ -9,8 +9,10 @@ SOFTFLOAT_BITS=32 MDSRCS+=machdep_ldisd.c SYM_MAPS+=${.CURDIR}/arm/Symbol.map +.if ${MK_ARM_EABI} == "no" # This contains the symbols that were removed when moving to the ARM EABI -#SYM_MAPS+=${.CURDIR}/arm/Symbol_oabi.map - +SYM_MAPS+=${.CURDIR}/arm/Symbol_oabi.map +.else .include "${.CURDIR}/arm/aeabi/Makefile.inc" +.endif Modified: projects/arm_eabi/lib/libc/arm/gen/Makefile.inc ============================================================================== --- projects/arm_eabi/lib/libc/arm/gen/Makefile.inc Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/lib/libc/arm/gen/Makefile.inc Sat Dec 1 05:07:49 2012 (r243744) @@ -5,4 +5,6 @@ SRCS+= _ctx_start.S _setjmp.S _set_tp.c getcontextx.c infinity.c ldexp.c makecontext.c \ __aeabi_read_tp.S setjmp.S signalcontext.c sigsetjmp.S flt_rounds.c -#SRCS+= divsi3.S +.if ${MK_ARM_EABI} == "no" +SRCS+= divsi3.S +.endif Modified: projects/arm_eabi/lib/libc/quad/Makefile.inc ============================================================================== --- projects/arm_eabi/lib/libc/quad/Makefile.inc Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/lib/libc/quad/Makefile.inc Sat Dec 1 05:07:49 2012 (r243744) @@ -8,7 +8,7 @@ SRCS+= cmpdi2.c divdi3.c moddi3.c qdivrem.c ucmpdi2.c udivdi3.c umoddi3.c -.elif ${LIBC_ARCH} == "arm" +.elif ${LIBC_ARCH} == "arm" && ${MK_ARM_EABI} != "no" SRCS+= adddi3.c anddi3.c floatunsdidf.c iordi3.c lshldi3.c notdi2.c \ qdivrem.c subdi3.c xordi3.c Modified: projects/arm_eabi/lib/libcompiler_rt/Makefile ============================================================================== --- projects/arm_eabi/lib/libcompiler_rt/Makefile Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/lib/libcompiler_rt/Makefile Sat Dec 1 05:07:49 2012 (r243744) @@ -144,7 +144,9 @@ SRCF+= adddf3 \ truncdfsf2 .endif -.if ${MACHINE_CPUARCH} != "mips" +# TODO: Fix this logic for !mips, !arm oabi +.if ${MACHINE_CPUARCH} != "mips" && \ + (${MACHINE_CPUARCH} != "arm" || ${MK_ARM_EABI} != "no") SRCF+= divsi3 \ modsi3 \ udivsi3 \ @@ -179,7 +181,7 @@ SRCS+= ${file}.c . endif .endfor -.if ${MACHINE_CPUARCH} == "arm" +.if ${MACHINE_CPUARCH} == "arm" && ${MK_ARM_EABI} != "no" SRCS+= aeabi_idivmod.S \ aeabi_ldivmod.S \ aeabi_uidivmod.S \ Modified: projects/arm_eabi/share/mk/bsd.own.mk ============================================================================== --- projects/arm_eabi/share/mk/bsd.own.mk Sat Dec 1 03:48:11 2012 (r243743) +++ projects/arm_eabi/share/mk/bsd.own.mk Sat Dec 1 05:07:49 2012 (r243744) @@ -304,6 +304,7 @@ __DEFAULT_YES_OPTIONS = \ ACPI \ AMD \ APM \ + ARM_EABI \ ASSERT_DEBUG \ AT \ ATF \ Added: projects/arm_eabi/tools/build/options/WITHOUT_ARM_EABI ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ projects/arm_eabi/tools/build/options/WITHOUT_ARM_EABI Sat Dec 1 05:07:49 2012 (r243744) @@ -0,0 +1,2 @@ +.\" $FreeBSD$ +Set the ARM ABI to EABI.