From owner-svn-src-user@FreeBSD.ORG Sun Oct 2 05:11:02 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90A07106566C; Sun, 2 Oct 2011 05:11:02 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 80B3C8FC0C; Sun, 2 Oct 2011 05:11:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p925B2dM048730; Sun, 2 Oct 2011 05:11:02 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p925B2oq048727; Sun, 2 Oct 2011 05:11:02 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110020511.p925B2oq048727@svn.freebsd.org> From: Adrian Chadd Date: Sun, 2 Oct 2011 05:11:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225914 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 05:11:02 -0000 Author: adrian Date: Sun Oct 2 05:11:02 2011 New Revision: 225914 URL: http://svn.freebsd.org/changeset/base/225914 Log: Put the txqactive and kickpcu flags behind ath_lock for now, to avoid racey access to them from different threads. Since the ath_intr() code can be called at the same time as a taskqueue, we need to ensure that these don't clash. It doesn't happen on my testing on single-core MIPS boards w/out PREEMPTION enabled. It's likely to happen on PREEMPTION kernels and with multi-core CPUs. The real solution is to do what the reference driver does - create a pcu lock and serialise all PCU access behind that. I'll look at doing this at a later time. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Sun Oct 2 02:42:31 2011 (r225913) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Sun Oct 2 05:11:02 2011 (r225914) @@ -1342,6 +1342,7 @@ ath_intr(void *arg) struct ifnet *ifp = sc->sc_ifp; struct ath_hal *ah = sc->sc_ah; HAL_INT status = 0; + uint32_t txqs; if (sc->sc_invalid) { /* @@ -1381,6 +1382,29 @@ ath_intr(void *arg) ah->ah_intrstate[6]); status &= sc->sc_imask; /* discard unasked for bits */ + /* + * This has now updated the txqactive bits, so + * we should fetch them from the HAL and merge them + * into sc->sc_txq_active. That way we won't miss out + * where one CPU clears the txq bit whilst the other CPU + * sets it. + * + * The HAL updates it if the relevant TX status bits are set + * in the status registers, regardless of whether the status + * caused the interrupt and/or is set in sc_imask. + * Hence we update the bits before we check for status == 0. + */ + ATH_LOCK(sc); + /* + * This returns the txq bits in the given mask and blanks them. + * Since it's only ever set and cleared by the HAL and we are now + * doing it in ath_intr(), it's effectively non-racey. + */ + txqs = 0xffffffff; + ath_hal_gettxintrtxqs(sc->sc_ah, &txqs); + sc->sc_txq_active |= txqs; + ATH_UNLOCK(sc); + /* Short-circuit un-handled interrupts */ if (status == 0x0) return; @@ -1440,15 +1464,29 @@ ath_intr(void *arg) * by a call to ath_reset() somehow, the * interrupt mask will be correctly reprogrammed. */ + ATH_LOCK(sc); imask &= ~(HAL_INT_RXEOL | HAL_INT_RXORN); ath_hal_intrset(ah, imask); /* + * Only blank sc_rxlink if we've not yet kicked + * the PCU. + * + * This isn't entirely correct - the correct solution + * would be to have a PCU lock and engage that for + * the duration of the PCU fiddling; which would include + * running the RX process. Otherwise we could end up + * messing up the RX descriptor chain and making the + * RX desc list much shorter. + */ + if (! sc->sc_kickpcu) + sc->sc_rxlink = NULL; + sc->sc_kickpcu = 1; + ATH_UNLOCK(sc); + /* * Enqueue an RX proc, to handled whatever * is in the RX queue. * This will then kick the PCU. */ - sc->sc_rxlink = NULL; - sc->sc_kickpcu = 1; taskqueue_enqueue_fast(sc->sc_tq, &sc->sc_rxtask); } if (status & HAL_INT_TXURN) { @@ -1490,8 +1528,10 @@ ath_intr(void *arg) * RXEOL before the rxproc has had a chance * to run. */ + ATH_LOCK(sc); if (sc->sc_kickpcu == 0) ath_hal_intrset(ah, sc->sc_imask); + ATH_UNLOCK(sc); } if (status & HAL_INT_RXORN) { /* NB: hal marks HAL_INT_FATAL when RXORN is fatal */ @@ -4103,8 +4143,10 @@ rx_next: ath_mode_init(sc); /* set filters, etc. */ ath_hal_startpcurecv(ah); /* re-enable PCU/DMA engine */ + ATH_LOCK(sc); ath_hal_intrset(ah, sc->sc_imask); sc->sc_kickpcu = 0; + ATH_UNLOCK(sc); } if ((ifp->if_drv_flags & IFF_DRV_OACTIVE) == 0) { @@ -4590,12 +4632,29 @@ ath_tx_processq(struct ath_softc *sc, st return nacked; } +/* + * This is inefficient - it's going to be a lot better + * if the ath_tx_proc* functions took a private snapshot + * of sc_txq_active once, inside the lock, rather than + * calling it multiple times. + * + * So before this makes it into -HEAD, that should be + * implemented. + */ static __inline int -txqactive(struct ath_hal *ah, int qnum) +txqactive(struct ath_softc *sc, int qnum) { u_int32_t txqs = 1<sc_txq_active & txqs; + sc->sc_txq_active &= ~txqs; + ATH_UNLOCK(sc); + return (!! r); } /* @@ -4608,10 +4667,10 @@ ath_tx_proc_q0(void *arg, int npending) struct ath_softc *sc = arg; struct ifnet *ifp = sc->sc_ifp; - if (txqactive(sc->sc_ah, 0) && ath_tx_processq(sc, &sc->sc_txq[0])) + if (txqactive(sc, 0) && ath_tx_processq(sc, &sc->sc_txq[0])) /* XXX why is lastrx updated in tx code? */ sc->sc_lastrx = ath_hal_gettsf64(sc->sc_ah); - if (txqactive(sc->sc_ah, sc->sc_cabq->axq_qnum)) + if (txqactive(sc, sc->sc_cabq->axq_qnum)) ath_tx_processq(sc, sc->sc_cabq); ifp->if_drv_flags &= ~IFF_DRV_OACTIVE; sc->sc_wd_timer = 0; @@ -4637,15 +4696,15 @@ ath_tx_proc_q0123(void *arg, int npendin * Process each active queue. */ nacked = 0; - if (txqactive(sc->sc_ah, 0)) + if (txqactive(sc, 0)) nacked += ath_tx_processq(sc, &sc->sc_txq[0]); - if (txqactive(sc->sc_ah, 1)) + if (txqactive(sc, 1)) nacked += ath_tx_processq(sc, &sc->sc_txq[1]); - if (txqactive(sc->sc_ah, 2)) + if (txqactive(sc, 2)) nacked += ath_tx_processq(sc, &sc->sc_txq[2]); - if (txqactive(sc->sc_ah, 3)) + if (txqactive(sc, 3)) nacked += ath_tx_processq(sc, &sc->sc_txq[3]); - if (txqactive(sc->sc_ah, sc->sc_cabq->axq_qnum)) + if (txqactive(sc, sc->sc_cabq->axq_qnum)) ath_tx_processq(sc, sc->sc_cabq); if (nacked) sc->sc_lastrx = ath_hal_gettsf64(sc->sc_ah); @@ -4674,7 +4733,7 @@ ath_tx_proc(void *arg, int npending) */ nacked = 0; for (i = 0; i < HAL_NUM_TX_QUEUES; i++) - if (ATH_TXQ_SETUP(sc, i) && txqactive(sc->sc_ah, i)) + if (ATH_TXQ_SETUP(sc, i) && txqactive(sc, i)) nacked += ath_tx_processq(sc, &sc->sc_txq[i]); if (nacked) sc->sc_lastrx = ath_hal_gettsf64(sc->sc_ah); Modified: user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Sun Oct 2 02:42:31 2011 (r225913) +++ user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Sun Oct 2 05:11:02 2011 (r225914) @@ -384,7 +384,6 @@ struct ath_softc { sc_setcca : 1,/* set/clr CCA with TDMA */ sc_resetcal : 1,/* reset cal state next trip */ sc_rxslink : 1,/* do self-linked final descriptor */ - sc_kickpcu : 1,/* kick PCU RX on next RX proc */ sc_rxtsf32 : 1;/* RX dec TSF is 32 bits */ uint32_t sc_eerd; /* regdomain from EEPROM */ uint32_t sc_eecc; /* country code from EEPROM */ @@ -411,7 +410,19 @@ struct ath_softc { u_int sc_fftxqmin; /* min frames before staging */ u_int sc_fftxqmax; /* max frames before drop */ u_int sc_txantenna; /* tx antenna (fixed or auto) */ + HAL_INT sc_imask; /* interrupt mask copy */ + /* + * These are modified in the interrupt handler as well as + * the task queues and other contexts. Thus these must be + * protected by a mutex, or they could clash. + * + * For now, access to these is behind the ATH_LOCK, + * just to save time. + */ + uint32_t sc_txq_active; /* bitmap of active TXQs */ + uint32_t sc_kickpcu; /* whether to kick the PCU */ + u_int sc_keymax; /* size of key cache */ u_int8_t sc_keymap[ATH_KEYBYTES];/* key use bit map */ From owner-svn-src-user@FreeBSD.ORG Sun Oct 2 08:48:48 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 69C1C1065670; Sun, 2 Oct 2011 08:48:48 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 501688FC17; Sun, 2 Oct 2011 08:48:48 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p928mm9C055173; Sun, 2 Oct 2011 08:48:48 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p928mm7P055169; Sun, 2 Oct 2011 08:48:48 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110020848.p928mm7P055169@svn.freebsd.org> From: Adrian Chadd Date: Sun, 2 Oct 2011 08:48:48 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225915 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 08:48:48 -0000 Author: adrian Date: Sun Oct 2 08:48:47 2011 New Revision: 225915 URL: http://svn.freebsd.org/changeset/base/225915 Log: Add the PCU mutex. This mutex may eventually be used to protect access to the PCU. The reference driver (and thus ath9k) serialises access to the PCU (TX, RX, reset/channel change, interrupts) through a lock. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c Sun Oct 2 05:11:02 2011 (r225914) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c Sun Oct 2 08:48:47 2011 (r225915) @@ -190,11 +190,13 @@ ath_ahb_attach(device_t dev) } ATH_LOCK_INIT(sc); + ATH_PCU_LOCK_INIT(sc); error = ath_attach(AR9130_DEVID, sc); if (error == 0) /* success */ return 0; + ATH_PCU_LOCK_DESTROY(sc); ATH_LOCK_DESTROY(sc); bus_dma_tag_destroy(sc->sc_dmat); bad3: Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c Sun Oct 2 05:11:02 2011 (r225914) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c Sun Oct 2 08:48:47 2011 (r225915) @@ -164,11 +164,13 @@ ath_pci_attach(device_t dev) } ATH_LOCK_INIT(sc); + ATH_PCU_LOCK_INIT(sc); error = ath_attach(pci_get_device(dev), sc); if (error == 0) /* success */ return 0; + ATH_PCU_LOCK_DESTROY(sc); ATH_LOCK_DESTROY(sc); bus_dma_tag_destroy(sc->sc_dmat); bad3: Modified: user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Sun Oct 2 05:11:02 2011 (r225914) +++ user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Sun Oct 2 08:48:47 2011 (r225915) @@ -351,6 +351,8 @@ struct ath_softc { HAL_BUS_HANDLE sc_sh; /* bus space handle */ bus_dma_tag_t sc_dmat; /* bus DMA tag */ struct mtx sc_mtx; /* master lock (recursive) */ + struct mtx sc_pcu_mtx; /* PCU access mutex */ + char sc_pcu_mtx_name[32]; struct taskqueue *sc_tq; /* private task queue */ struct ath_hal *sc_ah; /* Atheros HAL */ struct ath_ratectrl *sc_rc; /* tx rate control support */ @@ -543,6 +545,37 @@ struct ath_softc { #define ATH_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_mtx) #define ATH_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->sc_mtx, MA_OWNED) +/* + * The PCU lock is non-recursive and should be treated as a spinlock. + * Although currently the interrupt code is run in netisr context and + * doesn't require this, this may change in the future. + * Please keep this in mind when protecting certain code paths + * with the PCU lock. + * + * The PCU lock is used to serialise access to the PCU so things such + * as TX, RX, state change (eg channel change), channel reset and updates + * from interrupt context (eg kickpcu, txqactive bits) do not clash. + * + * Although the current single-thread taskqueue mechanism protects the + * majority of these situations by simply serialising them, there are + * a few others which occur at the same time. These include the TX path + * (which only acquires ATH_LOCK when recycling buffers to the free list), + * ath_set_channel, the channel scanning API and perhaps quite a bit more. + */ +#define ATH_PCU_LOCK_INIT(_sc) do {\ + snprintf((_sc)->sc_pcu_mtx_name, \ + sizeof((_sc)->sc_pcu_mtx_name), \ + "%s PCU lock", \ + device_get_nameunit((_sc)->sc_dev)); \ + mtx_init(&(_sc)->sc_pcu_mtx, (_sc)->sc_pcu_mtx_name, \ + NULL, MTX_DEF); \ + } while (0) +#define ATH_PCU_LOCK_DESTROY(_sc) mtx_destroy(&(_sc)->sc_pcu_mtx) +#define ATH_PCU_LOCK(_sc) mtx_lock(&(_sc)->sc_pcu_mtx) +#define ATH_PCU_UNLOCK(_sc) mtx_unlock(&(_sc)->sc_pcu_mtx) +#define ATH_PCU_LOCK_ASSERT(_sc) mtx_assert(&(_sc)->sc_pcu_mtx, \ + MA_OWNED) + #define ATH_TXQ_SETUP(sc, i) ((sc)->sc_txqsetup & (1< Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CEF9106566B; Sun, 2 Oct 2011 13:29:30 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id F0DBA8FC16; Sun, 2 Oct 2011 13:29:29 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p92DTT6V065401; Sun, 2 Oct 2011 13:29:29 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p92DTTga065399; Sun, 2 Oct 2011 13:29:29 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110021329.p92DTTga065399@svn.freebsd.org> From: Adrian Chadd Date: Sun, 2 Oct 2011 13:29:29 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225920 - user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar5416 X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 13:29:30 -0000 Author: adrian Date: Sun Oct 2 13:29:29 2011 New Revision: 225920 URL: http://svn.freebsd.org/changeset/base/225920 Log: Interrupt fixups: * Remove the RAC versions of things - it's very unlikely I'll enable it for any of the ar5416 -> ar9287 chips. * Other slight tidyups Modified: user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c Modified: user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c Sun Oct 2 12:18:06 2011 (r225919) +++ user/adrian/if_ath_tx/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c Sun Oct 2 13:29:29 2011 (r225920) @@ -70,6 +70,9 @@ ar5416GetPendingInterrupts(struct ath_ha uint32_t isr, isr0, isr1, sync_cause = 0; HAL_CAPABILITIES *pCap = &AH_PRIVATE(ah)->ah_caps; + /* + * Blank the interrupt debugging area regardless. + */ bzero(&ah->ah_intrstate, sizeof(ah->ah_intrstate)); /* @@ -122,21 +125,14 @@ ar5416GetPendingInterrupts(struct ath_ha if (isr2 & AR_ISR_S2_TSFOOR) mask2 |= HAL_INT_TSFOOR; - /* XXX TXURN? */ - /* * Don't mask out AR_BCNMISC; instead mask * out what causes it. */ - if (! pCap->halUseIsrRac) { - OS_REG_WRITE(ah, AR_ISR_S2, isr2); - isr &= ~AR_ISR_BCNMISC; - } + OS_REG_WRITE(ah, AR_ISR_S2, isr2); + isr &= ~AR_ISR_BCNMISC; } - if (pCap->halUseIsrRac) - isr = OS_REG_READ(ah, AR_ISR_RAC); - if (isr == 0xffffffff) { *masked = 0; return AH_FALSE; @@ -144,12 +140,10 @@ ar5416GetPendingInterrupts(struct ath_ha *masked = isr & HAL_INT_COMMON; - if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM)) { + if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM)) *masked |= HAL_INT_RX; - } - if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM)) { + if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM)) *masked |= HAL_INT_TX; - } /* * When doing RX interrupt mitigation, the RXOK bit is set @@ -171,25 +165,22 @@ ar5416GetPendingInterrupts(struct ath_ha *masked |= HAL_INT_RX; #endif - if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | AR_ISR_TXEOL)) { + if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | + AR_ISR_TXEOL)) { *masked |= HAL_INT_TX; - if (pCap->halUseIsrRac) { - isr0 = OS_REG_READ(ah, AR_ISR_S0_S); - isr1 = OS_REG_READ(ah, AR_ISR_S1_S); - } else { - isr0 = OS_REG_READ(ah, AR_ISR_S0); - OS_REG_WRITE(ah, AR_ISR_S0, isr0); - isr1 = OS_REG_READ(ah, AR_ISR_S1); - OS_REG_WRITE(ah, AR_ISR_S1, isr1); - - /* - * Don't clear the primary ISR TX bits, clear - * what causes them (S0/S1.) - */ - isr &= ~(AR_ISR_TXOK | AR_ISR_TXDESC | - AR_ISR_TXERR | AR_ISR_TXEOL); - } + isr0 = OS_REG_READ(ah, AR_ISR_S0); + OS_REG_WRITE(ah, AR_ISR_S0, isr0); + isr1 = OS_REG_READ(ah, AR_ISR_S1); + OS_REG_WRITE(ah, AR_ISR_S1, isr1); + + /* + * Don't clear the primary ISR TX bits, clear + * what causes them (S0/S1.) + */ + isr &= ~(AR_ISR_TXOK | AR_ISR_TXDESC | + AR_ISR_TXERR | AR_ISR_TXEOL); + ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXOK); ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXDESC); ahp->ah_intrTxqs |= MS(isr1, AR_ISR_S1_QCU_TXERR); @@ -198,13 +189,10 @@ ar5416GetPendingInterrupts(struct ath_ha if ((isr & AR_ISR_GENTMR) || (! pCap->halAutoSleepSupport)) { uint32_t isr5; - if (pCap->halUseIsrRac) { - isr5 = OS_REG_READ(ah, AR_ISR_S5_S); - } else { - isr5 = OS_REG_READ(ah, AR_ISR_S5); - OS_REG_WRITE(ah, AR_ISR_S5, isr5); - isr &= ~AR_ISR_GENTMR; - } + isr5 = OS_REG_READ(ah, AR_ISR_S5); + OS_REG_WRITE(ah, AR_ISR_S5, isr5); + isr &= ~AR_ISR_GENTMR; + if (! pCap->halAutoSleepSupport) if (isr5 & AR_ISR_S5_TIM_TIMER) *masked |= HAL_INT_TIM_TIMER; @@ -212,20 +200,18 @@ ar5416GetPendingInterrupts(struct ath_ha *masked |= mask2; } - if (! pCap->halUseIsrRac) { - /* - * If we're not using AR_ISR_RAC, clear the status bits - * for handled interrupts here. For bits whose interrupt - * source is a secondary register, those bits should've been - * masked out - instead of those bits being written back, - * their source (ie, the secondary status registers) should - * be cleared. That way there are no race conditions with - * new triggers coming in whilst they've been read/cleared. - */ - OS_REG_WRITE(ah, AR_ISR, isr); - /* Flush previous write */ - OS_REG_READ(ah, AR_ISR); - } + /* + * Since we're not using AR_ISR_RAC, clear the status bits + * for handled interrupts here. For bits whose interrupt + * source is a secondary register, those bits should've been + * masked out - instead of those bits being written back, + * their source (ie, the secondary status registers) should + * be cleared. That way there are no race conditions with + * new triggers coming in whilst they've been read/cleared. + */ + OS_REG_WRITE(ah, AR_ISR, isr); + /* Flush previous write */ + OS_REG_READ(ah, AR_ISR); if (AR_SREV_HOWL(ah)) return AH_TRUE; From owner-svn-src-user@FreeBSD.ORG Sun Oct 2 16:25:52 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D2C61106566C; Sun, 2 Oct 2011 16:25:52 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id BF63C8FC08; Sun, 2 Oct 2011 16:25:52 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p92GPqan070931; Sun, 2 Oct 2011 16:25:52 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p92GPq07070894; Sun, 2 Oct 2011 16:25:52 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201110021625.p92GPq07070894@svn.freebsd.org> From: Attilio Rao Date: Sun, 2 Oct 2011 16:25:52 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225928 - in user/attilio/vmcontention: bin/ps contrib/llvm contrib/llvm/lib/Support contrib/llvm/tools/clang contrib/sendmail/src contrib/top etc/mtree lib/libc/gen share/doc share/doc... X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 16:25:52 -0000 Author: attilio Date: Sun Oct 2 16:25:51 2011 New Revision: 225928 URL: http://svn.freebsd.org/changeset/base/225928 Log: MFC Added: user/attilio/vmcontention/contrib/llvm/LICENSE.TXT - copied unchanged from r225926, head/contrib/llvm/LICENSE.TXT user/attilio/vmcontention/contrib/llvm/lib/Support/COPYRIGHT.regex - copied unchanged from r225926, head/contrib/llvm/lib/Support/COPYRIGHT.regex user/attilio/vmcontention/contrib/llvm/tools/clang/LICENSE.TXT - copied unchanged from r225926, head/contrib/llvm/tools/clang/LICENSE.TXT user/attilio/vmcontention/share/doc/llvm/ - copied from r225926, head/share/doc/llvm/ Modified: user/attilio/vmcontention/bin/ps/ps.1 user/attilio/vmcontention/contrib/sendmail/src/main.c user/attilio/vmcontention/contrib/sendmail/src/sendmail.h user/attilio/vmcontention/contrib/sendmail/src/usersmtp.c user/attilio/vmcontention/etc/mtree/BSD.usr.dist user/attilio/vmcontention/lib/libc/gen/ctermid.3 user/attilio/vmcontention/lib/libc/gen/ctermid.c user/attilio/vmcontention/share/doc/Makefile user/attilio/vmcontention/sys/arm/at91/at91_mci.c user/attilio/vmcontention/sys/arm/at91/at91_pio.c user/attilio/vmcontention/sys/arm/at91/at91_rtc.c user/attilio/vmcontention/sys/arm/at91/at91_spi.c user/attilio/vmcontention/sys/arm/at91/at91_ssc.c user/attilio/vmcontention/sys/arm/at91/at91_twi.c user/attilio/vmcontention/sys/arm/at91/uart_dev_at91usart.c user/attilio/vmcontention/sys/arm/econa/if_ece.c user/attilio/vmcontention/sys/dev/ath/ah_osdep.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_internal.h user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_regdomain.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5112.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416reg.h user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c user/attilio/vmcontention/sys/dev/puc/pucdata.c user/attilio/vmcontention/sys/kern/kern_sig.c user/attilio/vmcontention/sys/mips/mips/machdep.c user/attilio/vmcontention/sys/net80211/ieee80211_proto.c user/attilio/vmcontention/sys/net80211/ieee80211_sta.c user/attilio/vmcontention/sys/net80211/ieee80211_tdma.c user/attilio/vmcontention/sys/netinet6/nd6.c user/attilio/vmcontention/sys/powerpc/powerpc/cpu.c user/attilio/vmcontention/sys/sparc64/include/asmacros.h user/attilio/vmcontention/sys/sparc64/include/atomic.h user/attilio/vmcontention/sys/sparc64/pci/schizo.c user/attilio/vmcontention/sys/sparc64/sparc64/exception.S user/attilio/vmcontention/sys/sparc64/sparc64/genassym.c user/attilio/vmcontention/sys/sparc64/sparc64/machdep.c user/attilio/vmcontention/sys/sparc64/sparc64/pmap.c user/attilio/vmcontention/sys/sys/param.h user/attilio/vmcontention/usr.bin/fstat/fstat.c Directory Properties: user/attilio/vmcontention/ (props changed) user/attilio/vmcontention/cddl/contrib/opensolaris/ (props changed) user/attilio/vmcontention/contrib/bind9/ (props changed) user/attilio/vmcontention/contrib/binutils/ (props changed) user/attilio/vmcontention/contrib/bzip2/ (props changed) user/attilio/vmcontention/contrib/compiler-rt/ (props changed) user/attilio/vmcontention/contrib/dialog/ (props changed) user/attilio/vmcontention/contrib/ee/ (props changed) user/attilio/vmcontention/contrib/expat/ (props changed) user/attilio/vmcontention/contrib/file/ (props changed) user/attilio/vmcontention/contrib/gcc/ (props changed) user/attilio/vmcontention/contrib/gdb/ (props changed) user/attilio/vmcontention/contrib/gdtoa/ (props changed) user/attilio/vmcontention/contrib/gnu-sort/ (props changed) user/attilio/vmcontention/contrib/groff/ (props changed) user/attilio/vmcontention/contrib/less/ (props changed) user/attilio/vmcontention/contrib/libpcap/ (props changed) user/attilio/vmcontention/contrib/libstdc++/ (props changed) user/attilio/vmcontention/contrib/llvm/ (props changed) user/attilio/vmcontention/contrib/llvm/tools/clang/ (props changed) user/attilio/vmcontention/contrib/ncurses/ (props changed) user/attilio/vmcontention/contrib/netcat/ (props changed) user/attilio/vmcontention/contrib/ntp/ (props changed) user/attilio/vmcontention/contrib/one-true-awk/ (props changed) user/attilio/vmcontention/contrib/openbsm/ (props changed) user/attilio/vmcontention/contrib/openpam/ (props changed) user/attilio/vmcontention/contrib/openresolv/ (props changed) user/attilio/vmcontention/contrib/pf/ (props changed) user/attilio/vmcontention/contrib/sendmail/ (props changed) user/attilio/vmcontention/contrib/tcpdump/ (props changed) user/attilio/vmcontention/contrib/tcsh/ (props changed) user/attilio/vmcontention/contrib/tnftp/ (props changed) user/attilio/vmcontention/contrib/top/ (props changed) user/attilio/vmcontention/contrib/top/install-sh (props changed) user/attilio/vmcontention/contrib/tzcode/stdtime/ (props changed) user/attilio/vmcontention/contrib/tzcode/zic/ (props changed) user/attilio/vmcontention/contrib/tzdata/ (props changed) user/attilio/vmcontention/contrib/wpa/ (props changed) user/attilio/vmcontention/contrib/xz/ (props changed) user/attilio/vmcontention/crypto/heimdal/ (props changed) user/attilio/vmcontention/crypto/openssh/ (props changed) user/attilio/vmcontention/crypto/openssl/ (props changed) user/attilio/vmcontention/gnu/lib/ (props changed) user/attilio/vmcontention/gnu/usr.bin/binutils/ (props changed) user/attilio/vmcontention/gnu/usr.bin/cc/cc_tools/ (props changed) user/attilio/vmcontention/gnu/usr.bin/gdb/ (props changed) user/attilio/vmcontention/lib/libc/ (props changed) user/attilio/vmcontention/lib/libc/stdtime/ (props changed) user/attilio/vmcontention/lib/libutil/ (props changed) user/attilio/vmcontention/lib/libz/ (props changed) user/attilio/vmcontention/sbin/ (props changed) user/attilio/vmcontention/sbin/ipfw/ (props changed) user/attilio/vmcontention/share/mk/bsd.arch.inc.mk (props changed) user/attilio/vmcontention/share/zoneinfo/ (props changed) user/attilio/vmcontention/sys/ (props changed) user/attilio/vmcontention/sys/amd64/include/xen/ (props changed) user/attilio/vmcontention/sys/boot/ (props changed) user/attilio/vmcontention/sys/boot/i386/efi/ (props changed) user/attilio/vmcontention/sys/boot/ia64/efi/ (props changed) user/attilio/vmcontention/sys/boot/ia64/ski/ (props changed) user/attilio/vmcontention/sys/boot/powerpc/boot1.chrp/ (props changed) user/attilio/vmcontention/sys/boot/powerpc/ofw/ (props changed) user/attilio/vmcontention/sys/cddl/contrib/opensolaris/ (props changed) user/attilio/vmcontention/sys/conf/ (props changed) user/attilio/vmcontention/sys/contrib/dev/acpica/ (props changed) user/attilio/vmcontention/sys/contrib/octeon-sdk/ (props changed) user/attilio/vmcontention/sys/contrib/pf/ (props changed) user/attilio/vmcontention/sys/contrib/x86emu/ (props changed) user/attilio/vmcontention/usr.bin/calendar/ (props changed) user/attilio/vmcontention/usr.bin/csup/ (props changed) user/attilio/vmcontention/usr.bin/procstat/ (props changed) user/attilio/vmcontention/usr.sbin/ndiscvt/ (props changed) user/attilio/vmcontention/usr.sbin/rtadvctl/ (props changed) user/attilio/vmcontention/usr.sbin/rtadvd/ (props changed) user/attilio/vmcontention/usr.sbin/rtsold/ (props changed) user/attilio/vmcontention/usr.sbin/zic/ (props changed) Modified: user/attilio/vmcontention/bin/ps/ps.1 ============================================================================== --- user/attilio/vmcontention/bin/ps/ps.1 Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/bin/ps/ps.1 Sun Oct 2 16:25:51 2011 (r225928) @@ -29,7 +29,7 @@ .\" @(#)ps.1 8.3 (Berkeley) 4/18/94 .\" $FreeBSD$ .\" -.Dd July 1, 2011 +.Dd October 1, 2011 .Dt PS 1 .Os .Sh NAME @@ -54,6 +54,11 @@ utility displays a header line, followed by lines containing information about all of your processes that have controlling terminals. +If the +.Fl x +options is specified, +.Nm +will also display processes that do not have controlling terminals. .Pp A different set of processes can be selected for display by using any combination of the @@ -90,8 +95,8 @@ and .Fl o options). The default output format includes, for each process, the process' ID, -controlling terminal, CPU time (including both user and system time), -state, and associated command. +controlling terminal, state, CPU time (including both user and system time) +and associated command. .Pp The process file system (see .Xr procfs 5 ) @@ -103,13 +108,9 @@ The options are as follows: .Bl -tag -width indent .It Fl a Display information about other users' processes as well as your own. -This will skip any processes which do not have a controlling terminal, -unless the -.Fl x -option is also specified. -This can be disabled by setting the +If the .Va security.bsd.see_other_uids -sysctl to zero. +sysctl is set to zero, this option is honored only if the UID of the user is 0. .It Fl c Change the .Dq command @@ -216,6 +217,9 @@ with the standard input. .It Fl t Display information about processes attached to the specified terminal devices. +Full pathnames, as well as abbreviations (see explanation of the +.Cm tt +keyword) can be specified. .It Fl U Display the processes belonging to the specified usernames. .It Fl u @@ -427,12 +431,15 @@ The process is being traced or debugged. An abbreviation for the pathname of the controlling terminal, if any. The abbreviation consists of the three letters following .Pa /dev/tty , -or, for the console, -.Dq Li con . +or, for psuedo-terminals, the corresponding entry in +.Pa /dev/pts . This is followed by a .Ql - if the process can no longer reach that controlling terminal (i.e., it has been revoked). +The full pathname of the controlling terminal is available via the +.Cm tty +keyword. .It Cm wchan The event (an address in the system) on which a process waits. When printed numerically, the initial part of the address is Copied: user/attilio/vmcontention/contrib/llvm/LICENSE.TXT (from r225926, head/contrib/llvm/LICENSE.TXT) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/attilio/vmcontention/contrib/llvm/LICENSE.TXT Sun Oct 2 16:25:51 2011 (r225928, copy of r225926, head/contrib/llvm/LICENSE.TXT) @@ -0,0 +1,69 @@ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2003-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +Copyrights and Licenses for Third Party Software Distributed with LLVM: +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- +Autoconf llvm/autoconf + llvm/projects/ModuleMaker/autoconf + llvm/projects/sample/autoconf +CellSPU backend llvm/lib/Target/CellSPU/README.txt +Google Test llvm/utils/unittest/googletest +OpenBSD regex llvm/lib/Support/{reg*, COPYRIGHT.regex} Copied: user/attilio/vmcontention/contrib/llvm/lib/Support/COPYRIGHT.regex (from r225926, head/contrib/llvm/lib/Support/COPYRIGHT.regex) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/attilio/vmcontention/contrib/llvm/lib/Support/COPYRIGHT.regex Sun Oct 2 16:25:51 2011 (r225928, copy of r225926, head/contrib/llvm/lib/Support/COPYRIGHT.regex) @@ -0,0 +1,54 @@ +$OpenBSD: COPYRIGHT,v 1.3 2003/06/02 20:18:36 millert Exp $ + +Copyright 1992, 1993, 1994 Henry Spencer. All rights reserved. +This software is not subject to any license of the American Telephone +and Telegraph Company or of the Regents of the University of California. + +Permission is granted to anyone to use this software for any purpose on +any computer system, and to alter it and redistribute it, subject +to the following restrictions: + +1. The author is not responsible for the consequences of use of this + software, no matter how awful, even if they arise from flaws in it. + +2. The origin of this software must not be misrepresented, either by + explicit claim or by omission. Since few users ever read sources, + credits must appear in the documentation. + +3. Altered versions must be plainly marked as such, and must not be + misrepresented as being the original software. Since few users + ever read sources, credits must appear in the documentation. + +4. This notice may not be removed or altered. + +=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= +/*- + * Copyright (c) 1994 + * The Regents of the University of California. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * 1. Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * 2. Redistributions in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in the + * documentation and/or other materials provided with the distribution. + * 3. Neither the name of the 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. + * + * @(#)COPYRIGHT 8.1 (Berkeley) 3/16/94 + */ Copied: user/attilio/vmcontention/contrib/llvm/tools/clang/LICENSE.TXT (from r225926, head/contrib/llvm/tools/clang/LICENSE.TXT) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/attilio/vmcontention/contrib/llvm/tools/clang/LICENSE.TXT Sun Oct 2 16:25:51 2011 (r225928, copy of r225926, head/contrib/llvm/tools/clang/LICENSE.TXT) @@ -0,0 +1,63 @@ +============================================================================== +LLVM Release License +============================================================================== +University of Illinois/NCSA +Open Source License + +Copyright (c) 2007-2011 University of Illinois at Urbana-Champaign. +All rights reserved. + +Developed by: + + LLVM Team + + University of Illinois at Urbana-Champaign + + http://llvm.org + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal with +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + + * Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimers. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimers in the + documentation and/or other materials provided with the distribution. + + * Neither the names of the LLVM Team, University of Illinois at + Urbana-Champaign, nor the names of its contributors may be used to + endorse or promote products derived from this Software without specific + prior written permission. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE +SOFTWARE. + +============================================================================== +The LLVM software contains code written by third parties. Such software will +have its own individual LICENSE.TXT file in the directory in which it appears. +This file will describe the copyrights, license, and restrictions which apply +to that code. + +The disclaimer of warranty in the University of Illinois Open Source License +applies to all code in the LLVM Distribution, and nothing in any of the +other licenses gives permission to use the names of the LLVM Team or the +University of Illinois to endorse or promote products derived from this +Software. + +The following pieces of software have additional or alternate copyrights, +licenses, and/or restrictions: + +Program Directory +------- --------- + + Modified: user/attilio/vmcontention/contrib/sendmail/src/main.c ============================================================================== --- user/attilio/vmcontention/contrib/sendmail/src/main.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/contrib/sendmail/src/main.c Sun Oct 2 16:25:51 2011 (r225928) @@ -109,8 +109,8 @@ GIDSET_T InitialGidSet[NGROUPS_MAX]; #if SASL static sasl_callback_t srvcallbacks[] = { - { SASL_CB_VERIFYFILE, &safesaslfile, NULL }, - { SASL_CB_PROXY_POLICY, &proxy_policy, NULL }, + { SASL_CB_VERIFYFILE, (sasl_callback_ft)&safesaslfile, NULL }, + { SASL_CB_PROXY_POLICY, (sasl_callback_ft)&proxy_policy, NULL }, { SASL_CB_LIST_END, NULL, NULL } }; #endif /* SASL */ Modified: user/attilio/vmcontention/contrib/sendmail/src/sendmail.h ============================================================================== --- user/attilio/vmcontention/contrib/sendmail/src/sendmail.h Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/contrib/sendmail/src/sendmail.h Sun Oct 2 16:25:51 2011 (r225928) @@ -133,10 +133,15 @@ SM_UNUSED(static char SmailId[]) = "@(#) # if SASL == 2 || SASL >= 20000 # include +# include # include +# if SASL_VERSION_FULL < 0x020119 +typedef int (*sasl_callback_ft)(void); +# endif # else /* SASL == 2 || SASL >= 20000 */ # include # include +typedef int (*sasl_callback_ft)(void); # endif /* SASL == 2 || SASL >= 20000 */ # if defined(SASL_VERSION_MAJOR) && defined(SASL_VERSION_MINOR) && defined(SASL_VERSION_STEP) # define SASL_VERSION (SASL_VERSION_MAJOR * 10000) + (SASL_VERSION_MINOR * 100) + SASL_VERSION_STEP Modified: user/attilio/vmcontention/contrib/sendmail/src/usersmtp.c ============================================================================== --- user/attilio/vmcontention/contrib/sendmail/src/usersmtp.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/contrib/sendmail/src/usersmtp.c Sun Oct 2 16:25:51 2011 (r225928) @@ -524,15 +524,15 @@ static int attemptauth __P((MAILER *, MC static sasl_callback_t callbacks[] = { - { SASL_CB_GETREALM, &saslgetrealm, NULL }, + { SASL_CB_GETREALM, (sasl_callback_ft)&saslgetrealm, NULL }, #define CB_GETREALM_IDX 0 - { SASL_CB_PASS, &getsecret, NULL }, + { SASL_CB_PASS, (sasl_callback_ft)&getsecret, NULL }, #define CB_PASS_IDX 1 - { SASL_CB_USER, &getsimple, NULL }, + { SASL_CB_USER, (sasl_callback_ft)&getsimple, NULL }, #define CB_USER_IDX 2 - { SASL_CB_AUTHNAME, &getsimple, NULL }, + { SASL_CB_AUTHNAME, (sasl_callback_ft)&getsimple, NULL }, #define CB_AUTHNAME_IDX 3 - { SASL_CB_VERIFYFILE, &safesaslfile, NULL }, + { SASL_CB_VERIFYFILE, (sasl_callback_ft)&safesaslfile, NULL }, #define CB_SAFESASL_IDX 4 { SASL_CB_LIST_END, NULL, NULL } }; Modified: user/attilio/vmcontention/etc/mtree/BSD.usr.dist ============================================================================== --- user/attilio/vmcontention/etc/mtree/BSD.usr.dist Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/etc/mtree/BSD.usr.dist Sun Oct 2 16:25:51 2011 (r225928) @@ -93,6 +93,10 @@ intel_wpi .. .. + llvm + clang + .. + .. ncurses .. ntp Modified: user/attilio/vmcontention/lib/libc/gen/ctermid.3 ============================================================================== --- user/attilio/vmcontention/lib/libc/gen/ctermid.3 Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/lib/libc/gen/ctermid.3 Sun Oct 2 16:25:51 2011 (r225928) @@ -28,7 +28,7 @@ .\" @(#)ctermid.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd October 1, 2011 .Dt CTERMID 3 .Os .Sh NAME @@ -77,7 +77,8 @@ pointer, .Dv NULL is returned. .Pp -The current implementation simply returns +If no suitable lookup of the controlling terminal name can be performed, +this implementation returns .Ql /dev/tty . .Sh RETURN VALUES Upon successful completion, a Modified: user/attilio/vmcontention/lib/libc/gen/ctermid.c ============================================================================== --- user/attilio/vmcontention/lib/libc/gen/ctermid.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/lib/libc/gen/ctermid.c Sun Oct 2 16:25:51 2011 (r225928) @@ -1,6 +1,6 @@ /*- - * Copyright (c) 1990, 1993 - * The Regents of the University of California. All rights reserved. + * Copyright (c) 2011 Ed Schouten + * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -10,14 +10,11 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 4. Neither the name of the University nor the names of its contributors - * 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 + * 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 REGENTS OR CONTRIBUTORS BE LIABLE + * 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) @@ -27,31 +24,47 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)ctermid.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ #include __FBSDID("$FreeBSD$"); -#include +#include +#include +#include + +#include #include +#include #include +#define LEN_PATH_DEV (sizeof(_PATH_DEV) - 1) + char * ctermid(char *s) { - static char def[] = _PATH_TTY; - - if (s) { - bcopy(def, s, sizeof(_PATH_TTY)); - return(s); - } - return(def); + static char def[sizeof(_PATH_DEV) + SPECNAMELEN]; + struct stat sb; + size_t dlen; + int sverrno; + + if (s == NULL) { + s = def; + dlen = sizeof(def) - LEN_PATH_DEV; + } else + dlen = L_ctermid - LEN_PATH_DEV; + strcpy(s, _PATH_TTY); + + /* Attempt to perform a lookup of the actual TTY pathname. */ + sverrno = errno; + if (stat(_PATH_TTY, &sb) == 0 && S_ISCHR(sb.st_mode)) + (void)sysctlbyname("kern.devname", s + LEN_PATH_DEV, + &dlen, &sb.st_rdev, sizeof(sb.st_rdev)); + errno = sverrno; + return (s); } - char * ctermid_r(char *s) { - return (s) ? ctermid(s) : NULL; + + return (s != NULL ? ctermid(s) : NULL); } Modified: user/attilio/vmcontention/share/doc/Makefile ============================================================================== --- user/attilio/vmcontention/share/doc/Makefile Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/share/doc/Makefile Sun Oct 2 16:25:51 2011 (r225928) @@ -3,12 +3,16 @@ .include -SUBDIR= ${_bind9} IPv6 legal ${_roffdocs} +SUBDIR= ${_bind9} IPv6 legal ${_llvm} ${_roffdocs} .if ${MK_BIND} != "no" _bind9= bind9 .endif +.if ${MK_CLANG} != "no" +_llvm= llvm +.endif + # FIXME this is not a real solution ... .if ${MK_GROFF} != "no" _roffdocs= papers psd smm usd Modified: user/attilio/vmcontention/sys/arm/at91/at91_mci.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_mci.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_mci.c Sun Oct 2 16:25:51 2011 (r225928) @@ -243,7 +243,7 @@ at91_mci_attach(device_t dev) child = device_add_child(dev, "mmc", 0); device_set_ivars(dev, &sc->host); err = bus_generic_attach(dev); -out:; +out: if (err) at91_mci_deactivate(dev); return (err); Modified: user/attilio/vmcontention/sys/arm/at91/at91_pio.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_pio.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_pio.c Sun Oct 2 16:25:51 2011 (r225928) @@ -162,7 +162,7 @@ at91_pio_attach(device_t dev) goto out; } sc->cdev->si_drv1 = sc; -out:; +out: if (err) at91_pio_deactivate(dev); return (err); Modified: user/attilio/vmcontention/sys/arm/at91/at91_rtc.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_rtc.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_rtc.c Sun Oct 2 16:25:51 2011 (r225928) @@ -118,7 +118,7 @@ at91_rtc_attach(device_t dev) goto out; } clock_register(dev, 1000000); -out:; +out: if (err) at91_rtc_deactivate(dev); return (err); Modified: user/attilio/vmcontention/sys/arm/at91/at91_spi.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_spi.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_spi.c Sun Oct 2 16:25:51 2011 (r225928) @@ -134,7 +134,7 @@ at91_spi_attach(device_t dev) device_add_child(dev, "spibus", -1); bus_generic_attach(dev); -out:; +out: if (err) at91_spi_deactivate(dev); return (err); @@ -259,7 +259,7 @@ at91_spi_transfer(device_t dev, device_t for (j = 0; j < i; j++) bus_dmamap_unload(sc->dmatag, sc->map[j]); return (err); -out:; +out: for (j = 0; j < i; j++) bus_dmamap_unload(sc->dmatag, sc->map[j]); return (EIO); Modified: user/attilio/vmcontention/sys/arm/at91/at91_ssc.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_ssc.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_ssc.c Sun Oct 2 16:25:51 2011 (r225928) @@ -150,7 +150,7 @@ at91_ssc_attach(device_t dev) WR4(sc, SSC_TFMR, 0x1f | SSC_TFMR_DATDEF | SSC_TFMR_MSFBF | SSC_TFMR_FSOS_NEG_PULSE); -out:; +out: if (err) at91_ssc_deactivate(dev); return (err); Modified: user/attilio/vmcontention/sys/arm/at91/at91_twi.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/at91_twi.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/at91_twi.c Sun Oct 2 16:25:51 2011 (r225928) @@ -139,7 +139,7 @@ at91_twi_attach(device_t dev) device_printf(dev, "could not allocate iicbus instance\n"); /* probe and attach the iicbus */ bus_generic_attach(dev); -out:; +out: if (err) at91_twi_deactivate(dev); return (err); @@ -365,7 +365,7 @@ at91_twi_transfer(device_t dev, struct i if ((err = at91_twi_wait(sc, TWI_SR_TXCOMP))) break; } -out:; +out: if (err) { WR4(sc, TWI_CR, TWI_CR_SWRST); WR4(sc, TWI_CR, TWI_CR_MSEN | TWI_CR_SVDIS); Modified: user/attilio/vmcontention/sys/arm/at91/uart_dev_at91usart.c ============================================================================== --- user/attilio/vmcontention/sys/arm/at91/uart_dev_at91usart.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/at91/uart_dev_at91usart.c Sun Oct 2 16:25:51 2011 (r225928) @@ -406,7 +406,7 @@ at91_usart_bus_attach(struct uart_softc WR4(&sc->sc_bas, USART_IER, USART_CSR_RXRDY); } WR4(&sc->sc_bas, USART_IER, USART_CSR_RXBRK); -errout:; +errout: // XXX bad return (err); } Modified: user/attilio/vmcontention/sys/arm/econa/if_ece.c ============================================================================== --- user/attilio/vmcontention/sys/arm/econa/if_ece.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/arm/econa/if_ece.c Sun Oct 2 16:25:51 2011 (r225928) @@ -441,7 +441,7 @@ ece_attach(device_t dev) taskqueue_start_threads(&sc->sc_tq, 1, PI_NET, "%s taskq", device_get_nameunit(sc->dev)); -out:; +out: if (err) ece_deactivate(dev); if (err && ifp) Modified: user/attilio/vmcontention/sys/dev/ath/ah_osdep.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ah_osdep.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ah_osdep.c Sun Oct 2 16:25:51 2011 (r225928) @@ -128,7 +128,7 @@ void DO_HALDEBUG(struct ath_hal *ah, u_int mask, const char* fmt, ...) { if ((mask == HAL_DEBUG_UNMASKABLE) || - (ah->ah_config.ah_debug & mask) || + (ah != NULL && ah->ah_config.ah_debug & mask) || (ath_hal_debug & mask)) { __va_list ap; va_start(ap, fmt); Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_internal.h ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_internal.h Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_internal.h Sun Oct 2 16:25:51 2011 (r225928) @@ -503,26 +503,15 @@ extern void ath_hal_free(void *); extern int ath_hal_debug; /* Global debug flags */ /* - * This is used for global debugging, when ahp doesn't yet have the - * related debugging state. For example, during probe/attach. - */ -#define HALDEBUG_G(_ah, __m, ...) \ - do { \ - if ((__m) == HAL_DEBUG_UNMASKABLE || \ - ath_hal_debug & (__m)) { \ - DO_HALDEBUG((_ah), (__m), __VA_ARGS__); \ - } \ - } while (0); - -/* - * This is used for local debugging, when ahp isn't NULL and - * thus may have debug flags set. + * The typecast is purely because some callers will pass in + * AH_NULL directly rather than using a NULL ath_hal pointer. */ #define HALDEBUG(_ah, __m, ...) \ do { \ if ((__m) == HAL_DEBUG_UNMASKABLE || \ ath_hal_debug & (__m) || \ - (_ah)->ah_config.ah_debug & (__m)) { \ + ((_ah) != NULL && \ + ((struct ath_hal *) (_ah))->ah_config.ah_debug & (__m))) { \ DO_HALDEBUG((_ah), (__m), __VA_ARGS__); \ } \ } while(0); @@ -531,7 +520,6 @@ extern void DO_HALDEBUG(struct ath_hal * __printflike(3,4); #else #define HALDEBUG(_ah, __m, ...) -#define HALDEBUG_G(_ah, __m, ...) #endif /* AH_DEBUG */ /* Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_regdomain.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_regdomain.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ah_regdomain.c Sun Oct 2 16:25:51 2011 (r225928) @@ -169,7 +169,7 @@ isEepromValid(struct ath_hal *ah) if (regDomainPairs[i].regDmnEnum == rd) return AH_TRUE; } - HALDEBUG_G(ah, HAL_DEBUG_REGDOMAIN, + HALDEBUG(ah, HAL_DEBUG_REGDOMAIN, "%s: invalid regulatory domain/country code 0x%x\n", __func__, rd); return AH_FALSE; } @@ -613,7 +613,7 @@ ath_hal_mapgsm(int sku, int freq) return 1544 + freq; if (sku == SKU_SR9) return 3344 - freq; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot map freq %u unknown gsm sku %u\n", __func__, freq, sku); return freq; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -182,14 +182,14 @@ ar5210Attach(uint16_t devid, HAL_SOFTC s HAL_STATUS ecode; int i; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: devid 0x%x sc %p st %p sh %p\n", __func__, devid, sc, (void*) st, (void*) sh); /* NB: memory is returned zero'd */ ahp = ath_hal_malloc(sizeof (struct ath_hal_5210)); if (ahp == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: no memory for state block\n", __func__); ecode = HAL_ENOMEM; goto bad; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -201,13 +201,13 @@ ar5211Attach(uint16_t devid, HAL_SOFTC s uint16_t eeval; HAL_STATUS ecode; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", __func__, sc, (void*) st, (void*) sh); /* NB: memory is returned zero'd */ ahp = ath_hal_malloc(sizeof (struct ath_hal_5211)); if (ahp == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot allocate memory for state block\n", __func__); ecode = HAL_ENOMEM; goto bad; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5112.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5112.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5112.c Sun Oct 2 16:25:51 2011 (r225928) @@ -611,7 +611,7 @@ getFullPwrTable(uint16_t numPcdacs, uint uint16_t idxR = 1; if (numPcdacs < 2) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: at least 2 pcdac values needed [%d]\n", __func__, numPcdacs); return AH_FALSE; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -319,13 +319,13 @@ ar5212Attach(uint16_t devid, HAL_SOFTC s uint16_t eeval; HAL_STATUS ecode; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", __func__, sc, (void*) st, (void*) sh); /* NB: memory is returned zero'd */ ahp = ath_hal_malloc(sizeof (struct ath_hal_5212)); if (ahp == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot allocate memory for state block\n", __func__); *status = HAL_ENOMEM; return AH_NULL; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5312/ar5312_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -71,13 +71,13 @@ ar5312Attach(uint16_t devid, HAL_SOFTC s uint16_t eeval; HAL_STATUS ecode; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", __func__, sc, st, (void*) sh); /* NB: memory is returned zero'd */ ahp = ath_hal_malloc(sizeof (struct ath_hal_5212)); if (ahp == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot allocate memory for state block\n", __func__); *status = HAL_ENOMEM; return AH_NULL; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -246,7 +246,7 @@ ar5416Attach(uint16_t devid, HAL_SOFTC s HAL_STATUS ecode; HAL_BOOL rfStatus; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", __func__, sc, (void*) st, (void*) sh); /* NB: memory is returned zero'd */ @@ -255,7 +255,7 @@ ar5416Attach(uint16_t devid, HAL_SOFTC s sizeof(ar5416Addac) ); if (ahp5416 == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot allocate memory for state block\n", __func__); *status = HAL_ENOMEM; return AH_NULL; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c Sun Oct 2 16:25:51 2011 (r225928) @@ -68,6 +68,7 @@ HAL_BOOL ar5416GetPendingInterrupts(struct ath_hal *ah, HAL_INT *masked) { uint32_t isr, isr0, isr1, sync_cause = 0; + HAL_CAPABILITIES *pCap = &AH_PRIVATE(ah)->ah_caps; /* * Verify there's a mac interrupt and the RTC is on. @@ -110,44 +111,95 @@ ar5416GetPendingInterrupts(struct ath_ha mask2 |= HAL_INT_CST; if (isr2 & AR_ISR_S2_TSFOOR) mask2 |= HAL_INT_TSFOOR; + + /* + * Don't mask out AR_BCNMISC; instead mask + * out what causes it. + */ + OS_REG_WRITE(ah, AR_ISR_S2, isr2); + isr &= ~AR_ISR_BCNMISC; } - isr = OS_REG_READ(ah, AR_ISR_RAC); if (isr == 0xffffffff) { *masked = 0; return AH_FALSE; } *masked = isr & HAL_INT_COMMON; + + if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM)) + *masked |= HAL_INT_RX; + if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM)) + *masked |= HAL_INT_TX; + + /* + * When doing RX interrupt mitigation, the RXOK bit is set + * in AR_ISR even if the relevant bit in AR_IMR is clear. + * Since this interrupt may be due to another source, don't + * just automatically set HAL_INT_RX if it's set, otherwise + * we could prematurely service the RX queue. + * + * In some cases, the driver can even handle all the RX + * frames just before the mitigation interrupt fires. + * The subsequent RX processing trip will then end up + * processing 0 frames. + */ +#ifdef AH_AR5416_INTERRUPT_MITIGATION + if (isr & AR_ISR_RXERR) + *masked |= HAL_INT_RX; +#else if (isr & (AR_ISR_RXOK | AR_ISR_RXERR)) *masked |= HAL_INT_RX; - if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | AR_ISR_TXEOL)) { +#endif + + if (isr & (AR_ISR_TXOK | AR_ISR_TXDESC | AR_ISR_TXERR | + AR_ISR_TXEOL)) { *masked |= HAL_INT_TX; - isr0 = OS_REG_READ(ah, AR_ISR_S0_S); + + isr0 = OS_REG_READ(ah, AR_ISR_S0); + OS_REG_WRITE(ah, AR_ISR_S0, isr0); + isr1 = OS_REG_READ(ah, AR_ISR_S1); + OS_REG_WRITE(ah, AR_ISR_S1, isr1); + + /* + * Don't clear the primary ISR TX bits, clear + * what causes them (S0/S1.) + */ + isr &= ~(AR_ISR_TXOK | AR_ISR_TXDESC | + AR_ISR_TXERR | AR_ISR_TXEOL); + ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXOK); ahp->ah_intrTxqs |= MS(isr0, AR_ISR_S0_QCU_TXDESC); - isr1 = OS_REG_READ(ah, AR_ISR_S1_S); ahp->ah_intrTxqs |= MS(isr1, AR_ISR_S1_QCU_TXERR); ahp->ah_intrTxqs |= MS(isr1, AR_ISR_S1_QCU_TXEOL); } - if (AR_SREV_MERLIN(ah) || AR_SREV_KITE(ah)) { + if ((isr & AR_ISR_GENTMR) || (! pCap->halAutoSleepSupport)) { uint32_t isr5; - isr5 = OS_REG_READ(ah, AR_ISR_S5_S); - if (isr5 & AR_ISR_S5_TIM_TIMER) - *masked |= HAL_INT_TIM_TIMER; + isr5 = OS_REG_READ(ah, AR_ISR_S5); + OS_REG_WRITE(ah, AR_ISR_S5, isr5); + isr &= ~AR_ISR_GENTMR; + + if (! pCap->halAutoSleepSupport) + if (isr5 & AR_ISR_S5_TIM_TIMER) + *masked |= HAL_INT_TIM_TIMER; } - - /* Interrupt Mitigation on AR5416 */ -#ifdef AH_AR5416_INTERRUPT_MITIGATION - if (isr & (AR_ISR_RXMINTR | AR_ISR_RXINTM)) - *masked |= HAL_INT_RX; - if (isr & (AR_ISR_TXMINTR | AR_ISR_TXINTM)) - *masked |= HAL_INT_TX; -#endif *masked |= mask2; } + /* + * Since we're not using AR_ISR_RAC, clear the status bits + * for handled interrupts here. For bits whose interrupt + * source is a secondary register, those bits should've been + * masked out - instead of those bits being written back, + * their source (ie, the secondary status registers) should + * be cleared. That way there are no race conditions with + * new triggers coming in whilst they've been read/cleared. + */ + OS_REG_WRITE(ah, AR_ISR, isr); + /* Flush previous write */ + OS_REG_READ(ah, AR_ISR); + if (AR_SREV_HOWL(ah)) return AH_TRUE; @@ -216,18 +268,12 @@ ar5416SetInterrupts(struct ath_hal *ah, * Overwrite default mask if Interrupt mitigation * is specified for AR5416 */ - mask = ints & HAL_INT_COMMON; - if (ints & HAL_INT_TX) - mask |= AR_IMR_TXMINTR | AR_IMR_TXINTM; if (ints & HAL_INT_RX) mask |= AR_IMR_RXERR | AR_IMR_RXMINTR | AR_IMR_RXINTM; - if (ints & HAL_INT_TX) { - if (ahp->ah_txErrInterruptMask) - mask |= AR_IMR_TXERR; - if (ahp->ah_txEolInterruptMask) - mask |= AR_IMR_TXEOL; - } #else + if (ints & HAL_INT_RX) + mask |= AR_IMR_RXOK | AR_IMR_RXERR | AR_IMR_RXDESC; +#endif if (ints & HAL_INT_TX) { if (ahp->ah_txOkInterruptMask) mask |= AR_IMR_TXOK; @@ -238,9 +284,6 @@ ar5416SetInterrupts(struct ath_hal *ah, if (ahp->ah_txEolInterruptMask) mask |= AR_IMR_TXEOL; } - if (ints & HAL_INT_RX) - mask |= AR_IMR_RXOK | AR_IMR_RXERR | AR_IMR_RXDESC; -#endif if (ints & (HAL_INT_BMISC)) { mask |= AR_IMR_BCNMISC; if (ints & HAL_INT_TIM) Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c Sun Oct 2 16:25:51 2011 (r225928) @@ -107,7 +107,6 @@ ar5416SetupRxDesc(struct ath_hal *ah, st uint32_t size, u_int flags) { struct ar5416_desc *ads = AR5416DESC(ds); - HAL_CAPABILITIES *pCap = &AH_PRIVATE(ah)->ah_caps; HALASSERT((size &~ AR_BufLen) == 0); @@ -119,8 +118,7 @@ ar5416SetupRxDesc(struct ath_hal *ah, st ads->ds_rxstatus8 &= ~AR_RxDone; /* clear the rest of the status fields */ - if (! pCap->halAutoSleepSupport) - OS_MEMZERO(&(ads->u), sizeof(ads->u)); + OS_MEMZERO(&(ads->u), sizeof(ads->u)); return AH_TRUE; } Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c Sun Oct 2 16:25:51 2011 (r225928) @@ -358,12 +358,32 @@ ar5416Reset(struct ath_hal *ah, HAL_OPMO OS_REG_WRITE(ah, AR_OBS, 8); #ifdef AH_AR5416_INTERRUPT_MITIGATION + /* + * Disable the "general" TX/RX mitigation timers. + */ OS_REG_WRITE(ah, AR_MIRT, 0); - OS_REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 500); - OS_REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 2000); - OS_REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_LAST, 300); - OS_REG_RMW_FIELD(ah, AR_TIMT, AR_TIMT_FIRST, 750); + /* + * This initialises the RX interrupt mitigation timers. + * + * The mitigation timers begin at idle and are triggered + * upon the RXOK of a single frame (or sub-frame, for A-MPDU.) + * Then, the RX mitigation interrupt will fire: + * + * + 250uS after the last RX'ed frame, or + * + 700uS after the first RX'ed frame + * + * Thus, the LAST field dictates the extra latency + * induced by the RX mitigation method and the FIRST + * field dictates how long to delay before firing an + * RX mitigation interrupt. + * + * Please note this only seems to be for RXOK frames; + * not CRC or PHY error frames. + * + */ + OS_REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_LAST, 250); + OS_REG_RMW_FIELD(ah, AR_RIMT, AR_RIMT_FIRST, 700); #endif ar5416InitBB(ah, chan); Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416reg.h ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416reg.h Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416reg.h Sun Oct 2 16:25:51 2011 (r225928) @@ -250,6 +250,7 @@ /* Interrupts */ #define AR_ISR_TXMINTR 0x00080000 /* Maximum interrupt tx rate */ #define AR_ISR_RXMINTR 0x01000000 /* Maximum interrupt rx rate */ +#define AR_ISR_GENTMR 0x10000000 /* OR of generic timer bits in S5 */ #define AR_ISR_TXINTM 0x40000000 /* Tx int after mitigation */ #define AR_ISR_RXINTM 0x80000000 /* Rx int after mitigation */ Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -78,13 +78,13 @@ ar9130Attach(uint16_t devid, HAL_SOFTC s HAL_STATUS ecode; HAL_BOOL rfStatus; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", + HALDEBUG(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", __func__, sc, (void*) st, (void*) sh); /* NB: memory is returned zero'd */ ahp5416 = ath_hal_malloc(sizeof (struct ath_hal_5416)); if (ahp5416 == AH_NULL) { - HALDEBUG_G(AH_NULL, HAL_DEBUG_ANY, + HALDEBUG(AH_NULL, HAL_DEBUG_ANY, "%s: cannot allocate memory for state block\n", __func__); *status = HAL_ENOMEM; return AH_NULL; Modified: user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c ============================================================================== --- user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c Sun Oct 2 16:05:19 2011 (r225927) +++ user/attilio/vmcontention/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c Sun Oct 2 16:25:51 2011 (r225928) @@ -123,13 +123,13 @@ ar9160Attach(uint16_t devid, HAL_SOFTC s HAL_STATUS ecode; HAL_BOOL rfStatus; - HALDEBUG_G(AH_NULL, HAL_DEBUG_ATTACH, "%s: sc %p st %p sh %p\n", *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Sun Oct 2 19:24:13 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6A271065675; Sun, 2 Oct 2011 19:24:13 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id C60048FC0C; Sun, 2 Oct 2011 19:24:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p92JODj3076347; Sun, 2 Oct 2011 19:24:13 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p92JODl3076345; Sun, 2 Oct 2011 19:24:13 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110021924.p92JODl3076345@svn.freebsd.org> From: Gabor Kovesdan Date: Sun, 2 Oct 2011 19:24:13 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225929 - user/gabor/tre-integration/tools/test/regex/sgrep X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 19:24:13 -0000 Author: gabor Date: Sun Oct 2 19:24:13 2011 New Revision: 225929 URL: http://svn.freebsd.org/changeset/base/225929 Log: - Add a very primitive grep-alike that does not add too much overhead to the regex matching and thus can be used for benchmarking purposes Added: user/gabor/tre-integration/tools/test/regex/sgrep/ user/gabor/tre-integration/tools/test/regex/sgrep/Makefile (contents, props changed) user/gabor/tre-integration/tools/test/regex/sgrep/sgrep.c (contents, props changed) Added: user/gabor/tre-integration/tools/test/regex/sgrep/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/gabor/tre-integration/tools/test/regex/sgrep/Makefile Sun Oct 2 19:24:13 2011 (r225929) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +PROG= sgrep +NO_MAN= yes + +WARNS= 6 + +.include Added: user/gabor/tre-integration/tools/test/regex/sgrep/sgrep.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ user/gabor/tre-integration/tools/test/regex/sgrep/sgrep.c Sun Oct 2 19:24:13 2011 (r225929) @@ -0,0 +1,197 @@ +/* $FreeBSD$ */ + +/*- + * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav + * Copyright (C) 2008-2011 Gabor Kovesdan + * 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 + +static regex_t regex; +static size_t fsiz; +static int cflags, eflags; + +static void procfile(const char *path); + +static inline char +*grep_open(const char *path) +{ + struct stat st; + char *buffer; + int flags = 0, fd; + + if ((fd = open(path, O_RDONLY)) == -1) { + printf("Failed opening file %s\n", path); + return NULL; + } + + if ((fstat(fd, &st) == -1) || (st.st_size > OFF_MAX) || + (!S_ISREG(st.st_mode))) { + printf("Failed fstat'ing file %s\n", path); + return NULL; + } + +#ifdef MAP_PREFAULT_READ + flags |= MAP_PREFAULT_READ; +#endif + fsiz = st.st_size; + buffer = mmap(NULL, fsiz, PROT_READ, flags, fd, (off_t)0); + if (buffer == MAP_FAILED) { + printf("Failed mmap'ing file %s\n", path); + return NULL; + } + madvise(buffer, st.st_size, MADV_SEQUENTIAL); + return (buffer); +} + +static inline void +grep_tree(char **argv) +{ + FTS *fts; + FTSENT *p; + int fts_flags = 0; + + fts_flags |= FTS_LOGICAL | FTS_NOSTAT | FTS_NOCHDIR; + + if (!(fts = fts_open(argv, fts_flags, NULL))) { + printf("Failed fts_open\n"); + err(EXIT_FAILURE, "fts_open"); + } + + while ((p = fts_read(fts)) != NULL) + switch (p->fts_info) { + case FTS_DNR: + /* FALLTHROUGH */ + case FTS_ERR: + /* FALLTHROUGH */ + case FTS_D: + /* FALLTHROUGH */ + case FTS_DP: + /* FALLTHROUGH */ + case FTS_DC: + break; + default: + procfile(p->fts_path); + } + + fts_close(fts); +} + +static inline void +procfile(const char *path) +{ + regmatch_t pmatch; + regoff_t st = 0; + char *data; + + data = grep_open(path); + if (data == NULL) + return; + + printf("Processing file %s\n", path); + putchar('('); + while (st != (long long)fsiz) { + int ret; + + pmatch.rm_so = st; + pmatch.rm_eo = fsiz; + + ret = regexec(®ex, data, 1, &pmatch, eflags); + if (ret == REG_NOMATCH) + break; + printf("(%ld,%ld)", pmatch.rm_so, pmatch.rm_eo); + if (pmatch.rm_so == pmatch.rm_eo) + pmatch.rm_eo++; + st = pmatch.rm_eo; + } + putchar(')'); +} + +int +main(int argc, char *argv[]) +{ + const char *pat = NULL; + int c, ret; + bool dir = false; + + setlocale(LC_ALL, ""); + + cflags = REG_NEWLINE; + eflags = REG_STARTEND; + + while (((c = getopt(argc, argv, "e:EFr")) != -1)) + switch (c) { + case 'e': + pat = strdup(optarg); + if (pat == NULL) + return (EXIT_FAILURE); + case 'E': + cflags |= REG_EXTENDED; + break; + case 'F': + cflags |= REG_NOSPEC; + break; + case 'r': + dir = true; + } + + argc -= optind; + argv += optind; + + if (argc == 0) { + printf("Missing argument\n"); + return (EXIT_FAILURE); + } + + ret = regcomp(®ex, pat, cflags); + if (ret != 0) { + printf("Wrong regex\n"); + return (EXIT_FAILURE); + } + + if (dir) + grep_tree(argv); + else + procfile(argv[0]); + + return (EXIT_SUCCESS); +} From owner-svn-src-user@FreeBSD.ORG Sun Oct 2 20:52:28 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C9A5A1065672; Sun, 2 Oct 2011 20:52:28 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B956E8FC14; Sun, 2 Oct 2011 20:52:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p92KqStG079025; Sun, 2 Oct 2011 20:52:28 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p92KqSW6079023; Sun, 2 Oct 2011 20:52:28 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110022052.p92KqSW6079023@svn.freebsd.org> From: Gabor Kovesdan Date: Sun, 2 Oct 2011 20:52:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225930 - user/gabor/tre-integration/contrib/tre/lib X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Oct 2011 20:52:28 -0000 Author: gabor Date: Sun Oct 2 20:52:28 2011 New Revision: 225930 URL: http://svn.freebsd.org/changeset/base/225930 Log: - Collating elements and equivalence classes are not necessarily fixed-length, so fall back to the full NFA on embedded brackets Modified: user/gabor/tre-integration/contrib/tre/lib/tre-heuristic.c Modified: user/gabor/tre-integration/contrib/tre/lib/tre-heuristic.c ============================================================================== --- user/gabor/tre-integration/contrib/tre/lib/tre-heuristic.c Sun Oct 2 19:24:13 2011 (r225929) +++ user/gabor/tre-integration/contrib/tre/lib/tre-heuristic.c Sun Oct 2 20:52:28 2011 (r225930) @@ -39,13 +39,6 @@ #include "tre-internal.h" #include "xmalloc.h" -#ifdef TRE_WCHAR -#define tre_strnstr(big, s1, little, s2) \ - memmem(big, s1 * sizeof(tre_char_t), little, s2 * sizeof(tre_char_t)) -#else -#define tre_strnstr(big, s1, little, s2) strnstr(big, little, s1) -#endif - /* * A full regex implementation requires a finite state automaton * and using an automaton is always about a trade-off. A DFA is @@ -84,38 +77,21 @@ #define PARSE_BRACKETS \ { \ - tre_char_t *tmp; \ - \ i++; \ if (regex[i] == TRE_CHAR('^')) \ i++; \ if (regex[i] == TRE_CHAR(']')) \ i++; \ \ - do \ - { \ - tmp = tre_strnstr(®ex[i], len - i, TRE_CHAR("[.].]"), 5); \ - if (tmp) \ - { \ - i += (tmp - regex); \ - regex = tmp; \ - } \ - } while (tmp != NULL); \ - \ - do \ + for (; i < len; i++) \ { \ - tmp = tre_strnstr(®ex[i], len - i, TRE_CHAR("[=]=]"), 5); \ - if (tmp) \ - { \ - i += (tmp - regex); \ - regex = tmp; \ - } \ - } while (tmp != NULL); \ - \ - for (; (i != TRE_CHAR(']')) && (i < len); i++); \ + if (regex[i] == TRE_CHAR('[')) \ + return REG_BADPAT; \ + if (regex[i] == TRE_CHAR(']')) \ + break; \ + } \ } - /* * Finishes a segment (fixed-length text fragment). */ From owner-svn-src-user@FreeBSD.ORG Mon Oct 3 14:11:54 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 706B0106566B; Mon, 3 Oct 2011 14:11:54 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 60EAF8FC08; Mon, 3 Oct 2011 14:11:54 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p93EBsdl013585; Mon, 3 Oct 2011 14:11:54 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p93EBsM8013582; Mon, 3 Oct 2011 14:11:54 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110031411.p93EBsM8013582@svn.freebsd.org> From: Adrian Chadd Date: Mon, 3 Oct 2011 14:11:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225935 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2011 14:11:54 -0000 Author: adrian Date: Mon Oct 3 14:11:54 2011 New Revision: 225935 URL: http://svn.freebsd.org/changeset/base/225935 Log: Add missing ATH_PCU_LOCK_DESTROY calls. Noticed by: ray Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c Mon Oct 3 12:12:03 2011 (r225934) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_ahb.c Mon Oct 3 14:11:54 2011 (r225935) @@ -236,6 +236,7 @@ ath_ahb_detach(device_t dev) if (sc->sc_eepromdata) free(sc->sc_eepromdata, M_TEMP); + ATH_PCU_LOCK_DESTROY(sc); ATH_LOCK_DESTROY(sc); return (0); Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c Mon Oct 3 12:12:03 2011 (r225934) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_pci.c Mon Oct 3 14:11:54 2011 (r225935) @@ -201,6 +201,7 @@ ath_pci_detach(device_t dev) bus_dma_tag_destroy(sc->sc_dmat); bus_release_resource(dev, SYS_RES_MEMORY, BS_BAR, psc->sc_sr); + ATH_PCU_LOCK_DESTROY(sc); ATH_LOCK_DESTROY(sc); return (0); From owner-svn-src-user@FreeBSD.ORG Mon Oct 3 16:02:56 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2BAA71065670; Mon, 3 Oct 2011 16:02:56 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1191E8FC16; Mon, 3 Oct 2011 16:02:56 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p93G2twk017534; Mon, 3 Oct 2011 16:02:55 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p93G2tAO017530; Mon, 3 Oct 2011 16:02:55 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110031602.p93G2tAO017530@svn.freebsd.org> From: Adrian Chadd Date: Mon, 3 Oct 2011 16:02:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225939 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 Oct 2011 16:02:56 -0000 Author: adrian Date: Mon Oct 3 16:02:55 2011 New Revision: 225939 URL: http://svn.freebsd.org/changeset/base/225939 Log: Remove some duplicate code. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.h Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Mon Oct 3 15:32:15 2011 (r225938) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Mon Oct 3 16:02:55 2011 (r225939) @@ -3376,7 +3376,7 @@ ath_node_cleanup(struct ieee80211_node * struct ath_softc *sc = ic->ic_ifp->if_softc; /* Cleanup ath_tid, free unused bufs, unlink bufs in TXQ */ - ath_tx_tid_cleanup(sc, ATH_NODE(ni)); + ath_tx_node_flush(sc, ATH_NODE(ni)); ath_rate_node_cleanup(sc, ATH_NODE(ni)); sc->sc_node_cleanup(ni); } Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c Mon Oct 3 15:32:15 2011 (r225938) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.c Mon Oct 3 16:02:55 2011 (r225939) @@ -2235,13 +2235,6 @@ ath_tx_tid_resume(struct ath_softc *sc, ath_txq_sched(sc, sc->sc_ac2q[tid->ac]); } -static void -ath_tx_tid_txq_unmark(struct ath_softc *sc, struct ath_node *an, - int tid) -{ - /* XXX TODO */ -} - /* * Free any packets currently pending in the software TX queue. * @@ -2413,31 +2406,6 @@ ath_tx_txq_drain(struct ath_softc *sc, s } /* - * Free the per-TID node state. - * - * This frees any packets currently in the software queue and frees - * any other TID state. - */ -void -ath_tx_tid_cleanup(struct ath_softc *sc, struct ath_node *an) -{ - int tid; - struct ath_tid *atid; - - DPRINTF(sc, ATH_DEBUG_SW_TX_CTRL, "%s: node %p: cleaning up\n", - __func__, an); - - /* Flush all packets currently in the sw queues for this node */ - ath_tx_node_flush(sc, an); - - for (tid = 0; tid < IEEE80211_TID_SIZE; tid++) { - atid = &an->an_tid[tid]; - /* Mark hw-queued packets as having no parent now */ - ath_tx_tid_txq_unmark(sc, an, tid); - } -} - -/* * Handle completion of non-aggregate session frames. */ void Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.h ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.h Mon Oct 3 15:32:15 2011 (r225938) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_tx.h Mon Oct 3 16:02:55 2011 (r225939) @@ -95,7 +95,6 @@ extern int ath_raw_xmit(struct ieee80211 extern void ath_tx_swq(struct ath_softc *sc, struct ieee80211_node *ni, struct ath_txq *txq, struct ath_buf *bf); extern void ath_tx_tid_init(struct ath_softc *sc, struct ath_node *an); -extern void ath_tx_tid_cleanup(struct ath_softc *sc, struct ath_node *an); extern void ath_tx_tid_hw_queue_aggr(struct ath_softc *sc, struct ath_node *an, struct ath_tid *tid); extern void ath_tx_tid_hw_queue_norm(struct ath_softc *sc, struct ath_node *an, From owner-svn-src-user@FreeBSD.ORG Tue Oct 4 04:00:30 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 59C50106564A; Tue, 4 Oct 2011 04:00:30 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4A5AC8FC13; Tue, 4 Oct 2011 04:00:30 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p9440UXQ041138; Tue, 4 Oct 2011 04:00:30 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p9440Um4041136; Tue, 4 Oct 2011 04:00:30 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110040400.p9440Um4041136@svn.freebsd.org> From: Adrian Chadd Date: Tue, 4 Oct 2011 04:00:30 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225958 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2011 04:00:30 -0000 Author: adrian Date: Tue Oct 4 04:00:29 2011 New Revision: 225958 URL: http://svn.freebsd.org/changeset/base/225958 Log: Add a debugging twiddle - something to force a bstuck condition. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c Tue Oct 4 00:32:10 2011 (r225957) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c Tue Oct 4 04:00:29 2011 (r225958) @@ -449,6 +449,24 @@ ath_sysctl_setcca(SYSCTL_HANDLER_ARGS) } #endif /* IEEE80211_SUPPORT_TDMA */ +static int +ath_sysctl_forcebstuck(SYSCTL_HANDLER_ARGS) +{ + struct ath_softc *sc = arg1; + int val = 0; + int error; + + error = sysctl_handle_int(oidp, &val, 0, req); + if (error || !req->newptr) + return error; + if (val == 0) + return 0; + + taskqueue_enqueue_fast(sc->sc_tq, &sc->sc_bstucktask); + val = 0; + return 0; +} + void ath_sysctlattach(struct ath_softc *sc) { @@ -532,6 +550,10 @@ ath_sysctlattach(struct ath_softc *sc) "txagg", CTLTYPE_INT | CTLFLAG_RW, sc, 0, ath_sysctl_txagg, "I", ""); + SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, + "forcebstuck", CTLTYPE_INT | CTLFLAG_RW, sc, 0, + ath_sysctl_forcebstuck, "I", ""); + if (ath_hal_hasintmit(ah)) { SYSCTL_ADD_PROC(ctx, SYSCTL_CHILDREN(tree), OID_AUTO, "intmit", CTLTYPE_INT | CTLFLAG_RW, sc, 0, From owner-svn-src-user@FreeBSD.ORG Tue Oct 4 06:46:13 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 40F41106566C; Tue, 4 Oct 2011 06:46:13 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3050B8FC15; Tue, 4 Oct 2011 06:46:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p946kDTU046209; Tue, 4 Oct 2011 06:46:13 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p946kCCh046204; Tue, 4 Oct 2011 06:46:12 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110040646.p946kCCh046204@svn.freebsd.org> From: Adrian Chadd Date: Tue, 4 Oct 2011 06:46:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225960 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2011 06:46:13 -0000 Author: adrian Date: Tue Oct 4 06:46:12 2011 New Revision: 225960 URL: http://svn.freebsd.org/changeset/base/225960 Log: Begin fleshing out queue handling during reset conditions. Right now, all TX/RX queues are flushed during a reset. For non-11n and 11n in non-addba, this just shows up as packet loss. But for 11n + addba, this introduces holes in the TX/RX BAW tracking algorithm and can result in traffic actually hanging. The eventual aim here is to select whether to flush the TX/RX queue during a reset, or handle the RX frames and reschedule the incomplete TX frames. There are complications however! * If the flush is due to a stuck beacon or non-opmode config change (eg interference mitigation) then it's pretty clear, we can reschedule TX frames. * If the flush is due to a frequency change, then yes, we have to flush everything and (I -think-) re-establish association and TX/RX addba state. I'll have to go over the spec (and implementations) to see what to do. * If the flush is due to a channel width change, then we could in theory just handle all RX frames and resubmit all the TX frames for retransmission after correctly adjusting the rate control for the new width/GI. However we don't currently have a separate call for that - it's just done as a channel change. * On a reset, we need to stop the RX DMA (so the MAC doesn't ACK any further frames) before we handle what's in the queue - and we need to ensure that the PCU and PCU RX DMA isn't re-enabled. * If _any_ frames are dropped in an active aggregation session (and it's not a full reset due to a channel change) then we're going to have to TX a BAR frame. This is likely going to crop up if we're doing things like channel width management as I bet the general implementations out there expect to be able to do this without dropping the association and addba state. In addition, we can't just call ath_rx_proc() from ath_reset() as things stand because it's quite possible that ath_reset() will be called from a non- taskqueue context (ie, an ioctl via net80211, or a net80211 task/callout.) So before we can properly handle RX (and maybe TX, I haven't yet fully audited all of that) we'll need to introduce the PCU locking to ensure things don't race. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c user/adrian/if_ath_tx/sys/dev/ath/if_ath_misc.h user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Tue Oct 4 04:13:34 2011 (r225959) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Tue Oct 4 06:46:12 2011 (r225960) @@ -181,7 +181,7 @@ static void ath_tx_proc_q0(void *, int); static void ath_tx_proc_q0123(void *, int); static void ath_tx_proc(void *, int); static int ath_chan_set(struct ath_softc *, struct ieee80211_channel *); -static void ath_draintxq(struct ath_softc *); +static void ath_draintxq(struct ath_softc *, ATH_RESET_TYPE reset_type); static void ath_stoprecv(struct ath_softc *); static int ath_startrecv(struct ath_softc *); static void ath_chan_change(struct ath_softc *, struct ieee80211_channel *); @@ -1136,7 +1136,7 @@ ath_vap_delete(struct ieee80211vap *vap) * the vap state by any frames pending on the tx queues. */ ath_hal_intrset(ah, 0); /* disable interrupts */ - ath_draintxq(sc); /* stop hw xmit side */ + ath_draintxq(sc, ATH_RESET_DEFAULT); /* stop hw xmit side */ /* XXX Do all frames from all vaps/nodes need draining here? */ ath_stoprecv(sc); /* stop recv side */ } @@ -1160,7 +1160,7 @@ ath_vap_delete(struct ieee80211vap *vap) * call!) */ - ath_draintxq(sc); + ath_draintxq(sc, ATH_RESET_DEFAULT); ATH_LOCK(sc); /* @@ -1563,7 +1563,7 @@ ath_fatal_proc(void *arg, int pending) state[0], state[1] , state[2], state[3], state[4], state[5]); } - ath_reset(ifp); + ath_reset(ifp, ATH_RESET_NOLOSS); } static void @@ -1623,7 +1623,7 @@ ath_bmiss_proc(void *arg, int pending) if (ath_hal_gethangstate(sc->sc_ah, 0xff, &hangs) && hangs != 0) { if_printf(ifp, "bb hang detected (0x%x), resetting\n", hangs); - ath_reset(ifp); + ath_reset(ifp, ATH_RESET_NOLOSS); } else ieee80211_beacon_miss(ifp->if_l2com); } @@ -1803,7 +1803,7 @@ ath_stop_locked(struct ifnet *ifp) } ath_hal_intrset(ah, 0); } - ath_draintxq(sc); + ath_draintxq(sc, ATH_RESET_DEFAULT); if (!sc->sc_invalid) { ath_stoprecv(sc); ath_hal_phydisable(ah); @@ -1831,7 +1831,7 @@ ath_stop(struct ifnet *ifp) * to reset or reload hardware state. */ int -ath_reset(struct ifnet *ifp) +ath_reset(struct ifnet *ifp, ATH_RESET_TYPE reset_type) { struct ath_softc *sc = ifp->if_softc; struct ieee80211com *ic = ifp->if_l2com; @@ -1841,7 +1841,12 @@ ath_reset(struct ifnet *ifp) DPRINTF(sc, ATH_DEBUG_RESET, "%s: called\n", __func__); ath_hal_intrset(ah, 0); /* disable interrupts */ - ath_draintxq(sc); /* stop xmit side */ + ath_draintxq(sc, reset_type); /* stop xmit side */ + /* + * XXX Don't flush if ATH_RESET_NOLOSS;but we have to first + * XXX need to ensure this doesn't race with an outstanding + * XXX taskqueue call. + */ ath_stoprecv(sc); /* stop recv side */ ath_settkipmic(sc); /* configure TKIP MIC handling */ /* NB: indicate channel change so we do a full reset */ @@ -1894,7 +1899,8 @@ ath_reset_vap(struct ieee80211vap *vap, ath_hal_settxpowlimit(ah, ic->ic_txpowlimit); return 0; } - return ath_reset(ifp); + /* XXX? Full or NOLOSS? */ + return ath_reset(ifp, ATH_RESET_FULL); } struct ath_buf * @@ -2874,7 +2880,11 @@ ath_bstuck_proc(void *arg, int pending) sc->sc_bmisscount); sc->sc_stats.ast_bstuck++; - ath_reset(ifp); + /* + * This assumes that there's no simultaneous channel mode change + * occuring. + */ + ath_reset(ifp, ATH_RESET_NOLOSS); } /* @@ -4881,7 +4891,7 @@ ath_tx_stopdma(struct ath_softc *sc, str * Drain the transmit queues and reclaim resources. */ static void -ath_draintxq(struct ath_softc *sc) +ath_draintxq(struct ath_softc *sc, ATH_RESET_TYPE reset_type) { struct ath_hal *ah = sc->sc_ah; struct ifnet *ifp = sc->sc_ifp; @@ -5033,7 +5043,7 @@ ath_chan_set(struct ath_softc *sc, struc * the relevant bits of the h/w. */ ath_hal_intrset(ah, 0); /* disable interrupts */ - ath_draintxq(sc); /* clear pending tx frames */ + ath_draintxq(sc, ATH_RESET_FULL); /* clear pending tx frames */ ath_stoprecv(sc); /* turn off frame recv */ if (!ath_hal_reset(ah, sc->sc_opmode, chan, AH_TRUE, &status)) { if_printf(ifp, "%s: unable to reset " @@ -5123,7 +5133,7 @@ ath_calibrate(void *arg) DPRINTF(sc, ATH_DEBUG_CALIBRATE, "%s: rfgain change\n", __func__); sc->sc_stats.ast_per_rfgain++; - ath_reset(ifp); + ath_reset(ifp, ATH_RESET_NOLOSS); } /* * If this long cal is after an idle period, then @@ -5789,7 +5799,7 @@ ath_watchdog(void *arg) hangs & 0xff ? "bb" : "mac", hangs); } else if_printf(ifp, "device timeout\n"); - ath_reset(ifp); + ath_reset(ifp, ATH_RESET_NOLOSS); ifp->if_oerrors++; sc->sc_stats.ast_watchdog++; } Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_misc.h ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_misc.h Tue Oct 4 04:13:34 2011 (r225959) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_misc.h Tue Oct 4 06:46:12 2011 (r225960) @@ -56,7 +56,7 @@ extern struct ath_buf * ath_buf_clone(st const struct ath_buf *bf); extern void ath_freebuf(struct ath_softc *sc, struct ath_buf *bf); -extern int ath_reset(struct ifnet *); +extern int ath_reset(struct ifnet *, ATH_RESET_TYPE); extern void ath_tx_draintxq(struct ath_softc *sc, struct ath_txq *txq); extern void ath_tx_default_comp(struct ath_softc *sc, struct ath_buf *bf, int fail); Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c Tue Oct 4 04:13:34 2011 (r225959) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath_sysctl.c Tue Oct 4 06:46:12 2011 (r225960) @@ -263,7 +263,8 @@ ath_sysctl_tpscale(SYSCTL_HANDLER_ARGS) if (error || !req->newptr) return error; return !ath_hal_settpscale(sc->sc_ah, scale) ? EINVAL : - (ifp->if_drv_flags & IFF_DRV_RUNNING) ? ath_reset(ifp) : 0; + (ifp->if_drv_flags & IFF_DRV_RUNNING) ? + ath_reset(ifp, ATH_RESET_NOLOSS) : 0; } static int @@ -295,7 +296,8 @@ ath_sysctl_rfkill(SYSCTL_HANDLER_ARGS) return 0; if (!ath_hal_setrfkill(ah, rfkill)) return EINVAL; - return (ifp->if_drv_flags & IFF_DRV_RUNNING) ? ath_reset(ifp) : 0; + return (ifp->if_drv_flags & IFF_DRV_RUNNING) ? + ath_reset(ifp, ATH_RESET_FULL) : 0; } static int @@ -428,7 +430,7 @@ ath_sysctl_intmit(SYSCTL_HANDLER_ARGS) * things in an inconsistent state. */ if (sc->sc_ifp->if_drv_flags & IFF_DRV_RUNNING) - ath_reset(sc->sc_ifp); + ath_reset(sc->sc_ifp, ATH_RESET_NOLOSS); return 0; } Modified: user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Tue Oct 4 04:13:34 2011 (r225959) +++ user/adrian/if_ath_tx/sys/dev/ath/if_athvar.h Tue Oct 4 06:46:12 2011 (r225960) @@ -332,6 +332,16 @@ struct ath_vap { struct taskqueue; struct ath_tx99; +/* + * Whether to reset the TX/RX queue with or without + * a queue flush. + */ +typedef enum { + ATH_RESET_DEFAULT = 0, + ATH_RESET_NOLOSS = 1, + ATH_RESET_FULL = 2, +} ATH_RESET_TYPE; + struct ath_softc { struct ifnet *sc_ifp; /* interface common */ struct ath_stats sc_stats; /* interface statistics */ From owner-svn-src-user@FreeBSD.ORG Tue Oct 4 17:32:01 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D99F4106566B; Tue, 4 Oct 2011 17:32:01 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B03348FC0C; Tue, 4 Oct 2011 17:32:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p94HW1xT072127; Tue, 4 Oct 2011 17:32:01 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p94HW1hG072125; Tue, 4 Oct 2011 17:32:01 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201110041732.p94HW1hG072125@svn.freebsd.org> From: Adrian Chadd Date: Tue, 4 Oct 2011 17:32:01 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226017 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2011 17:32:01 -0000 Author: adrian Date: Tue Oct 4 17:32:01 2011 New Revision: 226017 URL: http://svn.freebsd.org/changeset/base/226017 Log: Don't bother updating the txq active bitmap every call to ath_intr(), just do it when HAL_INT_TX is set. This should have the same behaviour. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Tue Oct 4 17:27:10 2011 (r226016) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Tue Oct 4 17:32:01 2011 (r226017) @@ -1382,29 +1382,6 @@ ath_intr(void *arg) ah->ah_intrstate[6]); status &= sc->sc_imask; /* discard unasked for bits */ - /* - * This has now updated the txqactive bits, so - * we should fetch them from the HAL and merge them - * into sc->sc_txq_active. That way we won't miss out - * where one CPU clears the txq bit whilst the other CPU - * sets it. - * - * The HAL updates it if the relevant TX status bits are set - * in the status registers, regardless of whether the status - * caused the interrupt and/or is set in sc_imask. - * Hence we update the bits before we check for status == 0. - */ - ATH_LOCK(sc); - /* - * This returns the txq bits in the given mask and blanks them. - * Since it's only ever set and cleared by the HAL and we are now - * doing it in ath_intr(), it's effectively non-racey. - */ - txqs = 0xffffffff; - ath_hal_gettxintrtxqs(sc->sc_ah, &txqs); - sc->sc_txq_active |= txqs; - ATH_UNLOCK(sc); - /* Short-circuit un-handled interrupts */ if (status == 0x0) return; @@ -1501,6 +1478,17 @@ ath_intr(void *arg) if (status & HAL_INT_TX) { sc->sc_stats.ast_tx_intr++; taskqueue_enqueue_fast(sc->sc_tq, &sc->sc_txtask); + + /* + * Grab all the currently set bits in the HAL txq bitmap + * and blank them. This is the only place we should be + * doing this. + */ + ATH_LOCK(sc); + txqs = 0xffffffff; + ath_hal_gettxintrtxqs(sc->sc_ah, &txqs); + sc->sc_txq_active |= txqs; + ATH_UNLOCK(sc); } if (status & HAL_INT_BMISS) { sc->sc_stats.ast_bmiss++; From owner-svn-src-user@FreeBSD.ORG Thu Oct 6 11:17:55 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DF01106566B; Thu, 6 Oct 2011 11:17:55 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 3E5BC8FC13; Thu, 6 Oct 2011 11:17:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p96BHtBs058199; Thu, 6 Oct 2011 11:17:55 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p96BHtED058197; Thu, 6 Oct 2011 11:17:55 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110061117.p96BHtED058197@svn.freebsd.org> From: Gabor Kovesdan Date: Thu, 6 Oct 2011 11:17:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226055 - user/gabor/tre-integration/lib/libc/regex X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Oct 2011 11:17:55 -0000 Author: gabor Date: Thu Oct 6 11:17:54 2011 New Revision: 226055 URL: http://svn.freebsd.org/changeset/base/226055 Log: - Eliminate erroneous .El Modified: user/gabor/tre-integration/lib/libc/regex/regex.3 Modified: user/gabor/tre-integration/lib/libc/regex/regex.3 ============================================================================== --- user/gabor/tre-integration/lib/libc/regex/regex.3 Thu Oct 6 11:01:31 2011 (r226054) +++ user/gabor/tre-integration/lib/libc/regex/regex.3 Thu Oct 6 11:17:54 2011 (r226055) @@ -585,7 +585,6 @@ Out of memory. .It Dv REG_BADRPT Invalid use of repetition operators: two or more repetition operators have been chained in an undefined way. -.El .Sh SEE ALSO .Xr grep 1 , .Xr re_format 7 From owner-svn-src-user@FreeBSD.ORG Thu Oct 6 11:20:21 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DF374106564A; Thu, 6 Oct 2011 11:20:21 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id CE9DF8FC0C; Thu, 6 Oct 2011 11:20:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p96BKL0J058312; Thu, 6 Oct 2011 11:20:21 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p96BKLJN058310; Thu, 6 Oct 2011 11:20:21 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110061120.p96BKLJN058310@svn.freebsd.org> From: Gabor Kovesdan Date: Thu, 6 Oct 2011 11:20:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226056 - user/gabor/tre-integration/lib/libc/regex X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Oct 2011 11:20:22 -0000 Author: gabor Date: Thu Oct 6 11:20:21 2011 New Revision: 226056 URL: http://svn.freebsd.org/changeset/base/226056 Log: - Clean up and update manual page Modified: user/gabor/tre-integration/lib/libc/regex/re_format.7 Modified: user/gabor/tre-integration/lib/libc/regex/re_format.7 ============================================================================== --- user/gabor/tre-integration/lib/libc/regex/re_format.7 Thu Oct 6 11:17:54 2011 (r226055) +++ user/gabor/tre-integration/lib/libc/regex/re_format.7 Thu Oct 6 11:20:21 2011 (r226056) @@ -1,3 +1,4 @@ +.\" Copyright (c) 2011 Gabor Kovesdan . .\" Copyright (c) 1992, 1993, 1994 Henry Spencer. .\" Copyright (c) 1992, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -36,7 +37,7 @@ .\" @(#)re_format.7 8.3 (Berkeley) 3/20/94 .\" $FreeBSD$ .\" -.Dd March 20, 1994 +.Dd October 6, 2011 .Dt RE_FORMAT 7 .Os .Sh NAME @@ -48,32 +49,33 @@ Regular expressions as defined in .St -p1003.2 , come in two forms: -modern REs (roughly those of +modern regular expressions (roughly those of .Xr egrep 1 ; 1003.2 calls these .Dq extended -REs) -and obsolete REs (roughly those of +regular expressions or +.Dq EREs ) +and obsolete regular expressionss (roughly those of .Xr ed 1 ; -1003.2 +1003.2 calls these .Dq basic -REs). -Obsolete REs mostly exist for backward compatibility in some old programs; +regular expressions or +.Dq BREs ) . +BREs mostly exist for backward compatibility in some old programs; they will be discussed at the end. .St -p1003.2 -leaves some aspects of RE syntax and semantics open; -`\(dd' marks decisions on these aspects that -may not be fully portable to other -.St -p1003.2 -implementations. +leaves some aspects of regular expression syntax and semantics open, +so this manual will describe the behavior of this implementation +instead of just reproducing the same iformation that is already +available in the standard. .Pp -A (modern) RE is one\(dd or more non-empty\(dd +An extended regular expression is one or more non-empty .Em branches , separated by .Ql \&| . It matches anything that matches one of the branches. .Pp -A branch is one\(dd or more +A branch is one or more .Em pieces , concatenated. It matches a match for the first, followed by a match for the second, etc. @@ -81,7 +83,7 @@ It matches a match for the first, follow A piece is an .Em atom possibly followed -by a single\(dd +by a single .Ql \&* , .Ql \&+ , .Ql \&? , @@ -99,42 +101,30 @@ matches a sequence of 0 or 1 matches of .Pp A .Em bound -is -.Ql \&{ -followed by an unsigned decimal integer, -possibly followed by -.Ql \&, -possibly followed by another unsigned decimal integer, -always followed by -.Ql \&} . +is an expression that allows the repetition of the atom +according to the specified constraints. +A +.Em bound +starts with an opening brace +.Pq Ql \&{ +character, followed by an unsigned decimal integer, an optional comma +.Pq Ql \&, +followed by another unsigned decimal integer, +always followed by a closing brace +.Pq Ql \&} . The integers must lie between 0 and .Dv RE_DUP_MAX -(255\(dd) inclusive, -and if there are two of them, the first may not exceed the second. -An atom followed by a bound containing one integer -.Em i -and no comma matches -a sequence of exactly -.Em i -matches of the atom. -An atom followed by a bound -containing one integer -.Em i -and a comma matches -a sequence of -.Em i -or more matches of the atom. -An atom followed by a bound -containing two integers -.Em i -and -.Em j -matches -a sequence of -.Em i -through -.Em j -(inclusive) matches of the atom. +inclusive. +The integers restrict the minimum and maximum repetition count of the atom +and the first number may not exceed the second. +The second integer is optional and if it is missing but the comma is present, +there is no upper limit of the repetition. +If there is only one integer specified and the comma is also missing, +exactly the specified number of repetitions is required. +In this implementation, +it is also possible to leave out the first integer and only specify the +comma and the upper limit. +In this case 0 is implied as a minimum repetition count. .Pp An atom is a regular expression enclosed in .Ql () @@ -142,7 +132,7 @@ An atom is a regular expression enclosed regular expression), an empty set of .Ql () -(matching the null string)\(dd, +(matching the null string), a .Em bracket expression (see below), @@ -155,47 +145,46 @@ a .Ql \e followed by one of the characters .Ql ^.[$()|*+?{\e -(matching that character taken as an ordinary character), -a -.Ql \e -followed by any other character\(dd -(matching that character taken as an ordinary character, -as if the -.Ql \e -had not been present\(dd), -or a single character with no other significance (matching that character). +(matching the escaped character taken as an ordinary character) +or a single character with no other significance (matching the +same character). A .Ql \&{ followed by a character other than a digit is an ordinary -character, not the beginning of a bound\(dd. -It is illegal to end an RE with +character, not the beginning of a bound. +It is illegal to end a regular expression with .Ql \e . .Pp A .Em bracket expression is a list of characters enclosed in .Ql [] . -It normally matches any single character from the list (but see below). +It always matches a single character but the set of matching characters +is determined by more specific rules. If the list begins with .Ql \&^ , -it matches any single character -(but see below) -.Em not -from the rest of the list. -If two characters in the list are separated by +it matches any single character that is not present in the rest of the +list. +If the list does not begin with +.Ql \&^ , +normally all characters that are listed in the brackets will match. +An exception from this is the use of collating ranges. +If there is a .Ql \&- , -this is shorthand -for the full -.Em range -of characters between those two (inclusive) in the -collating sequence, -.No e.g. Ql [0-9] -in ASCII matches any decimal digit. -It is illegal\(dd for two ranges to share an -endpoint, -.No e.g. Ql a-c-e . -Ranges are very collating-sequence-dependent, -and portable programs should avoid relying on them. +which is not the first character in the bracket, +it will be interpreted as a collating range and will match all +characters that fall in between the preceding and following characters +(inclusive) in the current locale's collating order. +.No For example, Ql [a0-9] +in ASCII matches +.Ql a +or any decimal digit. +.No For example, Ql [^agh] +matches any character that is not +.Ql a , +.Ql g , +or +.Ql h . .Pp To include a literal .Ql \&] @@ -235,7 +224,7 @@ can thus match more than one character, e.g.\& if the collating sequence includes a .Ql ch collating element, -then the RE +then the regular expression .Ql [[.ch.]]*c matches the first five characters of @@ -263,7 +252,7 @@ then and .Ql [xy] are all synonymous. -An equivalence class may not\(dd be an endpoint +An equivalence class may not be an endpoint of a range. .Pp Within a bracket expression, the name of a @@ -284,7 +273,7 @@ Standard character class names are: .Pp These stand for the character classes defined in .Xr ctype 3 . -A locale may provide others. +A particular locale may provide others. A character class may not be used as an endpoint of a range. .Pp A bracketed expression like @@ -295,35 +284,16 @@ The reverse, matching any character that class, the negation operator of bracket expressions may be used: .Ql [^[:class:]] . .Pp -There are two special cases\(dd of bracket expressions: -the bracket expressions -.Ql [[:<:]] -and -.Ql [[:>:]] -match the null string at the beginning and end of a word respectively. -A word is defined as a sequence of word characters -which is neither preceded nor followed by -word characters. -A word character is an -.Em alnum -character (as defined by -.Xr ctype 3 ) -or an underscore. -This is an extension, -compatible with but not specified by -.St -p1003.2 , -and should be used with -caution in software intended to be portable to other systems. -.Pp -In the event that an RE could match more than one substring of a given -string, -the RE matches the one starting earliest in the string. -If the RE could match more than one substring starting at that point, +In the event that a regular expression could match more than one +substring of a given string, +the regular expression matches the one starting earliest in the string. +If the regular expression could match more than one substring starting +at that point, it matches the longest. Subexpressions also match the longest possible substrings, subject to the constraint that the whole match be as long as possible, -with subexpressions starting earlier in the RE taking priority over -ones starting later. +with subexpressions starting earlier in the regular expression taking +priority over ones starting later. Note that higher-level subexpressions thus take priority over their lower-level component subexpressions. .Pp @@ -346,15 +316,14 @@ when .Ql (a*)* is matched against .Ql bc -both the whole RE and the parenthesized +both the whole regular expression and the parenthesized subexpression match the null string. .Pp -If case-independent matching is specified, -the effect is much as if all case distinctions had vanished from the -alphabet. -When an alphabetic that exists in multiple cases appears as an -ordinary character outside a bracket expression, it is effectively -transformed into a bracket expression containing both cases, +The effect of case-independent match is like as if all case distinctions +vanished from the alphabet. +It can also be modelled as if each and every character were replaced +by a bracket expression, +containing both cases of the same letter, .No e.g. Ql x becomes .Ql [xX] . @@ -368,15 +337,13 @@ and becomes .Ql [^xX] . .Pp -No particular limit is imposed on the length of REs\(dd. -Programs intended to be portable should not employ REs longer -than 256 bytes, -as an implementation can refuse to accept such REs and remain -POSIX-compliant. -.Pp -Obsolete -.Pq Dq basic -regular expressions differ in several respects. +No particular limit is imposed on the length of regular expression. +Programs intended to be portable should not employ regular expressions +longer than 256 bytes, +as an implementation can refuse to accept such regular expressions and +remain POSIX-compliant. +.Pp +Basic regular expressions differ in several respects. .Ql \&| is an ordinary character and there is no equivalent for its functionality. @@ -391,7 +358,7 @@ or respectively). Also note that .Ql x+ -in modern REs is equivalent to +in extended regular expressions is equivalent to .Ql xx* . The delimiters for bounds are .Ql \e{ @@ -412,15 +379,15 @@ and .Ql \&) by themselves ordinary characters. .Ql \&^ -is an ordinary character except at the beginning of the -RE or\(dd the beginning of a parenthesized subexpression, +is an ordinary character except at the beginning of the regular expression +or the beginning of a parenthesized subexpression, .Ql \&$ is an ordinary character except at the end of the -RE or\(dd the end of a parenthesized subexpression, +regular expression or the end of a parenthesized subexpression, and .Ql \&* is an ordinary character if it appears at the beginning of the -RE or the beginning of a parenthesized subexpression +regular expresssion or the beginning of a parenthesized subexpression (after a possible leading .Ql \&^ ) . Finally, there is one new type of atom, a @@ -442,6 +409,9 @@ or .Ql cc but not .Ql bc . +.Pp +Back references are not defined for extended regular expressions but +most implementations (including this) implement them. .Sh SEE ALSO .Xr regex 3 .Rs @@ -450,34 +420,12 @@ but not .%N 1003.2 .%P section 2.8 .Re -.Sh BUGS -Having two kinds of REs is a botch. -.Pp -The current -.St -p1003.2 -spec says that -.Ql \&) -is an ordinary character in -the absence of an unmatched -.Ql \&( ; -this was an unintentional result of a wording error, -and change is likely. -Avoid relying on it. -.Pp -Back references are a dreadful botch, -posing major problems for efficient implementations. -They are also somewhat vaguely defined -(does -.Ql a\e(\e(b\e)*\e2\e)*d -match -.Ql abbbd ? ) . -Avoid using them. -.Pp -.St -p1003.2 -specification of case-independent matching is vague. -The -.Dq one case implies all cases -definition given above -is current consensus among implementors as to the right interpretation. -.Pp -The syntax for word boundaries is incredibly ugly. +.Sh HISTORY +This manual was originally written by +.An Henry Spencer +for an older implementation and later extended and +tailored for TRE by +.An Gabor Kovesdan . +The regex implementation comes from the TRE project +and it was included first in +.Fx 10-CURRENT. From owner-svn-src-user@FreeBSD.ORG Fri Oct 7 00:20:07 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 674FF106566C; Fri, 7 Oct 2011 00:20:07 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 533968FC08; Fri, 7 Oct 2011 00:20:07 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p970K7x3083864; Fri, 7 Oct 2011 00:20:07 GMT (envelope-from dougb@svn.freebsd.org) Received: (from dougb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p970K7On083862; Fri, 7 Oct 2011 00:20:07 GMT (envelope-from dougb@svn.freebsd.org) Message-Id: <201110070020.p970K7On083862@svn.freebsd.org> From: Doug Barton Date: Fri, 7 Oct 2011 00:20:07 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226080 - user/dougb/portmaster X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2011 00:20:07 -0000 Author: dougb Date: Fri Oct 7 00:20:07 2011 New Revision: 226080 URL: http://svn.freebsd.org/changeset/base/226080 Log: Until I can revamp the way dependencies are tracked, include all 3 forms of CONFLICTS to make sure we catch alternates. Modified: user/dougb/portmaster/portmaster Modified: user/dougb/portmaster/portmaster ============================================================================== --- user/dougb/portmaster/portmaster Thu Oct 6 21:55:05 2011 (r226079) +++ user/dougb/portmaster/portmaster Fri Oct 7 00:20:07 2011 (r226080) @@ -2451,8 +2451,11 @@ dependency_check () { conflicts='' if pm_cd $d_port; then - grep -ql ^CONFLICTS Makefile && + if grep -ql ^CONFLICTS Makefile ; then conflicts=`pm_make_b -V CONFLICTS` + conflicts="$conflicts `pm_make_b -V CONFLICTS_BUILD`" + conflicts="$conflicts `pm_make_b -V CONFLICTS_INSTALL`" + fi else fail "Cannot cd to $d_port" fi From owner-svn-src-user@FreeBSD.ORG Fri Oct 7 12:59:04 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 874361065670; Fri, 7 Oct 2011 12:59:04 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 77A198FC14; Fri, 7 Oct 2011 12:59:04 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p97Cx4Ek011715; Fri, 7 Oct 2011 12:59:04 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p97Cx44l011713; Fri, 7 Oct 2011 12:59:04 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110071259.p97Cx44l011713@svn.freebsd.org> From: Gabor Kovesdan Date: Fri, 7 Oct 2011 12:59:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226102 - user/gabor/grep/trunk X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2011 12:59:04 -0000 Author: gabor Date: Fri Oct 7 12:59:04 2011 New Revision: 226102 URL: http://svn.freebsd.org/changeset/base/226102 Log: - Use getprogname() instead of __progname because it is more portable Submitted by: delphij Modified: user/gabor/grep/trunk/grep.c Modified: user/gabor/grep/trunk/grep.c ============================================================================== --- user/gabor/grep/trunk/grep.c Fri Oct 7 12:58:33 2011 (r226101) +++ user/gabor/grep/trunk/grep.c Fri Oct 7 12:59:04 2011 (r226102) @@ -150,15 +150,13 @@ bool prev; /* flag whether or not the int tail; /* lines left to print */ bool notfound; /* file not found */ -extern char *__progname; - /* * Prints usage information and returns 2. */ static void usage(void) { - fprintf(stderr, getstr(4), __progname); + fprintf(stderr, getstr(4), getprogname()); fprintf(stderr, "%s", getstr(5)); fprintf(stderr, "%s", getstr(5)); fprintf(stderr, "%s", getstr(6)); @@ -332,7 +330,8 @@ int main(int argc, char *argv[]) { char **aargv, **eargv, *eopts; - char *pn, *ep; + char *ep; + const char *pn; unsigned long long l; unsigned int aargc, eargc, i; int c, lastc, needpattern, newarg, prevoptind; @@ -346,7 +345,7 @@ main(int argc, char *argv[]) /* Check what is the program name of the binary. In this way we can have all the funcionalities in one binary without the need of scripting and using ugly hacks. */ - pn = __progname; + pn = getprogname(); if (pn[0] == 'b' && pn[1] == 'z') { filebehave = FILE_BZIP; pn += 2; @@ -568,7 +567,7 @@ main(int argc, char *argv[]) filebehave = FILE_MMAP; break; case 'V': - printf(getstr(9), __progname, VERSION); + printf(getstr(9), getprogname(), VERSION); exit(0); case 'v': vflag = true; From owner-svn-src-user@FreeBSD.ORG Fri Oct 7 14:42:12 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5E54106568B; Fri, 7 Oct 2011 14:42:11 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id D61138FC0C; Fri, 7 Oct 2011 14:42:11 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p97EgBY4015342; Fri, 7 Oct 2011 14:42:11 GMT (envelope-from gabor@svn.freebsd.org) Received: (from gabor@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p97EgBvr015338; Fri, 7 Oct 2011 14:42:11 GMT (envelope-from gabor@svn.freebsd.org) Message-Id: <201110071442.p97EgBvr015338@svn.freebsd.org> From: Gabor Kovesdan Date: Fri, 7 Oct 2011 14:42:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226109 - user/gabor/grep/trunk X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2011 14:42:12 -0000 Author: gabor Date: Fri Oct 7 14:42:11 2011 New Revision: 226109 URL: http://svn.freebsd.org/changeset/base/226109 Log: - Add support for WITHOUT_BZIP2 Requested by: delphij Modified: user/gabor/grep/trunk/Makefile user/gabor/grep/trunk/file.c user/gabor/grep/trunk/grep.c Modified: user/gabor/grep/trunk/Makefile ============================================================================== --- user/gabor/grep/trunk/Makefile Fri Oct 7 14:30:45 2011 (r226108) +++ user/gabor/grep/trunk/Makefile Fri Oct 7 14:42:11 2011 (r226109) @@ -26,9 +26,6 @@ LINKS= ${BINDIR}/grep ${BINDIR}/egrep \ ${BINDIR}/grep ${BINDIR}/zgrep \ ${BINDIR}/grep ${BINDIR}/zegrep \ ${BINDIR}/grep ${BINDIR}/zfgrep \ - ${BINDIR}/grep ${BINDIR}/bzgrep \ - ${BINDIR}/grep ${BINDIR}/bzegrep \ - ${BINDIR}/grep ${BINDIR}/bzfgrep \ ${BINDIR}/grep ${BINDIR}/xzgrep \ ${BINDIR}/grep ${BINDIR}/xzegrep \ ${BINDIR}/grep ${BINDIR}/xzfgrep \ @@ -41,9 +38,6 @@ MLINKS= grep.1 egrep.1 \ grep.1 zgrep.1 \ grep.1 zegrep.1 \ grep.1 zfgrep.1 \ - grep.1 bzgrep.1 \ - grep.1 bzegrep.1 \ - grep.1 bzfgrep.1 \ grep.1 xzgrep.1 \ grep.1 xzegrep.1 \ grep.1 xzfgrep.1 \ @@ -52,8 +46,22 @@ MLINKS= grep.1 egrep.1 \ grep.1 lzfgrep.1 .endif -LDADD= -lz -lbz2 -llzma -DPADD= ${LIBZ} ${LIBBZ2} ${LIBLZMA} +LDADD= -lz -llzma +DPADD= ${LIBZ} ${LIBLZMA} + +.if !defined(WITHOUT_BZIP2) +LDADD+= -lbz2 +DPADD+= ${LIBBZ2} + +LINKS+= ${BINDIR}/grep ${BINDIR}/bzgrep \ + ${BINDIR}/grep ${BINDIR}/bzegrep \ + ${BINDIR}/grep ${BINDIR}/bzfgrep +MLINKS+= grep.1 bzgrep.1 \ + grep.1 bzegrep.1 \ + grep.1 bzfgrep.1 +.else +CFLAGS+= -DWITHOUT_BZIP2 +.endif .if !defined(WITHOUT_GNU_COMPAT) CFLAGS+= -I/usr/include/gnu Modified: user/gabor/grep/trunk/file.c ============================================================================== --- user/gabor/grep/trunk/file.c Fri Oct 7 14:30:45 2011 (r226108) +++ user/gabor/grep/trunk/file.c Fri Oct 7 14:42:11 2011 (r226109) @@ -38,7 +38,6 @@ __FBSDID("$FreeBSD$"); #include #include -#include #include #include #include @@ -51,14 +50,20 @@ __FBSDID("$FreeBSD$"); #include #include +#ifndef WITHOUT_BZIP2 +#include +#endif + #include "grep.h" #define MAXBUFSIZ (32 * 1024) #define LNBUFBUMP 80 static gzFile gzbufdesc; -static BZFILE* bzbufdesc; static lzma_stream lstrm = LZMA_STREAM_INIT; +#ifndef WITHOUT_BZIP2 +static BZFILE* bzbufdesc; +#endif static unsigned char *buffer; static unsigned char *bufpos; @@ -72,7 +77,6 @@ static inline int grep_refill(struct file *f) { ssize_t nr; - int bzerr; if (filebehave == FILE_MMAP) return (0); @@ -80,9 +84,12 @@ grep_refill(struct file *f) bufpos = buffer; bufrem = 0; - if (filebehave == FILE_GZIP) + if (filebehave == FILE_GZIP) { nr = gzread(gzbufdesc, buffer, MAXBUFSIZ); - else if (filebehave == FILE_BZIP && bzbufdesc != NULL) { +#ifndef WITHOUT_BZIP2 + } else if (filebehave == FILE_BZIP && bzbufdesc != NULL) { + int bzerr; + nr = BZ2_bzRead(&bzerr, bzbufdesc, buffer, MAXBUFSIZ); switch (bzerr) { case BZ_OK: @@ -108,6 +115,7 @@ grep_refill(struct file *f) /* Make sure we exit with an error */ nr = -1; } +#endif } else if ((filebehave == FILE_XZ) || (filebehave == FILE_LZMA)) { lzma_action action = LZMA_RUN; uint8_t in_buf[MAXBUFSIZ]; @@ -271,9 +279,11 @@ grep_open(const char *path) (gzbufdesc = gzdopen(f->fd, "r")) == NULL) goto error2; +#ifndef WITHOUT_BZIP2 if (filebehave == FILE_BZIP && (bzbufdesc = BZ2_bzdopen(f->fd, "r")) == NULL) goto error2; +#endif /* Fill read buffer, also catches errors early */ if (bufrem == 0 && grep_refill(f) != 0) Modified: user/gabor/grep/trunk/grep.c ============================================================================== --- user/gabor/grep/trunk/grep.c Fri Oct 7 14:30:45 2011 (r226108) +++ user/gabor/grep/trunk/grep.c Fri Oct 7 14:42:11 2011 (r226109) @@ -507,6 +507,10 @@ main(int argc, char *argv[]) cflags |= REG_ICASE; break; case 'J': +#ifdef WITHOUT_BZIP2 + errno = EOPNOTSUPP; + err(2, "bzip2 support was disabled at compile-time"); +#endif filebehave = FILE_BZIP; break; case 'L': From owner-svn-src-user@FreeBSD.ORG Fri Oct 7 14:52:32 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13EFB1065672; Fri, 7 Oct 2011 14:52:32 +0000 (UTC) (envelope-from attilio@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id B9FCE8FC15; Fri, 7 Oct 2011 14:52:31 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p97EqVHd015697; Fri, 7 Oct 2011 14:52:31 GMT (envelope-from attilio@svn.freebsd.org) Received: (from attilio@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p97EqVDA015680; Fri, 7 Oct 2011 14:52:31 GMT (envelope-from attilio@svn.freebsd.org) Message-Id: <201110071452.p97EqVDA015680@svn.freebsd.org> From: Attilio Rao Date: Fri, 7 Oct 2011 14:52:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226110 - in user/attilio/vmcontention: . bin/mv bin/ps contrib/top crypto/openssh crypto/openssh/openbsd-compat lib lib/libc/sys lib/libftpio lib/libpam/modules/pam_ssh release release... X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2011 14:52:32 -0000 Author: attilio Date: Fri Oct 7 14:52:30 2011 New Revision: 226110 URL: http://svn.freebsd.org/changeset/base/226110 Log: MFC Added: user/attilio/vmcontention/crypto/openssh/sandbox-darwin.c - copied unchanged from r226105, head/crypto/openssh/sandbox-darwin.c user/attilio/vmcontention/crypto/openssh/sandbox-null.c - copied unchanged from r226105, head/crypto/openssh/sandbox-null.c user/attilio/vmcontention/crypto/openssh/sandbox-rlimit.c - copied unchanged from r226105, head/crypto/openssh/sandbox-rlimit.c user/attilio/vmcontention/crypto/openssh/sandbox-systrace.c - copied unchanged from r226105, head/crypto/openssh/sandbox-systrace.c user/attilio/vmcontention/crypto/openssh/ssh-sandbox.h - copied unchanged from r226105, head/crypto/openssh/ssh-sandbox.h user/attilio/vmcontention/share/man/man4/tws.4 - copied unchanged from r226105, head/share/man/man4/tws.4 user/attilio/vmcontention/sys/dev/tws/ - copied from r226105, head/sys/dev/tws/ user/attilio/vmcontention/sys/libkern/strnlen.c - copied unchanged from r226105, head/sys/libkern/strnlen.c user/attilio/vmcontention/sys/modules/tws/ - copied from r226105, head/sys/modules/tws/ user/attilio/vmcontention/usr.bin/grep/regex/ - copied from r226105, head/usr.bin/grep/regex/ Deleted: user/attilio/vmcontention/crypto/openssh/WARNING.RNG user/attilio/vmcontention/crypto/openssh/ssh-rand-helper.8 user/attilio/vmcontention/crypto/openssh/ssh-rand-helper.c user/attilio/vmcontention/lib/libftpio/ user/attilio/vmcontention/release/Makefile.inc.docports user/attilio/vmcontention/release/Makefile.sysinstall user/attilio/vmcontention/release/amd64/boot_crunch.conf user/attilio/vmcontention/release/fixit.profile user/attilio/vmcontention/release/fixit.services user/attilio/vmcontention/release/i386/boot_crunch.conf user/attilio/vmcontention/release/i386/fixit_crunch.conf user/attilio/vmcontention/release/ia64/boot_crunch.conf user/attilio/vmcontention/release/pc98/boot_crunch.conf user/attilio/vmcontention/release/pc98/fixit-small_crunch.conf user/attilio/vmcontention/release/pc98/fixit_crunch.conf user/attilio/vmcontention/release/powerpc/boot_crunch.conf user/attilio/vmcontention/release/scripts/base-install.sh user/attilio/vmcontention/release/scripts/catpages-install.sh user/attilio/vmcontention/release/scripts/catpages-make.sh user/attilio/vmcontention/release/scripts/checkindex.pl user/attilio/vmcontention/release/scripts/chkINDEX user/attilio/vmcontention/release/scripts/commerce-install.sh user/attilio/vmcontention/release/scripts/dict-install.sh user/attilio/vmcontention/release/scripts/dict-make.sh user/attilio/vmcontention/release/scripts/doFS.sh user/attilio/vmcontention/release/scripts/doc-install.sh user/attilio/vmcontention/release/scripts/doc-make.sh user/attilio/vmcontention/release/scripts/games-install.sh user/attilio/vmcontention/release/scripts/info-install.sh user/attilio/vmcontention/release/scripts/info-make.sh user/attilio/vmcontention/release/scripts/info.sh user/attilio/vmcontention/release/scripts/kernels-install.sh user/attilio/vmcontention/release/scripts/lib32-install.sh user/attilio/vmcontention/release/scripts/manpages-install.sh user/attilio/vmcontention/release/scripts/manpages-make.sh user/attilio/vmcontention/release/scripts/mkpkghier user/attilio/vmcontention/release/scripts/mkpkgindex.sh user/attilio/vmcontention/release/scripts/package-split.py user/attilio/vmcontention/release/scripts/package-trees.sh user/attilio/vmcontention/release/scripts/ports-install.sh user/attilio/vmcontention/release/scripts/proflibs-install.sh user/attilio/vmcontention/release/scripts/proflibs-make.sh user/attilio/vmcontention/release/scripts/split-file.sh user/attilio/vmcontention/release/scripts/src-install.sh user/attilio/vmcontention/release/scripts/tar.sh user/attilio/vmcontention/release/scripts/xperimnt-install.sh user/attilio/vmcontention/release/sparc64/boot_crunch.conf user/attilio/vmcontention/usr.bin/grep/fastgrep.c user/attilio/vmcontention/usr.sbin/sysinstall/ Modified: user/attilio/vmcontention/MAINTAINERS user/attilio/vmcontention/Makefile.inc1 user/attilio/vmcontention/ObsoleteFiles.inc user/attilio/vmcontention/UPDATING user/attilio/vmcontention/bin/mv/mv.c user/attilio/vmcontention/bin/ps/ps.1 user/attilio/vmcontention/crypto/openssh/ChangeLog user/attilio/vmcontention/crypto/openssh/INSTALL user/attilio/vmcontention/crypto/openssh/PROTOCOL.mux user/attilio/vmcontention/crypto/openssh/README user/attilio/vmcontention/crypto/openssh/aclocal.m4 user/attilio/vmcontention/crypto/openssh/audit-linux.c (contents, props changed) user/attilio/vmcontention/crypto/openssh/auth-rsa.c user/attilio/vmcontention/crypto/openssh/auth-skey.c user/attilio/vmcontention/crypto/openssh/auth.c user/attilio/vmcontention/crypto/openssh/auth.h user/attilio/vmcontention/crypto/openssh/auth2-gss.c user/attilio/vmcontention/crypto/openssh/auth2-pubkey.c user/attilio/vmcontention/crypto/openssh/auth2.c user/attilio/vmcontention/crypto/openssh/authfd.c user/attilio/vmcontention/crypto/openssh/authfile.c user/attilio/vmcontention/crypto/openssh/authfile.h user/attilio/vmcontention/crypto/openssh/channels.c user/attilio/vmcontention/crypto/openssh/channels.h user/attilio/vmcontention/crypto/openssh/clientloop.c user/attilio/vmcontention/crypto/openssh/clientloop.h user/attilio/vmcontention/crypto/openssh/config.guess user/attilio/vmcontention/crypto/openssh/config.h user/attilio/vmcontention/crypto/openssh/config.h.in user/attilio/vmcontention/crypto/openssh/defines.h user/attilio/vmcontention/crypto/openssh/entropy.c user/attilio/vmcontention/crypto/openssh/gss-serv.c user/attilio/vmcontention/crypto/openssh/key.c user/attilio/vmcontention/crypto/openssh/log.c user/attilio/vmcontention/crypto/openssh/log.h user/attilio/vmcontention/crypto/openssh/mac.c user/attilio/vmcontention/crypto/openssh/misc.c user/attilio/vmcontention/crypto/openssh/misc.h user/attilio/vmcontention/crypto/openssh/moduli.5 user/attilio/vmcontention/crypto/openssh/monitor.c user/attilio/vmcontention/crypto/openssh/monitor.h user/attilio/vmcontention/crypto/openssh/monitor_wrap.c user/attilio/vmcontention/crypto/openssh/monitor_wrap.h user/attilio/vmcontention/crypto/openssh/mux.c user/attilio/vmcontention/crypto/openssh/myproposal.h user/attilio/vmcontention/crypto/openssh/openbsd-compat/bsd-cygwin_util.c user/attilio/vmcontention/crypto/openssh/openbsd-compat/bsd-cygwin_util.h user/attilio/vmcontention/crypto/openssh/openbsd-compat/openssl-compat.c user/attilio/vmcontention/crypto/openssh/openbsd-compat/openssl-compat.h user/attilio/vmcontention/crypto/openssh/openbsd-compat/port-linux.c user/attilio/vmcontention/crypto/openssh/openbsd-compat/port-linux.h user/attilio/vmcontention/crypto/openssh/packet.c user/attilio/vmcontention/crypto/openssh/packet.h user/attilio/vmcontention/crypto/openssh/pathnames.h user/attilio/vmcontention/crypto/openssh/readconf.c user/attilio/vmcontention/crypto/openssh/readconf.h user/attilio/vmcontention/crypto/openssh/servconf.c user/attilio/vmcontention/crypto/openssh/servconf.h user/attilio/vmcontention/crypto/openssh/serverloop.c user/attilio/vmcontention/crypto/openssh/session.c user/attilio/vmcontention/crypto/openssh/sftp-server.c user/attilio/vmcontention/crypto/openssh/sftp.1 user/attilio/vmcontention/crypto/openssh/ssh-add.c user/attilio/vmcontention/crypto/openssh/ssh-agent.1 user/attilio/vmcontention/crypto/openssh/ssh-agent.c user/attilio/vmcontention/crypto/openssh/ssh-keygen.1 user/attilio/vmcontention/crypto/openssh/ssh-keygen.c user/attilio/vmcontention/crypto/openssh/ssh-keyscan.c user/attilio/vmcontention/crypto/openssh/ssh-keysign.c user/attilio/vmcontention/crypto/openssh/ssh-pkcs11-helper.c user/attilio/vmcontention/crypto/openssh/ssh-pkcs11.c user/attilio/vmcontention/crypto/openssh/ssh.1 user/attilio/vmcontention/crypto/openssh/ssh.c user/attilio/vmcontention/crypto/openssh/ssh_config user/attilio/vmcontention/crypto/openssh/ssh_config.5 user/attilio/vmcontention/crypto/openssh/ssh_namespace.h user/attilio/vmcontention/crypto/openssh/sshconnect.c user/attilio/vmcontention/crypto/openssh/sshconnect2.c user/attilio/vmcontention/crypto/openssh/sshd.8 user/attilio/vmcontention/crypto/openssh/sshd.c user/attilio/vmcontention/crypto/openssh/sshd_config user/attilio/vmcontention/crypto/openssh/sshd_config.5 user/attilio/vmcontention/crypto/openssh/version.h user/attilio/vmcontention/lib/Makefile user/attilio/vmcontention/lib/libc/sys/ptrace.2 user/attilio/vmcontention/lib/libpam/modules/pam_ssh/pam_ssh.8 user/attilio/vmcontention/lib/libpam/modules/pam_ssh/pam_ssh.c user/attilio/vmcontention/sbin/camcontrol/camcontrol.c user/attilio/vmcontention/secure/usr.sbin/sshd/Makefile user/attilio/vmcontention/share/examples/scsi_target/scsi_cmds.c user/attilio/vmcontention/share/examples/scsi_target/scsi_target.c user/attilio/vmcontention/share/man/man4/Makefile user/attilio/vmcontention/share/man/man7/security.7 user/attilio/vmcontention/share/misc/committers-src.dot user/attilio/vmcontention/share/misc/scsi_modes user/attilio/vmcontention/share/mk/bsd.port.mk user/attilio/vmcontention/sys/amd64/amd64/machdep.c user/attilio/vmcontention/sys/amd64/amd64/trap.c user/attilio/vmcontention/sys/amd64/conf/GENERIC user/attilio/vmcontention/sys/arm/arm/elf_machdep.c user/attilio/vmcontention/sys/arm/arm/elf_trampoline.c user/attilio/vmcontention/sys/arm/arm/pmap.c user/attilio/vmcontention/sys/arm/arm/trap.c user/attilio/vmcontention/sys/arm/include/proc.h user/attilio/vmcontention/sys/arm/include/vmparam.h user/attilio/vmcontention/sys/arm/mv/common.c user/attilio/vmcontention/sys/arm/mv/mv_machdep.c user/attilio/vmcontention/sys/arm/xscale/ixp425/avila_gpio.c user/attilio/vmcontention/sys/boot/arm/ixp425/boot2/boot2.c user/attilio/vmcontention/sys/cam/cam_ccb.h user/attilio/vmcontention/sys/cam/cam_periph.c user/attilio/vmcontention/sys/cam/scsi/scsi_all.c user/attilio/vmcontention/sys/cam/scsi/scsi_all.h user/attilio/vmcontention/sys/cam/scsi/scsi_cd.c user/attilio/vmcontention/sys/cam/scsi/scsi_da.c user/attilio/vmcontention/sys/cam/scsi/scsi_low.c user/attilio/vmcontention/sys/cam/scsi/scsi_sa.c user/attilio/vmcontention/sys/cam/scsi/scsi_targ_bh.c user/attilio/vmcontention/sys/compat/linux/linux_socket.c user/attilio/vmcontention/sys/conf/files user/attilio/vmcontention/sys/conf/makeLINT.sed user/attilio/vmcontention/sys/dev/ata/ata-all.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416.h user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c user/attilio/vmcontention/sys/dev/ath/ath_hal/ar5416/ar5416phy.h user/attilio/vmcontention/sys/dev/bwi/if_bwi.c user/attilio/vmcontention/sys/dev/ciss/ciss.c user/attilio/vmcontention/sys/dev/esp/ncr53c9x.c user/attilio/vmcontention/sys/dev/fb/machfb.c user/attilio/vmcontention/sys/dev/firewire/sbp.c user/attilio/vmcontention/sys/dev/firewire/sbp_targ.c user/attilio/vmcontention/sys/dev/hwpmc/hwpmc_mips24k.h user/attilio/vmcontention/sys/dev/iir/iir.c user/attilio/vmcontention/sys/dev/iscsi/initiator/iscsi_subr.c user/attilio/vmcontention/sys/dev/isp/isp_freebsd.h user/attilio/vmcontention/sys/dev/le/lebuffer_sbus.c user/attilio/vmcontention/sys/dev/mly/mly.c user/attilio/vmcontention/sys/dev/mps/mps_sas.c user/attilio/vmcontention/sys/dev/mpt/mpt_cam.c user/attilio/vmcontention/sys/dev/sym/sym_hipd.c user/attilio/vmcontention/sys/dev/usb/storage/umass.c user/attilio/vmcontention/sys/fs/devfs/devfs_devs.c user/attilio/vmcontention/sys/i386/conf/GENERIC user/attilio/vmcontention/sys/i386/i386/machdep.c user/attilio/vmcontention/sys/i386/i386/trap.c user/attilio/vmcontention/sys/kern/kern_ctf.c user/attilio/vmcontention/sys/kern/kern_fork.c user/attilio/vmcontention/sys/kern/kern_racct.c user/attilio/vmcontention/sys/kern/kern_rctl.c user/attilio/vmcontention/sys/kern/sched_ule.c user/attilio/vmcontention/sys/kern/subr_acl_nfs4.c user/attilio/vmcontention/sys/kern/subr_kdb.c user/attilio/vmcontention/sys/kern/subr_trap.c user/attilio/vmcontention/sys/kern/sys_pipe.c user/attilio/vmcontention/sys/kern/vfs_subr.c user/attilio/vmcontention/sys/mips/cavium/asm_octeon.S user/attilio/vmcontention/sys/mips/cavium/if_octm.c user/attilio/vmcontention/sys/mips/cavium/octe/ethernet-common.c user/attilio/vmcontention/sys/mips/cavium/octe/ethernet.c user/attilio/vmcontention/sys/mips/cavium/octeon_ebt3000_cf.c user/attilio/vmcontention/sys/mips/cavium/octeon_mp.c user/attilio/vmcontention/sys/mips/cavium/octeon_pcmap_regs.h user/attilio/vmcontention/sys/mips/include/param.h user/attilio/vmcontention/sys/mips/include/proc.h user/attilio/vmcontention/sys/mips/mips/elf64_machdep.c user/attilio/vmcontention/sys/mips/mips/elf_machdep.c user/attilio/vmcontention/sys/mips/mips/trap.c user/attilio/vmcontention/sys/modules/Makefile user/attilio/vmcontention/sys/netinet/in.c user/attilio/vmcontention/sys/netinet/raw_ip.c user/attilio/vmcontention/sys/netinet/tcp_input.c user/attilio/vmcontention/sys/netinet6/in6.c user/attilio/vmcontention/sys/pc98/pc98/machdep.c user/attilio/vmcontention/sys/powerpc/powerpc/cpu.c user/attilio/vmcontention/sys/powerpc/ps3/ps3cdrom.c user/attilio/vmcontention/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c user/attilio/vmcontention/sys/sparc64/central/central.c user/attilio/vmcontention/sys/sparc64/conf/DEFAULTS user/attilio/vmcontention/sys/sparc64/ebus/ebus.c user/attilio/vmcontention/sys/sparc64/fhc/fhc.c user/attilio/vmcontention/sys/sparc64/include/asmacros.h user/attilio/vmcontention/sys/sparc64/include/bus.h user/attilio/vmcontention/sys/sparc64/include/bus_private.h user/attilio/vmcontention/sys/sparc64/pci/apb.c user/attilio/vmcontention/sys/sparc64/pci/fire.c user/attilio/vmcontention/sys/sparc64/pci/firevar.h user/attilio/vmcontention/sys/sparc64/pci/ofw_pcib_subr.c user/attilio/vmcontention/sys/sparc64/pci/psycho.c user/attilio/vmcontention/sys/sparc64/pci/psychovar.h user/attilio/vmcontention/sys/sparc64/pci/sbbc.c user/attilio/vmcontention/sys/sparc64/pci/schizo.c user/attilio/vmcontention/sys/sparc64/pci/schizovar.h user/attilio/vmcontention/sys/sparc64/sbus/dma_sbus.c user/attilio/vmcontention/sys/sparc64/sbus/sbus.c user/attilio/vmcontention/sys/sparc64/sparc64/bus_machdep.c user/attilio/vmcontention/sys/sparc64/sparc64/nexus.c user/attilio/vmcontention/sys/sparc64/sparc64/pmap.c user/attilio/vmcontention/sys/sparc64/sparc64/swtch.S user/attilio/vmcontention/sys/sparc64/sparc64/upa.c user/attilio/vmcontention/sys/sys/conf.h user/attilio/vmcontention/sys/sys/libkern.h user/attilio/vmcontention/sys/sys/msgbuf.h user/attilio/vmcontention/sys/sys/pipe.h user/attilio/vmcontention/sys/sys/racct.h user/attilio/vmcontention/sys/teken/stress/teken_stress.c user/attilio/vmcontention/sys/teken/teken_subr.h user/attilio/vmcontention/sys/x86/acpica/srat.c user/attilio/vmcontention/usr.bin/csup/fixups.c user/attilio/vmcontention/usr.bin/csup/updater.c user/attilio/vmcontention/usr.bin/fetch/fetch.1 user/attilio/vmcontention/usr.bin/grep/Makefile user/attilio/vmcontention/usr.bin/grep/file.c user/attilio/vmcontention/usr.bin/grep/grep.c user/attilio/vmcontention/usr.bin/grep/grep.h user/attilio/vmcontention/usr.bin/grep/util.c user/attilio/vmcontention/usr.sbin/Makefile user/attilio/vmcontention/usr.sbin/bsdinstall/partedit/diskeditor.c user/attilio/vmcontention/usr.sbin/bsdinstall/partedit/gpart_ops.c user/attilio/vmcontention/usr.sbin/bsdinstall/partedit/part_wizard.c user/attilio/vmcontention/usr.sbin/bsdinstall/partedit/partedit.h user/attilio/vmcontention/usr.sbin/bsdinstall/scripts/auto user/attilio/vmcontention/usr.sbin/bsdinstall/scripts/keymap user/attilio/vmcontention/usr.sbin/portsnap/portsnap/portsnap.sh Directory Properties: user/attilio/vmcontention/ (props changed) user/attilio/vmcontention/cddl/contrib/opensolaris/ (props changed) user/attilio/vmcontention/contrib/bind9/ (props changed) user/attilio/vmcontention/contrib/binutils/ (props changed) user/attilio/vmcontention/contrib/bzip2/ (props changed) user/attilio/vmcontention/contrib/com_err/ (props changed) user/attilio/vmcontention/contrib/compiler-rt/ (props changed) user/attilio/vmcontention/contrib/dialog/ (props changed) user/attilio/vmcontention/contrib/ee/ (props changed) user/attilio/vmcontention/contrib/expat/ (props changed) user/attilio/vmcontention/contrib/file/ (props changed) user/attilio/vmcontention/contrib/gcc/ (props changed) user/attilio/vmcontention/contrib/gdb/ (props changed) user/attilio/vmcontention/contrib/gdtoa/ (props changed) user/attilio/vmcontention/contrib/gnu-sort/ (props changed) user/attilio/vmcontention/contrib/groff/ (props changed) user/attilio/vmcontention/contrib/less/ (props changed) user/attilio/vmcontention/contrib/libpcap/ (props changed) user/attilio/vmcontention/contrib/libstdc++/ (props changed) user/attilio/vmcontention/contrib/llvm/ (props changed) user/attilio/vmcontention/contrib/llvm/tools/clang/ (props changed) user/attilio/vmcontention/contrib/ncurses/ (props changed) user/attilio/vmcontention/contrib/netcat/ (props changed) user/attilio/vmcontention/contrib/ntp/ (props changed) user/attilio/vmcontention/contrib/one-true-awk/ (props changed) user/attilio/vmcontention/contrib/openbsm/ (props changed) user/attilio/vmcontention/contrib/openpam/ (props changed) user/attilio/vmcontention/contrib/openresolv/ (props changed) user/attilio/vmcontention/contrib/pf/ (props changed) user/attilio/vmcontention/contrib/sendmail/ (props changed) user/attilio/vmcontention/contrib/tcpdump/ (props changed) user/attilio/vmcontention/contrib/tcsh/ (props changed) user/attilio/vmcontention/contrib/tnftp/ (props changed) user/attilio/vmcontention/contrib/top/ (props changed) user/attilio/vmcontention/contrib/top/install-sh (props changed) user/attilio/vmcontention/contrib/tzcode/stdtime/ (props changed) user/attilio/vmcontention/contrib/tzcode/zic/ (props changed) user/attilio/vmcontention/contrib/tzdata/ (props changed) user/attilio/vmcontention/contrib/wpa/ (props changed) user/attilio/vmcontention/contrib/xz/ (props changed) user/attilio/vmcontention/crypto/heimdal/ (props changed) user/attilio/vmcontention/crypto/openssh/ (props changed) user/attilio/vmcontention/crypto/openssh/bufec.c (props changed) user/attilio/vmcontention/crypto/openssh/kexecdh.c (props changed) user/attilio/vmcontention/crypto/openssh/kexecdhc.c (props changed) user/attilio/vmcontention/crypto/openssh/kexecdhs.c (props changed) user/attilio/vmcontention/crypto/openssh/openbsd-compat/charclass.h (props changed) user/attilio/vmcontention/crypto/openssh/openbsd-compat/sha2.c (props changed) user/attilio/vmcontention/crypto/openssh/openbsd-compat/sha2.h (props changed) user/attilio/vmcontention/crypto/openssh/openbsd-compat/strptime.c (props changed) user/attilio/vmcontention/crypto/openssh/openbsd-compat/timingsafe_bcmp.c (props changed) user/attilio/vmcontention/crypto/openssh/ssh-ecdsa.c (props changed) user/attilio/vmcontention/crypto/openssl/ (props changed) user/attilio/vmcontention/gnu/lib/ (props changed) user/attilio/vmcontention/gnu/usr.bin/binutils/ (props changed) user/attilio/vmcontention/gnu/usr.bin/cc/cc_tools/ (props changed) user/attilio/vmcontention/gnu/usr.bin/gdb/ (props changed) user/attilio/vmcontention/lib/libc/ (props changed) user/attilio/vmcontention/lib/libc/stdtime/ (props changed) user/attilio/vmcontention/lib/libutil/ (props changed) user/attilio/vmcontention/lib/libz/ (props changed) user/attilio/vmcontention/sbin/ (props changed) user/attilio/vmcontention/sbin/ipfw/ (props changed) user/attilio/vmcontention/share/mk/bsd.arch.inc.mk (props changed) user/attilio/vmcontention/share/zoneinfo/ (props changed) user/attilio/vmcontention/sys/ (props changed) user/attilio/vmcontention/sys/amd64/include/xen/ (props changed) user/attilio/vmcontention/sys/boot/ (props changed) user/attilio/vmcontention/sys/boot/i386/efi/ (props changed) user/attilio/vmcontention/sys/boot/ia64/efi/ (props changed) user/attilio/vmcontention/sys/boot/ia64/ski/ (props changed) user/attilio/vmcontention/sys/boot/powerpc/boot1.chrp/ (props changed) user/attilio/vmcontention/sys/boot/powerpc/ofw/ (props changed) user/attilio/vmcontention/sys/cddl/contrib/opensolaris/ (props changed) user/attilio/vmcontention/sys/conf/ (props changed) user/attilio/vmcontention/sys/contrib/dev/acpica/ (props changed) user/attilio/vmcontention/sys/contrib/octeon-sdk/ (props changed) user/attilio/vmcontention/sys/contrib/pf/ (props changed) user/attilio/vmcontention/sys/contrib/x86emu/ (props changed) user/attilio/vmcontention/usr.bin/calendar/ (props changed) user/attilio/vmcontention/usr.bin/csup/ (props changed) user/attilio/vmcontention/usr.bin/procstat/ (props changed) user/attilio/vmcontention/usr.sbin/ndiscvt/ (props changed) user/attilio/vmcontention/usr.sbin/rtadvctl/ (props changed) user/attilio/vmcontention/usr.sbin/rtadvd/ (props changed) user/attilio/vmcontention/usr.sbin/rtsold/ (props changed) user/attilio/vmcontention/usr.sbin/zic/ (props changed) Modified: user/attilio/vmcontention/MAINTAINERS ============================================================================== --- user/attilio/vmcontention/MAINTAINERS Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/MAINTAINERS Fri Oct 7 14:52:30 2011 (r226110) @@ -123,8 +123,6 @@ usr.sbin/zic edwin Heads-up appreciat maintained by a third party source. lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. -sysinstall randi Please contact about any major changes so that - they can be co-ordinated. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com Following are the entries from the Makefiles, and a few other sources. Modified: user/attilio/vmcontention/Makefile.inc1 ============================================================================== --- user/attilio/vmcontention/Makefile.inc1 Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/Makefile.inc1 Fri Oct 7 14:52:30 2011 (r226110) @@ -1106,7 +1106,6 @@ build-tools: ${_aicasm} \ usr.bin/awk \ lib/libmagic \ - usr.sbin/sysinstall \ usr.bin/mkesdb_static \ usr.bin/mkcsmapper_static ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ Modified: user/attilio/vmcontention/ObsoleteFiles.inc ============================================================================== --- user/attilio/vmcontention/ObsoleteFiles.inc Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/ObsoleteFiles.inc Fri Oct 7 14:52:30 2011 (r226110) @@ -38,6 +38,19 @@ # xargs -n1 | sort | uniq -d; # done +# 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 +.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 +.endif +OLD_FILES+=usr/include/ftpio.h +OLD_FILES+=usr/share/man/man3/ftpio.3.gz # 20110915: rename congestion control manpages OLD_FILES+=usr/share/man/man4/cc.4.gz OLD_FILES+=usr/share/man/man9/cc.9.gz @@ -54,7 +67,7 @@ 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" +.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 @@ -92,7 +105,7 @@ 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" +.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 @@ -100,7 +113,7 @@ OLD_FILES+=usr/lib32/libpkg_p.a .endif # 20110517: libsbuf version bump OLD_LIBS+=lib/libsbuf.so.5 -.if ${TARGET_ARCH} == "amd64" +.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 @@ -131,7 +144,7 @@ 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" +.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 @@ -258,7 +271,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" +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_LIBS+=usr/lib32/liblzma.so.0 .endif # 20100511: move GCC-specific headers to /usr/include/gcc @@ -2580,7 +2593,7 @@ OLD_FILES+=usr/lib/libpam_ssh.a OLD_FILES+=usr/lib/libpam_ssh_p.a OLD_FILES+=usr/bin/help OLD_FILES+=usr/bin/sccs -.if ${TARGET_ARCH} != "amd64" && ${TARGET_ARCH} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "powerpc" +.if ${TARGET_ARCH} != "amd64" && ${TARGET} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET} != "powerpc" OLD_FILES+=usr/bin/gdbserver .endif OLD_FILES+=usr/bin/ssh-keysign Modified: user/attilio/vmcontention/UPDATING ============================================================================== --- user/attilio/vmcontention/UPDATING Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/UPDATING Fri Oct 7 14:52:30 2011 (r226110) @@ -22,6 +22,9 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 10 machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20110930: + sysinstall has been removed + 20110923: The stable/9 branch created in subversion. This corresponds to the RELENG_9 branch in CVS. Modified: user/attilio/vmcontention/bin/mv/mv.c ============================================================================== --- user/attilio/vmcontention/bin/mv/mv.c Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/bin/mv/mv.c Fri Oct 7 14:52:30 2011 (r226110) @@ -260,40 +260,34 @@ static int fastcopy(const char *from, const char *to, struct stat *sbp) { struct timeval tval[2]; - static u_int blen; - static char *bp; + static u_int blen = MAXPHYS; + static char *bp = NULL; mode_t oldmode; int nread, from_fd, to_fd; if ((from_fd = open(from, O_RDONLY, 0)) < 0) { - warn("%s", from); + warn("fastcopy: open() failed (from): %s", from); return (1); } - if (blen < sbp->st_blksize) { - if (bp != NULL) - free(bp); - if ((bp = malloc((size_t)sbp->st_blksize)) == NULL) { - blen = 0; - warnx("malloc failed"); - return (1); - } - blen = sbp->st_blksize; + if (bp == NULL && (bp = malloc((size_t)blen)) == NULL) { + warnx("malloc(%u) failed", blen); + return (1); } while ((to_fd = open(to, O_CREAT | O_EXCL | O_TRUNC | O_WRONLY, 0)) < 0) { if (errno == EEXIST && unlink(to) == 0) continue; - warn("%s", to); + warn("fastcopy: open() failed (to): %s", to); (void)close(from_fd); return (1); } while ((nread = read(from_fd, bp, (size_t)blen)) > 0) if (write(to_fd, bp, (size_t)nread) != nread) { - warn("%s", to); + warn("fastcopy: write() failed: %s", to); goto err; } if (nread < 0) { - warn("%s", from); + warn("fastcopy: read() failed: %s", from); err: if (unlink(to)) warn("%s: remove", to); (void)close(from_fd); Modified: user/attilio/vmcontention/bin/ps/ps.1 ============================================================================== --- user/attilio/vmcontention/bin/ps/ps.1 Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/bin/ps/ps.1 Fri Oct 7 14:52:30 2011 (r226110) @@ -431,7 +431,7 @@ The process is being traced or debugged. An abbreviation for the pathname of the controlling terminal, if any. The abbreviation consists of the three letters following .Pa /dev/tty , -or, for psuedo-terminals, the corresponding entry in +or, for pseudo-terminals, the corresponding entry in .Pa /dev/pts . This is followed by a .Ql - Modified: user/attilio/vmcontention/crypto/openssh/ChangeLog ============================================================================== --- user/attilio/vmcontention/crypto/openssh/ChangeLog Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/ChangeLog Fri Oct 7 14:52:30 2011 (r226110) @@ -1,13 +1,463 @@ -20110403 +20110906 + - (djm) [README version.h] Correct version + - (djm) [contrib/redhat/openssh.spec] Correct restorcon => restorecon + - (djm) Respin OpenSSH-5.9p1 release + +20110905 - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec] - [contrib/suse/openssh.spec] Prepare for 5.8p2 release. - - (djm) [version.h] crank version - - Release 5.8p2 - -20110329 - - (djm) [entropy.c] closefrom() before running ssh-rand-helper; leftover fds - noticed by tmraz AT redhat.com - + [contrib/suse/openssh.spec] Update version numbers. + +20110904 + - (djm) [regress/connect-privsep.sh regress/test-exec.sh] demote fatal + regress errors for the sandbox to warnings. ok tim dtucker + - (dtucker) [ssh-keygen.c ssh-pkcs11.c] Bug #1929: add null implementations + ofsh-pkcs11.cpkcs_init and pkcs_terminate for building without dlopen + support. + +20110829 + - (djm) [openbsd-compat/port-linux.c] Suppress logging when attempting + to switch SELinux context away from unconfined_t, based on patch from + Jan Chadima; bz#1919 ok dtucker@ + +20110827 + - (dtucker) [auth-skey.c] Add log.h to fix build --with-skey. + +20110818 + - (tim) [configure.ac] Typo in error message spotted by Andy Tsouladze + +20110817 + - (tim) [mac.c myproposal.h] Wrap SHA256 and SHA512 in ifdefs for + OpenSSL 0.9.7. ok djm + - (djm) [ openbsd-compat/bsd-cygwin_util.c openbsd-compat/bsd-cygwin_util.h] + binary_pipe is no longer required on Cygwin; patch from Corinna Vinschen + - (djm) [configure.ac] error out if the host lacks the necessary bits for + an explicitly requested sandbox type + - (djm) [contrib/ssh-copy-id] Missing backlslash; spotted by + bisson AT archlinux.org + - (djm) OpenBSD CVS Sync + - dtucker@cvs.openbsd.org 2011/06/03 05:35:10 + [regress/cfgmatch.sh] + use OBJ to find test configs, patch from Tim Rice + - markus@cvs.openbsd.org 2011/06/30 22:44:43 + [regress/connect-privsep.sh] + test with sandbox enabled; ok djm@ + - djm@cvs.openbsd.org 2011/08/02 01:23:41 + [regress/cipher-speed.sh regress/try-ciphers.sh] + add SHA256/SHA512 based HMAC modes + - (djm) [regress/cipher-speed.sh regress/try-ciphers.sh] disable HMAC-SHA2 + MAC tests for platforms that hack EVP_SHA2 support + +20110812 + - (dtucker) [openbsd-compat/port-linux.c] Bug 1924: Improve selinux context + change error by reporting old and new context names Patch from + jchadima at redhat. + - (djm) [contrib/redhat/openssh.spec contrib/redhat/sshd.init] + [contrib/suse/openssh.spec contrib/suse/rc.sshd] Updated RHEL and SLES + init scrips from imorgan AT nas.nasa.gov; bz#1920 + - (djm) [contrib/ssh-copy-id] Fix failure for cases where the path to the + identify file contained whitespace. bz#1828 patch from gwenael.lambrouin + AT gmail.com; ok dtucker@ + +20110807 + - (dtucker) OpenBSD CVS Sync + - jmc@cvs.openbsd.org 2008/06/26 06:59:39 + [moduli.5] + tweak previous; + - sobrado@cvs.openbsd.org 2009/10/28 08:56:54 + [moduli.5] + "Diffie-Hellman" is the usual spelling for the cryptographic protocol + first published by Whitfield Diffie and Martin Hellman in 1976. + ok jmc@ + - jmc@cvs.openbsd.org 2010/10/14 20:41:28 + [moduli.5] + probabalistic -> probabilistic; from naddy + - dtucker@cvs.openbsd.org 2011/08/07 12:55:30 + [sftp.1] + typo, fix from Laurent Gautrot + +20110805 + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/06/23 23:35:42 + [monitor.c] + ignore EINTR errors from poll() + - tedu@cvs.openbsd.org 2011/07/06 18:09:21 + [authfd.c] + bzero the agent address. the kernel was for a while very cranky about + these things. evne though that's fixed, always good to initialize + memory. ok deraadt djm + - djm@cvs.openbsd.org 2011/07/29 14:42:45 + [sandbox-systrace.c] + fail open(2) with EPERM rather than SIGKILLing the whole process. libc + will call open() to do strerror() when NLS is enabled; + feedback and ok markus@ + - markus@cvs.openbsd.org 2011/08/01 19:18:15 + [gss-serv.c] + prevent post-auth resource exhaustion (int overflow leading to 4GB malloc); + report Adam Zabrock; ok djm@, deraadt@ + - djm@cvs.openbsd.org 2011/08/02 01:22:11 + [mac.c myproposal.h ssh.1 ssh_config.5 sshd.8 sshd_config.5] + Add new SHA256 and SHA512 based HMAC modes from + http://www.ietf.org/id/draft-dbider-sha2-mac-for-ssh-02.txt + Patch from mdb AT juniper.net; feedback and ok markus@ + - djm@cvs.openbsd.org 2011/08/02 23:13:01 + [version.h] + crank now, release later + - djm@cvs.openbsd.org 2011/08/02 23:15:03 + [ssh.c] + typo in comment + +20110624 + - (djm) [configure.ac Makefile.in sandbox-darwin.c] Add a sandbox for + Darwin/OS X using sandbox_init() + setrlimit(); feedback and testing + markus@ + +20110623 + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/06/22 21:47:28 + [servconf.c] + reuse the multistate option arrays to pretty-print options for "sshd -T" + - djm@cvs.openbsd.org 2011/06/22 21:57:01 + [servconf.c servconf.h sshd.c sshd_config.5] + [configure.ac Makefile.in] + introduce sandboxing of the pre-auth privsep child using systrace(4). + + This introduces a new "UsePrivilegeSeparation=sandbox" option for + sshd_config that applies mandatory restrictions on the syscalls the + privsep child can perform. This prevents a compromised privsep child + from being used to attack other hosts (by opening sockets and proxying) + or probing local kernel attack surface. + + The sandbox is implemented using systrace(4) in unsupervised "fast-path" + mode, where a list of permitted syscalls is supplied. Any syscall not + on the list results in SIGKILL being sent to the privsep child. Note + that this requires a kernel with the new SYSTR_POLICY_KILL option. + + UsePrivilegeSeparation=sandbox will become the default in the future + so please start testing it now. + + feedback dtucker@; ok markus@ + - djm@cvs.openbsd.org 2011/06/22 22:08:42 + [channels.c channels.h clientloop.c clientloop.h mux.c ssh.c] + hook up a channel confirm callback to warn the user then requested X11 + forwarding was refused by the server; ok markus@ + - djm@cvs.openbsd.org 2011/06/23 09:34:13 + [sshd.c ssh-sandbox.h sandbox.h sandbox-rlimit.c sandbox-systrace.c] + [sandbox-null.c] + rename sandbox.h => ssh-sandbox.h to make things easier for portable + - (djm) [sandbox-null.c] Dummy sandbox for platforms that don't support + setrlimit(2) + +20110620 + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/06/04 00:10:26 + [ssh_config.5] + explain IdentifyFile's semantics a little better, prompted by bz#1898 + ok dtucker jmc + - markus@cvs.openbsd.org 2011/06/14 22:49:18 + [authfile.c] + make sure key_parse_public/private_rsa1() no longer consumes its input + buffer. fixes ssh-add for passphrase-protected ssh1-keys; + noted by naddy@; ok djm@ + - djm@cvs.openbsd.org 2011/06/17 21:44:31 + [log.c log.h monitor.c monitor.h monitor_wrap.c monitor_wrap.h sshd.c] + make the pre-auth privsep slave log via a socketpair shared with the + monitor rather than /var/empty/dev/log; ok dtucker@ deraadt@ markus@ + - djm@cvs.openbsd.org 2011/06/17 21:46:16 + [sftp-server.c] + the protocol version should be unsigned; bz#1913 reported by mb AT + smartftp.com + - djm@cvs.openbsd.org 2011/06/17 21:47:35 + [servconf.c] + factor out multi-choice option parsing into a parse_multistate label + and some support structures; ok dtucker@ + - djm@cvs.openbsd.org 2011/06/17 21:57:25 + [clientloop.c] + setproctitle for a mux master that has been gracefully stopped; + bz#1911 from Bert.Wesarg AT googlemail.com + +20110603 + - (dtucker) [README version.h contrib/caldera/openssh.spec + contrib/redhat/openssh.spec contrib/suse/openssh.spec] Pull the version + bumps from the 5.8p2 branch into HEAD. ok djm. + - (tim) [configure.ac defines.h] Run test program to detect system mail + directory. Add --with-maildir option to override. Fixed OpenServer 6 + getting it wrong. Fixed many systems having MAIL=/var/mail//username + ok dtucker + - (dtucker) [monitor.c] Remove the !HAVE_SOCKETPAIR case. We use socketpair + unconditionally in other places and the survey data we have does not show + any systems that use it. "nuke it" djm@ + - (djm) [configure.ac] enable setproctitle emulation for OS X + - (djm) OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/06/03 00:54:38 + [ssh.c] + bz#1883 - setproctitle() to identify mux master; patch from Bert.Wesarg + AT googlemail.com; ok dtucker@ + NB. includes additional portability code to enable setproctitle emulation + on platforms that don't support it. + - dtucker@cvs.openbsd.org 2011/06/03 01:37:40 + [ssh-agent.c] + Check current parent process ID against saved one to determine if the parent + has exited, rather than attempting to send a zero signal, since the latter + won't work if the parent has changed privs. bz#1905, patch from Daniel Kahn + Gillmor, ok djm@ + - dtucker@cvs.openbsd.org 2011/05/31 02:01:58 + [regress/dynamic-forward.sh] + back out revs 1.6 and 1.5 since it's not reliable + - dtucker@cvs.openbsd.org 2011/05/31 02:03:34 + [regress/dynamic-forward.sh] + work around startup and teardown races; caught by deraadt + - dtucker@cvs.openbsd.org 2011/06/03 00:29:52 + [regress/dynamic-forward.sh] + Retry establishing the port forwarding after a small delay, should make + the tests less flaky when the previous test is slow to shut down and free + up the port. + - (tim) [regress/cfgmatch.sh] Build/test out of tree fix. + +20110529 + - (djm) OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/05/23 03:30:07 + [auth-rsa.c auth.c auth.h auth2-pubkey.c monitor.c monitor_wrap.c] + [pathnames.h servconf.c servconf.h sshd.8 sshd_config sshd_config.5] + allow AuthorizedKeysFile to specify multiple files, separated by spaces. + Bring back authorized_keys2 as a default search path (to avoid breaking + existing users of this file), but override this in sshd_config so it will + be no longer used on fresh installs. Maybe in 2015 we can remove it + entierly :) + + feedback and ok markus@ dtucker@ + - djm@cvs.openbsd.org 2011/05/23 03:33:38 + [auth.c] + make secure_filename() spam debug logs less + - djm@cvs.openbsd.org 2011/05/23 03:52:55 + [sshconnect.c] + remove extra newline + - jmc@cvs.openbsd.org 2011/05/23 07:10:21 + [sshd.8 sshd_config.5] + tweak previous; ok djm + - djm@cvs.openbsd.org 2011/05/23 07:24:57 + [authfile.c] + read in key comments for v.2 keys (though note that these are not + passed over the agent protocol); bz#439, based on patch from binder + AT arago.de; ok markus@ + - djm@cvs.openbsd.org 2011/05/24 07:15:47 + [readconf.c readconf.h ssh.c ssh_config.5 sshconnect.c sshconnect2.c] + Remove undocumented legacy options UserKnownHostsFile2 and + GlobalKnownHostsFile2 by making UserKnownHostsFile/GlobalKnownHostsFile + accept multiple paths per line and making their defaults include + known_hosts2; ok markus + - djm@cvs.openbsd.org 2011/05/23 03:31:31 + [regress/cfgmatch.sh] + include testing of multiple/overridden AuthorizedKeysFiles + refactor to simply daemon start/stop and get rid of racy constructs + +20110520 + - (djm) [session.c] call setexeccon() before executing passwd for pw + changes; bz#1891 reported by jchadima AT redhat.com; ok dtucker@ + - (djm) [aclocal.m4 configure.ac] since gcc-4.x ignores all -Wno-options + options, we should corresponding -W-option when trying to determine + whether it is accepted. Also includes a warning fix on the program + fragment uses (bad main() return type). + bz#1900 and bz#1901 reported by g.esp AT free.fr; ok dtucker@ + - (djm) [servconf.c] remove leftover droppings of AuthorizedKeysFile2 + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/05/15 08:09:01 + [authfd.c monitor.c serverloop.c] + use FD_CLOEXEC consistently; patch from zion AT x96.org + - djm@cvs.openbsd.org 2011/05/17 07:13:31 + [key.c] + fatal() if asked to generate a legacy ECDSA cert (these don't exist) + and fix the regress test that was trying to generate them :) + - djm@cvs.openbsd.org 2011/05/20 00:55:02 + [servconf.c] + the options TrustedUserCAKeys, RevokedKeysFile, AuthorizedKeysFile + and AuthorizedPrincipalsFile were not being correctly applied in + Match blocks, despite being overridable there; ok dtucker@ + - dtucker@cvs.openbsd.org 2011/05/20 02:00:19 + [servconf.c] + Add comment documenting what should be after the preauth check. ok djm + - djm@cvs.openbsd.org 2011/05/20 03:25:45 + [monitor.c monitor_wrap.c servconf.c servconf.h] + use a macro to define which string options to copy between configs + for Match. This avoids problems caused by forgetting to keep three + code locations in perfect sync and ordering + + "this is at once beautiful and horrible" + ok dtucker@ + - djm@cvs.openbsd.org 2011/05/17 07:13:31 + [regress/cert-userkey.sh] + fatal() if asked to generate a legacy ECDSA cert (these don't exist) + and fix the regress test that was trying to generate them :) + - djm@cvs.openbsd.org 2011/05/20 02:43:36 + [cert-hostkey.sh] + another attempt to generate a v00 ECDSA key that broke the test + ID sync only - portable already had this somehow + - dtucker@cvs.openbsd.org 2011/05/20 05:19:50 + [dynamic-forward.sh] + Prevent races in dynamic forwarding test; ok djm + - dtucker@cvs.openbsd.org 2011/05/20 06:32:30 + [dynamic-forward.sh] + fix dumb error in dynamic-forward test + +20110515 + - (djm) OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/05/05 05:12:08 + [mux.c] + gracefully fall back when ControlPath is too large for a + sockaddr_un. ok markus@ as part of a larger diff + - dtucker@cvs.openbsd.org 2011/05/06 01:03:35 + [sshd_config] + clarify language about overriding defaults. bz#1892, from Petr Cerny + - djm@cvs.openbsd.org 2011/05/06 01:09:53 + [sftp.1] + mention that IPv6 addresses must be enclosed in square brackets; + bz#1845 + - djm@cvs.openbsd.org 2011/05/06 02:05:41 + [sshconnect2.c] + fix memory leak; bz#1849 ok dtucker@ + - djm@cvs.openbsd.org 2011/05/06 21:14:05 + [packet.c packet.h] + set traffic class for IPv6 traffic as we do for IPv4 TOS; + patch from lionel AT mamane.lu via Colin Watson in bz#1855; + ok markus@ + - djm@cvs.openbsd.org 2011/05/06 21:18:02 + [ssh.c ssh_config.5] + add a %L expansion (short-form of the local host name) for ControlPath; + sync some more expansions with LocalCommand; ok markus@ + - djm@cvs.openbsd.org 2011/05/06 21:31:38 + [readconf.c ssh_config.5] + support negated Host matching, e.g. + + Host *.example.org !c.example.org + User mekmitasdigoat + + Will match "a.example.org", "b.example.org", but not "c.example.org" + ok markus@ + - djm@cvs.openbsd.org 2011/05/06 21:34:32 + [clientloop.c mux.c readconf.c readconf.h ssh.c ssh_config.5] + Add a RequestTTY ssh_config option to allow configuration-based + control over tty allocation (like -t/-T); ok markus@ + - djm@cvs.openbsd.org 2011/05/06 21:38:58 + [ssh.c] + fix dropping from previous diff + - djm@cvs.openbsd.org 2011/05/06 22:20:10 + [PROTOCOL.mux] + fix numbering; from bert.wesarg AT googlemail.com + - jmc@cvs.openbsd.org 2011/05/07 23:19:39 + [ssh_config.5] + - tweak previous + - come consistency fixes + ok djm + - jmc@cvs.openbsd.org 2011/05/07 23:20:25 + [ssh.1] + +.It RequestTTY + - djm@cvs.openbsd.org 2011/05/08 12:52:01 + [PROTOCOL.mux clientloop.c clientloop.h mux.c] + improve our behaviour when TTY allocation fails: if we are in + RequestTTY=auto mode (the default), then do not treat at TTY + allocation error as fatal but rather just restore the local TTY + to cooked mode and continue. This is more graceful on devices that + never allocate TTYs. + + If RequestTTY is set to "yes" or "force", then failure to allocate + a TTY is fatal. + + ok markus@ + - djm@cvs.openbsd.org 2011/05/10 05:46:46 + [authfile.c] + despam debug() logs by detecting that we are trying to load a private key + in key_try_load_public() and returning early; ok markus@ + - djm@cvs.openbsd.org 2011/05/11 04:47:06 + [auth.c auth.h auth2-pubkey.c pathnames.h servconf.c servconf.h] + remove support for authorized_keys2; it is a relic from the early days + of protocol v.2 support and has been undocumented for many years; + ok markus@ + - djm@cvs.openbsd.org 2011/05/13 00:05:36 + [authfile.c] + warn on unexpected key type in key_parse_private_type() + - (djm) [packet.c] unbreak portability #endif + +20110510 + - (dtucker) [openbsd-compat/openssl-compat.{c,h}] Bug #1882: fix + --with-ssl-engine which was broken with the change from deprecated + SSLeay_add_all_algorithms(). ok djm + +20110506 + - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1875: add prototype + for closefrom() in test code. Report from Dan Wallis via Gentoo. + +20110505 + - (djm) [defines.h] Move up include of netinet/ip.h for IPTOS + definitions. From des AT des.no + - (djm) [Makefile.in WARNING.RNG aclocal.m4 buildpkg.sh.in configure.ac] + [entropy.c ssh-add.c ssh-agent.c ssh-keygen.c ssh-keyscan.c] + [ssh-keysign.c ssh-pkcs11-helper.c ssh-rand-helper.8 ssh-rand-helper.c] + [ssh.c ssh_prng_cmds.in sshd.c contrib/aix/buildbff.sh] + [regress/README.regress] Remove ssh-rand-helper and all its + tentacles. PRNGd seeding has been rolled into entropy.c directly. + Thanks to tim@ for testing on affected platforms. + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/03/10 02:52:57 + [auth2-gss.c auth2.c auth.h] + allow GSSAPI authentication to detect when a server-side failure causes + authentication failure and don't count such failures against MaxAuthTries; + bz#1244 from simon AT sxw.org.uk; ok markus@ before lock + - okan@cvs.openbsd.org 2011/03/15 10:36:02 + [ssh-keyscan.c] + use timerclear macro + ok djm@ + - stevesk@cvs.openbsd.org 2011/03/23 15:16:22 + [ssh-keygen.1 ssh-keygen.c] + Add -A option. For each of the key types (rsa1, rsa, dsa and ecdsa) + for which host keys do not exist, generate the host keys with the + default key file path, an empty passphrase, default bits for the key + type, and default comment. This will be used by /etc/rc to generate + new host keys. Idea from deraadt. + ok deraadt + - stevesk@cvs.openbsd.org 2011/03/23 16:24:56 + [ssh-keygen.1] + -q not used in /etc/rc now so remove statement. + - stevesk@cvs.openbsd.org 2011/03/23 16:50:04 + [ssh-keygen.c] + remove -d, documentation removed >10 years ago; ok markus + - jmc@cvs.openbsd.org 2011/03/24 15:29:30 + [ssh-keygen.1] + zap trailing whitespace; + - stevesk@cvs.openbsd.org 2011/03/24 22:14:54 + [ssh-keygen.c] + use strcasecmp() for "clear" cert permission option also; ok djm + - stevesk@cvs.openbsd.org 2011/03/29 18:54:17 + [misc.c misc.h servconf.c] + print ipqos friendly string for sshd -T; ok markus + # sshd -Tf sshd_config|grep ipqos + ipqos lowdelay throughput + - djm@cvs.openbsd.org 2011/04/12 04:23:50 + [ssh-keygen.c] + fix -Wshadow + - djm@cvs.openbsd.org 2011/04/12 05:32:49 + [sshd.c] + exit with 0 status on SIGTERM; bz#1879 + - djm@cvs.openbsd.org 2011/04/13 04:02:48 + [ssh-keygen.1] + improve wording; bz#1861 + - djm@cvs.openbsd.org 2011/04/13 04:09:37 + [ssh-keygen.1] + mention valid -b sizes for ECDSA keys; bz#1862 + - djm@cvs.openbsd.org 2011/04/17 22:42:42 + [PROTOCOL.mux clientloop.c clientloop.h mux.c ssh.1 ssh.c] + allow graceful shutdown of multiplexing: request that a mux server + removes its listener socket and refuse future multiplexing requests; + ok markus@ + - djm@cvs.openbsd.org 2011/04/18 00:46:05 + [ssh-keygen.c] + certificate options are supposed to be packed in lexical order of + option name (though we don't actually enforce this at present). + Move one up that was out of sequence + - djm@cvs.openbsd.org 2011/05/04 21:15:29 + [authfile.c authfile.h ssh-add.c] + allow "ssh-add - < key"; feedback and ok markus@ + - (tim) [configure.ac] Add AC_LANG_SOURCE to OPENSSH_CHECK_CFLAG_COMPILE + so autoreconf 2.68 is happy. + - (tim) [defines.h] Deal with platforms that do not have S_IFSOCK ok djm@ + 20110221 - (dtucker) [contrib/cygwin/ssh-host-config] From Corinna: revamp of the Cygwin-specific service installer script ssh-host-config. The actual @@ -19,6 +469,13 @@ The new script also is more thorough to inform the user why the script failed. Patch from vinschen at redhat com. +20110218 + - OpenBSD CVS Sync + - djm@cvs.openbsd.org 2011/02/16 00:31:14 + [ssh-keysign.c] + make hostbased auth with ECDSA keys work correctly. Based on patch + by harvey.eneman AT oracle.com in bz#1858; ok markus@ (pre-lock) + 20110206 - (dtucker) [openbsd-compat/port-linux.c] Bug #1851: fix syntax error in selinux code. Patch from Leonardo Chiquitto @@ -46,6 +503,14 @@ succeeded before using its result. Patch from cjwatson AT debian.org; bz#1851 +20110127 + - (tim) [config.guess config.sub] Sync with upstream. + - (tim) [configure.ac] Consistent M4 quoting throughout, updated obsolete + AC_TRY_COMPILE with AC_COMPILE_IFELSE, updated obsolete AC_TRY_LINK with + AC_LINK_IFELSE, updated obsolete AC_TRY_RUN with AC_RUN_IFELSE, misc white + space changes for consistency/readability. Makes autoconf 2.68 happy. + "Nice work" djm + 20110125 - (djm) [configure.ac Makefile.in ssh.c openbsd-compat/port-linux.c openbsd-compat/port-linux.h] Move SELinux-specific code from ssh.c to @@ -1256,4 +1721,3 @@ (use "ssh-keygen -t v00 -s ca_key ..." to generate a v00 certificate) ok markus@ - Modified: user/attilio/vmcontention/crypto/openssh/INSTALL ============================================================================== --- user/attilio/vmcontention/crypto/openssh/INSTALL Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/INSTALL Fri Oct 7 14:52:30 2011 (r226110) @@ -16,9 +16,7 @@ The remaining items are optional. NB. If you operating system supports /dev/random, you should configure OpenSSL to use it. OpenSSH relies on OpenSSL's direct support of -/dev/random, or failing that, either prngd or egd. If you don't have -any of these you will have to rely on ssh-rand-helper, which is inferior -to a good kernel-based solution or prngd. +/dev/random, or failing that, either prngd or egd PRNGD: @@ -262,4 +260,4 @@ Please refer to the "reporting bugs" sec http://www.openssh.com/ -$Id: INSTALL,v 1.85 2010/02/11 22:34:22 djm Exp $ +$Id: INSTALL,v 1.86 2011/05/05 03:48:37 djm Exp $ Modified: user/attilio/vmcontention/crypto/openssh/PROTOCOL.mux ============================================================================== --- user/attilio/vmcontention/crypto/openssh/PROTOCOL.mux Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/PROTOCOL.mux Fri Oct 7 14:52:30 2011 (r226110) @@ -73,6 +73,13 @@ non-multiplexed ssh(1) connection. Two a client must cope with are it receiving a signal itself and the server disconnecting without sending an exit message. +A master may also send a MUX_S_TTY_ALLOC_FAIL before MUX_S_EXIT_MESSAGE +if remote TTY allocation was unsuccessful. The client may use this to +return its local tty to "cooked" mode. + + uint32 MUX_S_TTY_ALLOC_FAIL + uint32 session id + 3. Health checks The client may request a health check/PID report from a server: @@ -149,10 +156,21 @@ The client then sends its standard input The contents of "reserved" are currently ignored. -A server may reply with a MUX_S_SESSION_OPEED, a MUX_S_PERMISSION_DENIED +A server may reply with a MUX_S_SESSION_OPENED, a MUX_S_PERMISSION_DENIED or a MUX_S_FAILURE. -8. Status messages +8. Requesting shutdown of mux listener + +A client may request the master to stop accepting new multiplexing requests +and remove its listener socket. + + uint32 MUX_C_STOP_LISTENING + uint32 request id + +A server may reply with a MUX_S_OK, a MUX_S_PERMISSION_DENIED or a +MUX_S_FAILURE. + +9. Status messages The MUX_S_OK message is empty: @@ -169,7 +187,7 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FA uint32 client request id string reason -9. Protocol numbers +10. Protocol numbers #define MUX_MSG_HELLO 0x00000001 #define MUX_C_NEW_SESSION 0x10000002 @@ -178,6 +196,7 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FA #define MUX_C_OPEN_FWD 0x10000006 #define MUX_C_CLOSE_FWD 0x10000007 #define MUX_C_NEW_STDIO_FWD 0x10000008 +#define MUX_C_STOP_LISTENING 0x10000009 #define MUX_S_OK 0x80000001 #define MUX_S_PERMISSION_DENIED 0x80000002 #define MUX_S_FAILURE 0x80000003 @@ -185,6 +204,7 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FA #define MUX_S_ALIVE 0x80000005 #define MUX_S_SESSION_OPENED 0x80000006 #define MUX_S_REMOTE_PORT 0x80000007 +#define MUX_S_TTY_ALLOC_FAIL 0x80000008 #define MUX_FWD_LOCAL 1 #define MUX_FWD_REMOTE 2 @@ -192,12 +212,10 @@ The MUX_S_PERMISSION_DENIED and MUX_S_FA XXX TODO XXX extended status (e.g. report open channels / forwards) -XXX graceful close (delete listening socket, but keep existing sessions active) XXX lock (maybe) XXX watch in/out traffic (pre/post crypto) XXX inject packet (what about replies) XXX server->client error/warning notifications -XXX port0 rfwd (need custom response message) XXX send signals via mux -$OpenBSD: PROTOCOL.mux,v 1.4 2011/01/31 21:42:15 djm Exp $ +$OpenBSD: PROTOCOL.mux,v 1.7 2011/05/08 12:52:01 djm Exp $ Modified: user/attilio/vmcontention/crypto/openssh/README ============================================================================== --- user/attilio/vmcontention/crypto/openssh/README Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/README Fri Oct 7 14:52:30 2011 (r226110) @@ -1,4 +1,4 @@ -See http://www.openssh.com/txt/release-5.8p2 for the release notes. +See http://www.openssh.com/txt/release-5.9 for the release notes. - A Japanese translation of this document and of the OpenSSH FAQ is - available at http://www.unixuser.org/~haruyama/security/openssh/index.html @@ -62,4 +62,4 @@ References - [6] http://www.openbsd.org/cgi-bin/man.cgi?query=style&sektion=9 [7] http://www.openssh.com/faq.html -$Id: README,v 1.75.4.2 2011/05/03 00:04:21 djm Exp $ +$Id: README,v 1.77.2.2 2011/09/06 23:11:20 djm Exp $ Modified: user/attilio/vmcontention/crypto/openssh/aclocal.m4 ============================================================================== --- user/attilio/vmcontention/crypto/openssh/aclocal.m4 Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/aclocal.m4 Fri Oct 7 14:52:30 2011 (r226110) @@ -1,8 +1,26 @@ -dnl $Id: aclocal.m4,v 1.6 2005/09/19 16:33:39 tim Exp $ +dnl $Id: aclocal.m4,v 1.8 2011/05/20 01:45:25 djm Exp $ dnl dnl OpenSSH-specific autoconf macros dnl +dnl OSSH_CHECK_CFLAG_COMPILE(check_flag[, define_flag]) +dnl Check that $CC accepts a flag 'check_flag'. If it is supported append +dnl 'define_flag' to $CFLAGS. If 'define_flag' is not specified, then append +dnl 'check_flag'. +AC_DEFUN([OSSH_CHECK_CFLAG_COMPILE], [{ + AC_MSG_CHECKING([if $CC supports $1]) + saved_CFLAGS="$CFLAGS" + CFLAGS="$CFLAGS $1" + _define_flag="$2" + test "x$_define_flag" = "x" && _define_flag="$1" + AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int main(void) { return 0; }]])], + [ AC_MSG_RESULT([yes]) + CFLAGS="$saved_CFLAGS $_define_flag"], + [ AC_MSG_RESULT([no]) + CFLAGS="$saved_CFLAGS" ] + ) +}]) + dnl OSSH_CHECK_HEADER_FOR_FIELD(field, header, symbol) dnl Does AC_EGREP_HEADER on 'header' for the string 'field' @@ -33,16 +51,6 @@ AC_DEFUN(OSSH_CHECK_HEADER_FOR_FIELD, [ fi ]) -dnl OSSH_PATH_ENTROPY_PROG(variablename, command): -dnl Tidiness function, sets 'undef' if not found, and does the AC_SUBST -AC_DEFUN(OSSH_PATH_ENTROPY_PROG, [ - AC_PATH_PROG($1, $2) - if test -z "[$]$1" ; then - $1="undef" - fi - AC_SUBST($1) -]) - dnl Check for socklen_t: historically on BSD it is an int, and in dnl POSIX 1g it is a type of its own, but some platforms use different dnl types for the argument to getsockopt, getpeername, etc. So we Modified: user/attilio/vmcontention/crypto/openssh/audit-linux.c ============================================================================== --- user/attilio/vmcontention/crypto/openssh/audit-linux.c Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/audit-linux.c Fri Oct 7 14:52:30 2011 (r226110) @@ -1,4 +1,4 @@ -/* $Id$ */ +/* $Id: audit-linux.c,v 1.1 2011/01/17 10:15:30 dtucker Exp $ */ /* * Copyright 2010 Red Hat, Inc. All rights reserved. Modified: user/attilio/vmcontention/crypto/openssh/auth-rsa.c ============================================================================== --- user/attilio/vmcontention/crypto/openssh/auth-rsa.c Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/auth-rsa.c Fri Oct 7 14:52:30 2011 (r226110) @@ -1,4 +1,4 @@ -/* $OpenBSD: auth-rsa.c,v 1.79 2010/12/03 23:55:27 djm Exp $ */ +/* $OpenBSD: auth-rsa.c,v 1.80 2011/05/23 03:30:07 djm Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -160,44 +160,27 @@ auth_rsa_challenge_dialog(Key *key) return (success); } -/* - * check if there's user key matching client_n, - * return key if login is allowed, NULL otherwise - */ - -int -auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) +static int +rsa_key_allowed_in_file(struct passwd *pw, char *file, + const BIGNUM *client_n, Key **rkey) { - char line[SSH_MAX_PUBKEY_BYTES], *file; + char line[SSH_MAX_PUBKEY_BYTES]; int allowed = 0; u_int bits; FILE *f; u_long linenum = 0; Key *key; - /* Temporarily use the user's uid. */ - temporarily_use_uid(pw); - - /* The authorized keys. */ - file = authorized_keys_file(pw); debug("trying public RSA key file %s", file); - f = auth_openkeyfile(file, pw, options.strict_modes); - if (!f) { - xfree(file); - restore_uid(); - return (0); - } - - /* Flag indicating whether the key is allowed. */ - allowed = 0; - - key = key_new(KEY_RSA1); + if ((f = auth_openkeyfile(file, pw, options.strict_modes)) == NULL) + return 0; /* * Go though the accepted keys, looking for the current key. If * found, perform a challenge-response dialog to verify that the * user really has the corresponding private key. */ + key = key_new(KEY_RSA1); while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { char *cp; char *key_options; @@ -235,7 +218,10 @@ auth_rsa_key_allowed(struct passwd *pw, } /* cp now points to the comment part. */ - /* Check if the we have found the desired key (identified by its modulus). */ + /* + * Check if the we have found the desired key (identified + * by its modulus). + */ if (BN_cmp(key->rsa->n, client_n) != 0) continue; @@ -264,11 +250,7 @@ auth_rsa_key_allowed(struct passwd *pw, break; } - /* Restore the privileged uid. */ - restore_uid(); - /* Close the file. */ - xfree(file); fclose(f); /* return key if allowed */ @@ -276,7 +258,33 @@ auth_rsa_key_allowed(struct passwd *pw, *rkey = key; else key_free(key); - return (allowed); + + return allowed; +} + +/* + * check if there's user key matching client_n, + * return key if login is allowed, NULL otherwise + */ + +int +auth_rsa_key_allowed(struct passwd *pw, BIGNUM *client_n, Key **rkey) +{ + char *file; + u_int i, allowed = 0; + + temporarily_use_uid(pw); + + for (i = 0; !allowed && i < options.num_authkeys_files; i++) { + file = expand_authorized_keys( + options.authorized_keys_files[i], pw); + allowed = rsa_key_allowed_in_file(pw, file, client_n, rkey); + xfree(file); + } + + restore_uid(); + + return allowed; } /* Modified: user/attilio/vmcontention/crypto/openssh/auth-skey.c ============================================================================== --- user/attilio/vmcontention/crypto/openssh/auth-skey.c Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/auth-skey.c Fri Oct 7 14:52:30 2011 (r226110) @@ -39,6 +39,7 @@ #include "hostfile.h" #include "auth.h" #include "ssh-gss.h" +#include "log.h" #include "monitor_wrap.h" static void * Modified: user/attilio/vmcontention/crypto/openssh/auth.c ============================================================================== --- user/attilio/vmcontention/crypto/openssh/auth.c Fri Oct 7 14:42:11 2011 (r226109) +++ user/attilio/vmcontention/crypto/openssh/auth.c Fri Oct 7 14:52:30 2011 (r226110) @@ -1,4 +1,4 @@ -/* $OpenBSD: auth.c,v 1.91 2010/11/29 23:45:51 djm Exp $ */ +/* $OpenBSD: auth.c,v 1.94 2011/05/23 03:33:38 djm Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -332,7 +332,7 @@ auth_root_allowed(char *method) * * This returns a buffer allocated by xmalloc. */ -static char * +char * expand_authorized_keys(const char *filename, struct passwd *pw) { char *file, ret[MAXPATHLEN]; @@ -356,18 +356,6 @@ expand_authorized_keys(const char *filen } char * -authorized_keys_file(struct passwd *pw) -{ *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Sat Oct 8 09:06:50 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5F4151065672; Sat, 8 Oct 2011 09:06:50 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 477FE8FC21; Sat, 8 Oct 2011 09:06:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p9896oWg051283; Sat, 8 Oct 2011 09:06:50 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p9896nUh051272; Sat, 8 Oct 2011 09:06:49 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201110080906.p9896nUh051272@svn.freebsd.org> From: Ed Schouten Date: Sat, 8 Oct 2011 09:06:49 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226142 - in user/ed/newcons: . bin/chmod bin/ed bin/expr bin/ls bin/mv bin/pax bin/ps bin/rcp bin/realpath bin/setfacl bin/sh bin/sh/bltin bin/stty cddl/compat/opensolaris/include cddl... X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Oct 2011 09:06:50 -0000 Author: ed Date: Sat Oct 8 09:06:43 2011 New Revision: 226142 URL: http://svn.freebsd.org/changeset/base/226142 Log: Merge in FreeBSD HEAD r226141. Added: user/ed/newcons/contrib/bind9/HISTORY - copied unchanged from r226141, head/contrib/bind9/HISTORY user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.html - copied unchanged from r226141, head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.html user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.pdf - copied unchanged from r226141, head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.pdf user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.txt - copied unchanged from r226141, head/contrib/bind9/RELEASE-NOTES-BIND-9.8.1.txt user/ed/newcons/contrib/bind9/bin/confgen/ - copied from r226141, head/contrib/bind9/bin/confgen/ user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-revoke.8 - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-revoke.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-revoke.c - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-revoke.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-revoke.docbook - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-revoke.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-revoke.html - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-revoke.html user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-settime.8 - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-settime.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-settime.c - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-settime.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-settime.docbook - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-settime.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-settime.html - copied unchanged from r226141, head/contrib/bind9/bin/dnssec/dnssec-settime.html user/ed/newcons/contrib/bind9/bin/named/bind.keys.h - copied unchanged from r226141, head/contrib/bind9/bin/named/bind.keys.h user/ed/newcons/contrib/bind9/bin/named/include/dlz/ - copied from r226141, head/contrib/bind9/bin/named/include/dlz/ user/ed/newcons/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c - copied unchanged from r226141, head/contrib/bind9/bin/named/unix/dlz_dlopen_driver.c user/ed/newcons/contrib/bind9/bin/tools/ - copied from r226141, head/contrib/bind9/bin/tools/ user/ed/newcons/contrib/bind9/doc/arm/dnssec.xml - copied unchanged from r226141, head/contrib/bind9/doc/arm/dnssec.xml user/ed/newcons/contrib/bind9/doc/arm/libdns.xml - copied unchanged from r226141, head/contrib/bind9/doc/arm/libdns.xml user/ed/newcons/contrib/bind9/doc/arm/man.arpaname.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.arpaname.html user/ed/newcons/contrib/bind9/doc/arm/man.ddns-confgen.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.ddns-confgen.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-revoke.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.dnssec-revoke.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-settime.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.dnssec-settime.html user/ed/newcons/contrib/bind9/doc/arm/man.genrandom.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.genrandom.html user/ed/newcons/contrib/bind9/doc/arm/man.isc-hmac-fixup.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.isc-hmac-fixup.html user/ed/newcons/contrib/bind9/doc/arm/man.named-journalprint.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.named-journalprint.html user/ed/newcons/contrib/bind9/doc/arm/man.nsec3hash.html - copied unchanged from r226141, head/contrib/bind9/doc/arm/man.nsec3hash.html user/ed/newcons/contrib/bind9/doc/arm/managed-keys.xml - copied unchanged from r226141, head/contrib/bind9/doc/arm/managed-keys.xml user/ed/newcons/contrib/bind9/doc/arm/pkcs11.xml - copied unchanged from r226141, head/contrib/bind9/doc/arm/pkcs11.xml user/ed/newcons/contrib/bind9/lib/dns/client.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/client.c user/ed/newcons/contrib/bind9/lib/dns/dns64.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/dns64.c user/ed/newcons/contrib/bind9/lib/dns/ecdb.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/ecdb.c user/ed/newcons/contrib/bind9/lib/dns/include/dns/client.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/client.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/dlz_dlopen.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dns64.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/dns64.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/ecdb.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/ecdb.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/keydata.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/keydata.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/private.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/private.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rpz.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/rpz.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rriterator.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/rriterator.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/tsec.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/include/dns/tsec.h user/ed/newcons/contrib/bind9/lib/dns/keydata.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/keydata.c user/ed/newcons/contrib/bind9/lib/dns/opensslgost_link.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/opensslgost_link.c user/ed/newcons/contrib/bind9/lib/dns/private.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/private.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/hip_55.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/rdata/generic/hip_55.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/hip_55.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/rdata/generic/hip_55.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/rdata/generic/keydata_65533.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/keydata_65533.h - copied unchanged from r226141, head/contrib/bind9/lib/dns/rdata/generic/keydata_65533.h user/ed/newcons/contrib/bind9/lib/dns/rpz.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/rpz.c user/ed/newcons/contrib/bind9/lib/dns/rriterator.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/rriterator.c user/ed/newcons/contrib/bind9/lib/dns/ssu_external.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/ssu_external.c user/ed/newcons/contrib/bind9/lib/dns/tsec.c - copied unchanged from r226141, head/contrib/bind9/lib/dns/tsec.c user/ed/newcons/contrib/bind9/lib/export/ - copied from r226141, head/contrib/bind9/lib/export/ user/ed/newcons/contrib/bind9/lib/irs/ - copied from r226141, head/contrib/bind9/lib/irs/ user/ed/newcons/contrib/bind9/lib/isc/app_api.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/app_api.c user/ed/newcons/contrib/bind9/lib/isc/backtrace-emptytbl.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/backtrace-emptytbl.c user/ed/newcons/contrib/bind9/lib/isc/backtrace.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/backtrace.c user/ed/newcons/contrib/bind9/lib/isc/include/isc/backtrace.h - copied unchanged from r226141, head/contrib/bind9/lib/isc/include/isc/backtrace.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/bind9.h - copied unchanged from r226141, head/contrib/bind9/lib/isc/include/isc/bind9.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/namespace.h - copied unchanged from r226141, head/contrib/bind9/lib/isc/include/isc/namespace.h user/ed/newcons/contrib/bind9/lib/isc/mem_api.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/mem_api.c user/ed/newcons/contrib/bind9/lib/isc/socket_api.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/socket_api.c user/ed/newcons/contrib/bind9/lib/isc/task_api.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/task_api.c user/ed/newcons/contrib/bind9/lib/isc/timer_api.c - copied unchanged from r226141, head/contrib/bind9/lib/isc/timer_api.c user/ed/newcons/contrib/bind9/lib/isccfg/dnsconf.c - copied unchanged from r226141, head/contrib/bind9/lib/isccfg/dnsconf.c user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/dnsconf.h - copied unchanged from r226141, head/contrib/bind9/lib/isccfg/include/isccfg/dnsconf.h user/ed/newcons/contrib/bind9/release-notes.css - copied unchanged from r226141, head/contrib/bind9/release-notes.css user/ed/newcons/contrib/compiler-rt/lib/abi.h - copied unchanged from r226141, head/contrib/compiler-rt/lib/abi.h user/ed/newcons/contrib/compiler-rt/lib/arm/divmodsi4.S - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/divmodsi4.S user/ed/newcons/contrib/compiler-rt/lib/arm/divsi3.S - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/divsi3.S user/ed/newcons/contrib/compiler-rt/lib/arm/softfloat-alias.list - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/softfloat-alias.list user/ed/newcons/contrib/compiler-rt/lib/arm/udivmodsi4.S - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/udivmodsi4.S user/ed/newcons/contrib/compiler-rt/lib/arm/udivsi3.S - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/udivsi3.S user/ed/newcons/contrib/compiler-rt/lib/arm/umodsi3.S - copied unchanged from r226141, head/contrib/compiler-rt/lib/arm/umodsi3.S user/ed/newcons/contrib/compiler-rt/lib/divmoddi4.c - copied unchanged from r226141, head/contrib/compiler-rt/lib/divmoddi4.c user/ed/newcons/contrib/compiler-rt/lib/divmodsi4.c - copied unchanged from r226141, head/contrib/compiler-rt/lib/divmodsi4.c user/ed/newcons/contrib/compiler-rt/lib/subdf3.c - copied unchanged from r226141, head/contrib/compiler-rt/lib/subdf3.c user/ed/newcons/contrib/compiler-rt/lib/subsf3.c - copied unchanged from r226141, head/contrib/compiler-rt/lib/subsf3.c user/ed/newcons/contrib/compiler-rt/lib/udivmodsi4.c - copied unchanged from r226141, head/contrib/compiler-rt/lib/udivmodsi4.c user/ed/newcons/contrib/dialog/argv.c - copied unchanged from r226141, head/contrib/dialog/argv.c user/ed/newcons/contrib/dialog/help.c - copied unchanged from r226141, head/contrib/dialog/help.c user/ed/newcons/contrib/dialog/package/ - copied from r226141, head/contrib/dialog/package/ user/ed/newcons/contrib/dialog/po/sk.po - copied unchanged from r226141, head/contrib/dialog/po/sk.po user/ed/newcons/contrib/dialog/po/sl.po - copied unchanged from r226141, head/contrib/dialog/po/sl.po user/ed/newcons/contrib/dialog/prgbox.c - copied unchanged from r226141, head/contrib/dialog/prgbox.c user/ed/newcons/contrib/dialog/rename.sh - copied unchanged from r226141, head/contrib/dialog/rename.sh user/ed/newcons/contrib/dialog/samples/msgbox-utf8 - copied unchanged from r226141, head/contrib/dialog/samples/msgbox-utf8 user/ed/newcons/contrib/dialog/samples/pause-both - copied unchanged from r226141, head/contrib/dialog/samples/pause-both user/ed/newcons/contrib/dialog/samples/pause-extra - copied unchanged from r226141, head/contrib/dialog/samples/pause-extra user/ed/newcons/contrib/dialog/samples/prgbox - copied unchanged from r226141, head/contrib/dialog/samples/prgbox user/ed/newcons/contrib/dialog/samples/prgbox2 - copied unchanged from r226141, head/contrib/dialog/samples/prgbox2 user/ed/newcons/contrib/dialog/samples/programbox - copied unchanged from r226141, head/contrib/dialog/samples/programbox user/ed/newcons/contrib/dialog/samples/programbox2 - copied unchanged from r226141, head/contrib/dialog/samples/programbox2 user/ed/newcons/contrib/dialog/samples/shortlist - copied unchanged from r226141, head/contrib/dialog/samples/shortlist user/ed/newcons/contrib/dialog/samples/textbox-both - copied unchanged from r226141, head/contrib/dialog/samples/textbox-both user/ed/newcons/contrib/dialog/samples/textbox-help - copied unchanged from r226141, head/contrib/dialog/samples/textbox-help user/ed/newcons/contrib/dialog/samples/valgrind.log - copied unchanged from r226141, head/contrib/dialog/samples/valgrind.log user/ed/newcons/contrib/gcc/ChangeLog.gcc43 - copied unchanged from r226141, head/contrib/gcc/ChangeLog.gcc43 user/ed/newcons/contrib/llvm/LICENSE.TXT - copied unchanged from r226141, head/contrib/llvm/LICENSE.TXT user/ed/newcons/contrib/llvm/include/llvm-c/Disassembler.h - copied unchanged from r226141, head/contrib/llvm/include/llvm-c/Disassembler.h user/ed/newcons/contrib/llvm/include/llvm-c/Object.h - copied unchanged from r226141, head/contrib/llvm/include/llvm-c/Object.h user/ed/newcons/contrib/llvm/include/llvm/ADT/PackedVector.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/ADT/PackedVector.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/BlockFrequency.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Analysis/BlockFrequency.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Analysis/BlockFrequencyImpl.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Analysis/BranchProbabilityInfo.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequency.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/CodeGen/MachineBlockFrequency.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h user/ed/newcons/contrib/llvm/include/llvm/DebugInfoProbe.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/DebugInfoProbe.h user/ed/newcons/contrib/llvm/include/llvm/DefaultPasses.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/DefaultPasses.h user/ed/newcons/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h user/ed/newcons/contrib/llvm/include/llvm/IntrinsicsPTX.td - copied unchanged from r226141, head/contrib/llvm/include/llvm/IntrinsicsPTX.td user/ed/newcons/contrib/llvm/include/llvm/MC/MCInstrDesc.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCInstrDesc.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCInstrInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCInstrInfo.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCInstrItineraries.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCInstrItineraries.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCRegisterInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCRegisterInfo.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCSubtargetInfo.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCWin64EH.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/MCWin64EH.h user/ed/newcons/contrib/llvm/include/llvm/MC/SubtargetFeature.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/MC/SubtargetFeature.h user/ed/newcons/contrib/llvm/include/llvm/Object/Binary.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Object/Binary.h user/ed/newcons/contrib/llvm/include/llvm/Object/COFF.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Object/COFF.h user/ed/newcons/contrib/llvm/include/llvm/Object/Error.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Object/Error.h user/ed/newcons/contrib/llvm/include/llvm/Support/BranchProbability.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Support/BranchProbability.h user/ed/newcons/contrib/llvm/include/llvm/Support/PassManagerBuilder.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Support/PassManagerBuilder.h user/ed/newcons/contrib/llvm/include/llvm/Support/Win64EH.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Support/Win64EH.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h - copied unchanged from r226141, head/contrib/llvm/include/llvm/Target/TargetSubtargetInfo.h user/ed/newcons/contrib/llvm/lib/Analysis/BlockFrequency.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Analysis/BlockFrequency.cpp user/ed/newcons/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Analysis/BranchProbabilityInfo.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/AsmPrinter/Win64Exception.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/InterferenceCache.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/InterferenceCache.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/InterferenceCache.h - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/InterferenceCache.h user/ed/newcons/contrib/llvm/lib/CodeGen/MachineBlockFrequency.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/MachineBlockFrequency.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/RegisterClassInfo.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegisterClassInfo.h - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/RegisterClassInfo.h user/ed/newcons/contrib/llvm/lib/CodeGen/RegisterCoalescer.h - copied unchanged from r226141, head/contrib/llvm/lib/CodeGen/RegisterCoalescer.h user/ed/newcons/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp - copied unchanged from r226141, head/contrib/llvm/lib/ExecutionEngine/MCJIT/Intercept.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h - copied unchanged from r226141, head/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJITMemoryManager.h user/ed/newcons/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ - copied from r226141, head/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ user/ed/newcons/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp - copied unchanged from r226141, head/contrib/llvm/lib/ExecutionEngine/TargetSelect.cpp user/ed/newcons/contrib/llvm/lib/MC/ELFObjectWriter.h - copied unchanged from r226141, head/contrib/llvm/lib/MC/ELFObjectWriter.h user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.cpp user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCDisassembler/Disassembler.h user/ed/newcons/contrib/llvm/lib/MC/MCELF.cpp - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCELF.cpp user/ed/newcons/contrib/llvm/lib/MC/MCELF.h - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCELF.h user/ed/newcons/contrib/llvm/lib/MC/MCELFStreamer.h - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCELFStreamer.h user/ed/newcons/contrib/llvm/lib/MC/MCSubtargetInfo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCSubtargetInfo.cpp user/ed/newcons/contrib/llvm/lib/MC/MCWin64EH.cpp - copied unchanged from r226141, head/contrib/llvm/lib/MC/MCWin64EH.cpp user/ed/newcons/contrib/llvm/lib/MC/SubtargetFeature.cpp - copied unchanged from r226141, head/contrib/llvm/lib/MC/SubtargetFeature.cpp user/ed/newcons/contrib/llvm/lib/Object/Binary.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Object/Binary.cpp user/ed/newcons/contrib/llvm/lib/Object/Error.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Object/Error.cpp user/ed/newcons/contrib/llvm/lib/Object/MachOObjectFile.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Object/MachOObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Object/Object.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Object/Object.cpp user/ed/newcons/contrib/llvm/lib/Support/BranchProbability.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Support/BranchProbability.cpp user/ed/newcons/contrib/llvm/lib/Support/COPYRIGHT.regex - copied unchanged from r226141, head/contrib/llvm/lib/Support/COPYRIGHT.regex user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMachObjectWriter.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/ARM/ARMMachObjectWriter.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/ARM/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/Alpha/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/Alpha/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/Blackfin/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/Blackfin/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/CellSPU/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule3.td - copied unchanged from r226141, head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule3.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule5.td - copied unchanged from r226141, head/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule5.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/MBlaze/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/MSP430/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/MSP430/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/Mips/InstPrinter/ - copied from r226141, head/contrib/llvm/lib/Target/Mips/InstPrinter/ user/ed/newcons/contrib/llvm/lib/Target/Mips/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/Mips/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsEmitGPRestore.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsExpandPseudo.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsMCInstLower.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h - copied unchanged from r226141, head/contrib/llvm/lib/Target/Mips/MipsMCSymbolRefExpr.h user/ed/newcons/contrib/llvm/lib/Target/PTX/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/PTX/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXCallingConv.td - copied unchanged from r226141, head/contrib/llvm/lib/Target/PTX/PTXCallingConv.td user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td - copied unchanged from r226141, head/contrib/llvm/lib/Target/PTX/PTXIntrinsicInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/PTX/generate-register-td.py - copied unchanged from r226141, head/contrib/llvm/lib/Target/PTX/generate-register-td.py user/ed/newcons/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/PowerPC/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/Sparc/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/Sparc/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/SystemZ/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Target/TargetSubtargetInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/X86/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Target/XCore/MCTargetDesc/ - copied from r226141, head/contrib/llvm/lib/Target/XCore/MCTargetDesc/ user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Transforms/Scalar/ObjCARC.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp - copied unchanged from r226141, head/contrib/llvm/lib/Transforms/Utils/LowerExpectIntrinsic.cpp user/ed/newcons/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp - copied unchanged from r226141, head/contrib/llvm/lib/VMCore/DebugInfoProbe.cpp user/ed/newcons/contrib/llvm/tools/clang/LICENSE.TXT - copied unchanged from r226141, head/contrib/llvm/tools/clang/LICENSE.TXT user/ed/newcons/contrib/llvm/tools/clang/include/clang/ARCMigrate/ - copied from r226141, head/contrib/llvm/tools/clang/include/clang/ARCMigrate/ user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/AST/GlobalDecl.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/AddressSpaces.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPTX.def - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsPTX.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DelayedCleanupPool.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/DelayedCleanupPool.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/OpenCL.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/OpenCL.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Basic/VersionTuple.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Driver/ObjCRuntime.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Sema/LocInfoType.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Sema/TypoCorrection.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/Serialization/ChainedIncludesSource.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h user/ed/newcons/contrib/llvm/tools/clang/lib/ARCMigrate/ - copied from r226141, head/contrib/llvm/tools/clang/lib/ARCMigrate/ user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/AST/ExternalASTSource.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Basic/VersionTuple.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Headers/mm3dnow.h user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/Scope.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Sema/Scope.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Sema/SemaExprMember.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/Serialization/ChainedIncludesSource.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorsChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp - copied unchanged from r226141, head/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/CodeGenRegisters.cpp user/ed/newcons/contrib/llvm/utils/TableGen/Error.cpp - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/Error.cpp user/ed/newcons/contrib/llvm/utils/TableGen/Error.h - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/Error.h user/ed/newcons/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/PseudoLoweringEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/SetTheory.cpp - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/SetTheory.cpp user/ed/newcons/contrib/llvm/utils/TableGen/SetTheory.h - copied unchanged from r226141, head/contrib/llvm/utils/TableGen/SetTheory.h user/ed/newcons/contrib/sendmail/cf/ostype/solaris11.m4 - copied unchanged from r226141, head/contrib/sendmail/cf/ostype/solaris11.m4 - copied from r226141, head/contrib/tnftp/ user/ed/newcons/contrib/xz/po/fr.po - copied unchanged from r226141, head/contrib/xz/po/fr.po user/ed/newcons/contrib/xz/po/pl.po - copied unchanged from r226141, head/contrib/xz/po/pl.po user/ed/newcons/crypto/openssh/README.hpn - copied unchanged from r226141, head/crypto/openssh/README.hpn user/ed/newcons/crypto/openssh/audit-linux.c - copied unchanged from r226141, head/crypto/openssh/audit-linux.c user/ed/newcons/crypto/openssh/bufec.c - copied unchanged from r226141, head/crypto/openssh/bufec.c user/ed/newcons/crypto/openssh/kexecdh.c - copied unchanged from r226141, head/crypto/openssh/kexecdh.c user/ed/newcons/crypto/openssh/kexecdhc.c - copied unchanged from r226141, head/crypto/openssh/kexecdhc.c user/ed/newcons/crypto/openssh/kexecdhs.c - copied unchanged from r226141, head/crypto/openssh/kexecdhs.c user/ed/newcons/crypto/openssh/openbsd-compat/charclass.h - copied unchanged from r226141, head/crypto/openssh/openbsd-compat/charclass.h user/ed/newcons/crypto/openssh/openbsd-compat/timingsafe_bcmp.c - copied unchanged from r226141, head/crypto/openssh/openbsd-compat/timingsafe_bcmp.c user/ed/newcons/crypto/openssh/sandbox-darwin.c - copied unchanged from r226141, head/crypto/openssh/sandbox-darwin.c user/ed/newcons/crypto/openssh/sandbox-null.c - copied unchanged from r226141, head/crypto/openssh/sandbox-null.c user/ed/newcons/crypto/openssh/sandbox-rlimit.c - copied unchanged from r226141, head/crypto/openssh/sandbox-rlimit.c user/ed/newcons/crypto/openssh/sandbox-systrace.c - copied unchanged from r226141, head/crypto/openssh/sandbox-systrace.c user/ed/newcons/crypto/openssh/ssh-ecdsa.c - copied unchanged from r226141, head/crypto/openssh/ssh-ecdsa.c user/ed/newcons/crypto/openssh/ssh-sandbox.h - copied unchanged from r226141, head/crypto/openssh/ssh-sandbox.h user/ed/newcons/etc/devd/usb.conf - copied unchanged from r226141, head/etc/devd/usb.conf user/ed/newcons/etc/periodic/daily/220.backup-pkgdb - copied unchanged from r226141, head/etc/periodic/daily/220.backup-pkgdb user/ed/newcons/etc/rc.d/kld - copied unchanged from r226141, head/etc/rc.d/kld user/ed/newcons/etc/rc.d/netwait - copied unchanged from r226141, head/etc/rc.d/netwait user/ed/newcons/etc/rc.d/rctl - copied unchanged from r226141, head/etc/rc.d/rctl user/ed/newcons/lib/bind/isc/backtrace-emptytbl.c - copied unchanged from r226141, head/lib/bind/isc/backtrace-emptytbl.c user/ed/newcons/lib/clang/include/ARMGenMCPseudoLowering.inc - copied unchanged from r226141, head/lib/clang/include/ARMGenMCPseudoLowering.inc user/ed/newcons/lib/clang/include/ARMGenSubtargetInfo.inc - copied unchanged from r226141, head/lib/clang/include/ARMGenSubtargetInfo.inc user/ed/newcons/lib/clang/include/MipsGenSubtargetInfo.inc - copied unchanged from r226141, head/lib/clang/include/MipsGenSubtargetInfo.inc user/ed/newcons/lib/clang/include/PPCGenSubtargetInfo.inc - copied unchanged from r226141, head/lib/clang/include/PPCGenSubtargetInfo.inc user/ed/newcons/lib/clang/include/X86GenSubtargetInfo.inc - copied unchanged from r226141, head/lib/clang/include/X86GenSubtargetInfo.inc user/ed/newcons/lib/clang/include/clang/Basic/DiagnosticIndexName.inc - copied unchanged from r226141, head/lib/clang/include/clang/Basic/DiagnosticIndexName.inc user/ed/newcons/lib/clang/libclangarcmigrate/ - copied from r226141, head/lib/clang/libclangarcmigrate/ user/ed/newcons/lib/clang/libllvmarmdesc/ - copied from r226141, head/lib/clang/libllvmarmdesc/ user/ed/newcons/lib/clang/libllvminstrumentation/ - copied from r226141, head/lib/clang/libllvminstrumentation/ user/ed/newcons/lib/clang/libllvmmipsdesc/ - copied from r226141, head/lib/clang/libllvmmipsdesc/ user/ed/newcons/lib/clang/libllvmmipsinstprinter/ - copied from r226141, head/lib/clang/libllvmmipsinstprinter/ user/ed/newcons/lib/clang/libllvmpowerpcdesc/ - copied from r226141, head/lib/clang/libllvmpowerpcdesc/ user/ed/newcons/lib/clang/libllvmx86desc/ - copied from r226141, head/lib/clang/libllvmx86desc/ user/ed/newcons/lib/libarchive/archive_read_support_compression_rpm.c - copied unchanged from r226141, head/lib/libarchive/archive_read_support_compression_rpm.c user/ed/newcons/lib/libarchive/archive_read_support_format_xar.c - copied unchanged from r226141, head/lib/libarchive/archive_read_support_format_xar.c user/ed/newcons/lib/libarchive/libarchive_fe/ - copied from r226141, head/lib/libarchive/libarchive_fe/ user/ed/newcons/lib/libarchive/test/test_open_failure.c - copied unchanged from r226141, head/lib/libarchive/test/test_open_failure.c user/ed/newcons/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c user/ed/newcons/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.rpm.uu - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.rpm.uu user/ed/newcons/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c user/ed/newcons/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.rpm.uu - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.rpm.uu user/ed/newcons/lib/libarchive/test/test_read_format_iso_2.iso.Z.uu - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_iso_2.iso.Z.uu user/ed/newcons/lib/libarchive/test/test_read_format_xar.c - copied unchanged from r226141, head/lib/libarchive/test/test_read_format_xar.c user/ed/newcons/lib/libc/amd64/string/stpcpy.S - copied unchanged from r226141, head/lib/libc/amd64/string/stpcpy.S user/ed/newcons/lib/libc/amd64/string/strcpy.c - copied unchanged from r226141, head/lib/libc/amd64/string/strcpy.c user/ed/newcons/lib/libc/sys/cap_new.2 - copied unchanged from r226141, head/lib/libc/sys/cap_new.2 user/ed/newcons/lib/libc/sys/pdfork.2 - copied unchanged from r226141, head/lib/libc/sys/pdfork.2 user/ed/newcons/lib/libc/sys/posix_fallocate.2 - copied unchanged from r226141, head/lib/libc/sys/posix_fallocate.2 user/ed/newcons/lib/libcrypt/crypt-sha256.c - copied unchanged from r226141, head/lib/libcrypt/crypt-sha256.c user/ed/newcons/lib/libcrypt/crypt-sha512.c - copied unchanged from r226141, head/lib/libcrypt/crypt-sha512.c user/ed/newcons/lib/libdwarf/dwarf_func.c - copied unchanged from r226141, head/lib/libdwarf/dwarf_func.c user/ed/newcons/lib/libedit/chartype.h - copied unchanged from r226141, head/lib/libedit/chartype.h user/ed/newcons/lib/libedit/edit/ - copied from r226141, head/lib/libedit/edit/ user/ed/newcons/lib/libedit/histedit.h - copied unchanged from r226141, head/lib/libedit/histedit.h user/ed/newcons/lib/libedit/readline.c - copied unchanged from r226141, head/lib/libedit/readline.c user/ed/newcons/lib/libmd/sha512.3 - copied unchanged from r226141, head/lib/libmd/sha512.3 user/ed/newcons/lib/libmd/sha512.h - copied unchanged from r226141, head/lib/libmd/sha512.h user/ed/newcons/lib/libmd/sha512c.c - copied unchanged from r226141, head/lib/libmd/sha512c.c user/ed/newcons/lib/libprocstat/ - copied from r226141, head/lib/libprocstat/ user/ed/newcons/lib/libsbuf/Symbol.map - copied unchanged from r226141, head/lib/libsbuf/Symbol.map user/ed/newcons/lib/libsbuf/Version.def - copied unchanged from r226141, head/lib/libsbuf/Version.def user/ed/newcons/lib/libthr/arch/sparc64/sparc64/_umtx_op_err.S - copied unchanged from r226141, head/lib/libthr/arch/sparc64/sparc64/_umtx_op_err.S user/ed/newcons/lib/libusb/libusb01.c - copied unchanged from r226141, head/lib/libusb/libusb01.c user/ed/newcons/lib/libutil/kinfo_getallproc.3 - copied unchanged from r226141, head/lib/libutil/kinfo_getallproc.3 user/ed/newcons/lib/libutil/kinfo_getallproc.c - copied unchanged from r226141, head/lib/libutil/kinfo_getallproc.c user/ed/newcons/lib/libutil/kinfo_getproc.3 - copied unchanged from r226141, head/lib/libutil/kinfo_getproc.3 user/ed/newcons/lib/libutil/kinfo_getproc.c - copied unchanged from r226141, head/lib/libutil/kinfo_getproc.c user/ed/newcons/lib/msun/ld128/e_rem_pio2l.h - copied unchanged from r226141, head/lib/msun/ld128/e_rem_pio2l.h user/ed/newcons/lib/msun/ld80/e_rem_pio2l.h - copied unchanged from r226141, head/lib/msun/ld80/e_rem_pio2l.h user/ed/newcons/libexec/rtld-elf/rtld_printf.c - copied unchanged from r226141, head/libexec/rtld-elf/rtld_printf.c user/ed/newcons/libexec/rtld-elf/rtld_printf.h - copied unchanged from r226141, head/libexec/rtld-elf/rtld_printf.h user/ed/newcons/release/ia64/make-memstick.sh - copied unchanged from r226141, head/release/ia64/make-memstick.sh user/ed/newcons/release/pc98/mkisoimages.sh - copied unchanged from r226141, head/release/pc98/mkisoimages.sh user/ed/newcons/release/powerpc/generate-hfs.sh - copied unchanged from r226141, head/release/powerpc/generate-hfs.sh user/ed/newcons/release/powerpc/hfs-boot.bz2.uu - copied unchanged from r226141, head/release/powerpc/hfs-boot.bz2.uu user/ed/newcons/release/powerpc/make-memstick.sh - copied unchanged from r226141, head/release/powerpc/make-memstick.sh user/ed/newcons/sbin/geom/class/raid/ - copied from r226141, head/sbin/geom/class/raid/ user/ed/newcons/sbin/hastd/proto_tcp.c - copied unchanged from r226141, head/sbin/hastd/proto_tcp.c user/ed/newcons/sbin/ifconfig/iffib.c - copied unchanged from r226141, head/sbin/ifconfig/iffib.c user/ed/newcons/share/doc/llvm/ - copied from r226141, head/share/doc/llvm/ user/ed/newcons/share/doc/smm/07.lpd/ - copied from r226141, head/share/doc/smm/07.lpd/ user/ed/newcons/share/examples/kld/firmware/fwimage/firmware.img.uu - copied unchanged from r226141, head/share/examples/kld/firmware/fwimage/firmware.img.uu user/ed/newcons/share/man/man4/ath_ahb.4 - copied unchanged from r226141, head/share/man/man4/ath_ahb.4 user/ed/newcons/share/man/man4/ath_pci.4 - copied unchanged from r226141, head/share/man/man4/ath_pci.4 user/ed/newcons/share/man/man4/geom_map.4 - copied unchanged from r226141, head/share/man/man4/geom_map.4 user/ed/newcons/share/man/man4/man4.i386/glxiic.4 - copied unchanged from r226141, head/share/man/man4/man4.i386/glxiic.4 user/ed/newcons/share/man/man4/mod_cc.4 - copied unchanged from r226141, head/share/man/man4/mod_cc.4 user/ed/newcons/share/man/man4/nvram2env.4 - copied unchanged from r226141, head/share/man/man4/nvram2env.4 user/ed/newcons/share/man/man4/tws.4 - copied unchanged from r226141, head/share/man/man4/tws.4 user/ed/newcons/share/man/man4/umcs.4 - copied unchanged from r226141, head/share/man/man4/umcs.4 user/ed/newcons/share/man/man4/vxge.4 - copied unchanged from r226141, head/share/man/man4/vxge.4 user/ed/newcons/share/man/man5/rctl.conf.5 - copied unchanged from r226141, head/share/man/man5/rctl.conf.5 user/ed/newcons/share/man/man9/bus_adjust_resource.9 - copied unchanged from r226141, head/share/man/man9/bus_adjust_resource.9 user/ed/newcons/share/man/man9/mod_cc.9 - copied unchanged from r226141, head/share/man/man9/mod_cc.9 user/ed/newcons/share/man/man9/unr.9 - copied unchanged from r226141, head/share/man/man9/unr.9 user/ed/newcons/share/man/man9/vm_map_sync.9 - copied unchanged from r226141, head/share/man/man9/vm_map_sync.9 user/ed/newcons/share/man/man9/vm_page_aflag.9 - copied unchanged from r226141, head/share/man/man9/vm_page_aflag.9 user/ed/newcons/sys/arm/conf/TS7800 - copied unchanged from r226141, head/sys/arm/conf/TS7800 user/ed/newcons/sys/arm/mv/orion/files.ts7800 - copied unchanged from r226141, head/sys/arm/mv/orion/files.ts7800 user/ed/newcons/sys/arm/mv/orion/std.ts7800 - copied unchanged from r226141, head/sys/arm/mv/orion/std.ts7800 user/ed/newcons/sys/boot/common/disk.c - copied unchanged from r226141, head/sys/boot/common/disk.c user/ed/newcons/sys/boot/common/disk.h - copied unchanged from r226141, head/sys/boot/common/disk.h user/ed/newcons/sys/boot/fdt/dts/ts7800.dts - copied unchanged from r226141, head/sys/boot/fdt/dts/ts7800.dts user/ed/newcons/sys/boot/ficl/amd64/ - copied from r226141, head/sys/boot/ficl/amd64/ user/ed/newcons/sys/boot/forth/beastie.4th.8 - copied unchanged from r226141, head/sys/boot/forth/beastie.4th.8 user/ed/newcons/sys/boot/forth/brand.4th - copied unchanged from r226141, head/sys/boot/forth/brand.4th user/ed/newcons/sys/boot/forth/brand.4th.8 - copied unchanged from r226141, head/sys/boot/forth/brand.4th.8 user/ed/newcons/sys/boot/forth/check-password.4th - copied unchanged from r226141, head/sys/boot/forth/check-password.4th user/ed/newcons/sys/boot/forth/check-password.4th.8 - copied unchanged from r226141, head/sys/boot/forth/check-password.4th.8 user/ed/newcons/sys/boot/forth/color.4th - copied unchanged from r226141, head/sys/boot/forth/color.4th user/ed/newcons/sys/boot/forth/color.4th.8 - copied unchanged from r226141, head/sys/boot/forth/color.4th.8 user/ed/newcons/sys/boot/forth/delay.4th - copied unchanged from r226141, head/sys/boot/forth/delay.4th user/ed/newcons/sys/boot/forth/delay.4th.8 - copied unchanged from r226141, head/sys/boot/forth/delay.4th.8 user/ed/newcons/sys/boot/forth/menu-commands.4th - copied unchanged from r226141, head/sys/boot/forth/menu-commands.4th user/ed/newcons/sys/boot/forth/menu.4th - copied unchanged from r226141, head/sys/boot/forth/menu.4th user/ed/newcons/sys/boot/forth/menu.4th.8 - copied unchanged from r226141, head/sys/boot/forth/menu.4th.8 user/ed/newcons/sys/boot/forth/menu.rc - copied unchanged from r226141, head/sys/boot/forth/menu.rc user/ed/newcons/sys/boot/forth/shortcuts.4th - copied unchanged from r226141, head/sys/boot/forth/shortcuts.4th user/ed/newcons/sys/boot/forth/version.4th - copied unchanged from r226141, head/sys/boot/forth/version.4th user/ed/newcons/sys/boot/forth/version.4th.8 - copied unchanged from r226141, head/sys/boot/forth/version.4th.8 user/ed/newcons/sys/boot/ia64/common/icache.c - copied unchanged from r226141, head/sys/boot/ia64/common/icache.c user/ed/newcons/sys/boot/powerpc/ps3/ps3bus.h - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3bus.h user/ed/newcons/sys/boot/powerpc/ps3/ps3cdrom.c - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3cdrom.c user/ed/newcons/sys/boot/powerpc/ps3/ps3devdesc.h - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3devdesc.h user/ed/newcons/sys/boot/powerpc/ps3/ps3disk.c - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3disk.c user/ed/newcons/sys/boot/powerpc/ps3/ps3repo.c - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3repo.c user/ed/newcons/sys/boot/powerpc/ps3/ps3repo.h - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3repo.h user/ed/newcons/sys/boot/powerpc/ps3/ps3stor.c - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3stor.c user/ed/newcons/sys/boot/powerpc/ps3/ps3stor.h - copied unchanged from r226141, head/sys/boot/powerpc/ps3/ps3stor.h user/ed/newcons/sys/boot/userboot/ - copied from r226141, head/sys/boot/userboot/ user/ed/newcons/sys/compat/linux/linux_videodev2.h - copied unchanged from r226141, head/sys/compat/linux/linux_videodev2.h user/ed/newcons/sys/compat/linux/linux_videodev2_compat.h - copied unchanged from r226141, head/sys/compat/linux/linux_videodev2_compat.h user/ed/newcons/sys/contrib/dev/acpica/compiler/dtparser.l - copied unchanged from r226141, head/sys/contrib/dev/acpica/compiler/dtparser.l user/ed/newcons/sys/contrib/dev/acpica/compiler/dtparser.y - copied unchanged from r226141, head/sys/contrib/dev/acpica/compiler/dtparser.y user/ed/newcons/sys/contrib/dev/acpica/events/evglock.c - copied unchanged from r226141, head/sys/contrib/dev/acpica/events/evglock.c user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-1000-39.31.5.1.fw.uu - copied unchanged from r226141, head/sys/contrib/dev/iwn/iwlwifi-1000-39.31.5.1.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-5000-8.83.5.1.fw.uu - copied unchanged from r226141, head/sys/contrib/dev/iwn/iwlwifi-5000-8.83.5.1.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.2.fw.uu - copied unchanged from r226141, head/sys/contrib/dev/iwn/iwlwifi-6000g2a-17.168.5.2.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-6000g2b-17.168.5.2.fw.uu - copied unchanged from r226141, head/sys/contrib/dev/iwn/iwlwifi-6000g2b-17.168.5.2.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-6050-41.28.5.1.fw.uu - copied unchanged from r226141, head/sys/contrib/dev/iwn/iwlwifi-6050-41.28.5.1.fw.uu user/ed/newcons/sys/contrib/pf/net/if_pflow.h - copied unchanged from r226141, head/sys/contrib/pf/net/if_pflow.h user/ed/newcons/sys/contrib/pf/net/pf_lb.c - copied unchanged from r226141, head/sys/contrib/pf/net/pf_lb.c user/ed/newcons/sys/dev/ath/ath_dfs/ - copied from r226141, head/sys/dev/ath/ath_dfs/ user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_9287.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ah_eeprom_9287.c user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_9287.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ah_eeprom_9287.h user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130.ini - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130.ini user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.c user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130_eeprom.h user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130_phy.c user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130_phy.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130_phy.h user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9130reg.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9001/ar9130reg.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9285_diversity.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9285_phy.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285an.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9285an.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287.ini - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287.ini user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_cal.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_cal.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_olc.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_olc.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_olc.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_reset.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287_reset.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287_reset.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287an.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287an.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9287phy.h - copied unchanged from r226141, head/sys/dev/ath/ath_hal/ar9002/ar9287phy.h user/ed/newcons/sys/dev/ath/if_ath_ahb.c - copied unchanged from r226141, head/sys/dev/ath/if_ath_ahb.c user/ed/newcons/sys/dev/ath/if_athdfs.h - copied unchanged from r226141, head/sys/dev/ath/if_athdfs.h user/ed/newcons/sys/dev/cxgbe/common/jhash.h - copied unchanged from r226141, head/sys/dev/cxgbe/common/jhash.h user/ed/newcons/sys/dev/cxgbe/t4_l2t.c - copied unchanged from r226141, head/sys/dev/cxgbe/t4_l2t.c user/ed/newcons/sys/dev/cxgbe/t4_l2t.h - copied unchanged from r226141, head/sys/dev/cxgbe/t4_l2t.h user/ed/newcons/sys/dev/glxiic/ - copied from r226141, head/sys/dev/glxiic/ user/ed/newcons/sys/dev/iicbus/ad7417.c - copied unchanged from r226141, head/sys/dev/iicbus/ad7417.c user/ed/newcons/sys/dev/nvram2env/ - copied from r226141, head/sys/dev/nvram2env/ user/ed/newcons/sys/dev/pci/pci_subr.c - copied unchanged from r226141, head/sys/dev/pci/pci_subr.c user/ed/newcons/sys/dev/rt/ - copied from r226141, head/sys/dev/rt/ user/ed/newcons/sys/dev/tws/ - copied from r226141, head/sys/dev/tws/ user/ed/newcons/sys/dev/usb/net/if_usie.c - copied unchanged from r226141, head/sys/dev/usb/net/if_usie.c user/ed/newcons/sys/dev/usb/net/if_usievar.h - copied unchanged from r226141, head/sys/dev/usb/net/if_usievar.h user/ed/newcons/sys/dev/usb/serial/umcs.c - copied unchanged from r226141, head/sys/dev/usb/serial/umcs.c user/ed/newcons/sys/dev/usb/serial/umcs.h - copied unchanged from r226141, head/sys/dev/usb/serial/umcs.h user/ed/newcons/sys/dev/usb/template/usb_template_audio.c - copied unchanged from r226141, head/sys/dev/usb/template/usb_template_audio.c user/ed/newcons/sys/dev/usb/template/usb_template_kbd.c - copied unchanged from r226141, head/sys/dev/usb/template/usb_template_kbd.c user/ed/newcons/sys/dev/usb/template/usb_template_modem.c - copied unchanged from r226141, head/sys/dev/usb/template/usb_template_modem.c user/ed/newcons/sys/dev/usb/template/usb_template_mouse.c - copied unchanged from r226141, head/sys/dev/usb/template/usb_template_mouse.c user/ed/newcons/sys/dev/vxge/ - copied from r226141, head/sys/dev/vxge/ user/ed/newcons/sys/fs/nfsclient/nfs_clkdtrace.c - copied unchanged from r226141, head/sys/fs/nfsclient/nfs_clkdtrace.c user/ed/newcons/sys/fs/nfsclient/nfs_kdtrace.h - copied unchanged from r226141, head/sys/fs/nfsclient/nfs_kdtrace.h user/ed/newcons/sys/geom/eli/g_eli_key_cache.c - copied unchanged from r226141, head/sys/geom/eli/g_eli_key_cache.c user/ed/newcons/sys/geom/geom_map.c - copied unchanged from r226141, head/sys/geom/geom_map.c user/ed/newcons/sys/geom/raid/ - copied from r226141, head/sys/geom/raid/ user/ed/newcons/sys/ia64/ia64/mp_locore.S - copied unchanged from r226141, head/sys/ia64/ia64/mp_locore.S user/ed/newcons/sys/kern/kern_racct.c - copied unchanged from r226141, head/sys/kern/kern_racct.c user/ed/newcons/sys/kern/kern_rctl.c - copied unchanged from r226141, head/sys/kern/kern_rctl.c user/ed/newcons/sys/kern/subr_syscall.c - copied unchanged from r226141, head/sys/kern/subr_syscall.c user/ed/newcons/sys/kern/sys_procdesc.c - copied unchanged from r226141, head/sys/kern/sys_procdesc.c user/ed/newcons/sys/libkern/strnlen.c - copied unchanged from r226141, head/sys/libkern/strnlen.c user/ed/newcons/sys/mips/atheros/ar724x_pci.c - copied unchanged from r226141, head/sys/mips/atheros/ar724x_pci.c user/ed/newcons/sys/mips/conf/AR91XX_BASE - copied unchanged from r226141, head/sys/mips/conf/AR91XX_BASE user/ed/newcons/sys/mips/conf/AR91XX_BASE.hints - copied unchanged from r226141, head/sys/mips/conf/AR91XX_BASE.hints user/ed/newcons/sys/mips/conf/PB92 - copied unchanged from r226141, head/sys/mips/conf/PB92 user/ed/newcons/sys/mips/conf/PB92.hints - copied unchanged from r226141, head/sys/mips/conf/PB92.hints user/ed/newcons/sys/mips/conf/RT305X - copied unchanged from r226141, head/sys/mips/conf/RT305X user/ed/newcons/sys/mips/conf/RT305X.hints - copied unchanged from r226141, head/sys/mips/conf/RT305X.hints user/ed/newcons/sys/mips/conf/TP-WN1043ND - copied unchanged from r226141, head/sys/mips/conf/TP-WN1043ND user/ed/newcons/sys/mips/conf/TP-WN1043ND.hints - copied unchanged from r226141, head/sys/mips/conf/TP-WN1043ND.hints user/ed/newcons/sys/mips/conf/XLP - copied unchanged from r226141, head/sys/mips/conf/XLP user/ed/newcons/sys/mips/conf/XLP64 - copied unchanged from r226141, head/sys/mips/conf/XLP64 user/ed/newcons/sys/mips/conf/XLPN32 - copied unchanged from r226141, head/sys/mips/conf/XLPN32 user/ed/newcons/sys/mips/nlm/ - copied from r226141, head/sys/mips/nlm/ user/ed/newcons/sys/mips/rt305x/ - copied from r226141, head/sys/mips/rt305x/ user/ed/newcons/sys/modules/ath_ahb/ - copied from r226141, head/sys/modules/ath_ahb/ user/ed/newcons/sys/modules/ath_pci/ - copied from r226141, head/sys/modules/ath_pci/ user/ed/newcons/sys/modules/cxgbe/if_cxgbe/ - copied from r226141, head/sys/modules/cxgbe/if_cxgbe/ user/ed/newcons/sys/modules/dtrace/dtnfscl/ - copied from r226141, head/sys/modules/dtrace/dtnfscl/ user/ed/newcons/sys/modules/geom/geom_raid/ - copied from r226141, head/sys/modules/geom/geom_raid/ user/ed/newcons/sys/modules/glxiic/ - copied from r226141, head/sys/modules/glxiic/ user/ed/newcons/sys/modules/iwnfw/iwn6000g2a/ - copied from r226141, head/sys/modules/iwnfw/iwn6000g2a/ user/ed/newcons/sys/modules/iwnfw/iwn6000g2b/ - copied from r226141, head/sys/modules/iwnfw/iwn6000g2b/ user/ed/newcons/sys/modules/pfsync/ - copied from r226141, head/sys/modules/pfsync/ user/ed/newcons/sys/modules/tws/ - copied from r226141, head/sys/modules/tws/ user/ed/newcons/sys/modules/usb/umcs/ - copied from r226141, head/sys/modules/usb/umcs/ user/ed/newcons/sys/modules/usb/usie/ - copied from r226141, head/sys/modules/usb/usie/ user/ed/newcons/sys/modules/vxge/ - copied from r226141, head/sys/modules/vxge/ user/ed/newcons/sys/net80211/ieee80211_alq.c - copied unchanged from r226141, head/sys/net80211/ieee80211_alq.c user/ed/newcons/sys/net80211/ieee80211_alq.h - copied unchanged from r226141, head/sys/net80211/ieee80211_alq.h user/ed/newcons/sys/netinet/in_pcbgroup.c - copied unchanged from r226141, head/sys/netinet/in_pcbgroup.c user/ed/newcons/sys/netinet6/in6_pcbgroup.c - copied unchanged from r226141, head/sys/netinet6/in6_pcbgroup.c user/ed/newcons/sys/nfs/bootp_subr.c - copied unchanged from r226141, head/sys/nfs/bootp_subr.c user/ed/newcons/sys/nfs/krpc.h - copied unchanged from r226141, head/sys/nfs/krpc.h user/ed/newcons/sys/nfs/krpc_subr.c - copied unchanged from r226141, head/sys/nfs/krpc_subr.c user/ed/newcons/sys/nfs/nfs_diskless.c - copied unchanged from r226141, head/sys/nfs/nfs_diskless.c user/ed/newcons/sys/nfs/nfs_kdtrace.h - copied unchanged from r226141, head/sys/nfs/nfs_kdtrace.h user/ed/newcons/sys/nfs/nfsdiskless.h - copied unchanged from r226141, head/sys/nfs/nfsdiskless.h user/ed/newcons/sys/powerpc/include/rtas.h - copied unchanged from r226141, head/sys/powerpc/include/rtas.h user/ed/newcons/sys/powerpc/ofw/ofwcall32.S - copied unchanged from r226141, head/sys/powerpc/ofw/ofwcall32.S user/ed/newcons/sys/powerpc/ofw/ofwcall64.S - copied unchanged from r226141, head/sys/powerpc/ofw/ofwcall64.S user/ed/newcons/sys/powerpc/ofw/ofwmagic.S - copied unchanged from r226141, head/sys/powerpc/ofw/ofwmagic.S user/ed/newcons/sys/powerpc/ofw/rtas.c - copied unchanged from r226141, head/sys/powerpc/ofw/rtas.c user/ed/newcons/sys/powerpc/powermac/powermac_thermal.c - copied unchanged from r226141, head/sys/powerpc/powermac/powermac_thermal.c user/ed/newcons/sys/powerpc/powermac/powermac_thermal.h - copied unchanged from r226141, head/sys/powerpc/powermac/powermac_thermal.h user/ed/newcons/sys/powerpc/powermac/windtunnel.c - copied unchanged from r226141, head/sys/powerpc/powermac/windtunnel.c user/ed/newcons/sys/powerpc/ps3/ohci_ps3.c - copied unchanged from r226141, head/sys/powerpc/ps3/ohci_ps3.c user/ed/newcons/sys/powerpc/ps3/ps3cdrom.c - copied unchanged from r226141, head/sys/powerpc/ps3/ps3cdrom.c user/ed/newcons/sys/powerpc/ps3/ps3disk.c - copied unchanged from r226141, head/sys/powerpc/ps3/ps3disk.c user/ed/newcons/sys/sys/_callout.h - copied unchanged from r226141, head/sys/sys/_callout.h user/ed/newcons/sys/sys/_cpuset.h - copied unchanged from r226141, head/sys/sys/_cpuset.h user/ed/newcons/sys/sys/_stdint.h - copied unchanged from r226141, head/sys/sys/_stdint.h user/ed/newcons/sys/sys/procdesc.h - copied unchanged from r226141, head/sys/sys/procdesc.h user/ed/newcons/sys/sys/racct.h - copied unchanged from r226141, head/sys/sys/racct.h user/ed/newcons/sys/sys/rctl.h - copied unchanged from r226141, head/sys/sys/rctl.h user/ed/newcons/sys/teken/demo/ - copied from r226141, head/sys/teken/demo/ user/ed/newcons/sys/teken/libteken/ - copied from r226141, head/sys/teken/libteken/ user/ed/newcons/sys/teken/stress/ - copied from r226141, head/sys/teken/stress/ user/ed/newcons/sys/x86/include/pci_cfgreg.h - copied unchanged from r226141, head/sys/x86/include/pci_cfgreg.h user/ed/newcons/sys/x86/pci/pci_bus.c - copied unchanged from r226141, head/sys/x86/pci/pci_bus.c user/ed/newcons/tools/build/options/WITHOUT_BINUTILS - copied unchanged from r226141, head/tools/build/options/WITHOUT_BINUTILS user/ed/newcons/tools/build/options/WITHOUT_GCC - copied unchanged from r226141, head/tools/build/options/WITHOUT_GCC user/ed/newcons/tools/build/options/WITHOUT_GPIO - copied unchanged from r226141, head/tools/build/options/WITHOUT_GPIO user/ed/newcons/tools/build/options/WITHOUT_INET - copied unchanged from r226141, head/tools/build/options/WITHOUT_INET user/ed/newcons/tools/build/options/WITHOUT_INET_SUPPORT - copied unchanged from r226141, head/tools/build/options/WITHOUT_INET_SUPPORT user/ed/newcons/tools/build/options/WITHOUT_KERNEL_SYMBOLS - copied unchanged from r226141, head/tools/build/options/WITHOUT_KERNEL_SYMBOLS user/ed/newcons/tools/build/options/WITHOUT_UTMPX - copied unchanged from r226141, head/tools/build/options/WITHOUT_UTMPX user/ed/newcons/tools/build/options/WITH_CLANG - copied unchanged from r226141, head/tools/build/options/WITH_CLANG user/ed/newcons/tools/build/options/WITH_FDT - copied unchanged from r226141, head/tools/build/options/WITH_FDT user/ed/newcons/tools/build/options/WITH_OFED - copied unchanged from r226141, head/tools/build/options/WITH_OFED user/ed/newcons/tools/regression/bin/sh/builtins/case10.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case10.0 user/ed/newcons/tools/regression/bin/sh/builtins/case4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case4.0 user/ed/newcons/tools/regression/bin/sh/builtins/case5.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case5.0 user/ed/newcons/tools/regression/bin/sh/builtins/case6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case6.0 user/ed/newcons/tools/regression/bin/sh/builtins/case7.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case7.0 user/ed/newcons/tools/regression/bin/sh/builtins/case8.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case8.0 user/ed/newcons/tools/regression/bin/sh/builtins/case9.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/case9.0 user/ed/newcons/tools/regression/bin/sh/builtins/cd3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/cd3.0 user/ed/newcons/tools/regression/bin/sh/builtins/cd4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/cd4.0 user/ed/newcons/tools/regression/bin/sh/builtins/cd5.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/cd5.0 user/ed/newcons/tools/regression/bin/sh/builtins/cd6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/cd6.0 user/ed/newcons/tools/regression/bin/sh/builtins/cd7.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/cd7.0 user/ed/newcons/tools/regression/bin/sh/builtins/dot4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/dot4.0 user/ed/newcons/tools/regression/bin/sh/builtins/export1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/export1.0 user/ed/newcons/tools/regression/bin/sh/builtins/set1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/set1.0 user/ed/newcons/tools/regression/bin/sh/builtins/set2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/builtins/set2.0 user/ed/newcons/tools/regression/bin/sh/errors/bad-parm-exp6.2 - copied unchanged from r226141, head/tools/regression/bin/sh/errors/bad-parm-exp6.2 user/ed/newcons/tools/regression/bin/sh/errors/bad-parm-exp6.2.stderr - copied unchanged from r226141, head/tools/regression/bin/sh/errors/bad-parm-exp6.2.stderr user/ed/newcons/tools/regression/bin/sh/execution/bg1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/bg1.0 user/ed/newcons/tools/regression/bin/sh/execution/bg2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/bg2.0 user/ed/newcons/tools/regression/bin/sh/execution/bg3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/bg3.0 user/ed/newcons/tools/regression/bin/sh/execution/bg4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/bg4.0 user/ed/newcons/tools/regression/bin/sh/execution/fork3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/fork3.0 user/ed/newcons/tools/regression/bin/sh/execution/redir6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/redir6.0 user/ed/newcons/tools/regression/bin/sh/execution/redir7.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/redir7.0 user/ed/newcons/tools/regression/bin/sh/execution/set-n1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-n1.0 user/ed/newcons/tools/regression/bin/sh/execution/set-n2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-n2.0 user/ed/newcons/tools/regression/bin/sh/execution/set-n3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-n3.0 user/ed/newcons/tools/regression/bin/sh/execution/set-n4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-n4.0 user/ed/newcons/tools/regression/bin/sh/execution/set-x1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-x1.0 user/ed/newcons/tools/regression/bin/sh/execution/set-x2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-x2.0 user/ed/newcons/tools/regression/bin/sh/execution/set-x3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/execution/set-x3.0 user/ed/newcons/tools/regression/bin/sh/expansion/cmdsubst11.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/cmdsubst11.0 user/ed/newcons/tools/regression/bin/sh/expansion/heredoc1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/heredoc1.0 user/ed/newcons/tools/regression/bin/sh/expansion/heredoc2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/heredoc2.0 user/ed/newcons/tools/regression/bin/sh/expansion/ifs4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/ifs4.0 user/ed/newcons/tools/regression/bin/sh/expansion/length4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/length4.0 user/ed/newcons/tools/regression/bin/sh/expansion/length5.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/length5.0 user/ed/newcons/tools/regression/bin/sh/expansion/length6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/length6.0 user/ed/newcons/tools/regression/bin/sh/expansion/length7.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/length7.0 user/ed/newcons/tools/regression/bin/sh/expansion/length8.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/length8.0 user/ed/newcons/tools/regression/bin/sh/expansion/set-u3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/set-u3.0 user/ed/newcons/tools/regression/bin/sh/expansion/trim8.0 - copied unchanged from r226141, head/tools/regression/bin/sh/expansion/trim8.0 user/ed/newcons/tools/regression/bin/sh/parameters/env1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parameters/env1.0 user/ed/newcons/tools/regression/bin/sh/parameters/positional1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parameters/positional1.0 user/ed/newcons/tools/regression/bin/sh/parser/alias4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/alias4.0 user/ed/newcons/tools/regression/bin/sh/parser/alias5.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/alias5.0 user/ed/newcons/tools/regression/bin/sh/parser/alias6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/alias6.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote1.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote1.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote10.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote10.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote11.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote11.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote2.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote3.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote4.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote4.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote5.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote5.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote6.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote6.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote7.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote7.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote8.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote8.0 user/ed/newcons/tools/regression/bin/sh/parser/dollar-quote9.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/dollar-quote9.0 user/ed/newcons/tools/regression/bin/sh/parser/func2.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/func2.0 user/ed/newcons/tools/regression/bin/sh/parser/func3.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/func3.0 user/ed/newcons/tools/regression/bin/sh/parser/heredoc10.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/heredoc10.0 user/ed/newcons/tools/regression/bin/sh/parser/heredoc11.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/heredoc11.0 user/ed/newcons/tools/regression/bin/sh/parser/heredoc9.0 - copied unchanged from r226141, head/tools/regression/bin/sh/parser/heredoc9.0 user/ed/newcons/tools/regression/ipfw/ - copied from r226141, head/tools/regression/ipfw/ user/ed/newcons/tools/regression/lib/libc/gen/test-posix_spawn.c - copied unchanged from r226141, head/tools/regression/lib/libc/gen/test-posix_spawn.c user/ed/newcons/tools/regression/netinet/ipdivert/ - copied from r226141, head/tools/regression/netinet/ipdivert/ user/ed/newcons/tools/regression/security/cap_test/ - copied from r226141, head/tools/regression/security/cap_test/ user/ed/newcons/tools/regression/usr.bin/printf/regress.l1.out - copied unchanged from r226141, head/tools/regression/usr.bin/printf/regress.l1.out user/ed/newcons/tools/regression/usr.bin/printf/regress.l2.out - copied unchanged from r226141, head/tools/regression/usr.bin/printf/regress.l2.out user/ed/newcons/tools/tools/ath/arcode/ - copied from r226141, head/tools/tools/ath/arcode/ user/ed/newcons/tools/tools/ath/ath_ee_9287_print/ - copied from r226141, head/tools/tools/ath/ath_ee_9287_print/ user/ed/newcons/tools/tools/ath/athradar/ - copied from r226141, head/tools/tools/ath/athradar/ user/ed/newcons/tools/tools/bus_autoconf/ - copied from r226141, head/tools/tools/bus_autoconf/ user/ed/newcons/tools/tools/cxgbetool/ - copied from r226141, head/tools/tools/cxgbetool/ user/ed/newcons/tools/tools/cxgbtool/ - copied from r226141, head/tools/tools/cxgbtool/ user/ed/newcons/tools/tools/vxge/ - copied from r226141, head/tools/tools/vxge/ user/ed/newcons/tools/tools/zfsboottest/ - copied from r226141, head/tools/tools/zfsboottest/ user/ed/newcons/usr.bin/calendar/calendars/calendar.brazilian - copied unchanged from r226141, head/usr.bin/calendar/calendars/calendar.brazilian user/ed/newcons/usr.bin/calendar/calendars/pt_BR.ISO8859-1/ - copied from r226141, head/usr.bin/calendar/calendars/pt_BR.ISO8859-1/ user/ed/newcons/usr.bin/calendar/calendars/pt_BR.UTF-8/ - copied from r226141, head/usr.bin/calendar/calendars/pt_BR.UTF-8/ user/ed/newcons/usr.bin/cpio/test/test_cmdline.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_cmdline.c user/ed/newcons/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.bin.uu - copied unchanged from r226141, head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.bin.uu user/ed/newcons/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.crc.uu - copied unchanged from r226141, head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.crc.uu user/ed/newcons/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.newc.uu - copied unchanged from r226141, head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.newc.uu user/ed/newcons/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.ustar.uu - copied unchanged from r226141, head/usr.bin/cpio/test/test_gcpio_compat_ref_nosym.ustar.uu user/ed/newcons/usr.bin/cpio/test/test_option_B_upper.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_B_upper.c user/ed/newcons/usr.bin/cpio/test/test_option_C_upper.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_C_upper.c user/ed/newcons/usr.bin/cpio/test/test_option_J_upper.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_J_upper.c user/ed/newcons/usr.bin/cpio/test/test_option_L_upper.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_L_upper.c user/ed/newcons/usr.bin/cpio/test/test_option_Z_upper.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_Z_upper.c user/ed/newcons/usr.bin/cpio/test/test_option_l.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_l.c user/ed/newcons/usr.bin/cpio/test/test_option_lzma.c - copied unchanged from r226141, head/usr.bin/cpio/test/test_option_lzma.c user/ed/newcons/usr.bin/fstat/functions.h - copied unchanged from r226141, head/usr.bin/fstat/functions.h user/ed/newcons/usr.bin/fstat/fuser.1 - copied unchanged from r226141, head/usr.bin/fstat/fuser.1 user/ed/newcons/usr.bin/fstat/fuser.c - copied unchanged from r226141, head/usr.bin/fstat/fuser.c user/ed/newcons/usr.bin/fstat/main.c - copied unchanged from r226141, head/usr.bin/fstat/main.c user/ed/newcons/usr.bin/ftp/tnftp_config.h - copied unchanged from r226141, head/usr.bin/ftp/tnftp_config.h user/ed/newcons/usr.bin/grep/regex/ - copied from r226141, head/usr.bin/grep/regex/ user/ed/newcons/usr.bin/rctl/ - copied from r226141, head/usr.bin/rctl/ user/ed/newcons/usr.bin/tar/test/test_empty_mtree.c - copied unchanged from r226141, head/usr.bin/tar/test/test_empty_mtree.c user/ed/newcons/usr.bin/tar/test/test_option_T_upper.c - copied unchanged from r226141, head/usr.bin/tar/test/test_option_T_upper.c user/ed/newcons/usr.bin/tar/test/test_option_r.c - copied unchanged from r226141, head/usr.bin/tar/test/test_option_r.c user/ed/newcons/usr.sbin/arpaname/ - copied from r226141, head/usr.sbin/arpaname/ user/ed/newcons/usr.sbin/bsdinstall/bsdinstall.8 - copied unchanged from r226141, head/usr.sbin/bsdinstall/bsdinstall.8 user/ed/newcons/usr.sbin/bsdinstall/scripts/docsinstall - copied unchanged from r226141, head/usr.sbin/bsdinstall/scripts/docsinstall user/ed/newcons/usr.sbin/bsdinstall/scripts/mirrorselect - copied unchanged from r226141, head/usr.sbin/bsdinstall/scripts/mirrorselect user/ed/newcons/usr.sbin/bsdinstall/scripts/netconfig_ipv4 - copied unchanged from r226141, head/usr.sbin/bsdinstall/scripts/netconfig_ipv4 user/ed/newcons/usr.sbin/bsdinstall/scripts/netconfig_ipv6 - copied unchanged from r226141, head/usr.sbin/bsdinstall/scripts/netconfig_ipv6 user/ed/newcons/usr.sbin/ddns-confgen/ - copied from r226141, head/usr.sbin/ddns-confgen/ user/ed/newcons/usr.sbin/dnssec-revoke/ - copied from r226141, head/usr.sbin/dnssec-revoke/ user/ed/newcons/usr.sbin/dnssec-settime/ - copied from r226141, head/usr.sbin/dnssec-settime/ user/ed/newcons/usr.sbin/genrandom/ - copied from r226141, head/usr.sbin/genrandom/ user/ed/newcons/usr.sbin/isc-hmac-fixup/ - copied from r226141, head/usr.sbin/isc-hmac-fixup/ user/ed/newcons/usr.sbin/makefs/mtree.c - copied unchanged from r226141, head/usr.sbin/makefs/mtree.c user/ed/newcons/usr.sbin/named-journalprint/ - copied from r226141, head/usr.sbin/named-journalprint/ user/ed/newcons/usr.sbin/nsec3hash/ - copied from r226141, head/usr.sbin/nsec3hash/ user/ed/newcons/usr.sbin/pkg_install/lib/ - copied from r226141, head/usr.sbin/pkg_install/lib/ - copied from r226141, head/usr.sbin/rtadvctl/ user/ed/newcons/usr.sbin/rtadvd/control.c - copied unchanged from r226141, head/usr.sbin/rtadvd/control.c user/ed/newcons/usr.sbin/rtadvd/control.h - copied unchanged from r226141, head/usr.sbin/rtadvd/control.h user/ed/newcons/usr.sbin/rtadvd/control_client.c - copied unchanged from r226141, head/usr.sbin/rtadvd/control_client.c user/ed/newcons/usr.sbin/rtadvd/control_client.h - copied unchanged from r226141, head/usr.sbin/rtadvd/control_client.h user/ed/newcons/usr.sbin/rtadvd/control_server.c - copied unchanged from r226141, head/usr.sbin/rtadvd/control_server.c user/ed/newcons/usr.sbin/rtadvd/control_server.h - copied unchanged from r226141, head/usr.sbin/rtadvd/control_server.h user/ed/newcons/usr.sbin/rtadvd/timer_subr.c - copied unchanged from r226141, head/usr.sbin/rtadvd/timer_subr.c user/ed/newcons/usr.sbin/rtadvd/timer_subr.h - copied unchanged from r226141, head/usr.sbin/rtadvd/timer_subr.h Directory Properties: user/ed/newcons/contrib/tnftp/ (props changed) user/ed/newcons/usr.sbin/rtadvctl/ (props changed) Replaced: user/ed/newcons/sys/modules/cxgbe/Makefile - copied unchanged from r226141, head/sys/modules/cxgbe/Makefile Deleted: user/ed/newcons/contrib/bind9/KNOWN-DEFECTS user/ed/newcons/contrib/bind9/NSEC3-NOTES user/ed/newcons/contrib/bind9/README.idnkit user/ed/newcons/contrib/bind9/README.pkcs11 user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.html user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.pdf user/ed/newcons/contrib/bind9/RELEASE-NOTES-BIND-9.6.3.txt user/ed/newcons/contrib/bind9/bin/rndc/rndc-confgen.8 user/ed/newcons/contrib/bind9/bin/rndc/rndc-confgen.c user/ed/newcons/contrib/bind9/bin/rndc/rndc-confgen.docbook user/ed/newcons/contrib/bind9/bin/rndc/rndc-confgen.html user/ed/newcons/contrib/bind9/bin/rndc/unix/Makefile.in user/ed/newcons/contrib/bind9/bin/rndc/unix/os.c user/ed/newcons/contrib/gcc/doc/objc.texi user/ed/newcons/contrib/gcc/objc/ user/ed/newcons/contrib/less/COPYING user/ed/newcons/contrib/libobjc/ user/ed/newcons/contrib/llvm/include/llvm/AbstractTypeUser.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/LiveValues.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/RegisterCoalescer.h user/ed/newcons/contrib/llvm/include/llvm/Support/StandardPasses.h user/ed/newcons/contrib/llvm/include/llvm/Target/SubtargetFeature.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetInstrDesc.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetInstrItineraries.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetSubtarget.h user/ed/newcons/contrib/llvm/include/llvm/TypeSymbolTable.h user/ed/newcons/contrib/llvm/lib/Analysis/LiveValues.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfTableException.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/PreAllocSplitting.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SimpleRegisterCoalescing.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SimpleRegisterCoalescing.h user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/TargetSelect.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/MCJIT/TargetSelect.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430MCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430MCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/PTX/Makefile user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/SubtargetFeature.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/TargetSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86MCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86MCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreMCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreMCAsmInfo.h user/ed/newcons/contrib/llvm/lib/Transforms/IPO/DeadTypeElimination.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/StructRetPromotion.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/GEPSplitter.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/SimplifyHalfPowrLibCalls.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/CloneLoop.cpp user/ed/newcons/contrib/llvm/lib/VMCore/TypeSymbolTable.cpp user/ed/newcons/contrib/llvm/lib/VMCore/TypesContext.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValuesV2.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DeclContextXML.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DeclXML.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DocumentXML.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DocumentXML.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/StmtXML.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/TypeXML.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/BugReporter/ user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerV2.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Checker.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerVisitor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/PathSensitive/ user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/UninitializedValuesV2.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/GlobalDecl.h user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/BoostConAction.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/DeclXML.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/DiagChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/DocumentXML.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/StmtXML.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/TypeXML.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.h user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExperimentalChecks.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExperimentalChecks.h user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprEngine.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InternalChecks.h user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp user/ed/newcons/contrib/lukemftp/ user/ed/newcons/contrib/one-true-awk/proctab.c user/ed/newcons/contrib/tcsh/nls/pl/ user/ed/newcons/crypto/openssh/WARNING.RNG user/ed/newcons/crypto/openssh/ssh-rand-helper.8 user/ed/newcons/crypto/openssh/ssh-rand-helper.c user/ed/newcons/etc/rc.d/nfsserver user/ed/newcons/gnu/lib/libobjc/ user/ed/newcons/gnu/usr.bin/cc/cc1obj/ user/ed/newcons/gnu/usr.bin/man/ user/ed/newcons/include/histedit.h user/ed/newcons/lib/clang/include/ARMGenInstrNames.inc user/ed/newcons/lib/clang/include/ARMGenRegisterInfo.h.inc user/ed/newcons/lib/clang/include/ARMGenRegisterNames.inc user/ed/newcons/lib/clang/include/ARMGenSubtarget.inc user/ed/newcons/lib/clang/include/IA64GenInstrNames.inc user/ed/newcons/lib/clang/include/IA64GenRegisterInfo.h.inc user/ed/newcons/lib/clang/include/IA64GenRegisterNames.inc user/ed/newcons/lib/clang/include/MipsGenInstrNames.inc user/ed/newcons/lib/clang/include/MipsGenRegisterInfo.h.inc user/ed/newcons/lib/clang/include/MipsGenRegisterNames.inc user/ed/newcons/lib/clang/include/MipsGenSubtarget.inc user/ed/newcons/lib/clang/include/PPCGenInstrNames.inc user/ed/newcons/lib/clang/include/PPCGenRegisterInfo.h.inc user/ed/newcons/lib/clang/include/PPCGenRegisterNames.inc user/ed/newcons/lib/clang/include/PPCGenSubtarget.inc user/ed/newcons/lib/clang/include/X86GenInstrNames.inc user/ed/newcons/lib/clang/include/X86GenRegisterInfo.h.inc user/ed/newcons/lib/clang/include/X86GenRegisterNames.inc user/ed/newcons/lib/clang/include/X86GenSubtarget.inc user/ed/newcons/lib/libc/amd64/string/strcpy.S user/ed/newcons/lib/libftpio/ user/ed/newcons/lib/libpkg/ user/ed/newcons/lib/libusb/libusb20_compat01.c user/ed/newcons/release/Makefile.inc.docports user/ed/newcons/release/Makefile.sysinstall user/ed/newcons/release/amd64/boot_crunch.conf user/ed/newcons/release/fixit.profile user/ed/newcons/release/fixit.services user/ed/newcons/release/i386/boot_crunch.conf user/ed/newcons/release/i386/fixit_crunch.conf user/ed/newcons/release/ia64/boot_crunch.conf user/ed/newcons/release/pc98/boot_crunch.conf user/ed/newcons/release/pc98/fixit-small_crunch.conf user/ed/newcons/release/pc98/fixit_crunch.conf user/ed/newcons/release/powerpc/boot_crunch.conf user/ed/newcons/release/powerpc/hfs.map user/ed/newcons/release/scripts/base-install.sh user/ed/newcons/release/scripts/catpages-install.sh user/ed/newcons/release/scripts/catpages-make.sh user/ed/newcons/release/scripts/checkindex.pl user/ed/newcons/release/scripts/chkINDEX user/ed/newcons/release/scripts/commerce-install.sh user/ed/newcons/release/scripts/dict-install.sh user/ed/newcons/release/scripts/dict-make.sh user/ed/newcons/release/scripts/doFS.sh user/ed/newcons/release/scripts/doc-install.sh user/ed/newcons/release/scripts/doc-make.sh user/ed/newcons/release/scripts/games-install.sh user/ed/newcons/release/scripts/info-install.sh user/ed/newcons/release/scripts/info-make.sh user/ed/newcons/release/scripts/info.sh user/ed/newcons/release/scripts/kernels-install.sh user/ed/newcons/release/scripts/lib32-install.sh user/ed/newcons/release/scripts/manpages-install.sh user/ed/newcons/release/scripts/manpages-make.sh user/ed/newcons/release/scripts/mkpkghier user/ed/newcons/release/scripts/mkpkgindex.sh user/ed/newcons/release/scripts/package-split.py user/ed/newcons/release/scripts/package-trees.sh user/ed/newcons/release/scripts/ports-install.sh user/ed/newcons/release/scripts/proflibs-install.sh user/ed/newcons/release/scripts/proflibs-make.sh user/ed/newcons/release/scripts/split-file.sh user/ed/newcons/release/scripts/src-install.sh user/ed/newcons/release/scripts/tar.sh user/ed/newcons/release/scripts/xperimnt-install.sh user/ed/newcons/release/sparc64/boot_crunch.conf user/ed/newcons/release/sun4v/ user/ed/newcons/sbin/hastd/proto_tcp4.c user/ed/newcons/share/doc/smm/07.lpr/ user/ed/newcons/share/examples/kld/firmware/fwimage/firmware.img user/ed/newcons/share/man/man4/cc.4 user/ed/newcons/share/man/man9/alloc_unr.9 user/ed/newcons/share/man/man9/cc.9 user/ed/newcons/share/man/man9/vm_map_clean.9 user/ed/newcons/share/man/man9/vm_page_copy.9 user/ed/newcons/share/man/man9/vm_page_flag.9 user/ed/newcons/share/man/man9/vm_page_protect.9 user/ed/newcons/share/man/man9/vm_page_zero_fill.9 user/ed/newcons/sys/amd64/pci/pci_bus.c user/ed/newcons/sys/boot/zfs/zfstest.c user/ed/newcons/sys/conf/Makefile.sun4v user/ed/newcons/sys/conf/files.sun4v user/ed/newcons/sys/conf/options.sun4v user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-1000-128.50.3.1.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-5000-8.24.2.12.fw.uu user/ed/newcons/sys/contrib/dev/iwn/iwlwifi-6050-9.201.4.1.fw.uu user/ed/newcons/sys/contrib/pf/net/pf_subr.c user/ed/newcons/sys/fs/nfsclient/nfsargs.h user/ed/newcons/sys/fs/nfsclient/nfsdiskless.h user/ed/newcons/sys/i386/pci/pci_bus.c user/ed/newcons/sys/nfsclient/bootp_subr.c user/ed/newcons/sys/nfsclient/krpc.h user/ed/newcons/sys/nfsclient/krpc_subr.c user/ed/newcons/sys/nfsclient/nfs_diskless.c user/ed/newcons/sys/nfsclient/nfs_kdtrace.h user/ed/newcons/sys/nfsclient/nfsdiskless.h user/ed/newcons/sys/powerpc/aim/ofwmagic.S user/ed/newcons/sys/sun4v/ user/ed/newcons/sys/teken/Makefile user/ed/newcons/sys/teken/teken_demo.c user/ed/newcons/sys/teken/teken_stress.c user/ed/newcons/tools/build/options/WITHOUT_OBJC user/ed/newcons/tools/build/options/WITH_GPIO user/ed/newcons/tools/tools/pciid/ user/ed/newcons/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.msk user/ed/newcons/usr.bin/cpio/err.c user/ed/newcons/usr.bin/cpio/err.h user/ed/newcons/usr.bin/cpio/line_reader.c user/ed/newcons/usr.bin/cpio/line_reader.h user/ed/newcons/usr.bin/cpio/matching.c user/ed/newcons/usr.bin/cpio/matching.h user/ed/newcons/usr.bin/cpio/pathmatch.c user/ed/newcons/usr.bin/cpio/pathmatch.h user/ed/newcons/usr.bin/cpio/test/test_option_B.c user/ed/newcons/usr.bin/cpio/test/test_option_L.c user/ed/newcons/usr.bin/cpio/test/test_option_ell.c user/ed/newcons/usr.bin/fstat/cd9660.c user/ed/newcons/usr.bin/fstat/fstat.h user/ed/newcons/usr.bin/fstat/msdosfs.c user/ed/newcons/usr.bin/fstat/zfs/ user/ed/newcons/usr.bin/fstat/zfs.c user/ed/newcons/usr.bin/ftp/config.h user/ed/newcons/usr.bin/grep/fastgrep.c user/ed/newcons/usr.bin/tar/err.c user/ed/newcons/usr.bin/tar/err.h user/ed/newcons/usr.bin/tar/line_reader.c user/ed/newcons/usr.bin/tar/line_reader.h user/ed/newcons/usr.bin/tar/matching.c user/ed/newcons/usr.bin/tar/matching.h user/ed/newcons/usr.bin/tar/pathmatch.c user/ed/newcons/usr.bin/tar/pathmatch.h user/ed/newcons/usr.bin/tar/test/test_option_T.c user/ed/newcons/usr.sbin/cxgbtool/ user/ed/newcons/usr.sbin/named.reload/ user/ed/newcons/usr.sbin/rtadvd/dump.c user/ed/newcons/usr.sbin/rtadvd/dump.h user/ed/newcons/usr.sbin/sysinstall/ Modified: user/ed/newcons/MAINTAINERS user/ed/newcons/Makefile user/ed/newcons/Makefile.inc1 user/ed/newcons/ObsoleteFiles.inc user/ed/newcons/UPDATING user/ed/newcons/bin/chmod/chmod.1 user/ed/newcons/bin/ed/POSIX user/ed/newcons/bin/ed/buf.c user/ed/newcons/bin/expr/expr.1 user/ed/newcons/bin/expr/expr.y user/ed/newcons/bin/ls/ls.1 user/ed/newcons/bin/ls/ls.c user/ed/newcons/bin/ls/ls.h user/ed/newcons/bin/ls/print.c user/ed/newcons/bin/mv/mv.c user/ed/newcons/bin/pax/ar_io.c user/ed/newcons/bin/pax/ar_subs.c user/ed/newcons/bin/pax/buf_subs.c user/ed/newcons/bin/pax/cpio.c user/ed/newcons/bin/pax/file_subs.c user/ed/newcons/bin/pax/ftree.c user/ed/newcons/bin/pax/options.c user/ed/newcons/bin/pax/pat_rep.c user/ed/newcons/bin/pax/pax.c user/ed/newcons/bin/pax/sel_subs.c user/ed/newcons/bin/pax/tables.c user/ed/newcons/bin/pax/tar.c user/ed/newcons/bin/ps/extern.h user/ed/newcons/bin/ps/keyword.c user/ed/newcons/bin/ps/print.c user/ed/newcons/bin/ps/ps.1 user/ed/newcons/bin/ps/ps.c user/ed/newcons/bin/ps/ps.h user/ed/newcons/bin/rcp/rcp.c user/ed/newcons/bin/realpath/realpath.1 user/ed/newcons/bin/realpath/realpath.c user/ed/newcons/bin/setfacl/setfacl.1 user/ed/newcons/bin/sh/TOUR user/ed/newcons/bin/sh/alias.c user/ed/newcons/bin/sh/alias.h user/ed/newcons/bin/sh/arith.h user/ed/newcons/bin/sh/arith_yacc.c user/ed/newcons/bin/sh/bltin/bltin.h user/ed/newcons/bin/sh/builtins.def user/ed/newcons/bin/sh/cd.c user/ed/newcons/bin/sh/cd.h user/ed/newcons/bin/sh/error.h user/ed/newcons/bin/sh/eval.c user/ed/newcons/bin/sh/eval.h user/ed/newcons/bin/sh/exec.h user/ed/newcons/bin/sh/expand.c user/ed/newcons/bin/sh/expand.h user/ed/newcons/bin/sh/histedit.c user/ed/newcons/bin/sh/input.c user/ed/newcons/bin/sh/jobs.c user/ed/newcons/bin/sh/jobs.h user/ed/newcons/bin/sh/main.c user/ed/newcons/bin/sh/main.h user/ed/newcons/bin/sh/miscbltin.c user/ed/newcons/bin/sh/mkbuiltins user/ed/newcons/bin/sh/mkinit.c user/ed/newcons/bin/sh/mksyntax.c user/ed/newcons/bin/sh/mktokens user/ed/newcons/bin/sh/myhistedit.h user/ed/newcons/bin/sh/nodetypes user/ed/newcons/bin/sh/options.c user/ed/newcons/bin/sh/options.h user/ed/newcons/bin/sh/parser.c user/ed/newcons/bin/sh/parser.h user/ed/newcons/bin/sh/sh.1 user/ed/newcons/bin/sh/trap.c user/ed/newcons/bin/sh/trap.h user/ed/newcons/bin/sh/var.c user/ed/newcons/bin/sh/var.h user/ed/newcons/bin/stty/stty.c user/ed/newcons/cddl/compat/opensolaris/include/assert.h user/ed/newcons/cddl/compat/opensolaris/misc/fsshare.c user/ed/newcons/cddl/compat/opensolaris/misc/zmount.c user/ed/newcons/cddl/contrib/opensolaris/cmd/zfs/zfs.8 user/ed/newcons/cddl/contrib/opensolaris/cmd/zfs/zfs_main.c user/ed/newcons/cddl/contrib/opensolaris/cmd/zpool/zpool.8 user/ed/newcons/cddl/contrib/opensolaris/cmd/zpool/zpool_main.c user/ed/newcons/cddl/contrib/opensolaris/cmd/ztest/ztest.c user/ed/newcons/cddl/contrib/opensolaris/lib/libdtrace/common/dt_subr.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs.h user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_changelist.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_dataset.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_diff.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_import.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_pool.c user/ed/newcons/cddl/contrib/opensolaris/lib/libzfs/common/libzfs_util.c user/ed/newcons/contrib/bind9/CHANGES user/ed/newcons/contrib/bind9/COPYRIGHT user/ed/newcons/contrib/bind9/FAQ.xml user/ed/newcons/contrib/bind9/Makefile.in user/ed/newcons/contrib/bind9/README user/ed/newcons/contrib/bind9/acconfig.h user/ed/newcons/contrib/bind9/bin/Makefile.in user/ed/newcons/contrib/bind9/bin/check/Makefile.in user/ed/newcons/contrib/bind9/bin/check/check-tool.c user/ed/newcons/contrib/bind9/bin/check/check-tool.h user/ed/newcons/contrib/bind9/bin/check/named-checkconf.8 user/ed/newcons/contrib/bind9/bin/check/named-checkconf.c user/ed/newcons/contrib/bind9/bin/check/named-checkconf.docbook user/ed/newcons/contrib/bind9/bin/check/named-checkconf.html user/ed/newcons/contrib/bind9/bin/check/named-checkzone.8 user/ed/newcons/contrib/bind9/bin/check/named-checkzone.c user/ed/newcons/contrib/bind9/bin/check/named-checkzone.docbook user/ed/newcons/contrib/bind9/bin/check/named-checkzone.html user/ed/newcons/contrib/bind9/bin/dig/Makefile.in user/ed/newcons/contrib/bind9/bin/dig/dig.1 user/ed/newcons/contrib/bind9/bin/dig/dig.c user/ed/newcons/contrib/bind9/bin/dig/dig.docbook user/ed/newcons/contrib/bind9/bin/dig/dig.html user/ed/newcons/contrib/bind9/bin/dig/dighost.c user/ed/newcons/contrib/bind9/bin/dig/host.1 user/ed/newcons/contrib/bind9/bin/dig/host.c user/ed/newcons/contrib/bind9/bin/dig/host.docbook user/ed/newcons/contrib/bind9/bin/dig/host.html user/ed/newcons/contrib/bind9/bin/dig/include/dig/dig.h user/ed/newcons/contrib/bind9/bin/dig/nslookup.1 user/ed/newcons/contrib/bind9/bin/dig/nslookup.c user/ed/newcons/contrib/bind9/bin/dig/nslookup.docbook user/ed/newcons/contrib/bind9/bin/dig/nslookup.html user/ed/newcons/contrib/bind9/bin/dnssec/Makefile.in user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-dsfromkey.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-dsfromkey.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-dsfromkey.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-dsfromkey.html user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keyfromlabel.html user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keygen.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keygen.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keygen.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-keygen.html user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-signzone.8 user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-signzone.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-signzone.docbook user/ed/newcons/contrib/bind9/bin/dnssec/dnssec-signzone.html user/ed/newcons/contrib/bind9/bin/dnssec/dnssectool.c user/ed/newcons/contrib/bind9/bin/dnssec/dnssectool.h user/ed/newcons/contrib/bind9/bin/named/Makefile.in user/ed/newcons/contrib/bind9/bin/named/bind9.xsl user/ed/newcons/contrib/bind9/bin/named/bind9.xsl.h user/ed/newcons/contrib/bind9/bin/named/builtin.c user/ed/newcons/contrib/bind9/bin/named/client.c user/ed/newcons/contrib/bind9/bin/named/config.c user/ed/newcons/contrib/bind9/bin/named/control.c user/ed/newcons/contrib/bind9/bin/named/controlconf.c user/ed/newcons/contrib/bind9/bin/named/convertxsl.pl user/ed/newcons/contrib/bind9/bin/named/include/named/builtin.h user/ed/newcons/contrib/bind9/bin/named/include/named/client.h user/ed/newcons/contrib/bind9/bin/named/include/named/config.h user/ed/newcons/contrib/bind9/bin/named/include/named/control.h user/ed/newcons/contrib/bind9/bin/named/include/named/globals.h user/ed/newcons/contrib/bind9/bin/named/include/named/interfacemgr.h user/ed/newcons/contrib/bind9/bin/named/include/named/listenlist.h user/ed/newcons/contrib/bind9/bin/named/include/named/log.h user/ed/newcons/contrib/bind9/bin/named/include/named/logconf.h user/ed/newcons/contrib/bind9/bin/named/include/named/lwaddr.h user/ed/newcons/contrib/bind9/bin/named/include/named/lwdclient.h user/ed/newcons/contrib/bind9/bin/named/include/named/lwresd.h user/ed/newcons/contrib/bind9/bin/named/include/named/lwsearch.h user/ed/newcons/contrib/bind9/bin/named/include/named/main.h user/ed/newcons/contrib/bind9/bin/named/include/named/notify.h user/ed/newcons/contrib/bind9/bin/named/include/named/ns_smf_globals.h user/ed/newcons/contrib/bind9/bin/named/include/named/query.h user/ed/newcons/contrib/bind9/bin/named/include/named/server.h user/ed/newcons/contrib/bind9/bin/named/include/named/sortlist.h user/ed/newcons/contrib/bind9/bin/named/include/named/statschannel.h user/ed/newcons/contrib/bind9/bin/named/include/named/tkeyconf.h user/ed/newcons/contrib/bind9/bin/named/include/named/tsigconf.h user/ed/newcons/contrib/bind9/bin/named/include/named/types.h user/ed/newcons/contrib/bind9/bin/named/include/named/update.h user/ed/newcons/contrib/bind9/bin/named/include/named/xfrout.h user/ed/newcons/contrib/bind9/bin/named/include/named/zoneconf.h user/ed/newcons/contrib/bind9/bin/named/interfacemgr.c user/ed/newcons/contrib/bind9/bin/named/listenlist.c user/ed/newcons/contrib/bind9/bin/named/log.c user/ed/newcons/contrib/bind9/bin/named/logconf.c user/ed/newcons/contrib/bind9/bin/named/lwaddr.c user/ed/newcons/contrib/bind9/bin/named/lwdclient.c user/ed/newcons/contrib/bind9/bin/named/lwderror.c user/ed/newcons/contrib/bind9/bin/named/lwdgabn.c user/ed/newcons/contrib/bind9/bin/named/lwdgnba.c user/ed/newcons/contrib/bind9/bin/named/lwdgrbn.c user/ed/newcons/contrib/bind9/bin/named/lwdnoop.c user/ed/newcons/contrib/bind9/bin/named/lwresd.8 user/ed/newcons/contrib/bind9/bin/named/lwresd.c user/ed/newcons/contrib/bind9/bin/named/lwresd.docbook user/ed/newcons/contrib/bind9/bin/named/lwresd.html user/ed/newcons/contrib/bind9/bin/named/lwsearch.c user/ed/newcons/contrib/bind9/bin/named/main.c user/ed/newcons/contrib/bind9/bin/named/named.8 user/ed/newcons/contrib/bind9/bin/named/named.conf.5 user/ed/newcons/contrib/bind9/bin/named/named.conf.docbook user/ed/newcons/contrib/bind9/bin/named/named.conf.html user/ed/newcons/contrib/bind9/bin/named/named.docbook user/ed/newcons/contrib/bind9/bin/named/named.html user/ed/newcons/contrib/bind9/bin/named/notify.c user/ed/newcons/contrib/bind9/bin/named/query.c user/ed/newcons/contrib/bind9/bin/named/server.c user/ed/newcons/contrib/bind9/bin/named/sortlist.c user/ed/newcons/contrib/bind9/bin/named/statschannel.c user/ed/newcons/contrib/bind9/bin/named/tkeyconf.c user/ed/newcons/contrib/bind9/bin/named/tsigconf.c user/ed/newcons/contrib/bind9/bin/named/unix/Makefile.in user/ed/newcons/contrib/bind9/bin/named/unix/include/named/os.h user/ed/newcons/contrib/bind9/bin/named/unix/os.c user/ed/newcons/contrib/bind9/bin/named/update.c user/ed/newcons/contrib/bind9/bin/named/xfrout.c user/ed/newcons/contrib/bind9/bin/named/zoneconf.c user/ed/newcons/contrib/bind9/bin/nsupdate/Makefile.in user/ed/newcons/contrib/bind9/bin/nsupdate/nsupdate.1 user/ed/newcons/contrib/bind9/bin/nsupdate/nsupdate.c user/ed/newcons/contrib/bind9/bin/nsupdate/nsupdate.docbook user/ed/newcons/contrib/bind9/bin/nsupdate/nsupdate.html user/ed/newcons/contrib/bind9/bin/rndc/Makefile.in user/ed/newcons/contrib/bind9/bin/rndc/include/rndc/os.h user/ed/newcons/contrib/bind9/bin/rndc/rndc.8 user/ed/newcons/contrib/bind9/bin/rndc/rndc.c user/ed/newcons/contrib/bind9/bin/rndc/rndc.conf user/ed/newcons/contrib/bind9/bin/rndc/rndc.conf.5 user/ed/newcons/contrib/bind9/bin/rndc/rndc.conf.docbook user/ed/newcons/contrib/bind9/bin/rndc/rndc.conf.html user/ed/newcons/contrib/bind9/bin/rndc/rndc.docbook user/ed/newcons/contrib/bind9/bin/rndc/rndc.html user/ed/newcons/contrib/bind9/bin/rndc/util.c user/ed/newcons/contrib/bind9/bin/rndc/util.h user/ed/newcons/contrib/bind9/config.guess user/ed/newcons/contrib/bind9/config.h.in user/ed/newcons/contrib/bind9/configure.in user/ed/newcons/contrib/bind9/doc/Makefile.in user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM-book.xml user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch01.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch02.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch03.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch04.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch05.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch06.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch07.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch08.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch09.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.ch10.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.html user/ed/newcons/contrib/bind9/doc/arm/Bv9ARM.pdf user/ed/newcons/contrib/bind9/doc/arm/Makefile.in user/ed/newcons/contrib/bind9/doc/arm/README-SGML user/ed/newcons/contrib/bind9/doc/arm/man.dig.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-dsfromkey.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-keyfromlabel.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-keygen.html user/ed/newcons/contrib/bind9/doc/arm/man.dnssec-signzone.html user/ed/newcons/contrib/bind9/doc/arm/man.host.html user/ed/newcons/contrib/bind9/doc/arm/man.named-checkconf.html user/ed/newcons/contrib/bind9/doc/arm/man.named-checkzone.html user/ed/newcons/contrib/bind9/doc/arm/man.named.html user/ed/newcons/contrib/bind9/doc/arm/man.nsupdate.html user/ed/newcons/contrib/bind9/doc/arm/man.rndc-confgen.html user/ed/newcons/contrib/bind9/doc/arm/man.rndc.conf.html user/ed/newcons/contrib/bind9/doc/arm/man.rndc.html user/ed/newcons/contrib/bind9/doc/misc/Makefile.in user/ed/newcons/contrib/bind9/doc/misc/dnssec user/ed/newcons/contrib/bind9/doc/misc/format-options.pl user/ed/newcons/contrib/bind9/doc/misc/ipv6 user/ed/newcons/contrib/bind9/doc/misc/migration user/ed/newcons/contrib/bind9/doc/misc/migration-4to9 user/ed/newcons/contrib/bind9/doc/misc/options user/ed/newcons/contrib/bind9/doc/misc/rfc-compliance user/ed/newcons/contrib/bind9/doc/misc/roadmap user/ed/newcons/contrib/bind9/doc/misc/sdb user/ed/newcons/contrib/bind9/doc/misc/sort-options.pl user/ed/newcons/contrib/bind9/isc-config.sh.in user/ed/newcons/contrib/bind9/lib/Makefile.in user/ed/newcons/contrib/bind9/lib/bind9/Makefile.in user/ed/newcons/contrib/bind9/lib/bind9/api user/ed/newcons/contrib/bind9/lib/bind9/check.c user/ed/newcons/contrib/bind9/lib/bind9/getaddresses.c user/ed/newcons/contrib/bind9/lib/bind9/include/Makefile.in user/ed/newcons/contrib/bind9/lib/bind9/include/bind9/Makefile.in user/ed/newcons/contrib/bind9/lib/bind9/include/bind9/check.h user/ed/newcons/contrib/bind9/lib/bind9/include/bind9/getaddresses.h user/ed/newcons/contrib/bind9/lib/bind9/include/bind9/version.h user/ed/newcons/contrib/bind9/lib/bind9/version.c user/ed/newcons/contrib/bind9/lib/dns/Makefile.in user/ed/newcons/contrib/bind9/lib/dns/acache.c user/ed/newcons/contrib/bind9/lib/dns/acl.c user/ed/newcons/contrib/bind9/lib/dns/adb.c user/ed/newcons/contrib/bind9/lib/dns/api user/ed/newcons/contrib/bind9/lib/dns/byaddr.c user/ed/newcons/contrib/bind9/lib/dns/cache.c user/ed/newcons/contrib/bind9/lib/dns/callbacks.c user/ed/newcons/contrib/bind9/lib/dns/compress.c user/ed/newcons/contrib/bind9/lib/dns/db.c user/ed/newcons/contrib/bind9/lib/dns/dbiterator.c user/ed/newcons/contrib/bind9/lib/dns/dbtable.c user/ed/newcons/contrib/bind9/lib/dns/diff.c user/ed/newcons/contrib/bind9/lib/dns/dispatch.c user/ed/newcons/contrib/bind9/lib/dns/dlz.c user/ed/newcons/contrib/bind9/lib/dns/dnssec.c user/ed/newcons/contrib/bind9/lib/dns/ds.c user/ed/newcons/contrib/bind9/lib/dns/dst_api.c user/ed/newcons/contrib/bind9/lib/dns/dst_internal.h user/ed/newcons/contrib/bind9/lib/dns/dst_lib.c user/ed/newcons/contrib/bind9/lib/dns/dst_openssl.h user/ed/newcons/contrib/bind9/lib/dns/dst_parse.c user/ed/newcons/contrib/bind9/lib/dns/dst_parse.h user/ed/newcons/contrib/bind9/lib/dns/dst_result.c user/ed/newcons/contrib/bind9/lib/dns/forward.c user/ed/newcons/contrib/bind9/lib/dns/gen-unix.h user/ed/newcons/contrib/bind9/lib/dns/gen.c user/ed/newcons/contrib/bind9/lib/dns/gssapi_link.c user/ed/newcons/contrib/bind9/lib/dns/gssapictx.c user/ed/newcons/contrib/bind9/lib/dns/hmac_link.c user/ed/newcons/contrib/bind9/lib/dns/include/Makefile.in user/ed/newcons/contrib/bind9/lib/dns/include/dns/Makefile.in user/ed/newcons/contrib/bind9/lib/dns/include/dns/acache.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/acl.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/adb.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/bit.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/byaddr.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/cache.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/callbacks.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/cert.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/compress.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/db.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dbiterator.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dbtable.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/diff.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dispatch.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dlz.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/dnssec.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/ds.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/events.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/fixedname.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/forward.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/iptable.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/journal.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/keyflags.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/keytable.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/keyvalues.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/lib.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/log.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/lookup.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/master.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/masterdump.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/message.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/name.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/ncache.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/nsec.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/nsec3.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/opcode.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/order.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/peer.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/portlist.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rbt.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rcode.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdata.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdataclass.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdatalist.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdataset.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdatasetiter.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdataslab.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rdatatype.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/request.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/resolver.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/result.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/rootns.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/sdb.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/sdlz.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/secalg.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/secproto.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/soa.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/ssu.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/stats.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/tcpmsg.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/time.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/timer.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/tkey.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/tsig.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/ttl.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/types.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/validator.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/version.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/view.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/xfrin.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/zone.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/zonekey.h user/ed/newcons/contrib/bind9/lib/dns/include/dns/zt.h user/ed/newcons/contrib/bind9/lib/dns/include/dst/Makefile.in user/ed/newcons/contrib/bind9/lib/dns/include/dst/dst.h user/ed/newcons/contrib/bind9/lib/dns/include/dst/gssapi.h user/ed/newcons/contrib/bind9/lib/dns/include/dst/lib.h user/ed/newcons/contrib/bind9/lib/dns/include/dst/result.h user/ed/newcons/contrib/bind9/lib/dns/iptable.c user/ed/newcons/contrib/bind9/lib/dns/journal.c user/ed/newcons/contrib/bind9/lib/dns/key.c user/ed/newcons/contrib/bind9/lib/dns/keytable.c user/ed/newcons/contrib/bind9/lib/dns/lib.c user/ed/newcons/contrib/bind9/lib/dns/log.c user/ed/newcons/contrib/bind9/lib/dns/lookup.c user/ed/newcons/contrib/bind9/lib/dns/master.c user/ed/newcons/contrib/bind9/lib/dns/masterdump.c user/ed/newcons/contrib/bind9/lib/dns/message.c user/ed/newcons/contrib/bind9/lib/dns/name.c user/ed/newcons/contrib/bind9/lib/dns/ncache.c user/ed/newcons/contrib/bind9/lib/dns/nsec.c user/ed/newcons/contrib/bind9/lib/dns/nsec3.c user/ed/newcons/contrib/bind9/lib/dns/openssl_link.c user/ed/newcons/contrib/bind9/lib/dns/openssldh_link.c user/ed/newcons/contrib/bind9/lib/dns/openssldsa_link.c user/ed/newcons/contrib/bind9/lib/dns/opensslrsa_link.c user/ed/newcons/contrib/bind9/lib/dns/order.c user/ed/newcons/contrib/bind9/lib/dns/peer.c user/ed/newcons/contrib/bind9/lib/dns/portlist.c user/ed/newcons/contrib/bind9/lib/dns/rbt.c user/ed/newcons/contrib/bind9/lib/dns/rbtdb.c user/ed/newcons/contrib/bind9/lib/dns/rbtdb.h user/ed/newcons/contrib/bind9/lib/dns/rbtdb64.c user/ed/newcons/contrib/bind9/lib/dns/rbtdb64.h user/ed/newcons/contrib/bind9/lib/dns/rcode.c user/ed/newcons/contrib/bind9/lib/dns/rdata.c user/ed/newcons/contrib/bind9/lib/dns/rdata/any_255/tsig_250.c user/ed/newcons/contrib/bind9/lib/dns/rdata/any_255/tsig_250.h user/ed/newcons/contrib/bind9/lib/dns/rdata/ch_3/a_1.c user/ed/newcons/contrib/bind9/lib/dns/rdata/ch_3/a_1.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/afsdb_18.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/afsdb_18.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/cert_37.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/cert_37.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/cname_5.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/cname_5.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dlv_32769.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dlv_32769.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dname_39.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dname_39.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dnskey_48.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/dnskey_48.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ds_43.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ds_43.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/gpos_27.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/gpos_27.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/hinfo_13.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/hinfo_13.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ipseckey_45.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/isdn_20.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/isdn_20.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/key_25.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/key_25.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/loc_29.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/loc_29.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mb_7.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mb_7.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/md_3.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/md_3.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mf_4.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mf_4.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mg_8.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mg_8.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/minfo_14.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/minfo_14.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mr_9.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mr_9.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mx_15.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/mx_15.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ns_2.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ns_2.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec3_50.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec3_50.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec3param_51.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec_47.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nsec_47.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/null_10.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/null_10.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nxt_30.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/nxt_30.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/opt_41.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/opt_41.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/proforma.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/proforma.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ptr_12.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/ptr_12.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rp_17.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rp_17.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rrsig_46.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rrsig_46.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rt_21.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/rt_21.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/sig_24.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/sig_24.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/soa_6.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/soa_6.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/spf_99.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/spf_99.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/sshfp_44.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/sshfp_44.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/tkey_249.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/tkey_249.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/txt_16.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/txt_16.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/unspec_103.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/unspec_103.h user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/x25_19.c user/ed/newcons/contrib/bind9/lib/dns/rdata/generic/x25_19.h user/ed/newcons/contrib/bind9/lib/dns/rdata/hs_4/a_1.c user/ed/newcons/contrib/bind9/lib/dns/rdata/hs_4/a_1.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/a6_38.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/a6_38.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/a_1.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/a_1.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/aaaa_28.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/apl_42.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/apl_42.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/dhcid_49.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/kx_36.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/kx_36.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/naptr_35.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/naptr_35.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/nsap-ptr_23.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/nsap_22.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/nsap_22.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/px_26.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/px_26.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/srv_33.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/srv_33.h user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/wks_11.c user/ed/newcons/contrib/bind9/lib/dns/rdata/in_1/wks_11.h user/ed/newcons/contrib/bind9/lib/dns/rdata/rdatastructpre.h user/ed/newcons/contrib/bind9/lib/dns/rdata/rdatastructsuf.h user/ed/newcons/contrib/bind9/lib/dns/rdatalist.c user/ed/newcons/contrib/bind9/lib/dns/rdatalist_p.h user/ed/newcons/contrib/bind9/lib/dns/rdataset.c user/ed/newcons/contrib/bind9/lib/dns/rdatasetiter.c user/ed/newcons/contrib/bind9/lib/dns/rdataslab.c user/ed/newcons/contrib/bind9/lib/dns/request.c user/ed/newcons/contrib/bind9/lib/dns/resolver.c user/ed/newcons/contrib/bind9/lib/dns/result.c user/ed/newcons/contrib/bind9/lib/dns/rootns.c user/ed/newcons/contrib/bind9/lib/dns/sdb.c user/ed/newcons/contrib/bind9/lib/dns/sdlz.c user/ed/newcons/contrib/bind9/lib/dns/soa.c user/ed/newcons/contrib/bind9/lib/dns/spnego.asn1 user/ed/newcons/contrib/bind9/lib/dns/spnego.c user/ed/newcons/contrib/bind9/lib/dns/spnego.h user/ed/newcons/contrib/bind9/lib/dns/spnego_asn1.c user/ed/newcons/contrib/bind9/lib/dns/spnego_asn1.pl user/ed/newcons/contrib/bind9/lib/dns/ssu.c user/ed/newcons/contrib/bind9/lib/dns/stats.c user/ed/newcons/contrib/bind9/lib/dns/tcpmsg.c user/ed/newcons/contrib/bind9/lib/dns/time.c user/ed/newcons/contrib/bind9/lib/dns/timer.c user/ed/newcons/contrib/bind9/lib/dns/tkey.c user/ed/newcons/contrib/bind9/lib/dns/tsig.c user/ed/newcons/contrib/bind9/lib/dns/ttl.c user/ed/newcons/contrib/bind9/lib/dns/validator.c user/ed/newcons/contrib/bind9/lib/dns/version.c user/ed/newcons/contrib/bind9/lib/dns/view.c user/ed/newcons/contrib/bind9/lib/dns/xfrin.c user/ed/newcons/contrib/bind9/lib/dns/zone.c user/ed/newcons/contrib/bind9/lib/dns/zonekey.c user/ed/newcons/contrib/bind9/lib/dns/zt.c user/ed/newcons/contrib/bind9/lib/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/alpha/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/alpha/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/alpha/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/alpha/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/api user/ed/newcons/contrib/bind9/lib/isc/assertions.c user/ed/newcons/contrib/bind9/lib/isc/base32.c user/ed/newcons/contrib/bind9/lib/isc/base64.c user/ed/newcons/contrib/bind9/lib/isc/bitstring.c user/ed/newcons/contrib/bind9/lib/isc/buffer.c user/ed/newcons/contrib/bind9/lib/isc/bufferlist.c user/ed/newcons/contrib/bind9/lib/isc/commandline.c user/ed/newcons/contrib/bind9/lib/isc/entropy.c user/ed/newcons/contrib/bind9/lib/isc/error.c user/ed/newcons/contrib/bind9/lib/isc/event.c user/ed/newcons/contrib/bind9/lib/isc/fsaccess.c user/ed/newcons/contrib/bind9/lib/isc/hash.c user/ed/newcons/contrib/bind9/lib/isc/heap.c user/ed/newcons/contrib/bind9/lib/isc/hex.c user/ed/newcons/contrib/bind9/lib/isc/hmacmd5.c user/ed/newcons/contrib/bind9/lib/isc/hmacsha.c user/ed/newcons/contrib/bind9/lib/isc/httpd.c user/ed/newcons/contrib/bind9/lib/isc/ia64/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/ia64/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/ia64/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/ia64/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/include/isc/app.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/assertions.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/base32.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/base64.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/bitstring.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/boolean.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/buffer.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/bufferlist.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/commandline.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/entropy.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/error.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/event.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/eventclass.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/file.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/formatcheck.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/fsaccess.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/hash.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/heap.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/hex.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/hmacmd5.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/hmacsha.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/httpd.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/interfaceiter.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/ipv6.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/iterated_hash.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/lang.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/lex.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/lfsr.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/lib.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/list.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/log.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/magic.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/md5.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/mem.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/msgcat.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/msgs.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/mutexblock.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/netaddr.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/netscope.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/ondestroy.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/os.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/parseint.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/platform.h.in user/ed/newcons/contrib/bind9/lib/isc/include/isc/portset.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/print.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/quota.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/radix.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/random.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/ratelimiter.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/refcount.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/region.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/resource.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/result.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/resultclass.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/rwlock.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/serial.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/sha1.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/sha2.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/sockaddr.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/socket.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/stats.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/stdio.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/stdlib.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/string.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/symtab.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/task.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/taskpool.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/timer.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/types.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/util.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/version.h user/ed/newcons/contrib/bind9/lib/isc/include/isc/xml.h user/ed/newcons/contrib/bind9/lib/isc/inet_aton.c user/ed/newcons/contrib/bind9/lib/isc/inet_ntop.c user/ed/newcons/contrib/bind9/lib/isc/inet_pton.c user/ed/newcons/contrib/bind9/lib/isc/iterated_hash.c user/ed/newcons/contrib/bind9/lib/isc/lex.c user/ed/newcons/contrib/bind9/lib/isc/lfsr.c user/ed/newcons/contrib/bind9/lib/isc/lib.c user/ed/newcons/contrib/bind9/lib/isc/log.c user/ed/newcons/contrib/bind9/lib/isc/md5.c user/ed/newcons/contrib/bind9/lib/isc/mem.c user/ed/newcons/contrib/bind9/lib/isc/mips/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/mips/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/mips/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/mips/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/mutexblock.c user/ed/newcons/contrib/bind9/lib/isc/netaddr.c user/ed/newcons/contrib/bind9/lib/isc/netscope.c user/ed/newcons/contrib/bind9/lib/isc/nls/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/nls/msgcat.c user/ed/newcons/contrib/bind9/lib/isc/noatomic/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/noatomic/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/noatomic/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/noatomic/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/nothreads/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/nothreads/condition.c user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/isc/condition.h user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/isc/mutex.h user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/isc/once.h user/ed/newcons/contrib/bind9/lib/isc/nothreads/include/isc/thread.h user/ed/newcons/contrib/bind9/lib/isc/nothreads/mutex.c user/ed/newcons/contrib/bind9/lib/isc/nothreads/thread.c user/ed/newcons/contrib/bind9/lib/isc/ondestroy.c user/ed/newcons/contrib/bind9/lib/isc/parseint.c user/ed/newcons/contrib/bind9/lib/isc/portset.c user/ed/newcons/contrib/bind9/lib/isc/powerpc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/powerpc/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/powerpc/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/powerpc/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/print.c user/ed/newcons/contrib/bind9/lib/isc/pthreads/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/pthreads/condition.c user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/isc/condition.h user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/isc/mutex.h user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/isc/once.h user/ed/newcons/contrib/bind9/lib/isc/pthreads/include/isc/thread.h user/ed/newcons/contrib/bind9/lib/isc/pthreads/mutex.c user/ed/newcons/contrib/bind9/lib/isc/pthreads/thread.c user/ed/newcons/contrib/bind9/lib/isc/quota.c user/ed/newcons/contrib/bind9/lib/isc/radix.c user/ed/newcons/contrib/bind9/lib/isc/random.c user/ed/newcons/contrib/bind9/lib/isc/ratelimiter.c user/ed/newcons/contrib/bind9/lib/isc/refcount.c user/ed/newcons/contrib/bind9/lib/isc/region.c user/ed/newcons/contrib/bind9/lib/isc/result.c user/ed/newcons/contrib/bind9/lib/isc/rwlock.c user/ed/newcons/contrib/bind9/lib/isc/serial.c user/ed/newcons/contrib/bind9/lib/isc/sha1.c user/ed/newcons/contrib/bind9/lib/isc/sha2.c user/ed/newcons/contrib/bind9/lib/isc/sockaddr.c user/ed/newcons/contrib/bind9/lib/isc/sparc64/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/sparc64/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/sparc64/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/sparc64/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/stats.c user/ed/newcons/contrib/bind9/lib/isc/string.c user/ed/newcons/contrib/bind9/lib/isc/strtoul.c user/ed/newcons/contrib/bind9/lib/isc/symtab.c user/ed/newcons/contrib/bind9/lib/isc/task.c user/ed/newcons/contrib/bind9/lib/isc/task_p.h user/ed/newcons/contrib/bind9/lib/isc/taskpool.c user/ed/newcons/contrib/bind9/lib/isc/timer.c user/ed/newcons/contrib/bind9/lib/isc/timer_p.h user/ed/newcons/contrib/bind9/lib/isc/unix/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/unix/app.c user/ed/newcons/contrib/bind9/lib/isc/unix/dir.c user/ed/newcons/contrib/bind9/lib/isc/unix/entropy.c user/ed/newcons/contrib/bind9/lib/isc/unix/errno2result.c user/ed/newcons/contrib/bind9/lib/isc/unix/errno2result.h user/ed/newcons/contrib/bind9/lib/isc/unix/file.c user/ed/newcons/contrib/bind9/lib/isc/unix/fsaccess.c user/ed/newcons/contrib/bind9/lib/isc/unix/ifiter_getifaddrs.c user/ed/newcons/contrib/bind9/lib/isc/unix/ifiter_ioctl.c user/ed/newcons/contrib/bind9/lib/isc/unix/ifiter_sysctl.c user/ed/newcons/contrib/bind9/lib/isc/unix/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/dir.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/int.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/keyboard.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/net.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/netdb.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/offset.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/stat.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/stdtime.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/strerror.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/syslog.h user/ed/newcons/contrib/bind9/lib/isc/unix/include/isc/time.h user/ed/newcons/contrib/bind9/lib/isc/unix/interfaceiter.c user/ed/newcons/contrib/bind9/lib/isc/unix/ipv6.c user/ed/newcons/contrib/bind9/lib/isc/unix/keyboard.c user/ed/newcons/contrib/bind9/lib/isc/unix/net.c user/ed/newcons/contrib/bind9/lib/isc/unix/os.c user/ed/newcons/contrib/bind9/lib/isc/unix/resource.c user/ed/newcons/contrib/bind9/lib/isc/unix/socket.c user/ed/newcons/contrib/bind9/lib/isc/unix/socket_p.h user/ed/newcons/contrib/bind9/lib/isc/unix/stdio.c user/ed/newcons/contrib/bind9/lib/isc/unix/stdtime.c user/ed/newcons/contrib/bind9/lib/isc/unix/strerror.c user/ed/newcons/contrib/bind9/lib/isc/unix/syslog.c user/ed/newcons/contrib/bind9/lib/isc/unix/time.c user/ed/newcons/contrib/bind9/lib/isc/version.c user/ed/newcons/contrib/bind9/lib/isc/x86_32/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_32/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_32/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_32/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isc/x86_64/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_64/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_64/include/isc/Makefile.in user/ed/newcons/contrib/bind9/lib/isc/x86_64/include/isc/atomic.h user/ed/newcons/contrib/bind9/lib/isccc/Makefile.in user/ed/newcons/contrib/bind9/lib/isccc/alist.c user/ed/newcons/contrib/bind9/lib/isccc/api user/ed/newcons/contrib/bind9/lib/isccc/base64.c user/ed/newcons/contrib/bind9/lib/isccc/cc.c user/ed/newcons/contrib/bind9/lib/isccc/ccmsg.c user/ed/newcons/contrib/bind9/lib/isccc/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/Makefile.in user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/alist.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/base64.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/cc.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/ccmsg.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/events.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/lib.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/result.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/sexpr.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/symtab.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/symtype.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/types.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/util.h user/ed/newcons/contrib/bind9/lib/isccc/include/isccc/version.h user/ed/newcons/contrib/bind9/lib/isccc/lib.c user/ed/newcons/contrib/bind9/lib/isccc/result.c user/ed/newcons/contrib/bind9/lib/isccc/sexpr.c user/ed/newcons/contrib/bind9/lib/isccc/symtab.c user/ed/newcons/contrib/bind9/lib/isccc/version.c user/ed/newcons/contrib/bind9/lib/isccfg/Makefile.in user/ed/newcons/contrib/bind9/lib/isccfg/aclconf.c user/ed/newcons/contrib/bind9/lib/isccfg/api user/ed/newcons/contrib/bind9/lib/isccfg/include/Makefile.in user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/Makefile.in user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/aclconf.h user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/cfg.h user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/grammar.h user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/log.h user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/namedconf.h user/ed/newcons/contrib/bind9/lib/isccfg/include/isccfg/version.h user/ed/newcons/contrib/bind9/lib/isccfg/log.c user/ed/newcons/contrib/bind9/lib/isccfg/namedconf.c user/ed/newcons/contrib/bind9/lib/isccfg/parser.c user/ed/newcons/contrib/bind9/lib/isccfg/version.c user/ed/newcons/contrib/bind9/lib/lwres/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/api user/ed/newcons/contrib/bind9/lib/lwres/assert_p.h user/ed/newcons/contrib/bind9/lib/lwres/context.c user/ed/newcons/contrib/bind9/lib/lwres/context_p.h user/ed/newcons/contrib/bind9/lib/lwres/gai_strerror.c user/ed/newcons/contrib/bind9/lib/lwres/getaddrinfo.c user/ed/newcons/contrib/bind9/lib/lwres/gethost.c user/ed/newcons/contrib/bind9/lib/lwres/getipnode.c user/ed/newcons/contrib/bind9/lib/lwres/getnameinfo.c user/ed/newcons/contrib/bind9/lib/lwres/getrrset.c user/ed/newcons/contrib/bind9/lib/lwres/herror.c user/ed/newcons/contrib/bind9/lib/lwres/include/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/context.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/int.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/ipv6.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/lang.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/list.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/lwbuffer.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/lwpacket.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/lwres.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/netdb.h.in user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/platform.h.in user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/result.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/stdlib.h user/ed/newcons/contrib/bind9/lib/lwres/include/lwres/version.h user/ed/newcons/contrib/bind9/lib/lwres/lwbuffer.c user/ed/newcons/contrib/bind9/lib/lwres/lwconfig.c user/ed/newcons/contrib/bind9/lib/lwres/lwinetaton.c user/ed/newcons/contrib/bind9/lib/lwres/lwinetntop.c user/ed/newcons/contrib/bind9/lib/lwres/lwinetpton.c user/ed/newcons/contrib/bind9/lib/lwres/lwpacket.c user/ed/newcons/contrib/bind9/lib/lwres/lwres_gabn.c user/ed/newcons/contrib/bind9/lib/lwres/lwres_gnba.c user/ed/newcons/contrib/bind9/lib/lwres/lwres_grbn.c user/ed/newcons/contrib/bind9/lib/lwres/lwres_noop.c user/ed/newcons/contrib/bind9/lib/lwres/lwresutil.c user/ed/newcons/contrib/bind9/lib/lwres/man/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/man/lwres.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_buffer.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_buffer.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_buffer.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_config.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_config.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_config.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_context.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_context.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_context.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gabn.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gabn.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gabn.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gai_strerror.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gai_strerror.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gai_strerror.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getaddrinfo.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gethostent.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gethostent.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gethostent.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getipnode.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getipnode.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getipnode.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getnameinfo.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getnameinfo.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getnameinfo.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_getrrsetbyname.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gnba.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gnba.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_gnba.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_hstrerror.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_hstrerror.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_hstrerror.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_inetntop.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_inetntop.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_inetntop.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_noop.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_noop.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_noop.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_packet.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_packet.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_packet.html user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_resutil.3 user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_resutil.docbook user/ed/newcons/contrib/bind9/lib/lwres/man/lwres_resutil.html user/ed/newcons/contrib/bind9/lib/lwres/print.c user/ed/newcons/contrib/bind9/lib/lwres/print_p.h user/ed/newcons/contrib/bind9/lib/lwres/strtoul.c user/ed/newcons/contrib/bind9/lib/lwres/unix/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/unix/include/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/unix/include/lwres/Makefile.in user/ed/newcons/contrib/bind9/lib/lwres/unix/include/lwres/net.h user/ed/newcons/contrib/bind9/lib/lwres/version.c user/ed/newcons/contrib/bind9/make/Makefile.in user/ed/newcons/contrib/bind9/make/includes.in user/ed/newcons/contrib/bind9/make/rules.in user/ed/newcons/contrib/bind9/mkinstalldirs user/ed/newcons/contrib/bind9/version user/ed/newcons/contrib/binutils/bfd/coffcode.h user/ed/newcons/contrib/binutils/bfd/opncls.c user/ed/newcons/contrib/binutils/bfd/peicode.h user/ed/newcons/contrib/binutils/binutils/objcopy.c user/ed/newcons/contrib/binutils/binutils/readelf.c user/ed/newcons/contrib/binutils/binutils/strings.c user/ed/newcons/contrib/binutils/gas/config/obj-elf.c user/ed/newcons/contrib/binutils/gas/config/tc-arm.c user/ed/newcons/contrib/binutils/gas/frags.c user/ed/newcons/contrib/binutils/gas/read.h user/ed/newcons/contrib/binutils/gas/subsegs.c user/ed/newcons/contrib/binutils/gas/write.c user/ed/newcons/contrib/binutils/ld/emulparams/elf64bmip-defs.sh user/ed/newcons/contrib/binutils/ld/ldexp.c user/ed/newcons/contrib/binutils/ld/ldlang.c user/ed/newcons/contrib/binutils/ld/sysdep.h user/ed/newcons/contrib/binutils/opcodes/i386-dis.c user/ed/newcons/contrib/bsnmp/snmp_mibII/mibII_interfaces.c user/ed/newcons/contrib/bsnmp/snmp_usm/snmp_usm.3 user/ed/newcons/contrib/bsnmp/snmpd/main.c user/ed/newcons/contrib/compiler-rt/CREDITS.TXT user/ed/newcons/contrib/compiler-rt/LICENSE.TXT user/ed/newcons/contrib/compiler-rt/README.txt user/ed/newcons/contrib/compiler-rt/lib/absvdi2.c user/ed/newcons/contrib/compiler-rt/lib/absvsi2.c user/ed/newcons/contrib/compiler-rt/lib/absvti2.c user/ed/newcons/contrib/compiler-rt/lib/adddf3.c user/ed/newcons/contrib/compiler-rt/lib/addsf3.c user/ed/newcons/contrib/compiler-rt/lib/addvdi3.c user/ed/newcons/contrib/compiler-rt/lib/addvsi3.c user/ed/newcons/contrib/compiler-rt/lib/addvti3.c user/ed/newcons/contrib/compiler-rt/lib/apple_versioning.c user/ed/newcons/contrib/compiler-rt/lib/arm/adddf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/addsf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/bswapdi2.S user/ed/newcons/contrib/compiler-rt/lib/arm/bswapsi2.S user/ed/newcons/contrib/compiler-rt/lib/arm/comparesf2.S user/ed/newcons/contrib/compiler-rt/lib/arm/divdf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/divsf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/eqdf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/eqsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/extendsfdf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/fixdfsivfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/fixsfsivfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/fixunsdfsivfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/fixunssfsivfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/floatsidfvfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/floatsisfvfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/floatunssidfvfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/floatunssisfvfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/gedf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/gesf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/gtdf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/gtsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/ledf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/lesf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/ltdf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/ltsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/modsi3.S user/ed/newcons/contrib/compiler-rt/lib/arm/muldf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/mulsf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/nedf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/negdf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/negsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/nesf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/restore_vfp_d8_d15_regs.S user/ed/newcons/contrib/compiler-rt/lib/arm/save_vfp_d8_d15_regs.S user/ed/newcons/contrib/compiler-rt/lib/arm/subdf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/subsf3vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/switch16.S user/ed/newcons/contrib/compiler-rt/lib/arm/switch32.S user/ed/newcons/contrib/compiler-rt/lib/arm/switch8.S user/ed/newcons/contrib/compiler-rt/lib/arm/switchu8.S user/ed/newcons/contrib/compiler-rt/lib/arm/sync_synchronize.S user/ed/newcons/contrib/compiler-rt/lib/arm/truncdfsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/unorddf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/arm/unordsf2vfp.S user/ed/newcons/contrib/compiler-rt/lib/ashldi3.c user/ed/newcons/contrib/compiler-rt/lib/ashlti3.c user/ed/newcons/contrib/compiler-rt/lib/ashrdi3.c user/ed/newcons/contrib/compiler-rt/lib/ashrti3.c user/ed/newcons/contrib/compiler-rt/lib/assembly.h user/ed/newcons/contrib/compiler-rt/lib/clear_cache.c user/ed/newcons/contrib/compiler-rt/lib/clzdi2.c user/ed/newcons/contrib/compiler-rt/lib/clzsi2.c user/ed/newcons/contrib/compiler-rt/lib/clzti2.c user/ed/newcons/contrib/compiler-rt/lib/cmpdi2.c user/ed/newcons/contrib/compiler-rt/lib/cmpti2.c user/ed/newcons/contrib/compiler-rt/lib/comparedf2.c user/ed/newcons/contrib/compiler-rt/lib/comparesf2.c user/ed/newcons/contrib/compiler-rt/lib/ctzdi2.c user/ed/newcons/contrib/compiler-rt/lib/ctzsi2.c user/ed/newcons/contrib/compiler-rt/lib/ctzti2.c user/ed/newcons/contrib/compiler-rt/lib/divdc3.c user/ed/newcons/contrib/compiler-rt/lib/divdf3.c user/ed/newcons/contrib/compiler-rt/lib/divdi3.c user/ed/newcons/contrib/compiler-rt/lib/divsc3.c user/ed/newcons/contrib/compiler-rt/lib/divsf3.c user/ed/newcons/contrib/compiler-rt/lib/divsi3.c user/ed/newcons/contrib/compiler-rt/lib/divti3.c user/ed/newcons/contrib/compiler-rt/lib/divxc3.c user/ed/newcons/contrib/compiler-rt/lib/enable_execute_stack.c user/ed/newcons/contrib/compiler-rt/lib/endianness.h user/ed/newcons/contrib/compiler-rt/lib/eprintf.c user/ed/newcons/contrib/compiler-rt/lib/extendsfdf2.c user/ed/newcons/contrib/compiler-rt/lib/ffsdi2.c user/ed/newcons/contrib/compiler-rt/lib/ffsti2.c user/ed/newcons/contrib/compiler-rt/lib/fixdfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixdfsi.c user/ed/newcons/contrib/compiler-rt/lib/fixdfti.c user/ed/newcons/contrib/compiler-rt/lib/fixsfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixsfsi.c user/ed/newcons/contrib/compiler-rt/lib/fixsfti.c user/ed/newcons/contrib/compiler-rt/lib/fixunsdfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixunsdfsi.c user/ed/newcons/contrib/compiler-rt/lib/fixunsdfti.c user/ed/newcons/contrib/compiler-rt/lib/fixunssfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixunssfsi.c user/ed/newcons/contrib/compiler-rt/lib/fixunssfti.c user/ed/newcons/contrib/compiler-rt/lib/fixunsxfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixunsxfsi.c user/ed/newcons/contrib/compiler-rt/lib/fixunsxfti.c user/ed/newcons/contrib/compiler-rt/lib/fixxfdi.c user/ed/newcons/contrib/compiler-rt/lib/fixxfti.c user/ed/newcons/contrib/compiler-rt/lib/floatdidf.c user/ed/newcons/contrib/compiler-rt/lib/floatdisf.c user/ed/newcons/contrib/compiler-rt/lib/floatdixf.c user/ed/newcons/contrib/compiler-rt/lib/floatsidf.c user/ed/newcons/contrib/compiler-rt/lib/floatsisf.c user/ed/newcons/contrib/compiler-rt/lib/floattidf.c user/ed/newcons/contrib/compiler-rt/lib/floattisf.c user/ed/newcons/contrib/compiler-rt/lib/floattixf.c user/ed/newcons/contrib/compiler-rt/lib/floatundidf.c user/ed/newcons/contrib/compiler-rt/lib/floatundisf.c user/ed/newcons/contrib/compiler-rt/lib/floatundixf.c user/ed/newcons/contrib/compiler-rt/lib/floatunsidf.c user/ed/newcons/contrib/compiler-rt/lib/floatunsisf.c user/ed/newcons/contrib/compiler-rt/lib/floatuntidf.c user/ed/newcons/contrib/compiler-rt/lib/floatuntisf.c user/ed/newcons/contrib/compiler-rt/lib/floatuntixf.c user/ed/newcons/contrib/compiler-rt/lib/fp_lib.h user/ed/newcons/contrib/compiler-rt/lib/gcc_personality_v0.c user/ed/newcons/contrib/compiler-rt/lib/i386/ashldi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/ashrdi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/divdi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatdidf.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatdisf.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatdixf.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatundidf.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatundisf.S user/ed/newcons/contrib/compiler-rt/lib/i386/floatundixf.S user/ed/newcons/contrib/compiler-rt/lib/i386/lshrdi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/moddi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/muldi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/udivdi3.S user/ed/newcons/contrib/compiler-rt/lib/i386/umoddi3.S user/ed/newcons/contrib/compiler-rt/lib/int_lib.h user/ed/newcons/contrib/compiler-rt/lib/lshrdi3.c user/ed/newcons/contrib/compiler-rt/lib/lshrti3.c user/ed/newcons/contrib/compiler-rt/lib/moddi3.c user/ed/newcons/contrib/compiler-rt/lib/modsi3.c user/ed/newcons/contrib/compiler-rt/lib/modti3.c user/ed/newcons/contrib/compiler-rt/lib/muldc3.c user/ed/newcons/contrib/compiler-rt/lib/muldf3.c user/ed/newcons/contrib/compiler-rt/lib/muldi3.c user/ed/newcons/contrib/compiler-rt/lib/mulsc3.c user/ed/newcons/contrib/compiler-rt/lib/mulsf3.c user/ed/newcons/contrib/compiler-rt/lib/multi3.c user/ed/newcons/contrib/compiler-rt/lib/mulvdi3.c user/ed/newcons/contrib/compiler-rt/lib/mulvsi3.c user/ed/newcons/contrib/compiler-rt/lib/mulvti3.c user/ed/newcons/contrib/compiler-rt/lib/mulxc3.c user/ed/newcons/contrib/compiler-rt/lib/negdf2.c user/ed/newcons/contrib/compiler-rt/lib/negdi2.c user/ed/newcons/contrib/compiler-rt/lib/negsf2.c user/ed/newcons/contrib/compiler-rt/lib/negti2.c user/ed/newcons/contrib/compiler-rt/lib/negvdi2.c user/ed/newcons/contrib/compiler-rt/lib/negvsi2.c user/ed/newcons/contrib/compiler-rt/lib/negvti2.c user/ed/newcons/contrib/compiler-rt/lib/paritydi2.c user/ed/newcons/contrib/compiler-rt/lib/paritysi2.c user/ed/newcons/contrib/compiler-rt/lib/parityti2.c user/ed/newcons/contrib/compiler-rt/lib/popcountdi2.c user/ed/newcons/contrib/compiler-rt/lib/popcountsi2.c user/ed/newcons/contrib/compiler-rt/lib/popcountti2.c user/ed/newcons/contrib/compiler-rt/lib/powidf2.c user/ed/newcons/contrib/compiler-rt/lib/powisf2.c user/ed/newcons/contrib/compiler-rt/lib/powitf2.c user/ed/newcons/contrib/compiler-rt/lib/powixf2.c user/ed/newcons/contrib/compiler-rt/lib/ppc/restFP.S user/ed/newcons/contrib/compiler-rt/lib/ppc/saveFP.S user/ed/newcons/contrib/compiler-rt/lib/subvdi3.c user/ed/newcons/contrib/compiler-rt/lib/subvsi3.c user/ed/newcons/contrib/compiler-rt/lib/subvti3.c user/ed/newcons/contrib/compiler-rt/lib/trampoline_setup.c user/ed/newcons/contrib/compiler-rt/lib/truncdfsf2.c user/ed/newcons/contrib/compiler-rt/lib/ucmpdi2.c user/ed/newcons/contrib/compiler-rt/lib/ucmpti2.c user/ed/newcons/contrib/compiler-rt/lib/udivdi3.c user/ed/newcons/contrib/compiler-rt/lib/udivmoddi4.c user/ed/newcons/contrib/compiler-rt/lib/udivmodti4.c user/ed/newcons/contrib/compiler-rt/lib/udivsi3.c user/ed/newcons/contrib/compiler-rt/lib/udivti3.c user/ed/newcons/contrib/compiler-rt/lib/umoddi3.c user/ed/newcons/contrib/compiler-rt/lib/umodsi3.c user/ed/newcons/contrib/compiler-rt/lib/umodti3.c user/ed/newcons/contrib/compiler-rt/lib/x86_64/floatundidf.S user/ed/newcons/contrib/compiler-rt/lib/x86_64/floatundisf.S user/ed/newcons/contrib/compiler-rt/lib/x86_64/floatundixf.S user/ed/newcons/contrib/dialog/CHANGES user/ed/newcons/contrib/dialog/VERSION user/ed/newcons/contrib/dialog/aclocal.m4 user/ed/newcons/contrib/dialog/arrows.c user/ed/newcons/contrib/dialog/buttons.c user/ed/newcons/contrib/dialog/calendar.c user/ed/newcons/contrib/dialog/checklist.c user/ed/newcons/contrib/dialog/columns.c user/ed/newcons/contrib/dialog/config.guess user/ed/newcons/contrib/dialog/config.sub user/ed/newcons/contrib/dialog/configure user/ed/newcons/contrib/dialog/configure.in user/ed/newcons/contrib/dialog/dialog-config.in user/ed/newcons/contrib/dialog/dialog.1 user/ed/newcons/contrib/dialog/dialog.3 user/ed/newcons/contrib/dialog/dialog.c user/ed/newcons/contrib/dialog/dialog.h user/ed/newcons/contrib/dialog/dlg_colors.h user/ed/newcons/contrib/dialog/dlg_keys.h user/ed/newcons/contrib/dialog/editbox.c user/ed/newcons/contrib/dialog/formbox.c user/ed/newcons/contrib/dialog/fselect.c user/ed/newcons/contrib/dialog/guage.c user/ed/newcons/contrib/dialog/headers-sh.in user/ed/newcons/contrib/dialog/inputbox.c user/ed/newcons/contrib/dialog/inputstr.c user/ed/newcons/contrib/dialog/makefile.in user/ed/newcons/contrib/dialog/menubox.c user/ed/newcons/contrib/dialog/mixedgauge.c user/ed/newcons/contrib/dialog/msgbox.c user/ed/newcons/contrib/dialog/pause.c user/ed/newcons/contrib/dialog/po/ar.po user/ed/newcons/contrib/dialog/po/bg.po user/ed/newcons/contrib/dialog/po/ca.po user/ed/newcons/contrib/dialog/po/cy.po user/ed/newcons/contrib/dialog/po/da.po user/ed/newcons/contrib/dialog/po/de.po user/ed/newcons/contrib/dialog/po/dialog.pot user/ed/newcons/contrib/dialog/po/eo.po user/ed/newcons/contrib/dialog/po/es.po user/ed/newcons/contrib/dialog/po/eu.po user/ed/newcons/contrib/dialog/po/fi.po user/ed/newcons/contrib/dialog/po/fr.po user/ed/newcons/contrib/dialog/po/ga.po user/ed/newcons/contrib/dialog/po/gl.po user/ed/newcons/contrib/dialog/po/hr.po user/ed/newcons/contrib/dialog/po/id.po user/ed/newcons/contrib/dialog/po/is.po user/ed/newcons/contrib/dialog/po/it.po user/ed/newcons/contrib/dialog/po/ja.po user/ed/newcons/contrib/dialog/po/ku.po user/ed/newcons/contrib/dialog/po/lt.po user/ed/newcons/contrib/dialog/po/lv.po user/ed/newcons/contrib/dialog/po/makefile.inn user/ed/newcons/contrib/dialog/po/ms.po user/ed/newcons/contrib/dialog/po/nl.po user/ed/newcons/contrib/dialog/po/pl.po user/ed/newcons/contrib/dialog/po/pt_BR.po user/ed/newcons/contrib/dialog/po/ru.po user/ed/newcons/contrib/dialog/po/sq.po user/ed/newcons/contrib/dialog/po/sv.po user/ed/newcons/contrib/dialog/po/sw.po user/ed/newcons/contrib/dialog/po/th.po user/ed/newcons/contrib/dialog/po/zh_CN.po user/ed/newcons/contrib/dialog/po/zh_TW.po user/ed/newcons/contrib/dialog/progressbox.c user/ed/newcons/contrib/dialog/rc.c user/ed/newcons/contrib/dialog/samples/debian.rc user/ed/newcons/contrib/dialog/samples/infobox5 user/ed/newcons/contrib/dialog/samples/infobox6 user/ed/newcons/contrib/dialog/samples/setup-vars user/ed/newcons/contrib/dialog/samples/slackware.rc user/ed/newcons/contrib/dialog/samples/sourcemage.rc user/ed/newcons/contrib/dialog/samples/suse.rc user/ed/newcons/contrib/dialog/samples/whiptail.rc user/ed/newcons/contrib/dialog/tailbox.c user/ed/newcons/contrib/dialog/textbox.c user/ed/newcons/contrib/dialog/timebox.c user/ed/newcons/contrib/dialog/trace.c user/ed/newcons/contrib/dialog/ui_getc.c user/ed/newcons/contrib/dialog/util.c user/ed/newcons/contrib/dialog/yesno.c user/ed/newcons/contrib/gcc/BASE-VER user/ed/newcons/contrib/gcc/ChangeLog user/ed/newcons/contrib/gcc/DATESTAMP user/ed/newcons/contrib/gcc/DEV-PHASE user/ed/newcons/contrib/gcc/c-decl.c user/ed/newcons/contrib/gcc/c.opt user/ed/newcons/contrib/gcc/cfg.c user/ed/newcons/contrib/gcc/combine.c user/ed/newcons/contrib/gcc/common.opt user/ed/newcons/contrib/gcc/config/mips/predicates.md user/ed/newcons/contrib/gcc/config/rs6000/rs6000.c user/ed/newcons/contrib/gcc/config/s390/s390.md user/ed/newcons/contrib/gcc/cp/ChangeLog user/ed/newcons/contrib/gcc/cp/call.c user/ed/newcons/contrib/gcc/cp/cp-tree.h user/ed/newcons/contrib/gcc/cp/cxx-pretty-print.c user/ed/newcons/contrib/gcc/cp/decl.c user/ed/newcons/contrib/gcc/cp/decl2.c user/ed/newcons/contrib/gcc/cp/error.c user/ed/newcons/contrib/gcc/cp/lex.c user/ed/newcons/contrib/gcc/cp/name-lookup.c user/ed/newcons/contrib/gcc/cp/pt.c user/ed/newcons/contrib/gcc/cp/semantics.c user/ed/newcons/contrib/gcc/cp/typeck.c user/ed/newcons/contrib/gcc/doc/contrib.texi user/ed/newcons/contrib/gcc/doc/cpp.1 user/ed/newcons/contrib/gcc/doc/cpp.texi user/ed/newcons/contrib/gcc/doc/cppenv.texi user/ed/newcons/contrib/gcc/doc/cppinternals.texi user/ed/newcons/contrib/gcc/doc/cppopts.texi user/ed/newcons/contrib/gcc/doc/extend.texi user/ed/newcons/contrib/gcc/doc/frontends.texi user/ed/newcons/contrib/gcc/doc/gcc.1 user/ed/newcons/contrib/gcc/doc/gcc.texi user/ed/newcons/contrib/gcc/doc/invoke.texi user/ed/newcons/contrib/gcc/doc/sourcebuild.texi user/ed/newcons/contrib/gcc/doc/standards.texi user/ed/newcons/contrib/gcc/doc/tm.texi user/ed/newcons/contrib/gcc/dwarf2out.c user/ed/newcons/contrib/gcc/emit-rtl.c user/ed/newcons/contrib/gcc/expr.c user/ed/newcons/contrib/gcc/fold-const.c user/ed/newcons/contrib/gcc/function.c user/ed/newcons/contrib/gcc/genattrtab.c user/ed/newcons/contrib/gcc/genautomata.c user/ed/newcons/contrib/gcc/gengtype-lex.l user/ed/newcons/contrib/gcc/genmodes.c user/ed/newcons/contrib/gcc/gimplify.c user/ed/newcons/contrib/gcc/omp-low.c user/ed/newcons/contrib/gcc/output.h user/ed/newcons/contrib/gcc/reload1.c user/ed/newcons/contrib/gcc/rtl.h user/ed/newcons/contrib/gcc/simplify-rtx.c user/ed/newcons/contrib/gcc/target-def.h user/ed/newcons/contrib/gcc/target.h user/ed/newcons/contrib/gcc/targhooks.c user/ed/newcons/contrib/gcc/targhooks.h user/ed/newcons/contrib/gcc/tree-cfg.c user/ed/newcons/contrib/gcc/tree-if-conv.c user/ed/newcons/contrib/gcc/tree-nested.c user/ed/newcons/contrib/gcc/tree-ssa-structalias.c user/ed/newcons/contrib/gcc/tree-vect-analyze.c user/ed/newcons/contrib/gcc/tree-vect-patterns.c user/ed/newcons/contrib/gcc/tree.c user/ed/newcons/contrib/gcc/tree.h user/ed/newcons/contrib/gcclibs/libiberty/regex.c user/ed/newcons/contrib/gdb/FREEBSD-diffs user/ed/newcons/contrib/gdb/gdb/ppcfbsd-tdep.c user/ed/newcons/contrib/gdb/gdb/sparc64fbsd-tdep.c user/ed/newcons/contrib/gperf/src/gen-perf.cc user/ed/newcons/contrib/gperf/src/key-list.cc user/ed/newcons/contrib/gperf/src/options.cc user/ed/newcons/contrib/groff/src/devices/grohtml/post-html.cpp user/ed/newcons/contrib/groff/src/libs/libdriver/input.cpp user/ed/newcons/contrib/groff/src/roff/troff/mtsm.cpp user/ed/newcons/contrib/groff/src/roff/troff/node.cpp user/ed/newcons/contrib/groff/src/utils/hpftodit/hpftodit.cpp user/ed/newcons/contrib/groff/tmac/doc-common user/ed/newcons/contrib/groff/tmac/doc-syms user/ed/newcons/contrib/groff/tmac/doc.tmac user/ed/newcons/contrib/groff/tmac/troffrc user/ed/newcons/contrib/less/LICENSE user/ed/newcons/contrib/less/Makefile.aut user/ed/newcons/contrib/less/Makefile.wnm user/ed/newcons/contrib/less/NEWS user/ed/newcons/contrib/less/README user/ed/newcons/contrib/less/brac.c user/ed/newcons/contrib/less/ch.c user/ed/newcons/contrib/less/charset.c user/ed/newcons/contrib/less/charset.h user/ed/newcons/contrib/less/cmd.h user/ed/newcons/contrib/less/cmdbuf.c user/ed/newcons/contrib/less/command.c user/ed/newcons/contrib/less/configure user/ed/newcons/contrib/less/configure.ac user/ed/newcons/contrib/less/cvt.c user/ed/newcons/contrib/less/decode.c user/ed/newcons/contrib/less/defines.ds user/ed/newcons/contrib/less/defines.h.in user/ed/newcons/contrib/less/defines.o2 user/ed/newcons/contrib/less/defines.o9 user/ed/newcons/contrib/less/defines.wn user/ed/newcons/contrib/less/edit.c user/ed/newcons/contrib/less/filename.c user/ed/newcons/contrib/less/forwback.c user/ed/newcons/contrib/less/funcs.h user/ed/newcons/contrib/less/help.c user/ed/newcons/contrib/less/ifile.c user/ed/newcons/contrib/less/input.c user/ed/newcons/contrib/less/jump.c user/ed/newcons/contrib/less/less.h user/ed/newcons/contrib/less/less.hlp user/ed/newcons/contrib/less/less.man user/ed/newcons/contrib/less/less.nro user/ed/newcons/contrib/less/lessecho.c user/ed/newcons/contrib/less/lessecho.man user/ed/newcons/contrib/less/lessecho.nro user/ed/newcons/contrib/less/lesskey.c user/ed/newcons/contrib/less/lesskey.h user/ed/newcons/contrib/less/lesskey.man user/ed/newcons/contrib/less/lesskey.nro user/ed/newcons/contrib/less/lglob.h user/ed/newcons/contrib/less/line.c user/ed/newcons/contrib/less/linenum.c user/ed/newcons/contrib/less/lsystem.c user/ed/newcons/contrib/less/main.c user/ed/newcons/contrib/less/mark.c user/ed/newcons/contrib/less/mkhelp.c user/ed/newcons/contrib/less/optfunc.c user/ed/newcons/contrib/less/option.c user/ed/newcons/contrib/less/option.h user/ed/newcons/contrib/less/opttbl.c user/ed/newcons/contrib/less/os.c user/ed/newcons/contrib/less/output.c user/ed/newcons/contrib/less/pattern.c user/ed/newcons/contrib/less/pattern.h user/ed/newcons/contrib/less/pckeys.h user/ed/newcons/contrib/less/position.c user/ed/newcons/contrib/less/position.h user/ed/newcons/contrib/less/prompt.c user/ed/newcons/contrib/less/screen.c user/ed/newcons/contrib/less/scrsize.c user/ed/newcons/contrib/less/search.c user/ed/newcons/contrib/less/signal.c user/ed/newcons/contrib/less/tags.c user/ed/newcons/contrib/less/ttyin.c user/ed/newcons/contrib/less/version.c user/ed/newcons/contrib/libpcap/bpf/net/bpf_filter.c user/ed/newcons/contrib/libpcap/pcap-bpf.c user/ed/newcons/contrib/libstdc++/ChangeLog user/ed/newcons/contrib/libstdc++/include/std/std_valarray.h user/ed/newcons/contrib/libstdc++/include/tr1/random user/ed/newcons/contrib/llvm/include/llvm-c/Core.h user/ed/newcons/contrib/llvm/include/llvm-c/EnhancedDisassembly.h user/ed/newcons/contrib/llvm/include/llvm-c/Target.h user/ed/newcons/contrib/llvm/include/llvm-c/Transforms/IPO.h user/ed/newcons/contrib/llvm/include/llvm-c/Transforms/Scalar.h user/ed/newcons/contrib/llvm/include/llvm-c/lto.h user/ed/newcons/contrib/llvm/include/llvm/ADT/APFloat.h user/ed/newcons/contrib/llvm/include/llvm/ADT/APInt.h user/ed/newcons/contrib/llvm/include/llvm/ADT/ArrayRef.h user/ed/newcons/contrib/llvm/include/llvm/ADT/DenseMap.h user/ed/newcons/contrib/llvm/include/llvm/ADT/DenseMapInfo.h user/ed/newcons/contrib/llvm/include/llvm/ADT/DepthFirstIterator.h user/ed/newcons/contrib/llvm/include/llvm/ADT/FoldingSet.h user/ed/newcons/contrib/llvm/include/llvm/ADT/ImmutableIntervalMap.h user/ed/newcons/contrib/llvm/include/llvm/ADT/ImmutableList.h user/ed/newcons/contrib/llvm/include/llvm/ADT/IntervalMap.h user/ed/newcons/contrib/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h user/ed/newcons/contrib/llvm/include/llvm/ADT/PointerUnion.h user/ed/newcons/contrib/llvm/include/llvm/ADT/ScopedHashTable.h user/ed/newcons/contrib/llvm/include/llvm/ADT/SmallPtrSet.h user/ed/newcons/contrib/llvm/include/llvm/ADT/SmallVector.h user/ed/newcons/contrib/llvm/include/llvm/ADT/Statistic.h user/ed/newcons/contrib/llvm/include/llvm/ADT/StringExtras.h user/ed/newcons/contrib/llvm/include/llvm/ADT/StringMap.h user/ed/newcons/contrib/llvm/include/llvm/ADT/StringRef.h user/ed/newcons/contrib/llvm/include/llvm/ADT/Triple.h user/ed/newcons/contrib/llvm/include/llvm/ADT/ilist.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/AliasAnalysis.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/AliasSetTracker.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/CFGPrinter.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/CallGraph.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/DIBuilder.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/DebugInfo.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/FindUsedTypes.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/IVUsers.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/InlineCost.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/InstructionSimplify.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/Lint.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/Passes.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/PathProfileInfo.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/PostDominators.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/RegionInfo.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/RegionIterator.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/RegionPass.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/ScalarEvolution.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h user/ed/newcons/contrib/llvm/include/llvm/Analysis/ValueTracking.h user/ed/newcons/contrib/llvm/include/llvm/Argument.h user/ed/newcons/contrib/llvm/include/llvm/Assembly/Writer.h user/ed/newcons/contrib/llvm/include/llvm/Attributes.h user/ed/newcons/contrib/llvm/include/llvm/BasicBlock.h user/ed/newcons/contrib/llvm/include/llvm/Bitcode/Archive.h user/ed/newcons/contrib/llvm/include/llvm/Bitcode/BitstreamReader.h user/ed/newcons/contrib/llvm/include/llvm/Bitcode/LLVMBitCodes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/Analysis.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/AsmPrinter.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/CalcSpillWeights.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/CallingConvLower.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/EdgeBundles.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/FastISel.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ISDOpcodes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/JITCodeEmitter.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/LiveInterval.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/LiveIntervalAnalysis.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineBasicBlock.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineCodeEmitter.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineConstantPool.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineFrameInfo.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineFunction.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineInstr.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineInstrBuilder.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineModuleInfo.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineOperand.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/MachineRegisterInfo.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/PBQP/Graph.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/PBQP/Heuristics/Briggs.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/Passes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ProcessImplicitDefs.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/PseudoSourceValue.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/RegAllocPBQP.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/RegisterScavenging.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/RuntimeLibcalls.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ScheduleDAG.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/SelectionDAG.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/SelectionDAGISel.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/SelectionDAGNodes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/SlotIndexes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ValueTypes.h user/ed/newcons/contrib/llvm/include/llvm/CodeGen/ValueTypes.td user/ed/newcons/contrib/llvm/include/llvm/CompilerDriver/Common.td user/ed/newcons/contrib/llvm/include/llvm/CompilerDriver/CompilationGraph.h user/ed/newcons/contrib/llvm/include/llvm/CompilerDriver/Tool.h user/ed/newcons/contrib/llvm/include/llvm/Constant.h user/ed/newcons/contrib/llvm/include/llvm/Constants.h user/ed/newcons/contrib/llvm/include/llvm/DerivedTypes.h user/ed/newcons/contrib/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h user/ed/newcons/contrib/llvm/include/llvm/ExecutionEngine/JITMemoryManager.h user/ed/newcons/contrib/llvm/include/llvm/Function.h user/ed/newcons/contrib/llvm/include/llvm/GlobalAlias.h user/ed/newcons/contrib/llvm/include/llvm/GlobalValue.h user/ed/newcons/contrib/llvm/include/llvm/GlobalVariable.h user/ed/newcons/contrib/llvm/include/llvm/InitializePasses.h user/ed/newcons/contrib/llvm/include/llvm/InlineAsm.h user/ed/newcons/contrib/llvm/include/llvm/InstrTypes.h user/ed/newcons/contrib/llvm/include/llvm/Instructions.h user/ed/newcons/contrib/llvm/include/llvm/IntrinsicInst.h user/ed/newcons/contrib/llvm/include/llvm/Intrinsics.h user/ed/newcons/contrib/llvm/include/llvm/Intrinsics.td user/ed/newcons/contrib/llvm/include/llvm/IntrinsicsARM.td user/ed/newcons/contrib/llvm/include/llvm/IntrinsicsX86.td user/ed/newcons/contrib/llvm/include/llvm/IntrinsicsXCore.td user/ed/newcons/contrib/llvm/include/llvm/LLVMContext.h user/ed/newcons/contrib/llvm/include/llvm/LinkAllPasses.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCAsmInfo.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCAsmLayout.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCAssembler.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCContext.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCDisassembler.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCDwarf.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCELFSymbolFlags.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCExpr.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCInstPrinter.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCMachObjectWriter.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCObjectStreamer.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCParser/AsmLexer.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCParser/MCAsmLexer.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCParser/MCAsmParser.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCSection.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCSectionMachO.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCStreamer.h user/ed/newcons/contrib/llvm/include/llvm/MC/MCSymbol.h user/ed/newcons/contrib/llvm/include/llvm/Metadata.h user/ed/newcons/contrib/llvm/include/llvm/Module.h user/ed/newcons/contrib/llvm/include/llvm/Object/MachOObject.h user/ed/newcons/contrib/llvm/include/llvm/Object/ObjectFile.h user/ed/newcons/contrib/llvm/include/llvm/Operator.h user/ed/newcons/contrib/llvm/include/llvm/Pass.h user/ed/newcons/contrib/llvm/include/llvm/PassAnalysisSupport.h user/ed/newcons/contrib/llvm/include/llvm/Support/Allocator.h user/ed/newcons/contrib/llvm/include/llvm/Support/CFG.h user/ed/newcons/contrib/llvm/include/llvm/Support/Casting.h user/ed/newcons/contrib/llvm/include/llvm/Support/CommandLine.h user/ed/newcons/contrib/llvm/include/llvm/Support/Compiler.h user/ed/newcons/contrib/llvm/include/llvm/Support/ConstantFolder.h user/ed/newcons/contrib/llvm/include/llvm/Support/CrashRecoveryContext.h user/ed/newcons/contrib/llvm/include/llvm/Support/DOTGraphTraits.h user/ed/newcons/contrib/llvm/include/llvm/Support/DebugLoc.h user/ed/newcons/contrib/llvm/include/llvm/Support/Dwarf.h user/ed/newcons/contrib/llvm/include/llvm/Support/ELF.h user/ed/newcons/contrib/llvm/include/llvm/Support/Endian.h user/ed/newcons/contrib/llvm/include/llvm/Support/ErrorHandling.h user/ed/newcons/contrib/llvm/include/llvm/Support/FileSystem.h user/ed/newcons/contrib/llvm/include/llvm/Support/FileUtilities.h user/ed/newcons/contrib/llvm/include/llvm/Support/GraphWriter.h user/ed/newcons/contrib/llvm/include/llvm/Support/IRBuilder.h user/ed/newcons/contrib/llvm/include/llvm/Support/Memory.h user/ed/newcons/contrib/llvm/include/llvm/Support/MemoryBuffer.h user/ed/newcons/contrib/llvm/include/llvm/Support/NoFolder.h user/ed/newcons/contrib/llvm/include/llvm/Support/PathV1.h user/ed/newcons/contrib/llvm/include/llvm/Support/PatternMatch.h user/ed/newcons/contrib/llvm/include/llvm/Support/PrettyStackTrace.h user/ed/newcons/contrib/llvm/include/llvm/Support/Program.h user/ed/newcons/contrib/llvm/include/llvm/Support/Regex.h user/ed/newcons/contrib/llvm/include/llvm/Support/Signals.h user/ed/newcons/contrib/llvm/include/llvm/Support/SourceMgr.h user/ed/newcons/contrib/llvm/include/llvm/Support/TargetFolder.h user/ed/newcons/contrib/llvm/include/llvm/Support/TimeValue.h user/ed/newcons/contrib/llvm/include/llvm/Support/TypeBuilder.h user/ed/newcons/contrib/llvm/include/llvm/Support/system_error.h user/ed/newcons/contrib/llvm/include/llvm/Target/Target.td user/ed/newcons/contrib/llvm/include/llvm/Target/TargetAsmBackend.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetAsmInfo.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetAsmParser.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetData.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetFrameLowering.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetInstrInfo.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetLibraryInfo.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetLowering.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetLoweringObjectFile.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetMachine.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetOpcodes.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetOptions.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetRegisterInfo.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetRegistry.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetSelect.h user/ed/newcons/contrib/llvm/include/llvm/Target/TargetSelectionDAG.td user/ed/newcons/contrib/llvm/include/llvm/Transforms/IPO.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Instrumentation.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Scalar.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Utils/Cloning.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Utils/Local.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Utils/SSAUpdater.h user/ed/newcons/contrib/llvm/include/llvm/Transforms/Utils/ValueMapper.h user/ed/newcons/contrib/llvm/include/llvm/Type.h user/ed/newcons/contrib/llvm/include/llvm/Use.h user/ed/newcons/contrib/llvm/include/llvm/User.h user/ed/newcons/contrib/llvm/include/llvm/Value.h user/ed/newcons/contrib/llvm/lib/Analysis/AliasAnalysis.cpp user/ed/newcons/contrib/llvm/lib/Analysis/AliasSetTracker.cpp user/ed/newcons/contrib/llvm/lib/Analysis/Analysis.cpp user/ed/newcons/contrib/llvm/lib/Analysis/BasicAliasAnalysis.cpp user/ed/newcons/contrib/llvm/lib/Analysis/CaptureTracking.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ConstantFolding.cpp user/ed/newcons/contrib/llvm/lib/Analysis/DIBuilder.cpp user/ed/newcons/contrib/llvm/lib/Analysis/DebugInfo.cpp user/ed/newcons/contrib/llvm/lib/Analysis/IPA/CallGraph.cpp user/ed/newcons/contrib/llvm/lib/Analysis/IPA/CallGraphSCCPass.cpp user/ed/newcons/contrib/llvm/lib/Analysis/IPA/FindUsedTypes.cpp user/ed/newcons/contrib/llvm/lib/Analysis/IPA/GlobalsModRef.cpp user/ed/newcons/contrib/llvm/lib/Analysis/IVUsers.cpp user/ed/newcons/contrib/llvm/lib/Analysis/InlineCost.cpp user/ed/newcons/contrib/llvm/lib/Analysis/InstructionSimplify.cpp user/ed/newcons/contrib/llvm/lib/Analysis/LazyValueInfo.cpp user/ed/newcons/contrib/llvm/lib/Analysis/Lint.cpp user/ed/newcons/contrib/llvm/lib/Analysis/Loads.cpp user/ed/newcons/contrib/llvm/lib/Analysis/LoopPass.cpp user/ed/newcons/contrib/llvm/lib/Analysis/MemDepPrinter.cpp user/ed/newcons/contrib/llvm/lib/Analysis/MemoryBuiltins.cpp user/ed/newcons/contrib/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp user/ed/newcons/contrib/llvm/lib/Analysis/PHITransAddr.cpp user/ed/newcons/contrib/llvm/lib/Analysis/PathNumbering.cpp user/ed/newcons/contrib/llvm/lib/Analysis/PathProfileVerifier.cpp user/ed/newcons/contrib/llvm/lib/Analysis/PostDominators.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ProfileEstimatorPass.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ProfileInfo.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ProfileInfoLoader.cpp user/ed/newcons/contrib/llvm/lib/Analysis/RegionInfo.cpp user/ed/newcons/contrib/llvm/lib/Analysis/RegionPass.cpp user/ed/newcons/contrib/llvm/lib/Analysis/RegionPrinter.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ScalarEvolution.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ScalarEvolutionExpander.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp user/ed/newcons/contrib/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp user/ed/newcons/contrib/llvm/lib/Analysis/ValueTracking.cpp user/ed/newcons/contrib/llvm/lib/Archive/ArchiveWriter.cpp user/ed/newcons/contrib/llvm/lib/AsmParser/LLLexer.cpp user/ed/newcons/contrib/llvm/lib/AsmParser/LLLexer.h user/ed/newcons/contrib/llvm/lib/AsmParser/LLParser.cpp user/ed/newcons/contrib/llvm/lib/AsmParser/LLParser.h user/ed/newcons/contrib/llvm/lib/AsmParser/LLToken.h user/ed/newcons/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.cpp user/ed/newcons/contrib/llvm/lib/Bitcode/Reader/BitcodeReader.h user/ed/newcons/contrib/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp user/ed/newcons/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp user/ed/newcons/contrib/llvm/lib/Bitcode/Writer/ValueEnumerator.h user/ed/newcons/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h user/ed/newcons/contrib/llvm/lib/CodeGen/AllocationOrder.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AllocationOrder.h user/ed/newcons/contrib/llvm/lib/CodeGen/Analysis.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AntiDepBreaker.h user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DIE.h user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/AsmPrinter/DwarfException.h user/ed/newcons/contrib/llvm/lib/CodeGen/BranchFolding.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/BranchFolding.h user/ed/newcons/contrib/llvm/lib/CodeGen/CalcSpillWeights.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/CallingConvLower.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/CodeGen.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/CodePlacementOpt.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/CriticalAntiDepBreaker.h user/ed/newcons/contrib/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/DwarfEHPrepare.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ELF.h user/ed/newcons/contrib/llvm/lib/CodeGen/ELFWriter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ELFWriter.h user/ed/newcons/contrib/llvm/lib/CodeGen/EdgeBundles.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ExpandISelPseudos.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/IfConversion.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/InlineSpiller.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/IntrinsicLowering.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LLVMTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveDebugVariables.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveDebugVariables.h user/ed/newcons/contrib/llvm/lib/CodeGen/LiveInterval.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveIntervalAnalysis.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveIntervalUnion.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveIntervalUnion.h user/ed/newcons/contrib/llvm/lib/CodeGen/LiveRangeEdit.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/LiveRangeEdit.h user/ed/newcons/contrib/llvm/lib/CodeGen/LiveVariables.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineBasicBlock.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineCSE.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineFunction.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineInstr.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineLICM.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineSink.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/MachineVerifier.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/PHIElimination.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/Passes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/PeepholeOptimizer.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/PostRASchedulerList.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ProcessImplicitDefs.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/PrologEpilogInserter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocBase.h user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocBasic.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocFast.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocGreedy.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocLinearScan.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegAllocPBQP.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegisterCoalescer.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RegisterScavenging.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/RenderMachineFunction.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ScheduleDAG.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ScheduleDAGEmit.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ScheduleDAGInstrs.h user/ed/newcons/contrib/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ShadowStackGC.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/ShrinkWrapping.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SjLjEHPrepare.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SlotIndexes.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SpillPlacement.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SpillPlacement.h user/ed/newcons/contrib/llvm/lib/CodeGen/Spiller.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/Spiller.h user/ed/newcons/contrib/llvm/lib/CodeGen/SplitKit.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/SplitKit.h user/ed/newcons/contrib/llvm/lib/CodeGen/Splitter.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/StackProtector.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/StackSlotColoring.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/StrongPHIElimination.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/TailDuplication.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/TargetInstrInfoImpl.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/UnreachableBlockElim.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/VirtRegMap.cpp user/ed/newcons/contrib/llvm/lib/CodeGen/VirtRegMap.h user/ed/newcons/contrib/llvm/lib/CodeGen/VirtRegRewriter.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/ExecutionEngine.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/Intercept.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JIT.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JIT.h user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JITDebugRegisterer.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JITDwarfEmitter.h user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/JITEmitter.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/JIT/OProfileJITEventListener.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp user/ed/newcons/contrib/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h user/ed/newcons/contrib/llvm/lib/Linker/LinkModules.cpp user/ed/newcons/contrib/llvm/lib/MC/ELFObjectWriter.cpp user/ed/newcons/contrib/llvm/lib/MC/MCAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/MC/MCAsmInfoDarwin.cpp user/ed/newcons/contrib/llvm/lib/MC/MCAsmStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCAssembler.cpp user/ed/newcons/contrib/llvm/lib/MC/MCContext.cpp user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.cpp user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/EDDisassembler.h user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/EDInfo.h user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/EDInst.cpp user/ed/newcons/contrib/llvm/lib/MC/MCDisassembler/EDOperand.cpp user/ed/newcons/contrib/llvm/lib/MC/MCDwarf.cpp user/ed/newcons/contrib/llvm/lib/MC/MCELFStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCExpr.cpp user/ed/newcons/contrib/llvm/lib/MC/MCInstPrinter.cpp user/ed/newcons/contrib/llvm/lib/MC/MCLoggingStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCMachOStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCNullStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCObjectStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/AsmLexer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/AsmParser.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/COFFAsmParser.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/DarwinAsmParser.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/MCAsmParser.cpp user/ed/newcons/contrib/llvm/lib/MC/MCParser/TargetAsmParser.cpp user/ed/newcons/contrib/llvm/lib/MC/MCSectionELF.cpp user/ed/newcons/contrib/llvm/lib/MC/MCSectionMachO.cpp user/ed/newcons/contrib/llvm/lib/MC/MCStreamer.cpp user/ed/newcons/contrib/llvm/lib/MC/MCSymbol.cpp user/ed/newcons/contrib/llvm/lib/MC/MachObjectWriter.cpp user/ed/newcons/contrib/llvm/lib/MC/WinCOFFObjectWriter.cpp user/ed/newcons/contrib/llvm/lib/MC/WinCOFFStreamer.cpp user/ed/newcons/contrib/llvm/lib/Object/COFFObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Object/ELFObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Object/MachOObject.cpp user/ed/newcons/contrib/llvm/lib/Object/ObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Support/APFloat.cpp user/ed/newcons/contrib/llvm/lib/Support/APInt.cpp user/ed/newcons/contrib/llvm/lib/Support/Allocator.cpp user/ed/newcons/contrib/llvm/lib/Support/Atomic.cpp user/ed/newcons/contrib/llvm/lib/Support/CommandLine.cpp user/ed/newcons/contrib/llvm/lib/Support/ConstantRange.cpp user/ed/newcons/contrib/llvm/lib/Support/CrashRecoveryContext.cpp user/ed/newcons/contrib/llvm/lib/Support/Dwarf.cpp user/ed/newcons/contrib/llvm/lib/Support/ErrorHandling.cpp user/ed/newcons/contrib/llvm/lib/Support/FileUtilities.cpp user/ed/newcons/contrib/llvm/lib/Support/FoldingSet.cpp user/ed/newcons/contrib/llvm/lib/Support/Host.cpp user/ed/newcons/contrib/llvm/lib/Support/MemoryBuffer.cpp user/ed/newcons/contrib/llvm/lib/Support/Path.cpp user/ed/newcons/contrib/llvm/lib/Support/PrettyStackTrace.cpp user/ed/newcons/contrib/llvm/lib/Support/Regex.cpp user/ed/newcons/contrib/llvm/lib/Support/Signals.cpp user/ed/newcons/contrib/llvm/lib/Support/SmallPtrSet.cpp user/ed/newcons/contrib/llvm/lib/Support/SourceMgr.cpp user/ed/newcons/contrib/llvm/lib/Support/Statistic.cpp user/ed/newcons/contrib/llvm/lib/Support/StringMap.cpp user/ed/newcons/contrib/llvm/lib/Support/StringRef.cpp user/ed/newcons/contrib/llvm/lib/Support/Threading.cpp user/ed/newcons/contrib/llvm/lib/Support/Triple.cpp user/ed/newcons/contrib/llvm/lib/Support/Twine.cpp user/ed/newcons/contrib/llvm/lib/Support/Unix/Host.inc user/ed/newcons/contrib/llvm/lib/Support/Unix/Memory.inc user/ed/newcons/contrib/llvm/lib/Support/Unix/Path.inc user/ed/newcons/contrib/llvm/lib/Support/Unix/Program.inc user/ed/newcons/contrib/llvm/lib/Support/Unix/Signals.inc user/ed/newcons/contrib/llvm/lib/Support/Windows/DynamicLibrary.inc user/ed/newcons/contrib/llvm/lib/Support/Windows/Path.inc user/ed/newcons/contrib/llvm/lib/Support/Windows/PathV2.inc user/ed/newcons/contrib/llvm/lib/Support/Windows/Program.inc user/ed/newcons/contrib/llvm/lib/Support/Windows/explicit_symbols.inc user/ed/newcons/contrib/llvm/lib/Support/raw_ostream.cpp user/ed/newcons/contrib/llvm/lib/Support/regcomp.c user/ed/newcons/contrib/llvm/lib/Target/ARM/ARM.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARM.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMAddressingModes.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMAsmBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMAsmPrinter.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMBaseInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMBaseInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMCallingConv.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMCodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMFastISel.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMFixupKinds.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMFrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMFrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMGlobalMerge.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrNEON.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrThumb.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrThumb2.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMInstrVFP.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMCCodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMCExpr.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMMCInstLower.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMPerfectShuffle.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMScheduleA9.td user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmLexer.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassemblerCore.h user/ed/newcons/contrib/llvm/lib/Target/ARM/Disassembler/ThumbDisassemblerCore.h user/ed/newcons/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/ARM/MLxExpansionPass.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/NEONMoveFix.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb1FrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb1RegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb2RegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/Alpha.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/Alpha.td user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/Alpha/AlphaTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/Blackfin.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinFrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinFrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinIntrinsicInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/Blackfin/BlackfinTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/CBackend/CBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/CBackend/CTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPU.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPU64InstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUFrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUInstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPURegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPURegisterNames.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/CellSPU/SPUTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/CppBackend/CPPBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/CppBackend/CPPTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmLexer.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/AsmParser/MBlazeAsmParser.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/Disassembler/MBlazeDisassembler.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/InstPrinter/MBlazeInstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlaze.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlaze.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeAsmBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeDelaySlotFiller.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFPU.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFSL.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeIntrinsicInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeMCCodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeSchedule.td user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/MBlaze/MBlazeTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430ISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430InstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430RegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430Subtarget.h user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/MSP430/MSP430TargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/Mips/Mips.h user/ed/newcons/contrib/llvm/lib/Target/Mips/Mips.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsCallingConv.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsFrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsFrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsInstrFPU.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsInstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsMachineFunction.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsSchedule.td user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/Mips/MipsTargetObjectFile.h user/ed/newcons/contrib/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTX.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTX.td user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXFrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXInstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXMCAsmStreamer.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXMFInfoExtract.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXMachineFunctionInfo.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/PTX/PTXTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/PTX/TargetInfo/PTXTargetInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPC.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCAsmBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCInstr64Bit.td user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCJITInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCMCCodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/PowerPC/PPCTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/DelaySlotFiller.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/Sparc.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/Sparc/SparcTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZ.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/SystemZ/SystemZTargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/Target.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetAsmInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetData.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetLibraryInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetLoweringObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/TargetRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.c user/ed/newcons/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h user/ed/newcons/contrib/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoderCommon.h user/ed/newcons/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h user/ed/newcons/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86AsmBackend.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86CallingConv.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86CodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86FastISel.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86FloatingPoint.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86FrameLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86FrameLowering.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86ISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86ISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86Instr3DNow.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrArithmetic.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrBuilder.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrCompiler.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrControl.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrExtension.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrFPStack.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrFormats.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrMMX.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrSSE.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86InstrSystem.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86MCCodeEmitter.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86MCInstLower.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86MachObjectWriter.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86RegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86RegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86RegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86Subtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86Subtarget.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86TargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86TargetMachine.h user/ed/newcons/contrib/llvm/lib/Target/X86/X86TargetObjectFile.cpp user/ed/newcons/contrib/llvm/lib/Target/X86/X86TargetObjectFile.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCore.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreISelLowering.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreISelLowering.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreInstrInfo.td user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreRegisterInfo.td user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreSubtarget.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreSubtarget.h user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.cpp user/ed/newcons/contrib/llvm/lib/Target/XCore/XCoreTargetMachine.h user/ed/newcons/contrib/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/ExtractGV.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/GlobalOpt.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/IPO.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/Inliner.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/Internalize.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/LowerSetJmp.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/MergeFunctions.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/PartialInlining.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/PruneEH.cpp user/ed/newcons/contrib/llvm/lib/Transforms/IPO/StripSymbols.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombine.h user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstCombineWorklist.h user/ed/newcons/contrib/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/OptimalEdgeProfiling.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Instrumentation/ProfilingUtils.h user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/CodeGenPrepare.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/DCE.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/GVN.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/JumpThreading.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LICM.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopDeletion.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopRotation.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/Reassociate.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/Reg2Mem.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/SCCP.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/Scalar.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/ScalarReplAggregates.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/SimplifyLibCalls.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/BuildLibCalls.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/CloneFunction.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/CloneModule.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/CodeExtractor.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/InlineFunction.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LCSSA.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/Local.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LoopSimplify.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LoopUnroll.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LowerInvoke.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/LowerSwitch.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/SSAUpdater.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/SimplifyCFG.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp user/ed/newcons/contrib/llvm/lib/Transforms/Utils/ValueMapper.cpp user/ed/newcons/contrib/llvm/lib/VMCore/AsmWriter.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Attributes.cpp user/ed/newcons/contrib/llvm/lib/VMCore/AutoUpgrade.cpp user/ed/newcons/contrib/llvm/lib/VMCore/BasicBlock.cpp user/ed/newcons/contrib/llvm/lib/VMCore/ConstantFold.cpp user/ed/newcons/contrib/llvm/lib/VMCore/ConstantFold.h user/ed/newcons/contrib/llvm/lib/VMCore/Constants.cpp user/ed/newcons/contrib/llvm/lib/VMCore/ConstantsContext.h user/ed/newcons/contrib/llvm/lib/VMCore/Core.cpp user/ed/newcons/contrib/llvm/lib/VMCore/DebugLoc.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Dominators.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Function.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Globals.cpp user/ed/newcons/contrib/llvm/lib/VMCore/IRBuilder.cpp user/ed/newcons/contrib/llvm/lib/VMCore/InlineAsm.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Instruction.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Instructions.cpp user/ed/newcons/contrib/llvm/lib/VMCore/LLVMContext.cpp user/ed/newcons/contrib/llvm/lib/VMCore/LLVMContextImpl.cpp user/ed/newcons/contrib/llvm/lib/VMCore/LLVMContextImpl.h user/ed/newcons/contrib/llvm/lib/VMCore/Metadata.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Module.cpp user/ed/newcons/contrib/llvm/lib/VMCore/PassManager.cpp user/ed/newcons/contrib/llvm/lib/VMCore/PassRegistry.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Type.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Use.cpp user/ed/newcons/contrib/llvm/lib/VMCore/User.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Value.cpp user/ed/newcons/contrib/llvm/lib/VMCore/ValueSymbolTable.cpp user/ed/newcons/contrib/llvm/lib/VMCore/ValueTypes.cpp user/ed/newcons/contrib/llvm/lib/VMCore/Verifier.cpp user/ed/newcons/contrib/llvm/tools/clang/include/clang-c/Index.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/APValue.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ASTConsumer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ASTContext.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ASTMutationListener.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/Attr.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/CXXInheritance.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/CanonicalType.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/CharUnits.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/Decl.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclBase.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclCXX.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclFriend.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclObjC.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclTemplate.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/DeclarationName.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/Expr.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ExprCXX.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ExprObjC.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ExternalASTSource.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/OperationKinds.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/ParentMap.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/PrettyPrinter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/Stmt.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/StmtCXX.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/StmtIterator.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/StmtObjC.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/StmtVisitor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/TemplateBase.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/TemplateName.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/Type.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/TypeLoc.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/AST/TypeNodes.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisContext.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/CFG.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowSolver.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Analysis/Visitors/CFGStmtVisitor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Attr.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/AttrKinds.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Builtins.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Builtins.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/ConvertUTF.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DeclNodes.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Diagnostic.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/FileManager.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/IdentifierTable.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/LangOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/SourceLocation.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/SourceManager.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Specifiers.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/StmtNodes.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/TargetInfo.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/TokenKinds.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/TypeTraits.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/Version.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Basic/arm_neon.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/Arg.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/CC1AsOptions.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/CC1Options.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/Compilation.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/Driver.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/OptParser.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/Option.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/Options.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/Driver/ToolChain.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/ASTUnit.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/Analyses.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/AnalyzerOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticClient.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/CodeGenOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/DiagnosticOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/FrontendAction.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/FrontendActions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/HeaderSearchOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/LangStandard.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/LangStandards.def user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/PreprocessorOptions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Frontend/Utils.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/HeaderMap.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/HeaderSearch.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/Lexer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/LiteralSupport.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/MacroInfo.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/PPCallbacks.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/PTHLexer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/Pragma.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/Preprocessor.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/Token.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Lex/TokenLexer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Parse/Parser.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Rewrite/FixItRewriter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Rewrite/FrontendActions.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Rewrite/Rewriter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/AttributeList.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/DeclSpec.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Initialization.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Lookup.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Overload.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Ownership.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Scope.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Sema.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/Template.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Serialization/ASTReader.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/Serialization/ASTWriter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerProvider.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticClients.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRState.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/GRStateTrait.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ObjCMessage.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h user/ed/newcons/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h user/ed/newcons/contrib/llvm/tools/clang/lib/AST/APValue.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ASTContext.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ASTImporter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/CXXInheritance.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/Decl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclBase.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclObjC.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclPrinter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclTemplate.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DeclarationName.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/DumpXML.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/Expr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ExprCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ExprClassification.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ExprConstant.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/InheritViz.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ItaniumMangle.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/Mangle.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/ParentMap.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/Stmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/StmtDumper.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/StmtIterator.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/StmtPrinter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/StmtProfile.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/TemplateBase.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/TemplateName.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/Type.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/TypeLoc.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/AST/TypePrinter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/AnalysisContext.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/CFG.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/FormatString.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/LiveVariables.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/PrintfFormatString.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/ReachableCode.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/Builtins.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/Diagnostic.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/FileManager.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/IdentifierTable.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/SourceManager.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/TargetInfo.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/Targets.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Basic/Version.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/ABIInfo.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGBlocks.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCXXABI.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCall.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCall.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGClass.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGException.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGException.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExpr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGObjC.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGRTTI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGStmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGTemporaries.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGVTT.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGVTables.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CGValue.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenModule.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/CodeGen/TargetInfo.h user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Arg.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/ArgList.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Compilation.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Driver.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/HostInfo.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/OptTable.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Option.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/ToolChain.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/ToolChains.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/ToolChains.h user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Tools.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Driver/Tools.h user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/ASTUnit.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/CacheTokens.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/DependencyFile.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/FrontendAction.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/FrontendActions.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Frontend/Warnings.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/avxintrin.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/emmintrin.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/float.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/mm_malloc.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/mmintrin.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/stdarg.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/stddef.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/stdint.h user/ed/newcons/contrib/llvm/tools/clang/lib/Headers/xmmintrin.h user/ed/newcons/contrib/llvm/tools/clang/lib/Index/CallGraph.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Index/DeclReferenceMap.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Index/Entity.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Index/Indexer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/HeaderMap.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/HeaderSearch.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/Lexer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/LiteralSupport.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/MacroArgs.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/MacroArgs.h user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/MacroInfo.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PPDirectives.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PPExpressions.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PPLexerChange.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PTHLexer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/Pragma.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/Preprocessor.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Lex/TokenLexer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseAST.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseExpr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseInit.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseObjc.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParsePragma.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParsePragma.h user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseStmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseTemplate.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/ParseTentative.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/Parser.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Parse/RAIIObjectsForParser.h user/ed/newcons/contrib/llvm/tools/clang/lib/Rewrite/FixItRewriter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Rewrite/RewriteObjC.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Rewrite/Rewriter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/AttributeList.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/DeclSpec.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/Sema.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaAccess.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaAttr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaCXXCast.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaChecking.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaExpr.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaInit.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaLookup.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaOverload.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaStmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaTemplate.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/SemaType.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/TargetAttributesSema.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/TreeTransform.h user/ed/newcons/contrib/llvm/tools/clang/lib/Sema/TypeLocBuilder.h user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTCommon.h user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTReader.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTWriter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AdjustedReturnValueChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AttrNonNullChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/Checkers.td user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckerProvider.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ClangSACheckers.h user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdempotentOperationChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/OSAtomicChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/AggExprVisitor.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicStore.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CFRefCount.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CXXExprEngine.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/FlatStore.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/GRState.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/ObjCMessage.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp user/ed/newcons/contrib/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp user/ed/newcons/contrib/llvm/tools/clang/tools/driver/cc1_main.cpp user/ed/newcons/contrib/llvm/tools/clang/tools/driver/cc1as_main.cpp user/ed/newcons/contrib/llvm/tools/clang/tools/driver/driver.cpp user/ed/newcons/contrib/llvm/utils/TableGen/ARMDecoderEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/AsmMatcherEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/AsmMatcherEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/AsmWriterEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/AsmWriterEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/CallingConvEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/ClangASTNodesEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/ClangAttrEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/ClangDiagnosticsEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/ClangSACheckersEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeEmitterGen.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenDAGPatterns.h user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenInstruction.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenInstruction.h user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenIntrinsics.h user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenRegisters.h user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenTarget.cpp user/ed/newcons/contrib/llvm/utils/TableGen/CodeGenTarget.h user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelMatcher.cpp user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelMatcher.h user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelMatcherGen.cpp user/ed/newcons/contrib/llvm/utils/TableGen/DAGISelMatcherOpt.cpp user/ed/newcons/contrib/llvm/utils/TableGen/DisassemblerEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/EDEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/FastISelEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/InstrInfoEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/InstrInfoEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/IntrinsicEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/LLVMCConfigurationEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/NeonEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/NeonEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/OptParserEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/Record.cpp user/ed/newcons/contrib/llvm/utils/TableGen/Record.h user/ed/newcons/contrib/llvm/utils/TableGen/RegisterInfoEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/RegisterInfoEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/SubtargetEmitter.cpp user/ed/newcons/contrib/llvm/utils/TableGen/SubtargetEmitter.h user/ed/newcons/contrib/llvm/utils/TableGen/TGLexer.cpp user/ed/newcons/contrib/llvm/utils/TableGen/TGLexer.h user/ed/newcons/contrib/llvm/utils/TableGen/TGParser.cpp user/ed/newcons/contrib/llvm/utils/TableGen/TGParser.h user/ed/newcons/contrib/llvm/utils/TableGen/TGValueTypes.cpp user/ed/newcons/contrib/llvm/utils/TableGen/TableGen.cpp user/ed/newcons/contrib/llvm/utils/TableGen/X86DisassemblerTables.cpp user/ed/newcons/contrib/llvm/utils/TableGen/X86DisassemblerTables.h user/ed/newcons/contrib/llvm/utils/TableGen/X86RecognizableInstr.cpp user/ed/newcons/contrib/llvm/utils/TableGen/X86RecognizableInstr.h user/ed/newcons/contrib/lukemftpd/src/ftpd.c user/ed/newcons/contrib/netcat/atomicio.c user/ed/newcons/contrib/netcat/nc.1 user/ed/newcons/contrib/netcat/netcat.c user/ed/newcons/contrib/netcat/socks.c user/ed/newcons/contrib/ntp/ntpd/ntp_config.c user/ed/newcons/contrib/ntp/ntpd/ntp_intres.c user/ed/newcons/contrib/ntp/ntpd/ntp_io.c user/ed/newcons/contrib/one-true-awk/FIXES user/ed/newcons/contrib/one-true-awk/README user/ed/newcons/contrib/one-true-awk/awkgram.y user/ed/newcons/contrib/one-true-awk/b.c user/ed/newcons/contrib/one-true-awk/lex.c user/ed/newcons/contrib/one-true-awk/lib.c user/ed/newcons/contrib/one-true-awk/main.c user/ed/newcons/contrib/one-true-awk/makefile user/ed/newcons/contrib/one-true-awk/proto.h user/ed/newcons/contrib/one-true-awk/run.c user/ed/newcons/contrib/one-true-awk/tran.c user/ed/newcons/contrib/openbsm/libbsm/audit_submit.3 user/ed/newcons/contrib/openresolv/dnsmasq.in user/ed/newcons/contrib/openresolv/libc.in user/ed/newcons/contrib/openresolv/named.in user/ed/newcons/contrib/openresolv/pdnsd.in user/ed/newcons/contrib/openresolv/resolvconf.conf.5.in user/ed/newcons/contrib/openresolv/resolvconf.in user/ed/newcons/contrib/openresolv/unbound.in user/ed/newcons/contrib/pf/authpf/authpf.8 user/ed/newcons/contrib/pf/authpf/authpf.c user/ed/newcons/contrib/pf/authpf/pathnames.h user/ed/newcons/contrib/pf/ftp-proxy/filter.c user/ed/newcons/contrib/pf/ftp-proxy/filter.h user/ed/newcons/contrib/pf/ftp-proxy/ftp-proxy.8 user/ed/newcons/contrib/pf/ftp-proxy/ftp-proxy.c user/ed/newcons/contrib/pf/man/pf.4 user/ed/newcons/contrib/pf/man/pf.conf.5 user/ed/newcons/contrib/pf/man/pf.os.5 user/ed/newcons/contrib/pf/man/pflog.4 user/ed/newcons/contrib/pf/man/pfsync.4 user/ed/newcons/contrib/pf/pfctl/parse.y user/ed/newcons/contrib/pf/pfctl/pf_print_state.c user/ed/newcons/contrib/pf/pfctl/pfctl.8 user/ed/newcons/contrib/pf/pfctl/pfctl.c user/ed/newcons/contrib/pf/pfctl/pfctl.h user/ed/newcons/contrib/pf/pfctl/pfctl_altq.c user/ed/newcons/contrib/pf/pfctl/pfctl_optimize.c user/ed/newcons/contrib/pf/pfctl/pfctl_osfp.c user/ed/newcons/contrib/pf/pfctl/pfctl_parser.c user/ed/newcons/contrib/pf/pfctl/pfctl_parser.h user/ed/newcons/contrib/pf/pfctl/pfctl_qstats.c user/ed/newcons/contrib/pf/pfctl/pfctl_radix.c user/ed/newcons/contrib/pf/pfctl/pfctl_table.c user/ed/newcons/contrib/pf/pflogd/pflogd.8 user/ed/newcons/contrib/pf/pflogd/pflogd.c user/ed/newcons/contrib/pf/pflogd/privsep.c user/ed/newcons/contrib/pf/pflogd/privsep_fdpass.c user/ed/newcons/contrib/sendmail/CACerts user/ed/newcons/contrib/sendmail/FREEBSD-upgrade user/ed/newcons/contrib/sendmail/KNOWNBUGS user/ed/newcons/contrib/sendmail/LICENSE user/ed/newcons/contrib/sendmail/PGPKEYS user/ed/newcons/contrib/sendmail/RELEASE_NOTES user/ed/newcons/contrib/sendmail/cf/cf/submit.cf user/ed/newcons/contrib/sendmail/cf/feature/ldap_routing.m4 user/ed/newcons/contrib/sendmail/cf/m4/cfhead.m4 user/ed/newcons/contrib/sendmail/cf/m4/proto.m4 user/ed/newcons/contrib/sendmail/cf/m4/version.m4 user/ed/newcons/contrib/sendmail/contrib/qtool.pl user/ed/newcons/contrib/sendmail/doc/op/op.me user/ed/newcons/contrib/sendmail/include/sm/conf.h user/ed/newcons/contrib/sendmail/libmilter/docs/overview.html user/ed/newcons/contrib/sendmail/libmilter/docs/smfi_stop.html user/ed/newcons/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html user/ed/newcons/contrib/sendmail/libmilter/engine.c user/ed/newcons/contrib/sendmail/libmilter/sm_gethost.c user/ed/newcons/contrib/sendmail/libmilter/worker.c user/ed/newcons/contrib/sendmail/libsm/ldap.c user/ed/newcons/contrib/sendmail/makemap/makemap.c user/ed/newcons/contrib/sendmail/src/Makefile.m4 user/ed/newcons/contrib/sendmail/src/conf.c user/ed/newcons/contrib/sendmail/src/daemon.c user/ed/newcons/contrib/sendmail/src/deliver.c user/ed/newcons/contrib/sendmail/src/domain.c user/ed/newcons/contrib/sendmail/src/envelope.c user/ed/newcons/contrib/sendmail/src/err.c user/ed/newcons/contrib/sendmail/src/main.c user/ed/newcons/contrib/sendmail/src/map.c user/ed/newcons/contrib/sendmail/src/mci.c user/ed/newcons/contrib/sendmail/src/parseaddr.c user/ed/newcons/contrib/sendmail/src/queue.c user/ed/newcons/contrib/sendmail/src/readcf.c user/ed/newcons/contrib/sendmail/src/sendmail.8 user/ed/newcons/contrib/sendmail/src/sendmail.h user/ed/newcons/contrib/sendmail/src/sm_resolve.c user/ed/newcons/contrib/sendmail/src/srvrsmtp.c user/ed/newcons/contrib/sendmail/src/tls.c user/ed/newcons/contrib/sendmail/src/udb.c user/ed/newcons/contrib/sendmail/src/usersmtp.c user/ed/newcons/contrib/sendmail/src/version.c user/ed/newcons/contrib/smbfs/mount_smbfs/mount_smbfs.8 user/ed/newcons/contrib/tcsh/nls/Makefile user/ed/newcons/contrib/texinfo/makeinfo/sectioning.c user/ed/newcons/contrib/top/commands.c user/ed/newcons/contrib/top/display.c user/ed/newcons/contrib/top/machine.h user/ed/newcons/contrib/top/top.X user/ed/newcons/contrib/top/top.c user/ed/newcons/contrib/top/top.h user/ed/newcons/contrib/traceroute/traceroute.c user/ed/newcons/contrib/tzcode/stdtime/localtime.c user/ed/newcons/contrib/tzdata/africa user/ed/newcons/contrib/tzdata/antarctica user/ed/newcons/contrib/tzdata/asia user/ed/newcons/contrib/tzdata/europe user/ed/newcons/contrib/tzdata/southamerica user/ed/newcons/contrib/tzdata/zone.tab user/ed/newcons/contrib/xz/ChangeLog user/ed/newcons/contrib/xz/FREEBSD-Xlist user/ed/newcons/contrib/xz/FREEBSD-upgrade user/ed/newcons/contrib/xz/THANKS user/ed/newcons/contrib/xz/po/LINGUAS user/ed/newcons/contrib/xz/po/it.po user/ed/newcons/contrib/xz/src/common/tuklib_open_stdxxx.c user/ed/newcons/contrib/xz/src/liblzma/api/lzma/block.h user/ed/newcons/contrib/xz/src/liblzma/api/lzma/container.h user/ed/newcons/contrib/xz/src/liblzma/api/lzma/filter.h user/ed/newcons/contrib/xz/src/liblzma/api/lzma/version.h user/ed/newcons/contrib/xz/src/liblzma/common/alone_decoder.c user/ed/newcons/contrib/xz/src/liblzma/common/alone_encoder.c user/ed/newcons/contrib/xz/src/liblzma/common/block_buffer_encoder.c user/ed/newcons/contrib/xz/src/liblzma/common/block_encoder.c user/ed/newcons/contrib/xz/src/liblzma/common/common.c user/ed/newcons/contrib/xz/src/liblzma/common/common.h user/ed/newcons/contrib/xz/src/liblzma/common/filter_common.c user/ed/newcons/contrib/xz/src/liblzma/common/index.c user/ed/newcons/contrib/xz/src/liblzma/common/index_decoder.c user/ed/newcons/contrib/xz/src/liblzma/common/index_encoder.c user/ed/newcons/contrib/xz/src/liblzma/common/stream_buffer_encoder.c user/ed/newcons/contrib/xz/src/liblzma/common/stream_encoder.c user/ed/newcons/contrib/xz/src/liblzma/delta/delta_encoder.c user/ed/newcons/contrib/xz/src/liblzma/lz/lz_decoder.c user/ed/newcons/contrib/xz/src/liblzma/lz/lz_encoder.c user/ed/newcons/contrib/xz/src/liblzma/lz/lz_encoder_hash.h user/ed/newcons/contrib/xz/src/liblzma/lzma/lzma2_decoder.c user/ed/newcons/contrib/xz/src/liblzma/lzma/lzma2_encoder.c user/ed/newcons/contrib/xz/src/liblzma/simple/arm.c user/ed/newcons/contrib/xz/src/liblzma/simple/armthumb.c user/ed/newcons/contrib/xz/src/liblzma/simple/ia64.c user/ed/newcons/contrib/xz/src/liblzma/simple/powerpc.c user/ed/newcons/contrib/xz/src/liblzma/simple/simple_coder.c user/ed/newcons/contrib/xz/src/liblzma/simple/sparc.c user/ed/newcons/contrib/xz/src/lzmainfo/lzmainfo.c user/ed/newcons/contrib/xz/src/xz/coder.c user/ed/newcons/contrib/xz/src/xz/file_io.c user/ed/newcons/contrib/xz/src/xz/hardware.h user/ed/newcons/contrib/xz/src/xz/list.c user/ed/newcons/contrib/xz/src/xz/message.c user/ed/newcons/contrib/xz/src/xz/message.h user/ed/newcons/contrib/xz/src/xz/options.c user/ed/newcons/contrib/xz/src/xz/signals.c user/ed/newcons/contrib/xz/src/xz/suffix.c user/ed/newcons/contrib/xz/src/xz/util.h user/ed/newcons/contrib/xz/src/xz/xz.1 user/ed/newcons/contrib/xz/src/xzdec/xzdec.c user/ed/newcons/crypto/heimdal/lib/sl/slc-gram.y user/ed/newcons/crypto/openssh/ChangeLog user/ed/newcons/crypto/openssh/INSTALL user/ed/newcons/crypto/openssh/LICENCE user/ed/newcons/crypto/openssh/PROTOCOL user/ed/newcons/crypto/openssh/PROTOCOL.agent user/ed/newcons/crypto/openssh/PROTOCOL.certkeys user/ed/newcons/crypto/openssh/PROTOCOL.mux user/ed/newcons/crypto/openssh/README user/ed/newcons/crypto/openssh/aclocal.m4 user/ed/newcons/crypto/openssh/atomicio.c user/ed/newcons/crypto/openssh/atomicio.h user/ed/newcons/crypto/openssh/audit-bsm.c user/ed/newcons/crypto/openssh/audit.c user/ed/newcons/crypto/openssh/audit.h user/ed/newcons/crypto/openssh/auth-options.c user/ed/newcons/crypto/openssh/auth-pam.c (contents, props changed) user/ed/newcons/crypto/openssh/auth-rsa.c user/ed/newcons/crypto/openssh/auth-skey.c user/ed/newcons/crypto/openssh/auth.c user/ed/newcons/crypto/openssh/auth.h user/ed/newcons/crypto/openssh/auth1.c user/ed/newcons/crypto/openssh/auth2-gss.c user/ed/newcons/crypto/openssh/auth2-jpake.c user/ed/newcons/crypto/openssh/auth2-pubkey.c user/ed/newcons/crypto/openssh/auth2.c user/ed/newcons/crypto/openssh/authfd.c user/ed/newcons/crypto/openssh/authfile.c user/ed/newcons/crypto/openssh/authfile.h user/ed/newcons/crypto/openssh/bufaux.c user/ed/newcons/crypto/openssh/buffer.c (contents, props changed) user/ed/newcons/crypto/openssh/buffer.h (contents, props changed) user/ed/newcons/crypto/openssh/canohost.c user/ed/newcons/crypto/openssh/channels.c (contents, props changed) user/ed/newcons/crypto/openssh/channels.h (contents, props changed) user/ed/newcons/crypto/openssh/cipher-3des1.c user/ed/newcons/crypto/openssh/cipher-acss.c user/ed/newcons/crypto/openssh/cipher-aes.c user/ed/newcons/crypto/openssh/cipher-bf1.c user/ed/newcons/crypto/openssh/cipher-ctr.c user/ed/newcons/crypto/openssh/cipher.c (contents, props changed) user/ed/newcons/crypto/openssh/clientloop.c (contents, props changed) user/ed/newcons/crypto/openssh/clientloop.h user/ed/newcons/crypto/openssh/compat.c (contents, props changed) user/ed/newcons/crypto/openssh/compat.h (contents, props changed) user/ed/newcons/crypto/openssh/compress.c user/ed/newcons/crypto/openssh/config.guess user/ed/newcons/crypto/openssh/config.h user/ed/newcons/crypto/openssh/config.h.in user/ed/newcons/crypto/openssh/defines.h user/ed/newcons/crypto/openssh/dns.c user/ed/newcons/crypto/openssh/entropy.c user/ed/newcons/crypto/openssh/gss-serv.c user/ed/newcons/crypto/openssh/hostfile.c user/ed/newcons/crypto/openssh/hostfile.h user/ed/newcons/crypto/openssh/includes.h user/ed/newcons/crypto/openssh/jpake.c user/ed/newcons/crypto/openssh/kex.c (contents, props changed) user/ed/newcons/crypto/openssh/kex.h (contents, props changed) user/ed/newcons/crypto/openssh/kexdhc.c user/ed/newcons/crypto/openssh/kexdhs.c user/ed/newcons/crypto/openssh/kexgexc.c user/ed/newcons/crypto/openssh/kexgexs.c user/ed/newcons/crypto/openssh/key.c user/ed/newcons/crypto/openssh/key.h user/ed/newcons/crypto/openssh/log.c user/ed/newcons/crypto/openssh/log.h user/ed/newcons/crypto/openssh/loginrec.c user/ed/newcons/crypto/openssh/loginrec.h user/ed/newcons/crypto/openssh/mac.c user/ed/newcons/crypto/openssh/misc.c (contents, props changed) user/ed/newcons/crypto/openssh/misc.h (contents, props changed) user/ed/newcons/crypto/openssh/moduli.5 user/ed/newcons/crypto/openssh/moduli.c user/ed/newcons/crypto/openssh/monitor.c user/ed/newcons/crypto/openssh/monitor.h user/ed/newcons/crypto/openssh/monitor_wrap.c user/ed/newcons/crypto/openssh/monitor_wrap.h user/ed/newcons/crypto/openssh/mux.c user/ed/newcons/crypto/openssh/myproposal.h (contents, props changed) user/ed/newcons/crypto/openssh/openbsd-compat/bindresvport.c user/ed/newcons/crypto/openssh/openbsd-compat/bsd-cygwin_util.c user/ed/newcons/crypto/openssh/openbsd-compat/bsd-cygwin_util.h user/ed/newcons/crypto/openssh/openbsd-compat/bsd-misc.c user/ed/newcons/crypto/openssh/openbsd-compat/bsd-misc.h user/ed/newcons/crypto/openssh/openbsd-compat/glob.c user/ed/newcons/crypto/openssh/openbsd-compat/glob.h user/ed/newcons/crypto/openssh/openbsd-compat/openbsd-compat.h user/ed/newcons/crypto/openssh/openbsd-compat/openssl-compat.c user/ed/newcons/crypto/openssh/openbsd-compat/openssl-compat.h user/ed/newcons/crypto/openssh/openbsd-compat/port-linux.c user/ed/newcons/crypto/openssh/openbsd-compat/port-linux.h user/ed/newcons/crypto/openssh/openbsd-compat/port-solaris.c user/ed/newcons/crypto/openssh/openbsd-compat/port-solaris.h user/ed/newcons/crypto/openssh/packet.c (contents, props changed) user/ed/newcons/crypto/openssh/packet.h (contents, props changed) user/ed/newcons/crypto/openssh/pathnames.h user/ed/newcons/crypto/openssh/platform.c user/ed/newcons/crypto/openssh/platform.h user/ed/newcons/crypto/openssh/readconf.c user/ed/newcons/crypto/openssh/readconf.h (contents, props changed) user/ed/newcons/crypto/openssh/readpass.c user/ed/newcons/crypto/openssh/schnorr.c user/ed/newcons/crypto/openssh/scp.1 user/ed/newcons/crypto/openssh/scp.c user/ed/newcons/crypto/openssh/servconf.c user/ed/newcons/crypto/openssh/servconf.h (contents, props changed) user/ed/newcons/crypto/openssh/serverloop.c (contents, props changed) user/ed/newcons/crypto/openssh/session.c user/ed/newcons/crypto/openssh/sftp-client.c user/ed/newcons/crypto/openssh/sftp-client.h user/ed/newcons/crypto/openssh/sftp-server.c user/ed/newcons/crypto/openssh/sftp.1 user/ed/newcons/crypto/openssh/sftp.c (contents, props changed) user/ed/newcons/crypto/openssh/ssh-add.1 user/ed/newcons/crypto/openssh/ssh-add.c user/ed/newcons/crypto/openssh/ssh-agent.1 user/ed/newcons/crypto/openssh/ssh-agent.c user/ed/newcons/crypto/openssh/ssh-dss.c user/ed/newcons/crypto/openssh/ssh-keygen.1 user/ed/newcons/crypto/openssh/ssh-keygen.c user/ed/newcons/crypto/openssh/ssh-keyscan.1 user/ed/newcons/crypto/openssh/ssh-keyscan.c user/ed/newcons/crypto/openssh/ssh-keysign.8 user/ed/newcons/crypto/openssh/ssh-keysign.c user/ed/newcons/crypto/openssh/ssh-pkcs11-helper.c user/ed/newcons/crypto/openssh/ssh-pkcs11.c user/ed/newcons/crypto/openssh/ssh-rsa.c user/ed/newcons/crypto/openssh/ssh.1 user/ed/newcons/crypto/openssh/ssh.c user/ed/newcons/crypto/openssh/ssh2.h user/ed/newcons/crypto/openssh/ssh_config user/ed/newcons/crypto/openssh/ssh_config.5 user/ed/newcons/crypto/openssh/ssh_namespace.h user/ed/newcons/crypto/openssh/sshconnect.c user/ed/newcons/crypto/openssh/sshconnect.h user/ed/newcons/crypto/openssh/sshconnect2.c (contents, props changed) user/ed/newcons/crypto/openssh/sshd.8 user/ed/newcons/crypto/openssh/sshd.c user/ed/newcons/crypto/openssh/sshd_config user/ed/newcons/crypto/openssh/sshd_config.5 user/ed/newcons/crypto/openssh/sshlogin.c user/ed/newcons/crypto/openssh/uuencode.c user/ed/newcons/crypto/openssh/uuencode.h user/ed/newcons/crypto/openssh/version.c user/ed/newcons/crypto/openssh/version.h user/ed/newcons/crypto/openssl/ssl/s3_lib.c user/ed/newcons/crypto/openssl/ssl/s3_srvr.c user/ed/newcons/etc/Makefile user/ed/newcons/etc/defaults/devfs.rules user/ed/newcons/etc/defaults/periodic.conf user/ed/newcons/etc/defaults/rc.conf user/ed/newcons/etc/devd.conf user/ed/newcons/etc/devd/Makefile user/ed/newcons/etc/devd/uath.conf user/ed/newcons/etc/etc.amd64/ttys user/ed/newcons/etc/etc.arm/ttys user/ed/newcons/etc/etc.i386/ttys user/ed/newcons/etc/etc.ia64/ttys user/ed/newcons/etc/etc.mips/ttys user/ed/newcons/etc/etc.pc98/ttys user/ed/newcons/etc/etc.powerpc/ttys user/ed/newcons/etc/etc.sparc64/ttys user/ed/newcons/etc/motd user/ed/newcons/etc/mtree/BSD.include.dist user/ed/newcons/etc/mtree/BSD.usr.dist user/ed/newcons/etc/namedb/named.conf user/ed/newcons/etc/namedb/named.root user/ed/newcons/etc/network.subr user/ed/newcons/etc/newsyslog.conf user/ed/newcons/etc/periodic/daily/450.status-security user/ed/newcons/etc/periodic/daily/800.scrub-zfs user/ed/newcons/etc/periodic/daily/Makefile user/ed/newcons/etc/periodic/monthly/Makefile user/ed/newcons/etc/periodic/security/Makefile user/ed/newcons/etc/pf.os user/ed/newcons/etc/rc user/ed/newcons/etc/rc.d/Makefile user/ed/newcons/etc/rc.d/NETWORKING user/ed/newcons/etc/rc.d/bridge user/ed/newcons/etc/rc.d/devd user/ed/newcons/etc/rc.d/faith user/ed/newcons/etc/rc.d/hostid user/ed/newcons/etc/rc.d/initrandom user/ed/newcons/etc/rc.d/ipfilter user/ed/newcons/etc/rc.d/ipfw user/ed/newcons/etc/rc.d/jail user/ed/newcons/etc/rc.d/lockd user/ed/newcons/etc/rc.d/mountcritremote user/ed/newcons/etc/rc.d/mountd user/ed/newcons/etc/rc.d/named user/ed/newcons/etc/rc.d/netoptions user/ed/newcons/etc/rc.d/nfsclient user/ed/newcons/etc/rc.d/nfsd user/ed/newcons/etc/rc.d/pf user/ed/newcons/etc/rc.d/quota user/ed/newcons/etc/rc.d/resolv user/ed/newcons/etc/rc.d/routing user/ed/newcons/etc/rc.d/rtadvd user/ed/newcons/etc/rc.d/securelevel user/ed/newcons/etc/rc.d/sshd user/ed/newcons/etc/rc.d/statd user/ed/newcons/etc/rc.d/tmp user/ed/newcons/etc/rc.d/var user/ed/newcons/etc/rc.subr user/ed/newcons/etc/regdomain.xml user/ed/newcons/etc/sendmail/freebsd.mc user/ed/newcons/etc/sendmail/freebsd.submit.mc user/ed/newcons/games/fortune/datfiles/fortunes user/ed/newcons/games/fortune/datfiles/fortunes-o.real user/ed/newcons/games/fortune/datfiles/fortunes-o.sp.ok user/ed/newcons/games/fortune/datfiles/fortunes.sp.ok user/ed/newcons/games/fortune/datfiles/freebsd-tips.sp.ok user/ed/newcons/games/fortune/datfiles/gerrold.limerick user/ed/newcons/games/fortune/datfiles/limerick user/ed/newcons/games/fortune/datfiles/limerick.sp.ok user/ed/newcons/games/fortune/datfiles/startrek.sp.ok user/ed/newcons/games/fortune/datfiles/zippy.sp.ok user/ed/newcons/games/morse/morse.c user/ed/newcons/gnu/lib/Makefile user/ed/newcons/gnu/lib/libdialog/Makefile user/ed/newcons/gnu/usr.bin/Makefile user/ed/newcons/gnu/usr.bin/cc/Makefile user/ed/newcons/gnu/usr.bin/cc/cc_tools/Makefile user/ed/newcons/gnu/usr.bin/cc/doc/Makefile user/ed/newcons/gnu/usr.bin/cc/include/Makefile user/ed/newcons/gnu/usr.bin/gdb/arch/arm/armfbsd-nat.c user/ed/newcons/gnu/usr.bin/gdb/arch/sparc64/Makefile user/ed/newcons/gnu/usr.bin/gdb/arch/sparc64/init.c user/ed/newcons/gnu/usr.bin/gdb/kgdb/kthr.c user/ed/newcons/gnu/usr.bin/gdb/libgdb/fbsd-threads.c user/ed/newcons/gnu/usr.bin/grep/Makefile user/ed/newcons/gnu/usr.bin/groff/tmac/mdoc.local user/ed/newcons/gnu/usr.bin/send-pr/categories user/ed/newcons/gnu/usr.bin/send-pr/send-pr.1 user/ed/newcons/include/Makefile user/ed/newcons/include/iso646.h user/ed/newcons/include/rpc/xdr.h user/ed/newcons/kerberos5/Makefile user/ed/newcons/kerberos5/lib/libasn1/Makefile user/ed/newcons/kerberos5/lib/libgssapi_krb5/Makefile user/ed/newcons/kerberos5/lib/libgssapi_ntlm/Makefile user/ed/newcons/kerberos5/lib/libgssapi_spnego/Makefile user/ed/newcons/kerberos5/lib/libhdb/Makefile user/ed/newcons/kerberos5/lib/libheimntlm/Makefile user/ed/newcons/kerberos5/lib/libhx509/Makefile user/ed/newcons/kerberos5/lib/libkadm5clnt/Makefile user/ed/newcons/kerberos5/lib/libkadm5srv/Makefile user/ed/newcons/kerberos5/lib/libkafs5/Makefile user/ed/newcons/kerberos5/lib/libkrb5/Makefile user/ed/newcons/kerberos5/lib/libroken/Makefile user/ed/newcons/lib/Makefile user/ed/newcons/lib/bind/Makefile user/ed/newcons/lib/bind/config.h user/ed/newcons/lib/bind/config.mk user/ed/newcons/lib/bind/dns/Makefile user/ed/newcons/lib/bind/dns/code.h user/ed/newcons/lib/bind/dns/dns/enumtype.h user/ed/newcons/lib/bind/dns/dns/rdatastruct.h user/ed/newcons/lib/bind/isc/Makefile user/ed/newcons/lib/bind/isc/isc/platform.h user/ed/newcons/lib/bind/lwres/lwres/netdb.h user/ed/newcons/lib/bind/lwres/lwres/platform.h user/ed/newcons/lib/clang/Makefile user/ed/newcons/lib/clang/clang.build.mk user/ed/newcons/lib/clang/include/Makefile user/ed/newcons/lib/clang/include/clang/Basic/Version.inc user/ed/newcons/lib/clang/include/llvm/Config/config.h user/ed/newcons/lib/clang/include/llvm/Config/llvm-config.h user/ed/newcons/lib/clang/libclanganalysis/Makefile user/ed/newcons/lib/clang/libclangast/Makefile user/ed/newcons/lib/clang/libclangbasic/Makefile user/ed/newcons/lib/clang/libclangcodegen/Makefile user/ed/newcons/lib/clang/libclangfrontend/Makefile user/ed/newcons/lib/clang/libclangsema/Makefile user/ed/newcons/lib/clang/libclangserialization/Makefile user/ed/newcons/lib/clang/libclangstaticanalyzercheckers/Makefile user/ed/newcons/lib/clang/libclangstaticanalyzercore/Makefile user/ed/newcons/lib/clang/libllvmanalysis/Makefile user/ed/newcons/lib/clang/libllvmarmasmparser/Makefile user/ed/newcons/lib/clang/libllvmarmcodegen/Makefile user/ed/newcons/lib/clang/libllvmarmdisassembler/Makefile user/ed/newcons/lib/clang/libllvmarminfo/Makefile user/ed/newcons/lib/clang/libllvmarminstprinter/Makefile user/ed/newcons/lib/clang/libllvmasmprinter/Makefile user/ed/newcons/lib/clang/libllvmcodegen/Makefile user/ed/newcons/lib/clang/libllvmcore/Makefile user/ed/newcons/lib/clang/libllvmipo/Makefile user/ed/newcons/lib/clang/libllvmmc/Makefile user/ed/newcons/lib/clang/libllvmmipscodegen/Makefile user/ed/newcons/lib/clang/libllvmmipsinfo/Makefile user/ed/newcons/lib/clang/libllvmpowerpccodegen/Makefile user/ed/newcons/lib/clang/libllvmpowerpcinfo/Makefile user/ed/newcons/lib/clang/libllvmpowerpcinstprinter/Makefile user/ed/newcons/lib/clang/libllvmscalaropts/Makefile user/ed/newcons/lib/clang/libllvmsupport/Makefile user/ed/newcons/lib/clang/libllvmtarget/Makefile user/ed/newcons/lib/clang/libllvmtransformutils/Makefile user/ed/newcons/lib/clang/libllvmx86asmparser/Makefile user/ed/newcons/lib/clang/libllvmx86codegen/Makefile user/ed/newcons/lib/clang/libllvmx86disassembler/Makefile user/ed/newcons/lib/clang/libllvmx86info/Makefile user/ed/newcons/lib/clang/libllvmx86instprinter/Makefile user/ed/newcons/lib/csu/powerpc64/Makefile user/ed/newcons/lib/libarchive/Makefile user/ed/newcons/lib/libarchive/README user/ed/newcons/lib/libarchive/archive.h user/ed/newcons/lib/libarchive/archive_hash.h user/ed/newcons/lib/libarchive/archive_read.3 user/ed/newcons/lib/libarchive/archive_read.c user/ed/newcons/lib/libarchive/archive_read_disk_entry_from_file.c user/ed/newcons/lib/libarchive/archive_read_disk_set_standard_lookup.c user/ed/newcons/lib/libarchive/archive_read_support_compression_all.c user/ed/newcons/lib/libarchive/archive_read_support_compression_bzip2.c user/ed/newcons/lib/libarchive/archive_read_support_compression_uu.c user/ed/newcons/lib/libarchive/archive_read_support_format_all.c user/ed/newcons/lib/libarchive/archive_read_support_format_cpio.c user/ed/newcons/lib/libarchive/archive_read_support_format_iso9660.c user/ed/newcons/lib/libarchive/archive_read_support_format_mtree.c user/ed/newcons/lib/libarchive/archive_write_disk.c user/ed/newcons/lib/libarchive/archive_write_disk_set_standard_lookup.c user/ed/newcons/lib/libarchive/archive_write_open_fd.c user/ed/newcons/lib/libarchive/archive_write_open_file.c user/ed/newcons/lib/libarchive/archive_write_open_filename.c user/ed/newcons/lib/libarchive/archive_write_set_compression_bzip2.c user/ed/newcons/lib/libarchive/archive_write_set_compression_xz.c user/ed/newcons/lib/libarchive/archive_write_set_format_cpio.c user/ed/newcons/lib/libarchive/archive_write_set_format_zip.c user/ed/newcons/lib/libarchive/config_freebsd.h user/ed/newcons/lib/libarchive/filter_fork.c user/ed/newcons/lib/libarchive/test/Makefile user/ed/newcons/lib/libarchive/test/main.c user/ed/newcons/lib/libarchive/test/read_open_memory.c user/ed/newcons/lib/libarchive/test/test.h user/ed/newcons/lib/libarchive/test/test_entry.c user/ed/newcons/lib/libarchive/test/test_fuzz.c user/ed/newcons/lib/libarchive/test/test_pax_filename_encoding.c user/ed/newcons/lib/libarchive/test/test_read_data_large.c user/ed/newcons/lib/libarchive/test/test_read_format_iso_gz.c user/ed/newcons/lib/libarchive/test/test_read_format_isojoliet_bz2.c user/ed/newcons/lib/libarchive/test/test_read_format_isojoliet_long.c user/ed/newcons/lib/libarchive/test/test_read_format_isojoliet_rr.c user/ed/newcons/lib/libarchive/test/test_read_format_isorr_bz2.c user/ed/newcons/lib/libarchive/test/test_read_format_isorr_new_bz2.c user/ed/newcons/lib/libarchive/test/test_read_format_isozisofs_bz2.c user/ed/newcons/lib/libarchive/test/test_read_format_mtree.c user/ed/newcons/lib/libarchive/test/test_read_large.c user/ed/newcons/lib/libarchive/test/test_read_truncated.c user/ed/newcons/lib/libarchive/test/test_ustar_filenames.c user/ed/newcons/lib/libarchive/test/test_write_compress_lzma.c user/ed/newcons/lib/libarchive/test/test_write_compress_xz.c user/ed/newcons/lib/libarchive/test/test_write_format_cpio.c user/ed/newcons/lib/libbsnmp/libbsnmp/Makefile user/ed/newcons/lib/libc/amd64/string/Makefile.inc user/ed/newcons/lib/libc/db/btree/bt_split.c user/ed/newcons/lib/libc/db/man/mpool.3 user/ed/newcons/lib/libc/gen/basename.3 user/ed/newcons/lib/libc/gen/basename.c user/ed/newcons/lib/libc/gen/ctermid.3 user/ed/newcons/lib/libc/gen/ctermid.c user/ed/newcons/lib/libc/gen/devname.c user/ed/newcons/lib/libc/gen/directory.3 user/ed/newcons/lib/libc/gen/errlst.c user/ed/newcons/lib/libc/gen/feature_present.3 user/ed/newcons/lib/libc/gen/ftw.c user/ed/newcons/lib/libc/gen/getdiskbyname.3 user/ed/newcons/lib/libc/gen/getutxent.3 user/ed/newcons/lib/libc/gen/posix_spawn.3 user/ed/newcons/lib/libc/gen/posix_spawn.c user/ed/newcons/lib/libc/gen/pututxline.c user/ed/newcons/lib/libc/gen/sysconf.c user/ed/newcons/lib/libc/gen/syslog.c user/ed/newcons/lib/libc/iconv/Symbol.map user/ed/newcons/lib/libc/iconv/citrus_mapper.c user/ed/newcons/lib/libc/iconv/citrus_none.c user/ed/newcons/lib/libc/iconv/iconv.c user/ed/newcons/lib/libc/iconv/iconvctl.3 user/ed/newcons/lib/libc/locale/isspace.3 user/ed/newcons/lib/libc/mips/Symbol.map user/ed/newcons/lib/libc/net/Symbol.map user/ed/newcons/lib/libc/net/ethers.3 user/ed/newcons/lib/libc/net/sctp_opt_info.3 user/ed/newcons/lib/libc/net/sctp_sys_calls.c user/ed/newcons/lib/libc/posix1e/acl_support_nfs4.c user/ed/newcons/lib/libc/rpc/svc_vc.c user/ed/newcons/lib/libc/sparc64/Symbol.map user/ed/newcons/lib/libc/sparc64/sys/Makefile.inc user/ed/newcons/lib/libc/sparc64/sys/__sparc_utrap_gen.S user/ed/newcons/lib/libc/stdlib/Makefile.inc user/ed/newcons/lib/libc/stdlib/malloc.c user/ed/newcons/lib/libc/stdlib/ptsname.c user/ed/newcons/lib/libc/string/ffs.3 user/ed/newcons/lib/libc/string/strerror.3 user/ed/newcons/lib/libc/string/strerror.c user/ed/newcons/lib/libc/sys/Makefile.inc user/ed/newcons/lib/libc/sys/Symbol.map user/ed/newcons/lib/libc/sys/chmod.2 user/ed/newcons/lib/libc/sys/dup.2 user/ed/newcons/lib/libc/sys/getfh.2 user/ed/newcons/lib/libc/sys/kldstat.2 user/ed/newcons/lib/libc/sys/mq_setattr.2 user/ed/newcons/lib/libc/sys/open.2 user/ed/newcons/lib/libc/sys/ptrace.2 user/ed/newcons/lib/libc/sys/rfork.2 user/ed/newcons/lib/libc/sys/sigwait.2 user/ed/newcons/lib/libc/sys/sigwaitinfo.2 user/ed/newcons/lib/libc/sys/stat.2 user/ed/newcons/lib/libc/sys/wait.2 user/ed/newcons/lib/libc/xdr/Makefile.inc user/ed/newcons/lib/libc/xdr/Symbol.map user/ed/newcons/lib/libc/xdr/xdr.3 user/ed/newcons/lib/libc/xdr/xdr_sizeof.c user/ed/newcons/lib/libcam/Makefile user/ed/newcons/lib/libcompiler_rt/Makefile user/ed/newcons/lib/libcrypt/Makefile user/ed/newcons/lib/libcrypt/crypt.3 user/ed/newcons/lib/libcrypt/crypt.c user/ed/newcons/lib/libcrypt/crypt.h user/ed/newcons/lib/libcrypt/misc.c user/ed/newcons/lib/libdevstat/devstat.c user/ed/newcons/lib/libdisk/Makefile user/ed/newcons/lib/libdwarf/Makefile user/ed/newcons/lib/libdwarf/_libdwarf.h user/ed/newcons/lib/libdwarf/dwarf_init.c user/ed/newcons/lib/libdwarf/libdwarf.h user/ed/newcons/lib/libedit/Makefile user/ed/newcons/lib/libedit/read.c user/ed/newcons/lib/libelf/Makefile user/ed/newcons/lib/libelf/elf_data.c user/ed/newcons/lib/libelf/elf_getdata.3 user/ed/newcons/lib/libelf/libelf_data.c user/ed/newcons/lib/libfetch/Makefile user/ed/newcons/lib/libfetch/common.c user/ed/newcons/lib/libfetch/common.h user/ed/newcons/lib/libfetch/fetch.3 user/ed/newcons/lib/libfetch/fetch.c user/ed/newcons/lib/libfetch/fetch.h user/ed/newcons/lib/libfetch/file.c user/ed/newcons/lib/libfetch/ftp.c user/ed/newcons/lib/libfetch/http.c user/ed/newcons/lib/libgssapi/Symbol.map user/ed/newcons/lib/libiconv/Makefile user/ed/newcons/lib/libkvm/Makefile user/ed/newcons/lib/libkvm/kvm_ia64.c user/ed/newcons/lib/libkvm/kvm_pcpu.c user/ed/newcons/lib/libkvm/kvm_proc.c user/ed/newcons/lib/libkvm/kvm_sparc64.c user/ed/newcons/lib/liblzma/config.h user/ed/newcons/lib/libmd/Makefile user/ed/newcons/lib/libmd/mddriver.c user/ed/newcons/lib/libmd/rmddriver.c user/ed/newcons/lib/libmd/sha256.3 user/ed/newcons/lib/libmd/shadriver.c user/ed/newcons/lib/libmemstat/libmemstat.3 user/ed/newcons/lib/libmemstat/memstat.c user/ed/newcons/lib/libmemstat/memstat.h user/ed/newcons/lib/libmemstat/memstat_internal.h user/ed/newcons/lib/libmemstat/memstat_malloc.c user/ed/newcons/lib/libmemstat/memstat_uma.c user/ed/newcons/lib/libmp/Symbol.map user/ed/newcons/lib/libopie/Makefile user/ed/newcons/lib/libpam/modules/pam_ssh/pam_ssh.8 user/ed/newcons/lib/libpam/modules/pam_ssh/pam_ssh.c user/ed/newcons/lib/libpcap/Makefile user/ed/newcons/lib/libproc/proc_create.c user/ed/newcons/lib/librtld_db/Makefile user/ed/newcons/lib/libsbuf/Makefile user/ed/newcons/lib/libstand/__main.c user/ed/newcons/lib/libstand/bswap.c user/ed/newcons/lib/libstand/cd9660.c user/ed/newcons/lib/libstand/dosfs.c user/ed/newcons/lib/libstand/environment.c user/ed/newcons/lib/libstand/getopt.c user/ed/newcons/lib/libstand/net.c user/ed/newcons/lib/libstand/stand.h user/ed/newcons/lib/libstand/tftp.c user/ed/newcons/lib/libstand/udp.c user/ed/newcons/lib/libstand/zalloc.c user/ed/newcons/lib/libstand/zalloc_defs.h user/ed/newcons/lib/libstand/zalloc_malloc.c user/ed/newcons/lib/libstand/zalloc_mem.h user/ed/newcons/lib/libstand/zalloc_protos.h user/ed/newcons/lib/libtacplus/Makefile user/ed/newcons/lib/libthr/arch/sparc64/Makefile.inc user/ed/newcons/lib/libthr/arch/sparc64/include/pthread_md.h user/ed/newcons/lib/libthr/arch/sparc64/sparc64/pthread_md.c user/ed/newcons/lib/libthr/thread/thr_init.c user/ed/newcons/lib/libthr/thread/thr_once.c user/ed/newcons/lib/libthread_db/arch/amd64/libpthread_md.c user/ed/newcons/lib/libthread_db/arch/sparc64/libpthread_md.c user/ed/newcons/lib/libthread_db/libthr_db.c user/ed/newcons/lib/libufs/Makefile user/ed/newcons/lib/libulog/Symbol.map user/ed/newcons/lib/libusb/Makefile user/ed/newcons/lib/libusb/libusb.3 user/ed/newcons/lib/libusb/libusb.h user/ed/newcons/lib/libusb/libusb10.c user/ed/newcons/lib/libusb/libusb10_desc.c user/ed/newcons/lib/libusb/libusb20.3 user/ed/newcons/lib/libusb/libusb20.c user/ed/newcons/lib/libusb/libusb20.h user/ed/newcons/lib/libusb/libusb20_int.h user/ed/newcons/lib/libusb/libusb20_ugen20.c user/ed/newcons/lib/libusb/usb.h user/ed/newcons/lib/libusbhid/data.c user/ed/newcons/lib/libusbhid/parse.c user/ed/newcons/lib/libusbhid/usbhid.3 user/ed/newcons/lib/libusbhid/usbhid.h user/ed/newcons/lib/libutil/Makefile user/ed/newcons/lib/libutil/humanize_number.3 user/ed/newcons/lib/libutil/humanize_number.c user/ed/newcons/lib/libutil/libutil.h user/ed/newcons/lib/libutil/login.conf.5 user/ed/newcons/lib/libutil/login_class.3 user/ed/newcons/lib/libz/Makefile user/ed/newcons/lib/msun/src/e_rem_pio2.c user/ed/newcons/lib/msun/src/s_cosl.c user/ed/newcons/lib/msun/src/s_sinl.c user/ed/newcons/lib/msun/src/s_tanl.c user/ed/newcons/libexec/comsat/comsat.c user/ed/newcons/libexec/ftpd/ftpd.c user/ed/newcons/libexec/rtld-elf/Makefile user/ed/newcons/libexec/rtld-elf/debug.c user/ed/newcons/libexec/rtld-elf/malloc.c user/ed/newcons/libexec/rtld-elf/map_object.c user/ed/newcons/libexec/rtld-elf/rtld.c user/ed/newcons/libexec/rtld-elf/rtld.h user/ed/newcons/libexec/rtld-elf/rtld_lock.c user/ed/newcons/libexec/rtld-elf/xmalloc.c user/ed/newcons/libexec/tftpd/tftp-file.c user/ed/newcons/libexec/tftpd/tftp-io.c user/ed/newcons/libexec/tftpd/tftp-transfer.c user/ed/newcons/libexec/tftpd/tftpd.8 user/ed/newcons/libexec/ulog-helper/Makefile user/ed/newcons/libexec/ulog-helper/ulog-helper.c user/ed/newcons/release/Makefile user/ed/newcons/release/amd64/make-memstick.sh user/ed/newcons/release/amd64/mkisoimages.sh user/ed/newcons/release/doc/en_US.ISO8859-1/hardware/article.sgml user/ed/newcons/release/doc/en_US.ISO8859-1/readme/article.sgml user/ed/newcons/release/doc/en_US.ISO8859-1/relnotes/article.sgml user/ed/newcons/release/doc/share/misc/dev.archlist.txt user/ed/newcons/release/doc/share/sgml/release.ent user/ed/newcons/release/generate-release.sh user/ed/newcons/release/i386/make-memstick.sh user/ed/newcons/release/i386/mkisoimages.sh user/ed/newcons/release/ia64/mkisoimages.sh user/ed/newcons/release/powerpc/mkisoimages.sh user/ed/newcons/release/rc.local user/ed/newcons/sbin/atacontrol/atacontrol.8 user/ed/newcons/sbin/atacontrol/atacontrol.c user/ed/newcons/sbin/camcontrol/camcontrol.c user/ed/newcons/sbin/conscontrol/conscontrol.8 user/ed/newcons/sbin/conscontrol/conscontrol.c user/ed/newcons/sbin/ddb/ddb.8 user/ed/newcons/sbin/devd/devd.conf.5 user/ed/newcons/sbin/dumpfs/dumpfs.8 user/ed/newcons/sbin/dumpfs/dumpfs.c user/ed/newcons/sbin/fdisk/fdisk.c user/ed/newcons/sbin/fsck_ffs/dir.c user/ed/newcons/sbin/fsck_ffs/ea.c user/ed/newcons/sbin/fsck_ffs/fsck.h user/ed/newcons/sbin/fsck_ffs/fsck_ffs.8 user/ed/newcons/sbin/fsck_ffs/fsutil.c user/ed/newcons/sbin/fsck_ffs/inode.c user/ed/newcons/sbin/fsck_ffs/main.c user/ed/newcons/sbin/fsck_ffs/pass2.c user/ed/newcons/sbin/fsck_ffs/pass5.c user/ed/newcons/sbin/fsck_ffs/suj.c user/ed/newcons/sbin/fsck_ffs/utilities.c user/ed/newcons/sbin/fsdb/fsdbutil.c user/ed/newcons/sbin/geom/class/Makefile user/ed/newcons/sbin/geom/class/eli/geli.8 user/ed/newcons/sbin/geom/class/part/geom_part.c user/ed/newcons/sbin/geom/class/part/gpart.8 user/ed/newcons/sbin/geom/class/sched/Makefile user/ed/newcons/sbin/geom/core/geom.8 user/ed/newcons/sbin/geom/core/geom.c user/ed/newcons/sbin/ggate/ggatel/ggatel.8 user/ed/newcons/sbin/ggate/ggatel/ggatel.c user/ed/newcons/sbin/growfs/growfs.8 user/ed/newcons/sbin/growfs/growfs.c user/ed/newcons/sbin/gvinum/Makefile user/ed/newcons/sbin/gvinum/gvinum.c user/ed/newcons/sbin/hastctl/Makefile user/ed/newcons/sbin/hastctl/hastctl.8 user/ed/newcons/sbin/hastctl/hastctl.c user/ed/newcons/sbin/hastd/Makefile user/ed/newcons/sbin/hastd/activemap.c user/ed/newcons/sbin/hastd/control.c user/ed/newcons/sbin/hastd/control.h user/ed/newcons/sbin/hastd/ebuf.c user/ed/newcons/sbin/hastd/event.c user/ed/newcons/sbin/hastd/hast.conf.5 user/ed/newcons/sbin/hastd/hast.h user/ed/newcons/sbin/hastd/hast_proto.c user/ed/newcons/sbin/hastd/hast_proto.h user/ed/newcons/sbin/hastd/hastd.c user/ed/newcons/sbin/hastd/hooks.c user/ed/newcons/sbin/hastd/metadata.c user/ed/newcons/sbin/hastd/nv.c user/ed/newcons/sbin/hastd/parse.y user/ed/newcons/sbin/hastd/pjdlog.c user/ed/newcons/sbin/hastd/primary.c user/ed/newcons/sbin/hastd/proto_common.c user/ed/newcons/sbin/hastd/rangelock.c user/ed/newcons/sbin/hastd/secondary.c user/ed/newcons/sbin/hastd/subr.c user/ed/newcons/sbin/hastd/subr.h user/ed/newcons/sbin/hastd/synch.h user/ed/newcons/sbin/hastd/token.l user/ed/newcons/sbin/ifconfig/Makefile user/ed/newcons/sbin/ifconfig/af_inet.c user/ed/newcons/sbin/ifconfig/af_inet6.c user/ed/newcons/sbin/ifconfig/af_nd6.c user/ed/newcons/sbin/ifconfig/ifconfig.8 user/ed/newcons/sbin/ifconfig/ifconfig.c user/ed/newcons/sbin/ifconfig/ifieee80211.c user/ed/newcons/sbin/ifconfig/ifmedia.c user/ed/newcons/sbin/ipfw/altq.c user/ed/newcons/sbin/ipfw/dummynet.c user/ed/newcons/sbin/ipfw/ipfw.8 user/ed/newcons/sbin/ipfw/ipfw2.c user/ed/newcons/sbin/ipfw/ipfw2.h user/ed/newcons/sbin/ipfw/ipv6.c user/ed/newcons/sbin/ipfw/main.c user/ed/newcons/sbin/ipfw/nat.c user/ed/newcons/sbin/mdconfig/mdconfig.8 user/ed/newcons/sbin/mdconfig/mdconfig.c user/ed/newcons/sbin/mdmfs/mdmfs.8 user/ed/newcons/sbin/mdmfs/mdmfs.c user/ed/newcons/sbin/mount/mount.8 user/ed/newcons/sbin/mount/mount.c user/ed/newcons/sbin/mount_nfs/Makefile user/ed/newcons/sbin/mount_nfs/mount_nfs.8 user/ed/newcons/sbin/mount_nfs/mount_nfs.c user/ed/newcons/sbin/mount_reiserfs/mount_reiserfs.8 user/ed/newcons/sbin/mount_reiserfs/mount_reiserfs.c user/ed/newcons/sbin/mount_unionfs/mount_unionfs.8 user/ed/newcons/sbin/natd/natd.8 user/ed/newcons/sbin/natd/natd.c user/ed/newcons/sbin/newfs/mkfs.c user/ed/newcons/sbin/newfs/newfs.8 user/ed/newcons/sbin/newfs/newfs.h user/ed/newcons/sbin/newfs_msdos/newfs_msdos.c user/ed/newcons/sbin/pflogd/Makefile user/ed/newcons/sbin/rcorder/rcorder.8 user/ed/newcons/sbin/reboot/boot_i386.8 user/ed/newcons/sbin/recoverdisk/recoverdisk.1 user/ed/newcons/sbin/recoverdisk/recoverdisk.c user/ed/newcons/sbin/rtsol/Makefile user/ed/newcons/sbin/savecore/savecore.c user/ed/newcons/sbin/setkey/setkey.8 user/ed/newcons/sbin/shutdown/shutdown.8 user/ed/newcons/sbin/tunefs/tunefs.8 user/ed/newcons/sbin/umount/umount.8 user/ed/newcons/sbin/umount/umount.c user/ed/newcons/secure/lib/libssh/Makefile user/ed/newcons/secure/usr.sbin/sshd/Makefile user/ed/newcons/share/doc/Makefile user/ed/newcons/share/doc/bind9/Makefile user/ed/newcons/share/doc/smm/Makefile user/ed/newcons/share/examples/Makefile user/ed/newcons/share/examples/cvsup/stable-supfile user/ed/newcons/share/examples/diskless/README.TEMPLATING user/ed/newcons/share/examples/drivers/make_device_driver.sh user/ed/newcons/share/examples/etc/make.conf user/ed/newcons/share/examples/kld/firmware/fwimage/Makefile user/ed/newcons/share/examples/libvgl/demo.c user/ed/newcons/share/examples/netgraph/ether.bridge user/ed/newcons/share/examples/netgraph/frame_relay user/ed/newcons/share/examples/netgraph/ngctl user/ed/newcons/share/examples/netgraph/raw user/ed/newcons/share/examples/netgraph/virtual.chain user/ed/newcons/share/examples/netgraph/virtual.lan user/ed/newcons/share/examples/scsi_target/scsi_cmds.c user/ed/newcons/share/examples/scsi_target/scsi_target.c user/ed/newcons/share/examples/ses/srcs/eltsub.c user/ed/newcons/share/man/man3/Makefile user/ed/newcons/share/man/man3/pthread_set_name_np.3 user/ed/newcons/share/man/man3/queue.3 user/ed/newcons/share/man/man4/Makefile user/ed/newcons/share/man/man4/ada.4 user/ed/newcons/share/man/man4/ahci.4 user/ed/newcons/share/man/man4/aio.4 user/ed/newcons/share/man/man4/amdsbwd.4 user/ed/newcons/share/man/man4/ata.4 user/ed/newcons/share/man/man4/ath.4 user/ed/newcons/share/man/man4/ath_hal.4 user/ed/newcons/share/man/man4/atrtc.4 user/ed/newcons/share/man/man4/attimer.4 user/ed/newcons/share/man/man4/axe.4 user/ed/newcons/share/man/man4/bwn.4 user/ed/newcons/share/man/man4/carp.4 user/ed/newcons/share/man/man4/cc_chd.4 user/ed/newcons/share/man/man4/cc_cubic.4 user/ed/newcons/share/man/man4/cc_hd.4 user/ed/newcons/share/man/man4/cc_htcp.4 user/ed/newcons/share/man/man4/cc_newreno.4 user/ed/newcons/share/man/man4/cc_vegas.4 user/ed/newcons/share/man/man4/cd.4 user/ed/newcons/share/man/man4/coretemp.4 user/ed/newcons/share/man/man4/cxgbe.4 user/ed/newcons/share/man/man4/dc.4 user/ed/newcons/share/man/man4/ddb.4 user/ed/newcons/share/man/man4/em.4 user/ed/newcons/share/man/man4/gif.4 user/ed/newcons/share/man/man4/h_ertt.4 user/ed/newcons/share/man/man4/hpet.4 user/ed/newcons/share/man/man4/hptiop.4 user/ed/newcons/share/man/man4/ichwd.4 user/ed/newcons/share/man/man4/igb.4 user/ed/newcons/share/man/man4/iwnfw.4 user/ed/newcons/share/man/man4/jme.4 user/ed/newcons/share/man/man4/lmc.4 user/ed/newcons/share/man/man4/man4.i386/Makefile user/ed/newcons/share/man/man4/man4.i386/ep.4 user/ed/newcons/share/man/man4/md.4 user/ed/newcons/share/man/man4/mps.4 user/ed/newcons/share/man/man4/mpt.4 user/ed/newcons/share/man/man4/msk.4 user/ed/newcons/share/man/man4/ng_ether.4 user/ed/newcons/share/man/man4/pcm.4 user/ed/newcons/share/man/man4/pst.4 user/ed/newcons/share/man/man4/puc.4 user/ed/newcons/share/man/man4/rue.4 user/ed/newcons/share/man/man4/sem.4 user/ed/newcons/share/man/man4/siftr.4 user/ed/newcons/share/man/man4/siis.4 user/ed/newcons/share/man/man4/smp.4 user/ed/newcons/share/man/man4/snd_hda.4 user/ed/newcons/share/man/man4/stf.4 user/ed/newcons/share/man/man4/tcp.4 user/ed/newcons/share/man/man4/u3g.4 user/ed/newcons/share/man/man4/ucom.4 user/ed/newcons/share/man/man4/ucycom.4 user/ed/newcons/share/man/man4/uep.4 user/ed/newcons/share/man/man4/uhso.4 user/ed/newcons/share/man/man4/vge.4 user/ed/newcons/share/man/man4/vinum.4 user/ed/newcons/share/man/man4/wi.4 user/ed/newcons/share/man/man4/wlan.4 user/ed/newcons/share/man/man4/xhci.4 user/ed/newcons/share/man/man5/Makefile user/ed/newcons/share/man/man5/ar.5 user/ed/newcons/share/man/man5/disktab.5 user/ed/newcons/share/man/man5/fstab.5 user/ed/newcons/share/man/man5/make.conf.5 user/ed/newcons/share/man/man5/rc.conf.5 user/ed/newcons/share/man/man5/reiserfs.5 user/ed/newcons/share/man/man5/src.conf.5 user/ed/newcons/share/man/man7/build.7 user/ed/newcons/share/man/man7/c99.7 user/ed/newcons/share/man/man7/eventtimers.7 user/ed/newcons/share/man/man7/ports.7 user/ed/newcons/share/man/man7/release.7 user/ed/newcons/share/man/man7/security.7 user/ed/newcons/share/man/man8/crash.8 user/ed/newcons/share/man/man8/diskless.8 user/ed/newcons/share/man/man8/picobsd.8 user/ed/newcons/share/man/man9/DRIVER_MODULE.9 user/ed/newcons/share/man/man9/LOCK_PROFILING.9 user/ed/newcons/share/man/man9/Makefile user/ed/newcons/share/man/man9/bus_alloc_resource.9 user/ed/newcons/share/man/man9/copy.9 user/ed/newcons/share/man/man9/devfs_set_cdevpriv.9 user/ed/newcons/share/man/man9/device_get_sysctl.9 user/ed/newcons/share/man/man9/fail.9 user/ed/newcons/share/man/man9/hhook.9 user/ed/newcons/share/man/man9/ifnet.9 user/ed/newcons/share/man/man9/khelp.9 user/ed/newcons/share/man/man9/make_dev.9 user/ed/newcons/share/man/man9/mbuf.9 user/ed/newcons/share/man/man9/pseudofs.9 user/ed/newcons/share/man/man9/psignal.9 user/ed/newcons/share/man/man9/rman.9 user/ed/newcons/share/man/man9/sbuf.9 user/ed/newcons/share/man/man9/selrecord.9 user/ed/newcons/share/man/man9/taskqueue.9 user/ed/newcons/share/man/man9/uio.9 user/ed/newcons/share/man/man9/vfs_getopt.9 user/ed/newcons/share/man/man9/vm_map.9 user/ed/newcons/share/man/man9/zone.9 user/ed/newcons/share/misc/bsd-family-tree user/ed/newcons/share/misc/committers-doc.dot user/ed/newcons/share/misc/committers-ports.dot user/ed/newcons/share/misc/committers-src.dot user/ed/newcons/share/misc/iso3166 user/ed/newcons/share/misc/mdoc.template user/ed/newcons/share/misc/pci_vendors user/ed/newcons/share/misc/scsi_modes user/ed/newcons/share/misc/usb_hid_usages user/ed/newcons/share/mk/bsd.cpu.mk user/ed/newcons/share/mk/bsd.dep.mk user/ed/newcons/share/mk/bsd.doc.mk user/ed/newcons/share/mk/bsd.lib.mk user/ed/newcons/share/mk/bsd.libnames.mk user/ed/newcons/share/mk/bsd.own.mk user/ed/newcons/share/mk/bsd.port.mk user/ed/newcons/share/mk/bsd.prog.mk user/ed/newcons/share/mk/bsd.sys.mk user/ed/newcons/share/skel/dot.shrc user/ed/newcons/share/syscons/keymaps/INDEX.keymaps user/ed/newcons/sys/Makefile user/ed/newcons/sys/amd64/acpica/acpi_wakeup.c user/ed/newcons/sys/amd64/amd64/exception.S user/ed/newcons/sys/amd64/amd64/genassym.c user/ed/newcons/sys/amd64/amd64/identcpu.c user/ed/newcons/sys/amd64/amd64/initcpu.c user/ed/newcons/sys/amd64/amd64/intr_machdep.c user/ed/newcons/sys/amd64/amd64/legacy.c user/ed/newcons/sys/amd64/amd64/machdep.c user/ed/newcons/sys/amd64/amd64/minidump_machdep.c user/ed/newcons/sys/amd64/amd64/mp_machdep.c user/ed/newcons/sys/amd64/amd64/pmap.c user/ed/newcons/sys/amd64/amd64/prof_machdep.c user/ed/newcons/sys/amd64/amd64/support.S user/ed/newcons/sys/amd64/amd64/sys_machdep.c user/ed/newcons/sys/amd64/amd64/trap.c user/ed/newcons/sys/amd64/amd64/vm_machdep.c user/ed/newcons/sys/amd64/conf/DEFAULTS user/ed/newcons/sys/amd64/conf/GENERIC user/ed/newcons/sys/amd64/conf/NOTES user/ed/newcons/sys/amd64/ia32/ia32_exception.S user/ed/newcons/sys/amd64/ia32/ia32_misc.c user/ed/newcons/sys/amd64/ia32/ia32_signal.c user/ed/newcons/sys/amd64/ia32/ia32_sigtramp.S user/ed/newcons/sys/amd64/ia32/ia32_syscall.c user/ed/newcons/sys/amd64/include/_types.h user/ed/newcons/sys/amd64/include/clock.h user/ed/newcons/sys/amd64/include/cpufunc.h user/ed/newcons/sys/amd64/include/md_var.h user/ed/newcons/sys/amd64/include/param.h user/ed/newcons/sys/amd64/include/pci_cfgreg.h user/ed/newcons/sys/amd64/include/pmap.h user/ed/newcons/sys/amd64/include/proc.h user/ed/newcons/sys/amd64/include/smp.h user/ed/newcons/sys/amd64/include/specialreg.h user/ed/newcons/sys/amd64/include/vmparam.h user/ed/newcons/sys/amd64/linux32/linux32_dummy.c user/ed/newcons/sys/amd64/linux32/linux32_machdep.c user/ed/newcons/sys/amd64/linux32/linux32_proto.h user/ed/newcons/sys/amd64/linux32/linux32_syscall.h user/ed/newcons/sys/amd64/linux32/linux32_syscalls.c user/ed/newcons/sys/amd64/linux32/linux32_sysent.c user/ed/newcons/sys/amd64/linux32/linux32_systrace_args.c user/ed/newcons/sys/amd64/linux32/linux32_sysvec.c user/ed/newcons/sys/amd64/linux32/syscalls.master user/ed/newcons/sys/arm/arm/dump_machdep.c user/ed/newcons/sys/arm/arm/elf_machdep.c user/ed/newcons/sys/arm/arm/elf_trampoline.c user/ed/newcons/sys/arm/arm/irq_dispatch.S user/ed/newcons/sys/arm/arm/machdep.c user/ed/newcons/sys/arm/arm/minidump_machdep.c user/ed/newcons/sys/arm/arm/nexus.c user/ed/newcons/sys/arm/arm/pmap.c user/ed/newcons/sys/arm/arm/sys_machdep.c user/ed/newcons/sys/arm/arm/trap.c user/ed/newcons/sys/arm/at91/at91_machdep.c user/ed/newcons/sys/arm/at91/at91_mci.c user/ed/newcons/sys/arm/at91/at91_pio.c user/ed/newcons/sys/arm/at91/at91_rtc.c user/ed/newcons/sys/arm/at91/at91_spi.c user/ed/newcons/sys/arm/at91/at91_ssc.c user/ed/newcons/sys/arm/at91/at91_twi.c user/ed/newcons/sys/arm/at91/at91_wdt.c user/ed/newcons/sys/arm/at91/uart_dev_at91usart.c user/ed/newcons/sys/arm/conf/AVILA user/ed/newcons/sys/arm/conf/BWCT user/ed/newcons/sys/arm/conf/CAMBRIA user/ed/newcons/sys/arm/conf/CNS11XXNAS user/ed/newcons/sys/arm/conf/CRB user/ed/newcons/sys/arm/conf/DB-78XXX user/ed/newcons/sys/arm/conf/DB-88F5XXX user/ed/newcons/sys/arm/conf/DB-88F6XXX user/ed/newcons/sys/arm/conf/DOCKSTAR user/ed/newcons/sys/arm/conf/EP80219 user/ed/newcons/sys/arm/conf/GUMSTIX user/ed/newcons/sys/arm/conf/HL200 user/ed/newcons/sys/arm/conf/HL201 user/ed/newcons/sys/arm/conf/IQ31244 user/ed/newcons/sys/arm/conf/KB920X user/ed/newcons/sys/arm/conf/LN2410SBC user/ed/newcons/sys/arm/conf/NSLU user/ed/newcons/sys/arm/conf/QILA9G20 user/ed/newcons/sys/arm/conf/SAM9G20EK user/ed/newcons/sys/arm/conf/SHEEVAPLUG user/ed/newcons/sys/arm/conf/SIMICS user/ed/newcons/sys/arm/econa/ehci_ebus.c user/ed/newcons/sys/arm/econa/if_ece.c user/ed/newcons/sys/arm/include/_types.h user/ed/newcons/sys/arm/include/param.h user/ed/newcons/sys/arm/include/pmap.h user/ed/newcons/sys/arm/include/proc.h user/ed/newcons/sys/arm/include/vmparam.h user/ed/newcons/sys/arm/mv/common.c user/ed/newcons/sys/arm/mv/gpio.c user/ed/newcons/sys/arm/mv/mv_machdep.c user/ed/newcons/sys/arm/sa11x0/assabet_machdep.c user/ed/newcons/sys/arm/sa11x0/sa11x0.c user/ed/newcons/sys/arm/sa11x0/sa11x0_irq.S user/ed/newcons/sys/arm/xscale/i8134x/crb_machdep.c user/ed/newcons/sys/arm/xscale/ixp425/avila_gpio.c user/ed/newcons/sys/boot/Makefile user/ed/newcons/sys/boot/Makefile.amd64 user/ed/newcons/sys/boot/Makefile.arm user/ed/newcons/sys/boot/Makefile.powerpc user/ed/newcons/sys/boot/arm/ixp425/boot2/boot2.c user/ed/newcons/sys/boot/common/Makefile.inc user/ed/newcons/sys/boot/common/bootstrap.h user/ed/newcons/sys/boot/common/interp.c user/ed/newcons/sys/boot/common/load_elf.c user/ed/newcons/sys/boot/common/load_elf_obj.c user/ed/newcons/sys/boot/common/loader.8 user/ed/newcons/sys/boot/common/module.c user/ed/newcons/sys/boot/common/reloc_elf.c user/ed/newcons/sys/boot/common/ufsread.c user/ed/newcons/sys/boot/common/util.c user/ed/newcons/sys/boot/forth/beastie.4th user/ed/newcons/sys/boot/forth/loader.4th user/ed/newcons/sys/boot/forth/loader.conf user/ed/newcons/sys/boot/forth/loader.conf.5 user/ed/newcons/sys/boot/forth/support.4th user/ed/newcons/sys/boot/i386/Makefile.inc user/ed/newcons/sys/boot/i386/boot2/Makefile user/ed/newcons/sys/boot/i386/boot2/boot2.c user/ed/newcons/sys/boot/i386/boot2/lib.h user/ed/newcons/sys/boot/i386/boot2/sio.S user/ed/newcons/sys/boot/i386/common/drv.c user/ed/newcons/sys/boot/i386/gptboot/Makefile user/ed/newcons/sys/boot/i386/gptzfsboot/Makefile user/ed/newcons/sys/boot/i386/libi386/biosacpi.c user/ed/newcons/sys/boot/i386/libi386/bioscd.c user/ed/newcons/sys/boot/i386/loader/Makefile user/ed/newcons/sys/boot/i386/zfsboot/Makefile user/ed/newcons/sys/boot/i386/zfsboot/zfsldr.S user/ed/newcons/sys/boot/ia64/common/Makefile user/ed/newcons/sys/boot/ia64/common/copy.c user/ed/newcons/sys/boot/ia64/common/exec.c user/ed/newcons/sys/boot/ia64/common/libia64.h user/ed/newcons/sys/boot/ia64/efi/efimd.c user/ed/newcons/sys/boot/ia64/efi/main.c user/ed/newcons/sys/boot/ia64/efi/version user/ed/newcons/sys/boot/ia64/ski/efi_stub.c user/ed/newcons/sys/boot/ia64/ski/main.c user/ed/newcons/sys/boot/ia64/ski/skimd.c user/ed/newcons/sys/boot/pc98/boot2/Makefile user/ed/newcons/sys/boot/pc98/boot2/boot2.c user/ed/newcons/sys/boot/pc98/loader/Makefile user/ed/newcons/sys/boot/pc98/loader/main.c user/ed/newcons/sys/boot/powerpc/ofw/Makefile user/ed/newcons/sys/boot/powerpc/ps3/Makefile user/ed/newcons/sys/boot/powerpc/ps3/conf.c user/ed/newcons/sys/boot/powerpc/ps3/devicename.c user/ed/newcons/sys/boot/powerpc/ps3/lv1call.S user/ed/newcons/sys/boot/powerpc/ps3/lv1call.h user/ed/newcons/sys/boot/powerpc/ps3/main.c user/ed/newcons/sys/boot/powerpc/ps3/version user/ed/newcons/sys/boot/sparc64/loader/Makefile user/ed/newcons/sys/boot/sparc64/loader/main.c user/ed/newcons/sys/cam/ata/ata_all.c user/ed/newcons/sys/cam/ata/ata_all.h user/ed/newcons/sys/cam/ata/ata_da.c user/ed/newcons/sys/cam/ata/ata_pmp.c user/ed/newcons/sys/cam/ata/ata_xpt.c user/ed/newcons/sys/cam/cam_ccb.h user/ed/newcons/sys/cam/cam_periph.c user/ed/newcons/sys/cam/cam_periph.h user/ed/newcons/sys/cam/cam_xpt.c user/ed/newcons/sys/cam/cam_xpt.h user/ed/newcons/sys/cam/cam_xpt_internal.h user/ed/newcons/sys/cam/scsi/scsi_all.c user/ed/newcons/sys/cam/scsi/scsi_all.h user/ed/newcons/sys/cam/scsi/scsi_cd.c user/ed/newcons/sys/cam/scsi/scsi_ch.c user/ed/newcons/sys/cam/scsi/scsi_da.c user/ed/newcons/sys/cam/scsi/scsi_low.c user/ed/newcons/sys/cam/scsi/scsi_pass.c user/ed/newcons/sys/cam/scsi/scsi_pt.c user/ed/newcons/sys/cam/scsi/scsi_sa.c user/ed/newcons/sys/cam/scsi/scsi_ses.h user/ed/newcons/sys/cam/scsi/scsi_sg.c user/ed/newcons/sys/cam/scsi/scsi_targ_bh.c user/ed/newcons/sys/cam/scsi/scsi_xpt.c user/ed/newcons/sys/cddl/boot/zfs/zfssubr.c user/ed/newcons/sys/cddl/compat/opensolaris/kern/opensolaris.c user/ed/newcons/sys/cddl/compat/opensolaris/kern/opensolaris_sysevent.c user/ed/newcons/sys/cddl/compat/opensolaris/kern/opensolaris_taskq.c user/ed/newcons/sys/cddl/compat/opensolaris/kern/opensolaris_vfs.c user/ed/newcons/sys/cddl/compat/opensolaris/sys/atomic.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/file.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/kstat.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/sunddi.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/systm.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/taskq.h user/ed/newcons/sys/cddl/compat/opensolaris/sys/time.h user/ed/newcons/sys/cddl/contrib/opensolaris/common/acl/acl_common.c user/ed/newcons/sys/cddl/contrib/opensolaris/common/acl/acl_common.h user/ed/newcons/sys/cddl/contrib/opensolaris/common/atomic/ia64/opensolaris_atomic.S user/ed/newcons/sys/cddl/contrib/opensolaris/common/zfs/zfs_ioctl_compat.c user/ed/newcons/sys/cddl/contrib/opensolaris/common/zfs/zfs_prop.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/dtrace/dtrace.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dmu_send.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/dsl_dataset.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/metaslab.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_history.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/spa_misc.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/arc.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/ddt.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dmu.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/dsl_pool.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/metaslab_impl.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/spa_impl.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_acl.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_ioctl.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zfs_vfsops.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/zio.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/txg.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_cache.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_acl.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_dir.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_ioctl.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vfsops.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_vnops.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfs_znode.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zil.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zio.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zvol.c user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/sys/ctf_api.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/common/sys/fs/zfs.h user/ed/newcons/sys/cddl/contrib/opensolaris/uts/sparc/dtrace/fasttrap_isa.c user/ed/newcons/sys/cddl/dev/cyclic/cyclic.c user/ed/newcons/sys/cddl/dev/cyclic/i386/cyclic_machdep.c user/ed/newcons/sys/cddl/dev/dtrace/amd64/dtrace_subr.c user/ed/newcons/sys/cddl/dev/dtrace/i386/dtrace_subr.c user/ed/newcons/sys/cddl/dev/systrace/systrace.c user/ed/newcons/sys/compat/freebsd32/freebsd32.h user/ed/newcons/sys/compat/freebsd32/freebsd32_ioctl.c user/ed/newcons/sys/compat/freebsd32/freebsd32_ioctl.h user/ed/newcons/sys/compat/freebsd32/freebsd32_misc.c user/ed/newcons/sys/compat/freebsd32/freebsd32_proto.h user/ed/newcons/sys/compat/freebsd32/freebsd32_syscall.h user/ed/newcons/sys/compat/freebsd32/freebsd32_syscalls.c user/ed/newcons/sys/compat/freebsd32/freebsd32_sysent.c user/ed/newcons/sys/compat/freebsd32/freebsd32_systrace_args.c user/ed/newcons/sys/compat/freebsd32/freebsd32_util.h user/ed/newcons/sys/compat/freebsd32/syscalls.master user/ed/newcons/sys/compat/ia32/ia32_genassym.c user/ed/newcons/sys/compat/ia32/ia32_signal.h user/ed/newcons/sys/compat/ia32/ia32_sysvec.c user/ed/newcons/sys/compat/ia32/ia32_util.h user/ed/newcons/sys/compat/linprocfs/linprocfs.c user/ed/newcons/sys/compat/linux/linux_emul.c user/ed/newcons/sys/compat/linux/linux_file.c user/ed/newcons/sys/compat/linux/linux_fork.c user/ed/newcons/sys/compat/linux/linux_ioctl.c user/ed/newcons/sys/compat/linux/linux_ioctl.h user/ed/newcons/sys/compat/linux/linux_ipc.c user/ed/newcons/sys/compat/linux/linux_misc.c user/ed/newcons/sys/compat/linux/linux_misc.h user/ed/newcons/sys/compat/linux/linux_signal.c user/ed/newcons/sys/compat/linux/linux_socket.c user/ed/newcons/sys/compat/linux/linux_socket.h user/ed/newcons/sys/compat/linux/linux_stats.c user/ed/newcons/sys/compat/linux/linux_uid16.c user/ed/newcons/sys/compat/linux/linux_videodev.h user/ed/newcons/sys/compat/svr4/imgact_svr4.c user/ed/newcons/sys/compat/svr4/svr4_fcntl.c user/ed/newcons/sys/compat/svr4/svr4_filio.c user/ed/newcons/sys/compat/svr4/svr4_ioctl.c user/ed/newcons/sys/compat/svr4/svr4_ipc.c user/ed/newcons/sys/compat/svr4/svr4_misc.c user/ed/newcons/sys/compat/svr4/svr4_signal.c user/ed/newcons/sys/compat/svr4/svr4_socket.c user/ed/newcons/sys/compat/svr4/svr4_stat.c user/ed/newcons/sys/compat/svr4/svr4_stream.c user/ed/newcons/sys/compat/svr4/svr4_sysent.c user/ed/newcons/sys/conf/Makefile.arm user/ed/newcons/sys/conf/Makefile.mips user/ed/newcons/sys/conf/Makefile.powerpc user/ed/newcons/sys/conf/NOTES user/ed/newcons/sys/conf/files user/ed/newcons/sys/conf/files.amd64 user/ed/newcons/sys/conf/files.arm user/ed/newcons/sys/conf/files.i386 user/ed/newcons/sys/conf/files.ia64 user/ed/newcons/sys/conf/files.mips user/ed/newcons/sys/conf/files.pc98 user/ed/newcons/sys/conf/files.powerpc user/ed/newcons/sys/conf/files.sparc64 user/ed/newcons/sys/conf/kern.mk user/ed/newcons/sys/conf/kern.post.mk user/ed/newcons/sys/conf/kern.pre.mk user/ed/newcons/sys/conf/kmod.mk user/ed/newcons/sys/conf/ldscript.amd64 user/ed/newcons/sys/conf/ldscript.ia64 user/ed/newcons/sys/conf/makeLINT.mk user/ed/newcons/sys/conf/makeLINT.sed user/ed/newcons/sys/conf/newvers.sh user/ed/newcons/sys/conf/options user/ed/newcons/sys/conf/options.amd64 user/ed/newcons/sys/conf/options.mips user/ed/newcons/sys/contrib/altq/altq/altq_red.c user/ed/newcons/sys/contrib/altq/altq/altq_subr.c user/ed/newcons/sys/contrib/dev/acpica/acpica_prep.sh user/ed/newcons/sys/contrib/dev/acpica/changes.txt user/ed/newcons/sys/contrib/dev/acpica/common/dmtable.c user/ed/newcons/sys/contrib/dev/acpica/common/dmtbdump.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslanalyze.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslcompiler.h user/ed/newcons/sys/contrib/dev/acpica/compiler/aslcompiler.y user/ed/newcons/sys/contrib/dev/acpica/compiler/asldefine.h user/ed/newcons/sys/contrib/dev/acpica/compiler/aslglobal.h user/ed/newcons/sys/contrib/dev/acpica/compiler/asllookup.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslmain.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslmap.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslmessages.h user/ed/newcons/sys/contrib/dev/acpica/compiler/aslpredef.c user/ed/newcons/sys/contrib/dev/acpica/compiler/asltypes.h user/ed/newcons/sys/contrib/dev/acpica/compiler/aslutils.c user/ed/newcons/sys/contrib/dev/acpica/compiler/aslwalks.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dtcompile.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dtcompiler.h user/ed/newcons/sys/contrib/dev/acpica/compiler/dtexpress.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dtfield.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dtio.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dtsubtable.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dttable.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dttemplate.c user/ed/newcons/sys/contrib/dev/acpica/compiler/dttemplate.h user/ed/newcons/sys/contrib/dev/acpica/compiler/dtutils.c user/ed/newcons/sys/contrib/dev/acpica/debugger/dbdisply.c user/ed/newcons/sys/contrib/dev/acpica/debugger/dbexec.c user/ed/newcons/sys/contrib/dev/acpica/debugger/dbinput.c user/ed/newcons/sys/contrib/dev/acpica/debugger/dbutils.c user/ed/newcons/sys/contrib/dev/acpica/debugger/dbxface.c user/ed/newcons/sys/contrib/dev/acpica/dispatcher/dswload.c user/ed/newcons/sys/contrib/dev/acpica/dispatcher/dswload2.c user/ed/newcons/sys/contrib/dev/acpica/events/evmisc.c user/ed/newcons/sys/contrib/dev/acpica/events/evregion.c user/ed/newcons/sys/contrib/dev/acpica/events/evrgnini.c user/ed/newcons/sys/contrib/dev/acpica/events/evxfregn.c user/ed/newcons/sys/contrib/dev/acpica/executer/excreate.c user/ed/newcons/sys/contrib/dev/acpica/include/acconfig.h user/ed/newcons/sys/contrib/dev/acpica/include/acdebug.h user/ed/newcons/sys/contrib/dev/acpica/include/acevents.h user/ed/newcons/sys/contrib/dev/acpica/include/acglobal.h user/ed/newcons/sys/contrib/dev/acpica/include/aclocal.h user/ed/newcons/sys/contrib/dev/acpica/include/acpiosxf.h user/ed/newcons/sys/contrib/dev/acpica/include/acpixf.h user/ed/newcons/sys/contrib/dev/acpica/include/acpredef.h user/ed/newcons/sys/contrib/dev/acpica/include/actypes.h user/ed/newcons/sys/contrib/dev/acpica/include/amlcode.h user/ed/newcons/sys/contrib/dev/acpica/namespace/nsrepair.c user/ed/newcons/sys/contrib/dev/acpica/osunixxf.c user/ed/newcons/sys/contrib/dev/acpica/tables/tbinstal.c user/ed/newcons/sys/contrib/dev/acpica/utilities/utdecode.c user/ed/newcons/sys/contrib/pf/net/if_pflog.c user/ed/newcons/sys/contrib/pf/net/if_pflog.h user/ed/newcons/sys/contrib/pf/net/if_pfsync.c user/ed/newcons/sys/contrib/pf/net/if_pfsync.h user/ed/newcons/sys/contrib/pf/net/pf.c user/ed/newcons/sys/contrib/pf/net/pf_if.c user/ed/newcons/sys/contrib/pf/net/pf_ioctl.c user/ed/newcons/sys/contrib/pf/net/pf_mtag.h user/ed/newcons/sys/contrib/pf/net/pf_norm.c user/ed/newcons/sys/contrib/pf/net/pf_osfp.c user/ed/newcons/sys/contrib/pf/net/pf_ruleset.c user/ed/newcons/sys/contrib/pf/net/pf_table.c user/ed/newcons/sys/contrib/pf/net/pfvar.h user/ed/newcons/sys/ddb/db_break.c user/ed/newcons/sys/ddb/db_command.c user/ed/newcons/sys/ddb/db_ps.c user/ed/newcons/sys/dev/aac/aac.c user/ed/newcons/sys/dev/aac/aac_linux.c user/ed/newcons/sys/dev/aac/aacvar.h user/ed/newcons/sys/dev/acpica/Osd/OsdDebug.c user/ed/newcons/sys/dev/acpica/acpi.c user/ed/newcons/sys/dev/acpica/acpi_cpu.c user/ed/newcons/sys/dev/acpica/acpi_hpet.c user/ed/newcons/sys/dev/acpica/acpi_hpet.h user/ed/newcons/sys/dev/acpica/acpi_pci.c user/ed/newcons/sys/dev/acpica/acpi_pcib_acpi.c user/ed/newcons/sys/dev/acpica/acpi_pcib_pci.c user/ed/newcons/sys/dev/acpica/acpi_resource.c user/ed/newcons/sys/dev/acpica/acpi_thermal.c user/ed/newcons/sys/dev/acpica/acpi_timer.c user/ed/newcons/sys/dev/acpica/acpivar.h user/ed/newcons/sys/dev/adb/adb_kbd.c user/ed/newcons/sys/dev/ae/if_ae.c user/ed/newcons/sys/dev/age/if_age.c user/ed/newcons/sys/dev/agp/agp.c user/ed/newcons/sys/dev/ahci/ahci.c user/ed/newcons/sys/dev/ahci/ahci.h user/ed/newcons/sys/dev/aic7xxx/aic79xx_pci.c user/ed/newcons/sys/dev/aic7xxx/aicasm/Makefile user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm.c user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm.h user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_gram.y user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_macro_gram.y user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_macro_scan.l user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_scan.l user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_symbol.c user/ed/newcons/sys/dev/aic7xxx/aicasm/aicasm_symbol.h user/ed/newcons/sys/dev/alc/if_alc.c user/ed/newcons/sys/dev/alc/if_alcreg.h user/ed/newcons/sys/dev/ale/if_ale.c user/ed/newcons/sys/dev/ale/if_alereg.h user/ed/newcons/sys/dev/amdsbwd/amdsbwd.c user/ed/newcons/sys/dev/amr/amr_linux.c user/ed/newcons/sys/dev/an/if_an.c user/ed/newcons/sys/dev/arcmsr/arcmsr.c user/ed/newcons/sys/dev/arcmsr/arcmsr.h user/ed/newcons/sys/dev/ata/ata-all.c user/ed/newcons/sys/dev/ata/ata-all.h user/ed/newcons/sys/dev/ata/ata-lowlevel.c user/ed/newcons/sys/dev/ata/ata-pci.c user/ed/newcons/sys/dev/ata/ata-pci.h user/ed/newcons/sys/dev/ata/ata-sata.c user/ed/newcons/sys/dev/ata/chipsets/ata-acard.c user/ed/newcons/sys/dev/ata/chipsets/ata-acerlabs.c user/ed/newcons/sys/dev/ata/chipsets/ata-intel.c user/ed/newcons/sys/dev/ata/chipsets/ata-nvidia.c user/ed/newcons/sys/dev/ata/chipsets/ata-promise.c user/ed/newcons/sys/dev/ath/ah_osdep.c user/ed/newcons/sys/dev/ath/ath_hal/ah.c user/ed/newcons/sys/dev/ath/ath_hal/ah.h user/ed/newcons/sys/dev/ath/ath_hal/ah_debug.h user/ed/newcons/sys/dev/ath/ath_hal/ah_decode.h user/ed/newcons/sys/dev/ath/ath_hal/ah_desc.h user/ed/newcons/sys/dev/ath/ath_hal/ah_devid.h user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom.h user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v1.c user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v14.c user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v14.h user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v3.c user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v4k.c user/ed/newcons/sys/dev/ath/ath_hal/ah_eeprom_v4k.h user/ed/newcons/sys/dev/ath/ath_hal/ah_internal.h user/ed/newcons/sys/dev/ath/ath_hal/ah_regdomain.c user/ed/newcons/sys/dev/ath/ath_hal/ah_regdomain/ah_rd_ctry.h user/ed/newcons/sys/dev/ath/ath_hal/ah_regdomain/ah_rd_regenum.h user/ed/newcons/sys/dev/ath/ath_hal/ar5210/ar5210.h user/ed/newcons/sys/dev/ath/ath_hal/ar5210/ar5210_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar5210/ar5210_beacon.c user/ed/newcons/sys/dev/ath/ath_hal/ar5211/ar5211.h user/ed/newcons/sys/dev/ath/ath_hal/ar5211/ar5211_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar5211/ar5211_beacon.c user/ed/newcons/sys/dev/ath/ath_hal/ar5211/ar5211_xmit.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212.h user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_ani.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_beacon.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_misc.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_recv.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212_xmit.c user/ed/newcons/sys/dev/ath/ath_hal/ar5212/ar5212reg.h user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar2133.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416.h user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416.ini user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_ani.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_beacon.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_cal.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_interrupts.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_misc.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_power.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_recv.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_reset.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416_xmit.c user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416desc.h user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416phy.h user/ed/newcons/sys/dev/ath/ath_hal/ar5416/ar5416reg.h user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9160.ini user/ed/newcons/sys/dev/ath/ath_hal/ar9001/ar9160_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9002phy.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9280.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9280.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9280_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9280_olc.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285.h user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_attach.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_cal.c user/ed/newcons/sys/dev/ath/ath_hal/ar9002/ar9285_reset.c user/ed/newcons/sys/dev/ath/ath_rate/sample/sample.c user/ed/newcons/sys/dev/ath/ath_rate/sample/sample.h user/ed/newcons/sys/dev/ath/ath_rate/sample/tx_schedules.h user/ed/newcons/sys/dev/ath/if_ath.c user/ed/newcons/sys/dev/ath/if_ath_pci.c user/ed/newcons/sys/dev/ath/if_ath_sysctl.c user/ed/newcons/sys/dev/ath/if_ath_sysctl.h user/ed/newcons/sys/dev/ath/if_ath_tx.c user/ed/newcons/sys/dev/ath/if_ath_tx_ht.c user/ed/newcons/sys/dev/ath/if_athioctl.h user/ed/newcons/sys/dev/ath/if_athvar.h user/ed/newcons/sys/dev/atkbdc/atkbd.c user/ed/newcons/sys/dev/bce/if_bce.c user/ed/newcons/sys/dev/bce/if_bcereg.h user/ed/newcons/sys/dev/bfe/if_bfe.c user/ed/newcons/sys/dev/bge/if_bge.c user/ed/newcons/sys/dev/bge/if_bgereg.h user/ed/newcons/sys/dev/bktr/bktr_core.c user/ed/newcons/sys/dev/bm/if_bm.c user/ed/newcons/sys/dev/bwi/if_bwi.c user/ed/newcons/sys/dev/bwn/if_bwn.c user/ed/newcons/sys/dev/bxe/bxe_debug.h user/ed/newcons/sys/dev/bxe/bxe_include.h user/ed/newcons/sys/dev/bxe/bxe_link.c user/ed/newcons/sys/dev/bxe/if_bxe.c user/ed/newcons/sys/dev/bxe/if_bxe.h user/ed/newcons/sys/dev/cardbus/cardbus.c user/ed/newcons/sys/dev/cardbus/cardbus_cis.c user/ed/newcons/sys/dev/cas/if_cas.c user/ed/newcons/sys/dev/cas/if_casvar.h user/ed/newcons/sys/dev/cfe/cfe_console.c user/ed/newcons/sys/dev/cfi/cfi_dev.c user/ed/newcons/sys/dev/ciss/ciss.c user/ed/newcons/sys/dev/coretemp/coretemp.c user/ed/newcons/sys/dev/cxgb/common/cxgb_common.h user/ed/newcons/sys/dev/cxgb/common/cxgb_t3_hw.c user/ed/newcons/sys/dev/cxgb/cxgb_adapter.h user/ed/newcons/sys/dev/cxgb/cxgb_main.c user/ed/newcons/sys/dev/cxgb/cxgb_sge.c user/ed/newcons/sys/dev/cxgb/cxgb_t3fw.h user/ed/newcons/sys/dev/cxgbe/adapter.h user/ed/newcons/sys/dev/cxgbe/common/common.h user/ed/newcons/sys/dev/cxgbe/common/t4_hw.c user/ed/newcons/sys/dev/cxgbe/common/t4fw_interface.h user/ed/newcons/sys/dev/cxgbe/offload.h user/ed/newcons/sys/dev/cxgbe/osdep.h user/ed/newcons/sys/dev/cxgbe/t4_ioctl.h user/ed/newcons/sys/dev/cxgbe/t4_main.c user/ed/newcons/sys/dev/cxgbe/t4_sge.c user/ed/newcons/sys/dev/dc/dcphy.c user/ed/newcons/sys/dev/dc/if_dc.c user/ed/newcons/sys/dev/dc/pnphy.c user/ed/newcons/sys/dev/dcons/dcons_os.c user/ed/newcons/sys/dev/drm/drm_agpsupport.c user/ed/newcons/sys/dev/drm/drm_sysctl.c user/ed/newcons/sys/dev/e1000/e1000_osdep.c user/ed/newcons/sys/dev/e1000/if_em.c user/ed/newcons/sys/dev/e1000/if_em.h user/ed/newcons/sys/dev/e1000/if_igb.c user/ed/newcons/sys/dev/e1000/if_igb.h user/ed/newcons/sys/dev/e1000/if_lem.c user/ed/newcons/sys/dev/ed/if_ed_pccard.c user/ed/newcons/sys/dev/en/if_en_pci.c user/ed/newcons/sys/dev/esp/ncr53c9x.c user/ed/newcons/sys/dev/et/if_et.c user/ed/newcons/sys/dev/fb/machfb.c user/ed/newcons/sys/dev/fdc/fdc_pccard.c user/ed/newcons/sys/dev/fdt/fdtbus.c user/ed/newcons/sys/dev/firewire/fwohci.c user/ed/newcons/sys/dev/firewire/sbp.c user/ed/newcons/sys/dev/firewire/sbp_targ.c user/ed/newcons/sys/dev/fxp/if_fxp.c user/ed/newcons/sys/dev/gem/if_gem.c user/ed/newcons/sys/dev/gem/if_gem_pci.c user/ed/newcons/sys/dev/gem/if_gemreg.h user/ed/newcons/sys/dev/gem/if_gemvar.h user/ed/newcons/sys/dev/hme/if_hme.c user/ed/newcons/sys/dev/hme/if_hmereg.h user/ed/newcons/sys/dev/hptiop/hptiop.c user/ed/newcons/sys/dev/hwpmc/hwpmc_logging.c user/ed/newcons/sys/dev/hwpmc/hwpmc_mips24k.h user/ed/newcons/sys/dev/hwpmc/hwpmc_mod.c user/ed/newcons/sys/dev/ichsmb/ichsmb_pci.c user/ed/newcons/sys/dev/ichwd/ichwd.c user/ed/newcons/sys/dev/ichwd/ichwd.h user/ed/newcons/sys/dev/iicbus/ds1775.c user/ed/newcons/sys/dev/iicbus/if_ic.c user/ed/newcons/sys/dev/iicbus/max6690.c user/ed/newcons/sys/dev/iir/iir.c user/ed/newcons/sys/dev/ipmi/ipmi.c user/ed/newcons/sys/dev/ipmi/ipmi_linux.c user/ed/newcons/sys/dev/ipw/if_ipw.c user/ed/newcons/sys/dev/iscsi/initiator/isc_soc.c user/ed/newcons/sys/dev/iscsi/initiator/iscsi.c user/ed/newcons/sys/dev/iscsi/initiator/iscsi_subr.c user/ed/newcons/sys/dev/isp/isp.c user/ed/newcons/sys/dev/isp/isp_freebsd.c user/ed/newcons/sys/dev/isp/isp_freebsd.h user/ed/newcons/sys/dev/isp/isp_pci.c user/ed/newcons/sys/dev/isp/ispvar.h user/ed/newcons/sys/dev/iwi/if_iwi.c user/ed/newcons/sys/dev/iwn/if_iwn.c user/ed/newcons/sys/dev/iwn/if_iwnreg.h user/ed/newcons/sys/dev/iwn/if_iwnvar.h user/ed/newcons/sys/dev/ixgbe/LICENSE user/ed/newcons/sys/dev/ixgbe/README user/ed/newcons/sys/dev/ixgbe/ixgbe.c user/ed/newcons/sys/dev/ixgbe/ixgbe.h user/ed/newcons/sys/dev/ixgbe/ixv.c user/ed/newcons/sys/dev/jme/if_jme.c user/ed/newcons/sys/dev/kbd/kbd.c user/ed/newcons/sys/dev/kbdmux/kbdmux.c user/ed/newcons/sys/dev/ksyms/ksyms.c user/ed/newcons/sys/dev/le/lebuffer_sbus.c user/ed/newcons/sys/dev/led/led.c user/ed/newcons/sys/dev/led/led.h user/ed/newcons/sys/dev/lge/if_lge.c user/ed/newcons/sys/dev/lmc/if_lmc.c user/ed/newcons/sys/dev/malo/if_malo_pci.c user/ed/newcons/sys/dev/md/md.c user/ed/newcons/sys/dev/mfi/mfi.c user/ed/newcons/sys/dev/mfi/mfi_cam.c user/ed/newcons/sys/dev/mfi/mfi_linux.c user/ed/newcons/sys/dev/mfi/mfireg.h user/ed/newcons/sys/dev/mfi/mfivar.h user/ed/newcons/sys/dev/mii/acphy.c user/ed/newcons/sys/dev/mii/amphy.c user/ed/newcons/sys/dev/mii/atphy.c user/ed/newcons/sys/dev/mii/axphy.c user/ed/newcons/sys/dev/mii/bmtphy.c user/ed/newcons/sys/dev/mii/brgphy.c user/ed/newcons/sys/dev/mii/brgphyreg.h user/ed/newcons/sys/dev/mii/ciphy.c user/ed/newcons/sys/dev/mii/ciphyreg.h user/ed/newcons/sys/dev/mii/e1000phy.c user/ed/newcons/sys/dev/mii/e1000phyreg.h user/ed/newcons/sys/dev/mii/exphy.c user/ed/newcons/sys/dev/mii/gentbi.c user/ed/newcons/sys/dev/mii/icsphy.c user/ed/newcons/sys/dev/mii/inphy.c user/ed/newcons/sys/dev/mii/ip1000phy.c user/ed/newcons/sys/dev/mii/jmphy.c user/ed/newcons/sys/dev/mii/lxtphy.c user/ed/newcons/sys/dev/mii/mii.c user/ed/newcons/sys/dev/mii/mii.h user/ed/newcons/sys/dev/mii/mii_physubr.c user/ed/newcons/sys/dev/mii/miidevs user/ed/newcons/sys/dev/mii/miivar.h user/ed/newcons/sys/dev/mii/mlphy.c user/ed/newcons/sys/dev/mii/nsgphy.c user/ed/newcons/sys/dev/mii/nsphy.c user/ed/newcons/sys/dev/mii/nsphyter.c user/ed/newcons/sys/dev/mii/pnaphy.c user/ed/newcons/sys/dev/mii/qsphy.c user/ed/newcons/sys/dev/mii/rdcphy.c user/ed/newcons/sys/dev/mii/rgephy.c user/ed/newcons/sys/dev/mii/rgephyreg.h user/ed/newcons/sys/dev/mii/rlphy.c user/ed/newcons/sys/dev/mii/rlswitch.c user/ed/newcons/sys/dev/mii/ruephy.c user/ed/newcons/sys/dev/mii/smcphy.c user/ed/newcons/sys/dev/mii/tdkphy.c user/ed/newcons/sys/dev/mii/tlphy.c user/ed/newcons/sys/dev/mii/truephy.c user/ed/newcons/sys/dev/mii/ukphy.c user/ed/newcons/sys/dev/mii/xmphy.c user/ed/newcons/sys/dev/mii/xmphyreg.h user/ed/newcons/sys/dev/mk48txx/mk48txx.c user/ed/newcons/sys/dev/mk48txx/mk48txxreg.h user/ed/newcons/sys/dev/mly/mly.c user/ed/newcons/sys/dev/mmc/mmc.c user/ed/newcons/sys/dev/mmc/mmcsd.c user/ed/newcons/sys/dev/mmc/mmcvar.h user/ed/newcons/sys/dev/mps/mps_sas.c user/ed/newcons/sys/dev/mpt/mpilib/mpi_ioc.h user/ed/newcons/sys/dev/mpt/mpt.c user/ed/newcons/sys/dev/mpt/mpt.h user/ed/newcons/sys/dev/mpt/mpt_cam.c user/ed/newcons/sys/dev/mpt/mpt_debug.c user/ed/newcons/sys/dev/mpt/mpt_pci.c user/ed/newcons/sys/dev/mpt/mpt_raid.c user/ed/newcons/sys/dev/mpt/mpt_raid.h user/ed/newcons/sys/dev/mpt/mpt_user.c user/ed/newcons/sys/dev/msk/if_msk.c user/ed/newcons/sys/dev/msk/if_mskreg.h user/ed/newcons/sys/dev/mvs/mvs.c user/ed/newcons/sys/dev/mvs/mvs.h user/ed/newcons/sys/dev/mvs/mvs_soc.c user/ed/newcons/sys/dev/mxge/eth_z8e.h user/ed/newcons/sys/dev/mxge/ethp_z8e.h user/ed/newcons/sys/dev/mxge/if_mxge.c user/ed/newcons/sys/dev/mxge/mxge_lro.c user/ed/newcons/sys/dev/mxge/rss_eth_z8e.h user/ed/newcons/sys/dev/mxge/rss_ethp_z8e.h user/ed/newcons/sys/dev/my/if_my.c user/ed/newcons/sys/dev/nfe/if_nfe.c user/ed/newcons/sys/dev/nge/if_nge.c user/ed/newcons/sys/dev/null/null.c user/ed/newcons/sys/dev/nve/if_nve.c user/ed/newcons/sys/dev/ofw/ofw_console.c user/ed/newcons/sys/dev/pccard/pccard.c user/ed/newcons/sys/dev/pccbb/pccbb.c user/ed/newcons/sys/dev/pccbb/pccbb_pci.c user/ed/newcons/sys/dev/pci/hostb_pci.c user/ed/newcons/sys/dev/pci/isa_pci.c user/ed/newcons/sys/dev/pci/pci.c user/ed/newcons/sys/dev/pci/pci_pci.c user/ed/newcons/sys/dev/pci/pci_user.c user/ed/newcons/sys/dev/pci/pcib_private.h user/ed/newcons/sys/dev/pci/pcireg.h user/ed/newcons/sys/dev/pci/pcivar.h user/ed/newcons/sys/dev/pcn/if_pcn.c user/ed/newcons/sys/dev/ppbus/if_plip.c user/ed/newcons/sys/dev/ppbus/ppb_msq.c user/ed/newcons/sys/dev/pty/pty.c user/ed/newcons/sys/dev/puc/puc.c user/ed/newcons/sys/dev/puc/puc_bfe.h user/ed/newcons/sys/dev/puc/puc_pccard.c user/ed/newcons/sys/dev/puc/puc_pci.c user/ed/newcons/sys/dev/puc/pucdata.c user/ed/newcons/sys/dev/ral/rt2560.c user/ed/newcons/sys/dev/ral/rt2661.c user/ed/newcons/sys/dev/re/if_re.c user/ed/newcons/sys/dev/safe/safe.c user/ed/newcons/sys/dev/scc/scc_bfe_ebus.c user/ed/newcons/sys/dev/sdhci/sdhci.c user/ed/newcons/sys/dev/sf/if_sf.c user/ed/newcons/sys/dev/sge/if_sge.c user/ed/newcons/sys/dev/siba/siba_core.c user/ed/newcons/sys/dev/siis/siis.c user/ed/newcons/sys/dev/siis/siis.h user/ed/newcons/sys/dev/sio/sio.c user/ed/newcons/sys/dev/sis/if_sis.c user/ed/newcons/sys/dev/smc/if_smc.c user/ed/newcons/sys/dev/snp/snp.c user/ed/newcons/sys/dev/sound/macio/i2s.c user/ed/newcons/sys/dev/sound/midi/midi.c user/ed/newcons/sys/dev/sound/pci/hda/hdac.c user/ed/newcons/sys/dev/sound/pcm/dsp.c user/ed/newcons/sys/dev/sound/pcm/sound.c user/ed/newcons/sys/dev/sound/usb/uaudio.c user/ed/newcons/sys/dev/ste/if_ste.c user/ed/newcons/sys/dev/streams/streams.c user/ed/newcons/sys/dev/sym/README.sym user/ed/newcons/sys/dev/sym/sym_fw1.h user/ed/newcons/sys/dev/sym/sym_fw2.h user/ed/newcons/sys/dev/sym/sym_hipd.c user/ed/newcons/sys/dev/syscons/scmouse.c user/ed/newcons/sys/dev/syscons/scterm-teken.c user/ed/newcons/sys/dev/syscons/syscons.c user/ed/newcons/sys/dev/syscons/syscons.h user/ed/newcons/sys/dev/tdfx/tdfx_linux.c user/ed/newcons/sys/dev/tdfx/tdfx_pci.c user/ed/newcons/sys/dev/tx/if_tx.c user/ed/newcons/sys/dev/txp/if_txp.c user/ed/newcons/sys/dev/uart/uart_bus_pci.c user/ed/newcons/sys/dev/uart/uart_core.c user/ed/newcons/sys/dev/uart/uart_cpu_sparc64.c user/ed/newcons/sys/dev/uart/uart_dev_ns8250.c user/ed/newcons/sys/dev/uart/uart_kbd_sun.c user/ed/newcons/sys/dev/usb/controller/ehci.c user/ed/newcons/sys/dev/usb/controller/ehci_ixp4xx.c user/ed/newcons/sys/dev/usb/controller/ehci_mv.c user/ed/newcons/sys/dev/usb/controller/ehci_pci.c user/ed/newcons/sys/dev/usb/controller/xhci_pci.c user/ed/newcons/sys/dev/usb/controller/xhcireg.h user/ed/newcons/sys/dev/usb/input/atp.c user/ed/newcons/sys/dev/usb/input/uep.c user/ed/newcons/sys/dev/usb/input/uhid.c user/ed/newcons/sys/dev/usb/input/ukbd.c user/ed/newcons/sys/dev/usb/input/ums.c user/ed/newcons/sys/dev/usb/misc/udbp.c user/ed/newcons/sys/dev/usb/misc/ufm.c user/ed/newcons/sys/dev/usb/net/if_aue.c user/ed/newcons/sys/dev/usb/net/if_axe.c user/ed/newcons/sys/dev/usb/net/if_axereg.h user/ed/newcons/sys/dev/usb/net/if_cdce.c user/ed/newcons/sys/dev/usb/net/if_cdcereg.h user/ed/newcons/sys/dev/usb/net/if_cue.c user/ed/newcons/sys/dev/usb/net/if_ipheth.c user/ed/newcons/sys/dev/usb/net/if_kue.c user/ed/newcons/sys/dev/usb/net/if_mos.c user/ed/newcons/sys/dev/usb/net/if_rue.c user/ed/newcons/sys/dev/usb/net/if_udav.c user/ed/newcons/sys/dev/usb/net/uhso.c user/ed/newcons/sys/dev/usb/quirk/usb_quirk.c user/ed/newcons/sys/dev/usb/quirk/usb_quirk.h user/ed/newcons/sys/dev/usb/serial/u3g.c user/ed/newcons/sys/dev/usb/serial/uark.c user/ed/newcons/sys/dev/usb/serial/ubsa.c user/ed/newcons/sys/dev/usb/serial/uchcom.c user/ed/newcons/sys/dev/usb/serial/ucycom.c user/ed/newcons/sys/dev/usb/serial/ufoma.c user/ed/newcons/sys/dev/usb/serial/uftdi.c user/ed/newcons/sys/dev/usb/serial/ugensa.c user/ed/newcons/sys/dev/usb/serial/uipaq.c user/ed/newcons/sys/dev/usb/serial/ulpt.c user/ed/newcons/sys/dev/usb/serial/umct.c user/ed/newcons/sys/dev/usb/serial/umodem.c user/ed/newcons/sys/dev/usb/serial/umoscom.c user/ed/newcons/sys/dev/usb/serial/uplcom.c user/ed/newcons/sys/dev/usb/serial/uslcom.c user/ed/newcons/sys/dev/usb/serial/uvisor.c user/ed/newcons/sys/dev/usb/serial/uvscom.c user/ed/newcons/sys/dev/usb/storage/umass.c user/ed/newcons/sys/dev/usb/storage/urio.c user/ed/newcons/sys/dev/usb/storage/ustorage_fs.c user/ed/newcons/sys/dev/usb/template/usb_template.c user/ed/newcons/sys/dev/usb/template/usb_template.h user/ed/newcons/sys/dev/usb/template/usb_template_cdce.c user/ed/newcons/sys/dev/usb/template/usb_template_msc.c user/ed/newcons/sys/dev/usb/template/usb_template_mtp.c user/ed/newcons/sys/dev/usb/usb_dev.c user/ed/newcons/sys/dev/usb/usb_device.c user/ed/newcons/sys/dev/usb/usb_device.h user/ed/newcons/sys/dev/usb/usb_freebsd.h user/ed/newcons/sys/dev/usb/usb_generic.c user/ed/newcons/sys/dev/usb/usb_hid.c user/ed/newcons/sys/dev/usb/usb_hub.c user/ed/newcons/sys/dev/usb/usb_ioctl.h user/ed/newcons/sys/dev/usb/usb_lookup.c user/ed/newcons/sys/dev/usb/usb_msctest.c user/ed/newcons/sys/dev/usb/usb_msctest.h user/ed/newcons/sys/dev/usb/usb_pf.c user/ed/newcons/sys/dev/usb/usb_pf.h user/ed/newcons/sys/dev/usb/usb_process.c user/ed/newcons/sys/dev/usb/usb_request.c user/ed/newcons/sys/dev/usb/usb_request.h user/ed/newcons/sys/dev/usb/usb_transfer.c user/ed/newcons/sys/dev/usb/usbdevs user/ed/newcons/sys/dev/usb/usbdi.h user/ed/newcons/sys/dev/usb/usbhid.h user/ed/newcons/sys/dev/usb/wlan/if_rum.c user/ed/newcons/sys/dev/usb/wlan/if_run.c user/ed/newcons/sys/dev/usb/wlan/if_uath.c user/ed/newcons/sys/dev/usb/wlan/if_upgt.c user/ed/newcons/sys/dev/usb/wlan/if_ural.c user/ed/newcons/sys/dev/usb/wlan/if_urtw.c user/ed/newcons/sys/dev/usb/wlan/if_zyd.c user/ed/newcons/sys/dev/vge/if_vge.c user/ed/newcons/sys/dev/vge/if_vgereg.h user/ed/newcons/sys/dev/vkbd/vkbd.c user/ed/newcons/sys/dev/vr/if_vr.c user/ed/newcons/sys/dev/vr/if_vrreg.h user/ed/newcons/sys/dev/vte/if_vte.c user/ed/newcons/sys/dev/vte/if_vtevar.h user/ed/newcons/sys/dev/watchdog/watchdog.c user/ed/newcons/sys/dev/wb/if_wb.c user/ed/newcons/sys/dev/wpi/if_wpi.c user/ed/newcons/sys/dev/xen/balloon/balloon.c user/ed/newcons/sys/dev/xen/blkback/blkback.c user/ed/newcons/sys/dev/xen/blkfront/blkfront.c user/ed/newcons/sys/dev/xen/blkfront/block.h user/ed/newcons/sys/dev/xen/console/console.c user/ed/newcons/sys/dev/xen/control/control.c user/ed/newcons/sys/dev/xen/netfront/netfront.c user/ed/newcons/sys/dev/xl/if_xl.c user/ed/newcons/sys/dev/xl/if_xlreg.h user/ed/newcons/sys/fs/cd9660/cd9660_vfsops.c user/ed/newcons/sys/fs/cd9660/iso.h user/ed/newcons/sys/fs/coda/coda_psdev.c user/ed/newcons/sys/fs/devfs/devfs_devs.c user/ed/newcons/sys/fs/devfs/devfs_vnops.c user/ed/newcons/sys/fs/ext2fs/ext2_alloc.c user/ed/newcons/sys/fs/ext2fs/ext2_balloc.c user/ed/newcons/sys/fs/ext2fs/ext2_dinode.h user/ed/newcons/sys/fs/ext2fs/ext2_dir.h user/ed/newcons/sys/fs/ext2fs/ext2_extern.h user/ed/newcons/sys/fs/ext2fs/ext2_inode.c user/ed/newcons/sys/fs/ext2fs/ext2_lookup.c user/ed/newcons/sys/fs/ext2fs/ext2_readwrite.c user/ed/newcons/sys/fs/ext2fs/ext2_vfsops.c user/ed/newcons/sys/fs/ext2fs/ext2_vnops.c user/ed/newcons/sys/fs/ext2fs/ext2fs.h user/ed/newcons/sys/fs/ext2fs/inode.h user/ed/newcons/sys/fs/fdescfs/fdesc_vfsops.c user/ed/newcons/sys/fs/fdescfs/fdesc_vnops.c user/ed/newcons/sys/fs/fifofs/fifo_vnops.c user/ed/newcons/sys/fs/hpfs/hpfs_vfsops.c user/ed/newcons/sys/fs/msdosfs/msdosfs_lookup.c user/ed/newcons/sys/fs/msdosfs/msdosfs_vfsops.c user/ed/newcons/sys/fs/msdosfs/msdosfsmount.h user/ed/newcons/sys/fs/nfs/nfs.h user/ed/newcons/sys/fs/nfs/nfs_commonacl.c user/ed/newcons/sys/fs/nfs/nfs_commonkrpc.c user/ed/newcons/sys/fs/nfs/nfs_commonport.c user/ed/newcons/sys/fs/nfs/nfs_commonsubs.c user/ed/newcons/sys/fs/nfs/nfs_var.h user/ed/newcons/sys/fs/nfs/nfsdport.h user/ed/newcons/sys/fs/nfs/nfsport.h user/ed/newcons/sys/fs/nfs/nfsproto.h user/ed/newcons/sys/fs/nfsclient/nfs.h user/ed/newcons/sys/fs/nfsclient/nfs_clbio.c user/ed/newcons/sys/fs/nfsclient/nfs_clcomsubs.c user/ed/newcons/sys/fs/nfsclient/nfs_clkrpc.c user/ed/newcons/sys/fs/nfsclient/nfs_clnfsiod.c user/ed/newcons/sys/fs/nfsclient/nfs_clnode.c user/ed/newcons/sys/fs/nfsclient/nfs_clport.c user/ed/newcons/sys/fs/nfsclient/nfs_clrpcops.c user/ed/newcons/sys/fs/nfsclient/nfs_clstate.c user/ed/newcons/sys/fs/nfsclient/nfs_clsubs.c user/ed/newcons/sys/fs/nfsclient/nfs_clvfsops.c user/ed/newcons/sys/fs/nfsclient/nfs_clvnops.c user/ed/newcons/sys/fs/nfsclient/nfsnode.h user/ed/newcons/sys/fs/nfsserver/nfs_nfsdcache.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdkrpc.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdport.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdserv.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdsocket.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdstate.c user/ed/newcons/sys/fs/nfsserver/nfs_nfsdsubs.c user/ed/newcons/sys/fs/ntfs/ntfs.h user/ed/newcons/sys/fs/ntfs/ntfs_vfsops.c user/ed/newcons/sys/fs/nullfs/null_vfsops.c user/ed/newcons/sys/fs/nwfs/nwfs_io.c user/ed/newcons/sys/fs/portalfs/portal_vfsops.c user/ed/newcons/sys/fs/portalfs/portal_vnops.c user/ed/newcons/sys/fs/procfs/procfs.c user/ed/newcons/sys/fs/procfs/procfs_ctl.c user/ed/newcons/sys/fs/procfs/procfs_ioctl.c user/ed/newcons/sys/fs/smbfs/smbfs.h user/ed/newcons/sys/fs/smbfs/smbfs_io.c user/ed/newcons/sys/fs/smbfs/smbfs_smb.c user/ed/newcons/sys/fs/tmpfs/tmpfs_subr.c user/ed/newcons/sys/fs/tmpfs/tmpfs_vfsops.c user/ed/newcons/sys/fs/tmpfs/tmpfs_vnops.c user/ed/newcons/sys/fs/udf/udf_vfsops.c user/ed/newcons/sys/fs/unionfs/union_vfsops.c user/ed/newcons/sys/geom/cache/g_cache.c user/ed/newcons/sys/geom/concat/g_concat.c user/ed/newcons/sys/geom/eli/g_eli.c user/ed/newcons/sys/geom/eli/g_eli.h user/ed/newcons/sys/geom/eli/g_eli_ctl.c user/ed/newcons/sys/geom/eli/g_eli_integrity.c user/ed/newcons/sys/geom/eli/g_eli_key.c user/ed/newcons/sys/geom/eli/g_eli_privacy.c user/ed/newcons/sys/geom/gate/g_gate.c user/ed/newcons/sys/geom/gate/g_gate.h user/ed/newcons/sys/geom/geom.h user/ed/newcons/sys/geom/geom_bsd.c user/ed/newcons/sys/geom/geom_ccd.c user/ed/newcons/sys/geom/geom_dev.c user/ed/newcons/sys/geom/geom_disk.c user/ed/newcons/sys/geom/geom_disk.h user/ed/newcons/sys/geom/geom_dump.c user/ed/newcons/sys/geom/geom_event.c user/ed/newcons/sys/geom/geom_kern.c user/ed/newcons/sys/geom/geom_pc98.c user/ed/newcons/sys/geom/geom_subr.c user/ed/newcons/sys/geom/geom_sunlabel.c user/ed/newcons/sys/geom/geom_vfs.c user/ed/newcons/sys/geom/journal/g_journal.c user/ed/newcons/sys/geom/label/g_label.c user/ed/newcons/sys/geom/label/g_label_gpt.c user/ed/newcons/sys/geom/mirror/g_mirror.c user/ed/newcons/sys/geom/mountver/g_mountver.c user/ed/newcons/sys/geom/multipath/g_multipath.c user/ed/newcons/sys/geom/nop/g_nop.c user/ed/newcons/sys/geom/part/g_part.c user/ed/newcons/sys/geom/part/g_part_apm.c user/ed/newcons/sys/geom/part/g_part_bsd.c user/ed/newcons/sys/geom/part/g_part_ebr.c user/ed/newcons/sys/geom/part/g_part_gpt.c user/ed/newcons/sys/geom/part/g_part_mbr.c user/ed/newcons/sys/geom/part/g_part_pc98.c user/ed/newcons/sys/geom/part/g_part_vtoc8.c user/ed/newcons/sys/geom/raid3/g_raid3.c user/ed/newcons/sys/geom/sched/g_sched.c user/ed/newcons/sys/geom/sched/gs_rr.c user/ed/newcons/sys/geom/shsec/g_shsec.c user/ed/newcons/sys/geom/stripe/g_stripe.c user/ed/newcons/sys/geom/vinum/geom_vinum.c user/ed/newcons/sys/geom/vinum/geom_vinum_drive.c user/ed/newcons/sys/geom/vinum/geom_vinum_events.c user/ed/newcons/sys/geom/vinum/geom_vinum_list.c user/ed/newcons/sys/geom/vinum/geom_vinum_subr.c user/ed/newcons/sys/geom/virstor/g_virstor.c user/ed/newcons/sys/gnu/fs/reiserfs/reiserfs_vfsops.c user/ed/newcons/sys/gnu/fs/xfs/FreeBSD/support/kdb.c user/ed/newcons/sys/gnu/fs/xfs/FreeBSD/xfs_mountops.c user/ed/newcons/sys/gnu/fs/xfs/xfs_dfrag.c user/ed/newcons/sys/i386/Makefile user/ed/newcons/sys/i386/bios/apm.c user/ed/newcons/sys/i386/conf/DEFAULTS user/ed/newcons/sys/i386/conf/GENERIC user/ed/newcons/sys/i386/conf/NOTES user/ed/newcons/sys/i386/conf/PAE user/ed/newcons/sys/i386/conf/XBOX user/ed/newcons/sys/i386/conf/XEN user/ed/newcons/sys/i386/i386/genassym.c user/ed/newcons/sys/i386/i386/identcpu.c user/ed/newcons/sys/i386/i386/initcpu.c user/ed/newcons/sys/i386/i386/intr_machdep.c user/ed/newcons/sys/i386/i386/legacy.c user/ed/newcons/sys/i386/i386/machdep.c user/ed/newcons/sys/i386/i386/minidump_machdep.c user/ed/newcons/sys/i386/i386/mp_machdep.c user/ed/newcons/sys/i386/i386/perfmon.c user/ed/newcons/sys/i386/i386/pmap.c user/ed/newcons/sys/i386/i386/support.s user/ed/newcons/sys/i386/i386/sys_machdep.c user/ed/newcons/sys/i386/i386/trap.c user/ed/newcons/sys/i386/i386/vm_machdep.c user/ed/newcons/sys/i386/ibcs2/ibcs2_fcntl.c user/ed/newcons/sys/i386/ibcs2/ibcs2_ioctl.c user/ed/newcons/sys/i386/ibcs2/ibcs2_ipc.c user/ed/newcons/sys/i386/ibcs2/ibcs2_isc_sysent.c user/ed/newcons/sys/i386/ibcs2/ibcs2_misc.c user/ed/newcons/sys/i386/ibcs2/ibcs2_other.c user/ed/newcons/sys/i386/ibcs2/ibcs2_signal.c user/ed/newcons/sys/i386/ibcs2/ibcs2_socksys.c user/ed/newcons/sys/i386/ibcs2/ibcs2_sysent.c user/ed/newcons/sys/i386/ibcs2/ibcs2_xenix.c user/ed/newcons/sys/i386/ibcs2/ibcs2_xenix.h user/ed/newcons/sys/i386/ibcs2/ibcs2_xenix_sysent.c user/ed/newcons/sys/i386/ibcs2/imgact_coff.c user/ed/newcons/sys/i386/include/_types.h user/ed/newcons/sys/i386/include/atomic.h user/ed/newcons/sys/i386/include/clock.h user/ed/newcons/sys/i386/include/cpu.h user/ed/newcons/sys/i386/include/cpufunc.h user/ed/newcons/sys/i386/include/param.h user/ed/newcons/sys/i386/include/pci_cfgreg.h user/ed/newcons/sys/i386/include/pmap.h user/ed/newcons/sys/i386/include/proc.h user/ed/newcons/sys/i386/include/sf_buf.h user/ed/newcons/sys/i386/include/smp.h user/ed/newcons/sys/i386/include/specialreg.h user/ed/newcons/sys/i386/include/vmparam.h user/ed/newcons/sys/i386/include/xen/xenvar.h user/ed/newcons/sys/i386/isa/prof_machdep.c user/ed/newcons/sys/i386/linux/imgact_linux.c user/ed/newcons/sys/i386/linux/linux_dummy.c user/ed/newcons/sys/i386/linux/linux_machdep.c user/ed/newcons/sys/i386/linux/linux_proto.h user/ed/newcons/sys/i386/linux/linux_syscall.h user/ed/newcons/sys/i386/linux/linux_syscalls.c user/ed/newcons/sys/i386/linux/linux_sysent.c user/ed/newcons/sys/i386/linux/linux_systrace_args.c user/ed/newcons/sys/i386/linux/linux_sysvec.c user/ed/newcons/sys/i386/linux/syscalls.master user/ed/newcons/sys/i386/pci/pci_cfgreg.c user/ed/newcons/sys/i386/xen/clock.c user/ed/newcons/sys/i386/xen/mp_machdep.c user/ed/newcons/sys/i386/xen/mptable.c user/ed/newcons/sys/i386/xen/pmap.c user/ed/newcons/sys/ia64/acpica/acpi_machdep.c user/ed/newcons/sys/ia64/conf/DEFAULTS user/ed/newcons/sys/ia64/conf/GENERIC user/ed/newcons/sys/ia64/conf/NOTES user/ed/newcons/sys/ia64/ia32/ia32_misc.c user/ed/newcons/sys/ia64/ia32/ia32_signal.c user/ed/newcons/sys/ia64/ia32/ia32_trap.c user/ed/newcons/sys/ia64/ia64/busdma_machdep.c user/ed/newcons/sys/ia64/ia64/clock.c user/ed/newcons/sys/ia64/ia64/db_machdep.c user/ed/newcons/sys/ia64/ia64/dump_machdep.c user/ed/newcons/sys/ia64/ia64/efi.c user/ed/newcons/sys/ia64/ia64/exception.S user/ed/newcons/sys/ia64/ia64/genassym.c user/ed/newcons/sys/ia64/ia64/interrupt.c user/ed/newcons/sys/ia64/ia64/locore.S user/ed/newcons/sys/ia64/ia64/machdep.c user/ed/newcons/sys/ia64/ia64/mp_machdep.c user/ed/newcons/sys/ia64/ia64/nexus.c user/ed/newcons/sys/ia64/ia64/pal.S user/ed/newcons/sys/ia64/ia64/pmap.c user/ed/newcons/sys/ia64/ia64/sal.c user/ed/newcons/sys/ia64/ia64/syscall.S user/ed/newcons/sys/ia64/ia64/trap.c user/ed/newcons/sys/ia64/include/_types.h user/ed/newcons/sys/ia64/include/bootinfo.h user/ed/newcons/sys/ia64/include/efi.h user/ed/newcons/sys/ia64/include/ia64_cpu.h user/ed/newcons/sys/ia64/include/param.h user/ed/newcons/sys/ia64/include/pcpu.h user/ed/newcons/sys/ia64/include/pmap.h user/ed/newcons/sys/ia64/include/proc.h user/ed/newcons/sys/ia64/include/sf_buf.h user/ed/newcons/sys/ia64/include/smp.h user/ed/newcons/sys/ia64/include/vmparam.h user/ed/newcons/sys/ia64/isa/isa.c user/ed/newcons/sys/isa/isa_common.c user/ed/newcons/sys/isa/isa_common.h user/ed/newcons/sys/isa/pnp.c user/ed/newcons/sys/isa/syscons_isa.c user/ed/newcons/sys/kern/Make.tags.inc user/ed/newcons/sys/kern/bus_if.m user/ed/newcons/sys/kern/capabilities.conf user/ed/newcons/sys/kern/device_if.m user/ed/newcons/sys/kern/imgact_aout.c user/ed/newcons/sys/kern/imgact_elf.c user/ed/newcons/sys/kern/imgact_gzip.c user/ed/newcons/sys/kern/init_main.c user/ed/newcons/sys/kern/init_sysent.c user/ed/newcons/sys/kern/kern_acct.c user/ed/newcons/sys/kern/kern_clock.c user/ed/newcons/sys/kern/kern_clocksource.c user/ed/newcons/sys/kern/kern_conf.c user/ed/newcons/sys/kern/kern_context.c user/ed/newcons/sys/kern/kern_cpuset.c user/ed/newcons/sys/kern/kern_ctf.c user/ed/newcons/sys/kern/kern_descrip.c user/ed/newcons/sys/kern/kern_environment.c user/ed/newcons/sys/kern/kern_event.c user/ed/newcons/sys/kern/kern_exec.c user/ed/newcons/sys/kern/kern_exit.c user/ed/newcons/sys/kern/kern_fail.c user/ed/newcons/sys/kern/kern_fork.c user/ed/newcons/sys/kern/kern_hhook.c user/ed/newcons/sys/kern/kern_idle.c user/ed/newcons/sys/kern/kern_intr.c user/ed/newcons/sys/kern/kern_jail.c user/ed/newcons/sys/kern/kern_khelp.c user/ed/newcons/sys/kern/kern_kthread.c user/ed/newcons/sys/kern/kern_ktr.c user/ed/newcons/sys/kern/kern_ktrace.c user/ed/newcons/sys/kern/kern_linker.c user/ed/newcons/sys/kern/kern_lock.c user/ed/newcons/sys/kern/kern_loginclass.c user/ed/newcons/sys/kern/kern_malloc.c user/ed/newcons/sys/kern/kern_mib.c user/ed/newcons/sys/kern/kern_module.c user/ed/newcons/sys/kern/kern_ntptime.c user/ed/newcons/sys/kern/kern_pmc.c user/ed/newcons/sys/kern/kern_proc.c user/ed/newcons/sys/kern/kern_prot.c user/ed/newcons/sys/kern/kern_resource.c user/ed/newcons/sys/kern/kern_rmlock.c user/ed/newcons/sys/kern/kern_shutdown.c user/ed/newcons/sys/kern/kern_sig.c user/ed/newcons/sys/kern/kern_synch.c user/ed/newcons/sys/kern/kern_sysctl.c user/ed/newcons/sys/kern/kern_tc.c user/ed/newcons/sys/kern/kern_thr.c user/ed/newcons/sys/kern/kern_thread.c user/ed/newcons/sys/kern/kern_time.c user/ed/newcons/sys/kern/kern_timeout.c user/ed/newcons/sys/kern/kern_umtx.c user/ed/newcons/sys/kern/kern_uuid.c user/ed/newcons/sys/kern/ksched.c user/ed/newcons/sys/kern/link_elf.c user/ed/newcons/sys/kern/link_elf_obj.c user/ed/newcons/sys/kern/makesyscalls.sh user/ed/newcons/sys/kern/p1003_1b.c user/ed/newcons/sys/kern/posix4_mib.c user/ed/newcons/sys/kern/sched_4bsd.c user/ed/newcons/sys/kern/sched_ule.c user/ed/newcons/sys/kern/subr_acl_nfs4.c user/ed/newcons/sys/kern/subr_bus.c user/ed/newcons/sys/kern/subr_devstat.c user/ed/newcons/sys/kern/subr_kdb.c user/ed/newcons/sys/kern/subr_msgbuf.c user/ed/newcons/sys/kern/subr_param.c user/ed/newcons/sys/kern/subr_pcpu.c user/ed/newcons/sys/kern/subr_prf.c user/ed/newcons/sys/kern/subr_prof.c user/ed/newcons/sys/kern/subr_rman.c user/ed/newcons/sys/kern/subr_sbuf.c user/ed/newcons/sys/kern/subr_smp.c user/ed/newcons/sys/kern/subr_taskqueue.c user/ed/newcons/sys/kern/subr_trap.c user/ed/newcons/sys/kern/subr_uio.c user/ed/newcons/sys/kern/sys_capability.c user/ed/newcons/sys/kern/sys_generic.c user/ed/newcons/sys/kern/sys_pipe.c user/ed/newcons/sys/kern/sys_process.c user/ed/newcons/sys/kern/sys_socket.c user/ed/newcons/sys/kern/syscalls.c user/ed/newcons/sys/kern/syscalls.master user/ed/newcons/sys/kern/systrace_args.c user/ed/newcons/sys/kern/sysv_msg.c user/ed/newcons/sys/kern/sysv_sem.c user/ed/newcons/sys/kern/sysv_shm.c user/ed/newcons/sys/kern/tty.c user/ed/newcons/sys/kern/tty_inq.c user/ed/newcons/sys/kern/tty_outq.c user/ed/newcons/sys/kern/tty_pts.c user/ed/newcons/sys/kern/tty_ttydisc.c user/ed/newcons/sys/kern/uipc_mqueue.c user/ed/newcons/sys/kern/uipc_sem.c user/ed/newcons/sys/kern/uipc_shm.c user/ed/newcons/sys/kern/uipc_sockbuf.c user/ed/newcons/sys/kern/uipc_socket.c user/ed/newcons/sys/kern/uipc_syscalls.c user/ed/newcons/sys/kern/uipc_usrreq.c user/ed/newcons/sys/kern/vfs_acl.c user/ed/newcons/sys/kern/vfs_aio.c user/ed/newcons/sys/kern/vfs_bio.c user/ed/newcons/sys/kern/vfs_cache.c user/ed/newcons/sys/kern/vfs_default.c user/ed/newcons/sys/kern/vfs_extattr.c user/ed/newcons/sys/kern/vfs_init.c user/ed/newcons/sys/kern/vfs_lookup.c user/ed/newcons/sys/kern/vfs_mount.c user/ed/newcons/sys/kern/vfs_mountroot.c user/ed/newcons/sys/kern/vfs_subr.c user/ed/newcons/sys/kern/vfs_syscalls.c user/ed/newcons/sys/kern/vfs_vnops.c user/ed/newcons/sys/kern/vnode_if.src user/ed/newcons/sys/kgssapi/gss_impl.c user/ed/newcons/sys/mips/atheros/apb.c user/ed/newcons/sys/mips/atheros/ar71xx_chip.c user/ed/newcons/sys/mips/atheros/ar71xx_cpudef.h user/ed/newcons/sys/mips/atheros/ar71xx_ehci.c user/ed/newcons/sys/mips/atheros/ar71xx_gpio.c user/ed/newcons/sys/mips/atheros/ar71xx_gpiovar.h user/ed/newcons/sys/mips/atheros/ar71xx_machdep.c user/ed/newcons/sys/mips/atheros/ar71xx_ohci.c user/ed/newcons/sys/mips/atheros/ar71xx_pci.c user/ed/newcons/sys/mips/atheros/ar71xx_setup.c user/ed/newcons/sys/mips/atheros/ar724x_chip.c user/ed/newcons/sys/mips/atheros/ar724xreg.h user/ed/newcons/sys/mips/atheros/ar91xx_chip.c user/ed/newcons/sys/mips/atheros/ar91xxreg.h user/ed/newcons/sys/mips/atheros/files.ar71xx user/ed/newcons/sys/mips/atheros/if_arge.c user/ed/newcons/sys/mips/atheros/if_argevar.h user/ed/newcons/sys/mips/cavium/if_octm.c user/ed/newcons/sys/mips/cavium/octe/ethernet-common.c user/ed/newcons/sys/mips/cavium/octe/ethernet.c user/ed/newcons/sys/mips/cavium/octe/octe.c user/ed/newcons/sys/mips/cavium/octeon_ebt3000_cf.c user/ed/newcons/sys/mips/cavium/octeon_mp.c user/ed/newcons/sys/mips/cavium/octeon_pcmap_regs.h user/ed/newcons/sys/mips/conf/ADM5120 user/ed/newcons/sys/mips/conf/ALCHEMY user/ed/newcons/sys/mips/conf/AR71XX user/ed/newcons/sys/mips/conf/IDT user/ed/newcons/sys/mips/conf/MALTA user/ed/newcons/sys/mips/conf/MALTA64 user/ed/newcons/sys/mips/conf/OCTEON1 user/ed/newcons/sys/mips/conf/QEMU user/ed/newcons/sys/mips/conf/SENTRY5 user/ed/newcons/sys/mips/conf/XLR user/ed/newcons/sys/mips/conf/XLR64 user/ed/newcons/sys/mips/conf/XLRN32 user/ed/newcons/sys/mips/conf/std.SWARM user/ed/newcons/sys/mips/idt/if_kr.c user/ed/newcons/sys/mips/include/_types.h user/ed/newcons/sys/mips/include/atomic.h user/ed/newcons/sys/mips/include/bus.h user/ed/newcons/sys/mips/include/cpufunc.h user/ed/newcons/sys/mips/include/hwfunc.h user/ed/newcons/sys/mips/include/intr_machdep.h user/ed/newcons/sys/mips/include/param.h user/ed/newcons/sys/mips/include/pmap.h user/ed/newcons/sys/mips/include/proc.h user/ed/newcons/sys/mips/include/smp.h user/ed/newcons/sys/mips/include/vmparam.h user/ed/newcons/sys/mips/malta/gt_pci.c user/ed/newcons/sys/mips/malta/std.malta user/ed/newcons/sys/mips/mips/cache.c user/ed/newcons/sys/mips/mips/cache_mipsNN.c user/ed/newcons/sys/mips/mips/cpu.c user/ed/newcons/sys/mips/mips/dump_machdep.c user/ed/newcons/sys/mips/mips/elf64_machdep.c user/ed/newcons/sys/mips/mips/elf_machdep.c user/ed/newcons/sys/mips/mips/elf_trampoline.c user/ed/newcons/sys/mips/mips/exception.S user/ed/newcons/sys/mips/mips/genassym.c user/ed/newcons/sys/mips/mips/locore.S user/ed/newcons/sys/mips/mips/machdep.c user/ed/newcons/sys/mips/mips/mainbus.c user/ed/newcons/sys/mips/mips/mp_machdep.c user/ed/newcons/sys/mips/mips/nexus.c user/ed/newcons/sys/mips/mips/pm_machdep.c user/ed/newcons/sys/mips/mips/pmap.c user/ed/newcons/sys/mips/mips/trap.c user/ed/newcons/sys/mips/rmi/dev/xlr/rge.c user/ed/newcons/sys/mips/rmi/fmn.c user/ed/newcons/sys/mips/rmi/iodi.c user/ed/newcons/sys/mips/rmi/xlr_machdep.c user/ed/newcons/sys/mips/rmi/xlr_pci.c user/ed/newcons/sys/mips/rmi/xls_ehci.c user/ed/newcons/sys/mips/sentry5/s5_machdep.c user/ed/newcons/sys/mips/sibyte/sb_machdep.c user/ed/newcons/sys/mips/sibyte/sb_scd.c user/ed/newcons/sys/modules/Makefile user/ed/newcons/sys/modules/acpi/acpi/Makefile user/ed/newcons/sys/modules/arcnet/Makefile user/ed/newcons/sys/modules/ath/Makefile user/ed/newcons/sys/modules/bxe/Makefile user/ed/newcons/sys/modules/cam/Makefile user/ed/newcons/sys/modules/dcons/Makefile user/ed/newcons/sys/modules/dtrace/Makefile user/ed/newcons/sys/modules/dtrace/dtraceall/Makefile user/ed/newcons/sys/modules/dtrace/dtraceall/dtraceall.c user/ed/newcons/sys/modules/dtrace/systrace_linux32/Makefile user/ed/newcons/sys/modules/ext2fs/Makefile user/ed/newcons/sys/modules/firewire/fwip/Makefile user/ed/newcons/sys/modules/geom/Makefile user/ed/newcons/sys/modules/geom/geom_eli/Makefile user/ed/newcons/sys/modules/if_carp/Makefile user/ed/newcons/sys/modules/ipdivert/Makefile user/ed/newcons/sys/modules/ipfw/Makefile user/ed/newcons/sys/modules/iwnfw/Makefile user/ed/newcons/sys/modules/iwnfw/iwn1000/Makefile user/ed/newcons/sys/modules/iwnfw/iwn5000/Makefile user/ed/newcons/sys/modules/iwnfw/iwn6050/Makefile user/ed/newcons/sys/modules/kgssapi_krb5/Makefile user/ed/newcons/sys/modules/mem/Makefile user/ed/newcons/sys/modules/mii/Makefile user/ed/newcons/sys/modules/netgraph/atm/ccatm/Makefile user/ed/newcons/sys/modules/netgraph/ipfw/Makefile user/ed/newcons/sys/modules/nfscl/Makefile user/ed/newcons/sys/modules/nfsclient/Makefile user/ed/newcons/sys/modules/nfscommon/Makefile user/ed/newcons/sys/modules/pf/Makefile user/ed/newcons/sys/modules/pflog/Makefile user/ed/newcons/sys/modules/portalfs/Makefile user/ed/newcons/sys/modules/sio/Makefile user/ed/newcons/sys/modules/uart/Makefile user/ed/newcons/sys/modules/usb/Makefile user/ed/newcons/sys/modules/usb/template/Makefile user/ed/newcons/sys/modules/wlan/Makefile user/ed/newcons/sys/net/bpf.c user/ed/newcons/sys/net/bpf_filter.c user/ed/newcons/sys/net/bridgestp.c user/ed/newcons/sys/net/bridgestp.h user/ed/newcons/sys/net/if.c user/ed/newcons/sys/net/if.h user/ed/newcons/sys/net/if_arcsubr.c user/ed/newcons/sys/net/if_atmsubr.c user/ed/newcons/sys/net/if_bridge.c user/ed/newcons/sys/net/if_debug.c user/ed/newcons/sys/net/if_enc.c user/ed/newcons/sys/net/if_epair.c user/ed/newcons/sys/net/if_ethersubr.c user/ed/newcons/sys/net/if_fddisubr.c user/ed/newcons/sys/net/if_fwsubr.c user/ed/newcons/sys/net/if_gif.c user/ed/newcons/sys/net/if_gre.c user/ed/newcons/sys/net/if_gre.h user/ed/newcons/sys/net/if_iso88025subr.c user/ed/newcons/sys/net/if_lagg.c user/ed/newcons/sys/net/if_llatbl.c user/ed/newcons/sys/net/if_llatbl.h user/ed/newcons/sys/net/if_media.h user/ed/newcons/sys/net/if_spppfr.c user/ed/newcons/sys/net/if_spppsubr.c user/ed/newcons/sys/net/if_stf.c user/ed/newcons/sys/net/if_tap.c user/ed/newcons/sys/net/if_tun.c user/ed/newcons/sys/net/if_var.h user/ed/newcons/sys/net/netisr.c user/ed/newcons/sys/net/netisr.h user/ed/newcons/sys/net/netisr_internal.h user/ed/newcons/sys/net/radix.h user/ed/newcons/sys/net/radix_mpath.c user/ed/newcons/sys/net/raw_cb.h user/ed/newcons/sys/net/raw_usrreq.c user/ed/newcons/sys/net/route.c user/ed/newcons/sys/net/route.h user/ed/newcons/sys/net/rtsock.c user/ed/newcons/sys/net80211/_ieee80211.h user/ed/newcons/sys/net80211/ieee80211_acl.c user/ed/newcons/sys/net80211/ieee80211_adhoc.c user/ed/newcons/sys/net80211/ieee80211_ageq.c user/ed/newcons/sys/net80211/ieee80211_dfs.c user/ed/newcons/sys/net80211/ieee80211_hostap.c user/ed/newcons/sys/net80211/ieee80211_ht.c user/ed/newcons/sys/net80211/ieee80211_input.c user/ed/newcons/sys/net80211/ieee80211_input.h user/ed/newcons/sys/net80211/ieee80211_ioctl.c user/ed/newcons/sys/net80211/ieee80211_ioctl.h user/ed/newcons/sys/net80211/ieee80211_mesh.c user/ed/newcons/sys/net80211/ieee80211_node.c user/ed/newcons/sys/net80211/ieee80211_node.h user/ed/newcons/sys/net80211/ieee80211_output.c user/ed/newcons/sys/net80211/ieee80211_power.c user/ed/newcons/sys/net80211/ieee80211_proto.c user/ed/newcons/sys/net80211/ieee80211_proto.h user/ed/newcons/sys/net80211/ieee80211_scan_sta.c user/ed/newcons/sys/net80211/ieee80211_sta.c user/ed/newcons/sys/net80211/ieee80211_tdma.c user/ed/newcons/sys/net80211/ieee80211_var.h user/ed/newcons/sys/net80211/ieee80211_wds.c user/ed/newcons/sys/netgraph/atm/ccatm/ng_ccatm.c user/ed/newcons/sys/netgraph/atm/sscfu/ng_sscfu.c user/ed/newcons/sys/netgraph/atm/sscop/ng_sscop.c user/ed/newcons/sys/netgraph/atm/uni/ng_uni.c user/ed/newcons/sys/netgraph/bluetooth/drivers/ubt/ng_ubt.c user/ed/newcons/sys/netgraph/bluetooth/drivers/ubtbcmfw/ubtbcmfw.c user/ed/newcons/sys/netgraph/bluetooth/hci/ng_hci_main.c user/ed/newcons/sys/netgraph/bluetooth/l2cap/ng_l2cap_main.c user/ed/newcons/sys/netgraph/netflow/netflow.c user/ed/newcons/sys/netgraph/netflow/netflow_v9.c user/ed/newcons/sys/netgraph/netflow/ng_netflow.c user/ed/newcons/sys/netgraph/netflow/ng_netflow.h user/ed/newcons/sys/netgraph/netgraph.h user/ed/newcons/sys/netgraph/ng_UI.c user/ed/newcons/sys/netgraph/ng_async.c user/ed/newcons/sys/netgraph/ng_atmllc.c user/ed/newcons/sys/netgraph/ng_base.c user/ed/newcons/sys/netgraph/ng_bridge.c user/ed/newcons/sys/netgraph/ng_car.c user/ed/newcons/sys/netgraph/ng_cisco.c user/ed/newcons/sys/netgraph/ng_device.c user/ed/newcons/sys/netgraph/ng_eiface.c user/ed/newcons/sys/netgraph/ng_etf.c user/ed/newcons/sys/netgraph/ng_ether.c user/ed/newcons/sys/netgraph/ng_fec.c user/ed/newcons/sys/netgraph/ng_frame_relay.c user/ed/newcons/sys/netgraph/ng_gif_demux.c user/ed/newcons/sys/netgraph/ng_hub.c user/ed/newcons/sys/netgraph/ng_iface.c user/ed/newcons/sys/netgraph/ng_ipfw.c user/ed/newcons/sys/netgraph/ng_ksocket.c user/ed/newcons/sys/netgraph/ng_l2tp.c user/ed/newcons/sys/netgraph/ng_lmi.c user/ed/newcons/sys/netgraph/ng_mppc.c user/ed/newcons/sys/netgraph/ng_nat.c user/ed/newcons/sys/netgraph/ng_one2many.c user/ed/newcons/sys/netgraph/ng_parse.c user/ed/newcons/sys/netgraph/ng_patch.c user/ed/newcons/sys/netgraph/ng_pipe.c user/ed/newcons/sys/netgraph/ng_ppp.c user/ed/newcons/sys/netgraph/ng_pppoe.c user/ed/newcons/sys/netgraph/ng_pptpgre.c user/ed/newcons/sys/netgraph/ng_rfc1490.c user/ed/newcons/sys/netgraph/ng_sample.c user/ed/newcons/sys/netgraph/ng_socket.c user/ed/newcons/sys/netgraph/ng_source.c user/ed/newcons/sys/netgraph/ng_split.c user/ed/newcons/sys/netgraph/ng_sppp.c user/ed/newcons/sys/netgraph/ng_tee.c user/ed/newcons/sys/netgraph/ng_tty.c user/ed/newcons/sys/netgraph/ng_vjc.c user/ed/newcons/sys/netgraph/ng_vlan.c user/ed/newcons/sys/netinet/cc.h user/ed/newcons/sys/netinet/cc/cc.c user/ed/newcons/sys/netinet/cc/cc_chd.c user/ed/newcons/sys/netinet/cc/cc_cubic.c user/ed/newcons/sys/netinet/cc/cc_cubic.h user/ed/newcons/sys/netinet/cc/cc_hd.c user/ed/newcons/sys/netinet/cc/cc_htcp.c user/ed/newcons/sys/netinet/cc/cc_module.h user/ed/newcons/sys/netinet/cc/cc_newreno.c user/ed/newcons/sys/netinet/cc/cc_vegas.c user/ed/newcons/sys/netinet/icmp6.h user/ed/newcons/sys/netinet/if_ether.c user/ed/newcons/sys/netinet/in.c user/ed/newcons/sys/netinet/in_gif.c user/ed/newcons/sys/netinet/in_pcb.c user/ed/newcons/sys/netinet/in_pcb.h user/ed/newcons/sys/netinet/in_proto.c user/ed/newcons/sys/netinet/in_var.h user/ed/newcons/sys/netinet/ip_carp.c user/ed/newcons/sys/netinet/ip_divert.c user/ed/newcons/sys/netinet/ip_fw.h user/ed/newcons/sys/netinet/ip_icmp.c user/ed/newcons/sys/netinet/ip_input.c user/ed/newcons/sys/netinet/ip_ipsec.c user/ed/newcons/sys/netinet/ip_output.c user/ed/newcons/sys/netinet/ip_var.h user/ed/newcons/sys/netinet/ipfw/ip_dn_glue.c user/ed/newcons/sys/netinet/ipfw/ip_dn_io.c user/ed/newcons/sys/netinet/ipfw/ip_dummynet.c user/ed/newcons/sys/netinet/ipfw/ip_fw2.c user/ed/newcons/sys/netinet/ipfw/ip_fw_dynamic.c user/ed/newcons/sys/netinet/ipfw/ip_fw_log.c user/ed/newcons/sys/netinet/ipfw/ip_fw_nat.c user/ed/newcons/sys/netinet/ipfw/ip_fw_pfil.c user/ed/newcons/sys/netinet/ipfw/ip_fw_private.h user/ed/newcons/sys/netinet/ipfw/ip_fw_sockopt.c user/ed/newcons/sys/netinet/ipfw/ip_fw_table.c user/ed/newcons/sys/netinet/khelp/h_ertt.c user/ed/newcons/sys/netinet/khelp/h_ertt.h user/ed/newcons/sys/netinet/libalias/alias.h user/ed/newcons/sys/netinet/libalias/alias_db.c user/ed/newcons/sys/netinet/libalias/alias_ftp.c user/ed/newcons/sys/netinet/libalias/alias_local.h user/ed/newcons/sys/netinet/libalias/alias_sctp.h user/ed/newcons/sys/netinet/libalias/libalias.3 user/ed/newcons/sys/netinet/raw_ip.c user/ed/newcons/sys/netinet/sctp.h user/ed/newcons/sys/netinet/sctp_asconf.c user/ed/newcons/sys/netinet/sctp_auth.c user/ed/newcons/sys/netinet/sctp_auth.h user/ed/newcons/sys/netinet/sctp_bsd_addr.c user/ed/newcons/sys/netinet/sctp_cc_functions.c user/ed/newcons/sys/netinet/sctp_constants.h user/ed/newcons/sys/netinet/sctp_header.h user/ed/newcons/sys/netinet/sctp_indata.c user/ed/newcons/sys/netinet/sctp_indata.h user/ed/newcons/sys/netinet/sctp_input.c user/ed/newcons/sys/netinet/sctp_input.h user/ed/newcons/sys/netinet/sctp_output.c user/ed/newcons/sys/netinet/sctp_output.h user/ed/newcons/sys/netinet/sctp_pcb.c user/ed/newcons/sys/netinet/sctp_pcb.h user/ed/newcons/sys/netinet/sctp_structs.h user/ed/newcons/sys/netinet/sctp_sysctl.c user/ed/newcons/sys/netinet/sctp_sysctl.h user/ed/newcons/sys/netinet/sctp_timer.c user/ed/newcons/sys/netinet/sctp_timer.h user/ed/newcons/sys/netinet/sctp_uio.h user/ed/newcons/sys/netinet/sctp_usrreq.c user/ed/newcons/sys/netinet/sctp_var.h user/ed/newcons/sys/netinet/sctputil.c user/ed/newcons/sys/netinet/sctputil.h user/ed/newcons/sys/netinet/siftr.c user/ed/newcons/sys/netinet/tcp_input.c user/ed/newcons/sys/netinet/tcp_lro.c user/ed/newcons/sys/netinet/tcp_output.c user/ed/newcons/sys/netinet/tcp_reass.c user/ed/newcons/sys/netinet/tcp_sack.c user/ed/newcons/sys/netinet/tcp_subr.c user/ed/newcons/sys/netinet/tcp_syncache.c user/ed/newcons/sys/netinet/tcp_syncache.h user/ed/newcons/sys/netinet/tcp_timer.c user/ed/newcons/sys/netinet/tcp_timewait.c user/ed/newcons/sys/netinet/tcp_usrreq.c user/ed/newcons/sys/netinet/tcp_var.h user/ed/newcons/sys/netinet/udp_usrreq.c user/ed/newcons/sys/netinet6/icmp6.c user/ed/newcons/sys/netinet6/in6.c user/ed/newcons/sys/netinet6/in6.h user/ed/newcons/sys/netinet6/in6_gif.c user/ed/newcons/sys/netinet6/in6_pcb.c user/ed/newcons/sys/netinet6/in6_pcb.h user/ed/newcons/sys/netinet6/in6_proto.c user/ed/newcons/sys/netinet6/in6_src.c user/ed/newcons/sys/netinet6/ip6_forward.c user/ed/newcons/sys/netinet6/ip6_input.c user/ed/newcons/sys/netinet6/ip6_ipsec.c user/ed/newcons/sys/netinet6/ip6_output.c user/ed/newcons/sys/netinet6/ip6_var.h user/ed/newcons/sys/netinet6/mld6.c user/ed/newcons/sys/netinet6/nd6.c user/ed/newcons/sys/netinet6/nd6.h user/ed/newcons/sys/netinet6/nd6_nbr.c user/ed/newcons/sys/netinet6/nd6_rtr.c user/ed/newcons/sys/netinet6/sctp6_usrreq.c user/ed/newcons/sys/netinet6/send.h user/ed/newcons/sys/netinet6/udp6_usrreq.c user/ed/newcons/sys/netipsec/ipsec.h user/ed/newcons/sys/netipsec/ipsec_input.c user/ed/newcons/sys/netipsec/ipsec_output.c user/ed/newcons/sys/netipsec/key.c user/ed/newcons/sys/netipsec/key.h user/ed/newcons/sys/netipsec/xform.h user/ed/newcons/sys/netipsec/xform_ah.c user/ed/newcons/sys/netipsec/xform_esp.c user/ed/newcons/sys/netipsec/xform_ipcomp.c user/ed/newcons/sys/netipsec/xform_ipip.c user/ed/newcons/sys/nfs/nfs_common.c user/ed/newcons/sys/nfs/nfs_nfssvc.c user/ed/newcons/sys/nfs/nfssvc.h user/ed/newcons/sys/nfsclient/nfs.h user/ed/newcons/sys/nfsclient/nfs_bio.c user/ed/newcons/sys/nfsclient/nfs_kdtrace.c user/ed/newcons/sys/nfsclient/nfs_krpc.c user/ed/newcons/sys/nfsclient/nfs_nfsiod.c user/ed/newcons/sys/nfsclient/nfs_node.c user/ed/newcons/sys/nfsclient/nfs_subs.c user/ed/newcons/sys/nfsclient/nfs_vfsops.c user/ed/newcons/sys/nfsclient/nfs_vnops.c user/ed/newcons/sys/nfsclient/nfsargs.h user/ed/newcons/sys/nfsclient/nfsnode.h user/ed/newcons/sys/nfsserver/nfs_serv.c user/ed/newcons/sys/nfsserver/nfs_srvkrpc.c user/ed/newcons/sys/nfsserver/nfs_srvsubs.c user/ed/newcons/sys/nlm/nlm_prot_impl.c user/ed/newcons/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_cm.c user/ed/newcons/sys/ofed/drivers/infiniband/ulp/ipoib/ipoib_main.c user/ed/newcons/sys/ofed/drivers/net/mlx4/en_cq.c user/ed/newcons/sys/ofed/drivers/net/mlx4/en_ethtool.c user/ed/newcons/sys/ofed/drivers/net/mlx4/en_netdev.c user/ed/newcons/sys/ofed/drivers/net/mlx4/en_port.c user/ed/newcons/sys/ofed/drivers/net/mlx4/fw.c user/ed/newcons/sys/ofed/drivers/net/mlx4/fw.h user/ed/newcons/sys/ofed/drivers/net/mlx4/main.c user/ed/newcons/sys/ofed/drivers/net/mlx4/mlx4_en.h user/ed/newcons/sys/ofed/include/linux/file.h user/ed/newcons/sys/ofed/include/linux/linux_compat.c user/ed/newcons/sys/ofed/include/linux/list.h user/ed/newcons/sys/ofed/include/linux/mlx4/device.h user/ed/newcons/sys/ofed/include/linux/pci.h user/ed/newcons/sys/ofed/include/linux/workqueue.h user/ed/newcons/sys/opencrypto/cryptodev.c user/ed/newcons/sys/pc98/cbus/pckbd.c user/ed/newcons/sys/pc98/cbus/sio.c user/ed/newcons/sys/pc98/cbus/syscons_cbus.c user/ed/newcons/sys/pc98/conf/DEFAULTS user/ed/newcons/sys/pc98/conf/GENERIC user/ed/newcons/sys/pc98/pc98/machdep.c user/ed/newcons/sys/pci/if_rl.c user/ed/newcons/sys/pci/if_rlreg.h user/ed/newcons/sys/powerpc/aim/copyinout.c user/ed/newcons/sys/powerpc/aim/interrupt.c user/ed/newcons/sys/powerpc/aim/locore32.S user/ed/newcons/sys/powerpc/aim/locore64.S user/ed/newcons/sys/powerpc/aim/machdep.c user/ed/newcons/sys/powerpc/aim/mmu_oea.c user/ed/newcons/sys/powerpc/aim/mmu_oea64.c user/ed/newcons/sys/powerpc/aim/moea64_native.c user/ed/newcons/sys/powerpc/aim/mp_cpudep.c user/ed/newcons/sys/powerpc/aim/slb.c user/ed/newcons/sys/powerpc/aim/swtch32.S user/ed/newcons/sys/powerpc/aim/swtch64.S user/ed/newcons/sys/powerpc/aim/trap.c user/ed/newcons/sys/powerpc/aim/trap_subr32.S user/ed/newcons/sys/powerpc/aim/trap_subr64.S user/ed/newcons/sys/powerpc/booke/copyinout.c user/ed/newcons/sys/powerpc/booke/interrupt.c user/ed/newcons/sys/powerpc/booke/locore.S user/ed/newcons/sys/powerpc/booke/machdep.c user/ed/newcons/sys/powerpc/booke/platform_bare.c user/ed/newcons/sys/powerpc/booke/pmap.c user/ed/newcons/sys/powerpc/booke/trap.c user/ed/newcons/sys/powerpc/conf/GENERIC user/ed/newcons/sys/powerpc/conf/GENERIC64 user/ed/newcons/sys/powerpc/conf/MPC85XX user/ed/newcons/sys/powerpc/conf/NOTES user/ed/newcons/sys/powerpc/include/_types.h user/ed/newcons/sys/powerpc/include/atomic.h user/ed/newcons/sys/powerpc/include/openpicvar.h user/ed/newcons/sys/powerpc/include/param.h user/ed/newcons/sys/powerpc/include/pcpu.h user/ed/newcons/sys/powerpc/include/pmap.h user/ed/newcons/sys/powerpc/include/proc.h user/ed/newcons/sys/powerpc/include/slb.h user/ed/newcons/sys/powerpc/include/smp.h user/ed/newcons/sys/powerpc/include/spr.h user/ed/newcons/sys/powerpc/include/vmparam.h user/ed/newcons/sys/powerpc/mambo/mambo_console.c user/ed/newcons/sys/powerpc/mpc85xx/atpic.c user/ed/newcons/sys/powerpc/mpc85xx/isa.c user/ed/newcons/sys/powerpc/mpc85xx/mpc85xx.c user/ed/newcons/sys/powerpc/mpc85xx/mpc85xx.h user/ed/newcons/sys/powerpc/mpc85xx/openpic_fdt.c user/ed/newcons/sys/powerpc/ofw/ofw_machdep.c user/ed/newcons/sys/powerpc/ofw/ofw_real.c user/ed/newcons/sys/powerpc/powermac/fcu.c user/ed/newcons/sys/powerpc/powermac/macio.c user/ed/newcons/sys/powerpc/powermac/maciovar.h user/ed/newcons/sys/powerpc/powermac/smu.c user/ed/newcons/sys/powerpc/powermac/smusat.c user/ed/newcons/sys/powerpc/powerpc/db_trace.c user/ed/newcons/sys/powerpc/powerpc/dump_machdep.c user/ed/newcons/sys/powerpc/powerpc/exec_machdep.c user/ed/newcons/sys/powerpc/powerpc/intr_machdep.c user/ed/newcons/sys/powerpc/powerpc/mmu_if.m user/ed/newcons/sys/powerpc/powerpc/mp_machdep.c user/ed/newcons/sys/powerpc/powerpc/openpic.c user/ed/newcons/sys/powerpc/powerpc/pic_if.m user/ed/newcons/sys/powerpc/powerpc/platform.c user/ed/newcons/sys/powerpc/ps3/if_glc.c user/ed/newcons/sys/powerpc/ps3/ps3-hvcall.h user/ed/newcons/sys/powerpc/ps3/ps3-hvcall.master user/ed/newcons/sys/powerpc/ps3/ps3bus.c user/ed/newcons/sys/powerpc/ps3/ps3bus.h user/ed/newcons/sys/powerpc/ps3/ps3pic.c user/ed/newcons/sys/rpc/clnt.h user/ed/newcons/sys/rpc/clnt_dg.c user/ed/newcons/sys/rpc/clnt_rc.c user/ed/newcons/sys/rpc/clnt_vc.c user/ed/newcons/sys/rpc/rpc_generic.c user/ed/newcons/sys/rpc/rpcb_clnt.c user/ed/newcons/sys/rpc/rpcsec_gss.h user/ed/newcons/sys/rpc/rpcsec_gss/svc_rpcsec_gss.c user/ed/newcons/sys/security/audit/audit.h user/ed/newcons/sys/security/audit/audit_arg.c user/ed/newcons/sys/security/audit/audit_bsm.c user/ed/newcons/sys/security/audit/audit_pipe.c user/ed/newcons/sys/security/audit/audit_private.h user/ed/newcons/sys/security/audit/audit_syscalls.c user/ed/newcons/sys/security/mac/mac_framework.h user/ed/newcons/sys/security/mac/mac_policy.h user/ed/newcons/sys/security/mac/mac_posix_sem.c user/ed/newcons/sys/security/mac/mac_posix_shm.c user/ed/newcons/sys/security/mac/mac_syscalls.c user/ed/newcons/sys/security/mac_biba/mac_biba.c user/ed/newcons/sys/security/mac_mls/mac_mls.c user/ed/newcons/sys/security/mac_stub/mac_stub.c user/ed/newcons/sys/security/mac_test/mac_test.c user/ed/newcons/sys/sparc64/central/central.c user/ed/newcons/sys/sparc64/conf/DEFAULTS user/ed/newcons/sys/sparc64/conf/GENERIC user/ed/newcons/sys/sparc64/ebus/ebus.c user/ed/newcons/sys/sparc64/fhc/fhc.c user/ed/newcons/sys/sparc64/include/_types.h user/ed/newcons/sys/sparc64/include/asmacros.h user/ed/newcons/sys/sparc64/include/atomic.h user/ed/newcons/sys/sparc64/include/bus.h user/ed/newcons/sys/sparc64/include/bus_private.h user/ed/newcons/sys/sparc64/include/cache.h user/ed/newcons/sys/sparc64/include/cpu.h user/ed/newcons/sys/sparc64/include/cpufunc.h user/ed/newcons/sys/sparc64/include/ktr.h user/ed/newcons/sys/sparc64/include/param.h user/ed/newcons/sys/sparc64/include/pmap.h user/ed/newcons/sys/sparc64/include/proc.h user/ed/newcons/sys/sparc64/include/smp.h user/ed/newcons/sys/sparc64/include/tlb.h user/ed/newcons/sys/sparc64/include/tsb.h user/ed/newcons/sys/sparc64/include/vmparam.h user/ed/newcons/sys/sparc64/isa/isa.c user/ed/newcons/sys/sparc64/pci/apb.c user/ed/newcons/sys/sparc64/pci/fire.c user/ed/newcons/sys/sparc64/pci/firevar.h user/ed/newcons/sys/sparc64/pci/ofw_pci.h user/ed/newcons/sys/sparc64/pci/ofw_pci_if.m user/ed/newcons/sys/sparc64/pci/ofw_pcib.c user/ed/newcons/sys/sparc64/pci/ofw_pcib_subr.c user/ed/newcons/sys/sparc64/pci/ofw_pcibus.c user/ed/newcons/sys/sparc64/pci/psycho.c user/ed/newcons/sys/sparc64/pci/psychovar.h user/ed/newcons/sys/sparc64/pci/sbbc.c user/ed/newcons/sys/sparc64/pci/schizo.c user/ed/newcons/sys/sparc64/pci/schizoreg.h user/ed/newcons/sys/sparc64/pci/schizovar.h user/ed/newcons/sys/sparc64/sbus/dma_sbus.c user/ed/newcons/sys/sparc64/sbus/lsi64854.c user/ed/newcons/sys/sparc64/sbus/ofw_sbus.h user/ed/newcons/sys/sparc64/sbus/sbus.c user/ed/newcons/sys/sparc64/sparc64/autoconf.c user/ed/newcons/sys/sparc64/sparc64/bus_machdep.c user/ed/newcons/sys/sparc64/sparc64/cache.c user/ed/newcons/sys/sparc64/sparc64/cheetah.c user/ed/newcons/sys/sparc64/sparc64/counter.c user/ed/newcons/sys/sparc64/sparc64/dump_machdep.c user/ed/newcons/sys/sparc64/sparc64/eeprom.c user/ed/newcons/sys/sparc64/sparc64/exception.S user/ed/newcons/sys/sparc64/sparc64/genassym.c user/ed/newcons/sys/sparc64/sparc64/interrupt.S user/ed/newcons/sys/sparc64/sparc64/intr_machdep.c user/ed/newcons/sys/sparc64/sparc64/iommu.c user/ed/newcons/sys/sparc64/sparc64/machdep.c user/ed/newcons/sys/sparc64/sparc64/mem.c user/ed/newcons/sys/sparc64/sparc64/mp_exception.S user/ed/newcons/sys/sparc64/sparc64/mp_locore.S user/ed/newcons/sys/sparc64/sparc64/mp_machdep.c user/ed/newcons/sys/sparc64/sparc64/nexus.c user/ed/newcons/sys/sparc64/sparc64/pmap.c user/ed/newcons/sys/sparc64/sparc64/spitfire.c user/ed/newcons/sys/sparc64/sparc64/swtch.S user/ed/newcons/sys/sparc64/sparc64/sys_machdep.c user/ed/newcons/sys/sparc64/sparc64/tick.c user/ed/newcons/sys/sparc64/sparc64/tlb.c user/ed/newcons/sys/sparc64/sparc64/trap.c user/ed/newcons/sys/sparc64/sparc64/tsb.c user/ed/newcons/sys/sparc64/sparc64/upa.c user/ed/newcons/sys/sparc64/sparc64/vm_machdep.c user/ed/newcons/sys/sparc64/sparc64/zeus.c user/ed/newcons/sys/sys/_rmlock.h user/ed/newcons/sys/sys/_types.h user/ed/newcons/sys/sys/acl.h user/ed/newcons/sys/sys/ata.h user/ed/newcons/sys/sys/buf.h user/ed/newcons/sys/sys/bus.h user/ed/newcons/sys/sys/callout.h user/ed/newcons/sys/sys/capability.h user/ed/newcons/sys/sys/conf.h user/ed/newcons/sys/sys/cpuset.h user/ed/newcons/sys/sys/disk.h user/ed/newcons/sys/sys/diskmbr.h user/ed/newcons/sys/sys/diskpc98.h user/ed/newcons/sys/sys/dtrace_bsd.h user/ed/newcons/sys/sys/elf_common.h user/ed/newcons/sys/sys/errno.h user/ed/newcons/sys/sys/eventhandler.h user/ed/newcons/sys/sys/fcntl.h user/ed/newcons/sys/sys/file.h user/ed/newcons/sys/sys/filedesc.h user/ed/newcons/sys/sys/hhook.h user/ed/newcons/sys/sys/interrupt.h user/ed/newcons/sys/sys/jail.h user/ed/newcons/sys/sys/kbio.h user/ed/newcons/sys/sys/kdb.h user/ed/newcons/sys/sys/kernel.h user/ed/newcons/sys/sys/khelp.h user/ed/newcons/sys/sys/ktr.h user/ed/newcons/sys/sys/libkern.h user/ed/newcons/sys/sys/loginclass.h user/ed/newcons/sys/sys/mbuf.h user/ed/newcons/sys/sys/module_khelp.h user/ed/newcons/sys/sys/mount.h user/ed/newcons/sys/sys/msg.h user/ed/newcons/sys/sys/msgbuf.h user/ed/newcons/sys/sys/namei.h user/ed/newcons/sys/sys/param.h user/ed/newcons/sys/sys/pcpu.h user/ed/newcons/sys/sys/pipe.h user/ed/newcons/sys/sys/pmckern.h user/ed/newcons/sys/sys/posix4.h user/ed/newcons/sys/sys/priority.h user/ed/newcons/sys/sys/priv.h user/ed/newcons/sys/sys/proc.h user/ed/newcons/sys/sys/queue.h user/ed/newcons/sys/sys/resourcevar.h user/ed/newcons/sys/sys/rman.h user/ed/newcons/sys/sys/sbuf.h user/ed/newcons/sys/sys/selinfo.h user/ed/newcons/sys/sys/sem.h user/ed/newcons/sys/sys/shm.h user/ed/newcons/sys/sys/signalvar.h user/ed/newcons/sys/sys/smp.h user/ed/newcons/sys/sys/sockbuf.h user/ed/newcons/sys/sys/socket.h user/ed/newcons/sys/sys/sockio.h user/ed/newcons/sys/sys/soundcard.h user/ed/newcons/sys/sys/stddef.h user/ed/newcons/sys/sys/stdint.h user/ed/newcons/sys/sys/syscall.h user/ed/newcons/sys/sys/syscall.mk user/ed/newcons/sys/sys/syscallsubr.h user/ed/newcons/sys/sys/sysctl.h user/ed/newcons/sys/sys/sysent.h user/ed/newcons/sys/sys/sysproto.h user/ed/newcons/sys/sys/systm.h user/ed/newcons/sys/sys/taskqueue.h user/ed/newcons/sys/sys/timetc.h user/ed/newcons/sys/sys/tty.h user/ed/newcons/sys/sys/ttydevsw.h user/ed/newcons/sys/sys/types.h user/ed/newcons/sys/sys/uio.h user/ed/newcons/sys/sys/unistd.h user/ed/newcons/sys/sys/user.h user/ed/newcons/sys/sys/vnode.h user/ed/newcons/sys/sys/watchdog.h user/ed/newcons/sys/teken/gensequences user/ed/newcons/sys/teken/teken.c user/ed/newcons/sys/teken/teken.h user/ed/newcons/sys/teken/teken_subr.h user/ed/newcons/sys/tools/fw_stub.awk user/ed/newcons/sys/ufs/ffs/ffs_alloc.c user/ed/newcons/sys/ufs/ffs/ffs_balloc.c user/ed/newcons/sys/ufs/ffs/ffs_extern.h user/ed/newcons/sys/ufs/ffs/ffs_inode.c user/ed/newcons/sys/ufs/ffs/ffs_snapshot.c user/ed/newcons/sys/ufs/ffs/ffs_softdep.c user/ed/newcons/sys/ufs/ffs/ffs_vfsops.c user/ed/newcons/sys/ufs/ffs/ffs_vnops.c user/ed/newcons/sys/ufs/ffs/fs.h user/ed/newcons/sys/ufs/ffs/softdep.h user/ed/newcons/sys/ufs/ufs/inode.h user/ed/newcons/sys/ufs/ufs/quota.h user/ed/newcons/sys/ufs/ufs/ufs_extattr.c user/ed/newcons/sys/ufs/ufs/ufs_extern.h user/ed/newcons/sys/ufs/ufs/ufs_inode.c user/ed/newcons/sys/ufs/ufs/ufs_lookup.c user/ed/newcons/sys/ufs/ufs/ufs_quota.c user/ed/newcons/sys/ufs/ufs/ufs_vfsops.c user/ed/newcons/sys/ufs/ufs/ufs_vnops.c user/ed/newcons/sys/ufs/ufs/ufsmount.h user/ed/newcons/sys/vm/device_pager.c user/ed/newcons/sys/vm/swap_pager.c user/ed/newcons/sys/vm/swap_pager.h user/ed/newcons/sys/vm/uma_core.c user/ed/newcons/sys/vm/uma_int.h user/ed/newcons/sys/vm/vm_contig.c user/ed/newcons/sys/vm/vm_extern.h user/ed/newcons/sys/vm/vm_fault.c user/ed/newcons/sys/vm/vm_glue.c user/ed/newcons/sys/vm/vm_kern.c user/ed/newcons/sys/vm/vm_map.c user/ed/newcons/sys/vm/vm_meter.c user/ed/newcons/sys/vm/vm_mmap.c user/ed/newcons/sys/vm/vm_object.c user/ed/newcons/sys/vm/vm_object.h user/ed/newcons/sys/vm/vm_page.c user/ed/newcons/sys/vm/vm_page.h user/ed/newcons/sys/vm/vm_pageout.c user/ed/newcons/sys/vm/vm_unix.c user/ed/newcons/sys/vm/vnode_pager.c user/ed/newcons/sys/vm/vnode_pager.h user/ed/newcons/sys/x86/acpica/acpi_apm.c user/ed/newcons/sys/x86/acpica/srat.c user/ed/newcons/sys/x86/cpufreq/est.c user/ed/newcons/sys/x86/cpufreq/powernow.c user/ed/newcons/sys/x86/include/mptable.h user/ed/newcons/sys/x86/isa/clock.c user/ed/newcons/sys/x86/isa/isa.c user/ed/newcons/sys/x86/pci/qpi.c user/ed/newcons/sys/x86/x86/dump_machdep.c user/ed/newcons/sys/x86/x86/local_apic.c user/ed/newcons/sys/x86/x86/mptable.c user/ed/newcons/sys/x86/x86/mptable_pci.c user/ed/newcons/sys/x86/x86/nexus.c user/ed/newcons/sys/x86/x86/tsc.c user/ed/newcons/sys/xen/interface/io/xenbus.h user/ed/newcons/sys/xen/xenbus/xenbus.c user/ed/newcons/sys/xen/xenbus/xenbus_if.m user/ed/newcons/sys/xen/xenbus/xenbusb.c user/ed/newcons/sys/xen/xenbus/xenbusb.h user/ed/newcons/sys/xen/xenbus/xenbusb_back.c user/ed/newcons/sys/xen/xenbus/xenbusb_front.c user/ed/newcons/sys/xen/xenbus/xenbusb_if.m user/ed/newcons/sys/xen/xenbus/xenbusvar.h user/ed/newcons/sys/xen/xenstore/xenstore.c user/ed/newcons/sys/xen/xenstore/xenstorevar.h user/ed/newcons/tools/build/make_check/Makefile user/ed/newcons/tools/build/mk/OptionalObsoleteFiles.inc user/ed/newcons/tools/build/options/WITHOUT_ACCT user/ed/newcons/tools/build/options/WITHOUT_CXX user/ed/newcons/tools/build/options/WITHOUT_FDT user/ed/newcons/tools/build/options/WITHOUT_FLOPPY user/ed/newcons/tools/build/options/WITH_BSD_GREP user/ed/newcons/tools/build/options/makeman (contents, props changed) user/ed/newcons/tools/make_libdeps.sh user/ed/newcons/tools/regression/bin/sh/builtins/alias.1.stderr user/ed/newcons/tools/regression/kqueue/config.h user/ed/newcons/tools/regression/kqueue/main.c user/ed/newcons/tools/regression/kqueue/proc.c user/ed/newcons/tools/regression/lib/libc/gen/Makefile user/ed/newcons/tools/regression/lib/libc/string/test-strerror.c user/ed/newcons/tools/regression/netinet/tcpconnect/tcpconnect.c user/ed/newcons/tools/regression/netinet/tcpdrop/tcpdrop.c user/ed/newcons/tools/regression/netinet/tcpfullwindowrst/tcpfullwindowrsttest.c user/ed/newcons/tools/regression/netinet/tcpsocktimewait/tcpsocktimewait.c user/ed/newcons/tools/regression/netinet/udpconnectjail/udpconnectjail.c user/ed/newcons/tools/regression/usr.bin/printf/regress.sh user/ed/newcons/tools/regression/usr.sbin/newsyslog/regress.sh user/ed/newcons/tools/tools/README user/ed/newcons/tools/tools/ath/Makefile user/ed/newcons/tools/tools/ath/ath_ee_v14_print/ath_ee_v14_print.c user/ed/newcons/tools/tools/ath/ath_ee_v4k_print/v4k.c user/ed/newcons/tools/tools/ath/athdecode/Makefile user/ed/newcons/tools/tools/ath/athkey/Makefile user/ed/newcons/tools/tools/ath/athpoke/Makefile user/ed/newcons/tools/tools/ath/athprom/Makefile user/ed/newcons/tools/tools/ath/athregs/Makefile user/ed/newcons/tools/tools/ether_reflect/ether_reflect.1 user/ed/newcons/tools/tools/iso/check-iso3166.pl user/ed/newcons/tools/tools/nanobsd/nanobsd.sh user/ed/newcons/tools/tools/netrate/netblast/netblast.c user/ed/newcons/tools/tools/netrate/netsend/netsend.c user/ed/newcons/tools/tools/sysdoc/tunables.mdoc user/ed/newcons/usr.bin/Makefile user/ed/newcons/usr.bin/ar/acpyacc.y user/ed/newcons/usr.bin/ar/ar.c user/ed/newcons/usr.bin/ar/write.c user/ed/newcons/usr.bin/calendar/Makefile user/ed/newcons/usr.bin/calendar/calendars/calendar.all user/ed/newcons/usr.bin/calendar/calendars/calendar.freebsd user/ed/newcons/usr.bin/calendar/calendars/ru_RU.KOI8-R/calendar.all user/ed/newcons/usr.bin/calendar/io.c user/ed/newcons/usr.bin/calendar/parsedata.c user/ed/newcons/usr.bin/calendar/pom.c user/ed/newcons/usr.bin/catman/catman.c user/ed/newcons/usr.bin/clang/clang/Makefile user/ed/newcons/usr.bin/clang/clang/clang.1 user/ed/newcons/usr.bin/clang/tblgen/Makefile user/ed/newcons/usr.bin/clang/tblgen/tblgen.1 user/ed/newcons/usr.bin/cmp/regular.c user/ed/newcons/usr.bin/cmp/special.c user/ed/newcons/usr.bin/compress/doc/revision.log user/ed/newcons/usr.bin/compress/zopen.c user/ed/newcons/usr.bin/cpio/Makefile user/ed/newcons/usr.bin/cpio/cmdline.c user/ed/newcons/usr.bin/cpio/config_freebsd.h user/ed/newcons/usr.bin/cpio/cpio.c user/ed/newcons/usr.bin/cpio/cpio.h user/ed/newcons/usr.bin/cpio/test/Makefile user/ed/newcons/usr.bin/cpio/test/main.c user/ed/newcons/usr.bin/cpio/test/test.h user/ed/newcons/usr.bin/cpio/test/test_0.c user/ed/newcons/usr.bin/cpio/test/test_basic.c user/ed/newcons/usr.bin/cpio/test/test_format_newc.c user/ed/newcons/usr.bin/cpio/test/test_gcpio_compat.c user/ed/newcons/usr.bin/cpio/test/test_option_a.c user/ed/newcons/usr.bin/cpio/test/test_option_c.c user/ed/newcons/usr.bin/cpio/test/test_option_d.c user/ed/newcons/usr.bin/cpio/test/test_option_f.c user/ed/newcons/usr.bin/cpio/test/test_option_help.c user/ed/newcons/usr.bin/cpio/test/test_option_m.c user/ed/newcons/usr.bin/cpio/test/test_option_t.c user/ed/newcons/usr.bin/cpio/test/test_option_u.c user/ed/newcons/usr.bin/cpio/test/test_option_version.c user/ed/newcons/usr.bin/cpio/test/test_option_y.c user/ed/newcons/usr.bin/cpio/test/test_option_z.c user/ed/newcons/usr.bin/cpio/test/test_owner_parse.c user/ed/newcons/usr.bin/cpio/test/test_passthrough_dotdot.c user/ed/newcons/usr.bin/cpio/test/test_passthrough_reverse.c user/ed/newcons/usr.bin/cpio/test/test_pathmatch.c user/ed/newcons/usr.bin/csup/auth.c user/ed/newcons/usr.bin/csup/diff.c user/ed/newcons/usr.bin/csup/fixups.c user/ed/newcons/usr.bin/csup/updater.c user/ed/newcons/usr.bin/fetch/fetch.1 user/ed/newcons/usr.bin/fetch/fetch.c user/ed/newcons/usr.bin/find/find.1 user/ed/newcons/usr.bin/find/function.c user/ed/newcons/usr.bin/find/ls.c user/ed/newcons/usr.bin/find/main.c user/ed/newcons/usr.bin/find/option.c user/ed/newcons/usr.bin/finger/finger.c user/ed/newcons/usr.bin/finger/net.c user/ed/newcons/usr.bin/fstat/Makefile user/ed/newcons/usr.bin/fstat/fstat.1 user/ed/newcons/usr.bin/fstat/fstat.c user/ed/newcons/usr.bin/ftp/Makefile user/ed/newcons/usr.bin/gcore/elfcore.c user/ed/newcons/usr.bin/grep/Makefile user/ed/newcons/usr.bin/grep/file.c user/ed/newcons/usr.bin/grep/grep.1 user/ed/newcons/usr.bin/grep/grep.c user/ed/newcons/usr.bin/grep/grep.h user/ed/newcons/usr.bin/grep/queue.c user/ed/newcons/usr.bin/grep/util.c user/ed/newcons/usr.bin/gzip/Makefile user/ed/newcons/usr.bin/gzip/gzip.1 user/ed/newcons/usr.bin/gzip/gzip.c user/ed/newcons/usr.bin/gzip/zdiff user/ed/newcons/usr.bin/gzip/zdiff.1 user/ed/newcons/usr.bin/gzip/zuncompress.c user/ed/newcons/usr.bin/iconv/Makefile user/ed/newcons/usr.bin/ipcs/ipc.c user/ed/newcons/usr.bin/ipcs/ipcs.c user/ed/newcons/usr.bin/kdump/kdump.c user/ed/newcons/usr.bin/kdump/mksubr user/ed/newcons/usr.bin/ktrace/ktrace.c user/ed/newcons/usr.bin/lastcomm/lastcomm.c user/ed/newcons/usr.bin/lastcomm/readrec.c user/ed/newcons/usr.bin/ldd/sods.c user/ed/newcons/usr.bin/less/defines.h user/ed/newcons/usr.bin/limits/limits.1 user/ed/newcons/usr.bin/logger/logger.1 user/ed/newcons/usr.bin/logger/logger.c user/ed/newcons/usr.bin/login/login.c user/ed/newcons/usr.bin/man/man.1 user/ed/newcons/usr.bin/man/man.conf.5 user/ed/newcons/usr.bin/man/man.sh user/ed/newcons/usr.bin/mkcsmapper/mkcsmapper.1 user/ed/newcons/usr.bin/mkesdb/mkesdb.1 user/ed/newcons/usr.bin/mkuzip/mkuzip.c user/ed/newcons/usr.bin/ncal/ncal.1 user/ed/newcons/usr.bin/ncal/ncal.c user/ed/newcons/usr.bin/ncplogin/ncplogin.c user/ed/newcons/usr.bin/netstat/if.c user/ed/newcons/usr.bin/netstat/inet.c user/ed/newcons/usr.bin/netstat/netisr.c user/ed/newcons/usr.bin/netstat/sctp.c user/ed/newcons/usr.bin/nfsstat/nfsstat.1 user/ed/newcons/usr.bin/nfsstat/nfsstat.c user/ed/newcons/usr.bin/nsupdate/Makefile user/ed/newcons/usr.bin/printf/printf.1 user/ed/newcons/usr.bin/printf/printf.c user/ed/newcons/usr.bin/procstat/Makefile user/ed/newcons/usr.bin/procstat/procstat.1 user/ed/newcons/usr.bin/procstat/procstat.c user/ed/newcons/usr.bin/procstat/procstat.h user/ed/newcons/usr.bin/procstat/procstat_args.c user/ed/newcons/usr.bin/procstat/procstat_basic.c user/ed/newcons/usr.bin/procstat/procstat_bin.c user/ed/newcons/usr.bin/procstat/procstat_cred.c user/ed/newcons/usr.bin/procstat/procstat_files.c user/ed/newcons/usr.bin/procstat/procstat_kstack.c user/ed/newcons/usr.bin/procstat/procstat_sigs.c user/ed/newcons/usr.bin/procstat/procstat_threads.c user/ed/newcons/usr.bin/procstat/procstat_vm.c user/ed/newcons/usr.bin/quota/quota.c user/ed/newcons/usr.bin/rlogin/Makefile user/ed/newcons/usr.bin/rlogin/rlogin.c user/ed/newcons/usr.bin/rpcgen/rpc_hout.c user/ed/newcons/usr.bin/rpcgen/rpc_scan.c user/ed/newcons/usr.bin/rpcgen/rpc_svcout.c user/ed/newcons/usr.bin/rpcgen/rpc_tblout.c user/ed/newcons/usr.bin/rpcinfo/rpcinfo.c user/ed/newcons/usr.bin/script/script.1 user/ed/newcons/usr.bin/script/script.c user/ed/newcons/usr.bin/showmount/showmount.c user/ed/newcons/usr.bin/su/su.1 user/ed/newcons/usr.bin/su/su.c user/ed/newcons/usr.bin/systat/netstat.c user/ed/newcons/usr.bin/tail/forward.c user/ed/newcons/usr.bin/tar/Makefile user/ed/newcons/usr.bin/tar/bsdtar.1 user/ed/newcons/usr.bin/tar/bsdtar.c user/ed/newcons/usr.bin/tar/cmdline.c user/ed/newcons/usr.bin/tar/config_freebsd.h user/ed/newcons/usr.bin/tar/read.c user/ed/newcons/usr.bin/tar/subst.c user/ed/newcons/usr.bin/tar/test/Makefile user/ed/newcons/usr.bin/tar/test/main.c user/ed/newcons/usr.bin/tar/test/test.h user/ed/newcons/usr.bin/tar/test/test_0.c user/ed/newcons/usr.bin/tar/test/test_basic.c user/ed/newcons/usr.bin/tar/test/test_copy.c user/ed/newcons/usr.bin/tar/test/test_help.c user/ed/newcons/usr.bin/tar/test/test_option_q.c user/ed/newcons/usr.bin/tar/test/test_option_s.c user/ed/newcons/usr.bin/tar/test/test_patterns.c user/ed/newcons/usr.bin/tar/test/test_patterns_2.tar.uu user/ed/newcons/usr.bin/tar/test/test_patterns_3.tar.uu user/ed/newcons/usr.bin/tar/test/test_patterns_4.tar.uu user/ed/newcons/usr.bin/tar/test/test_stdio.c user/ed/newcons/usr.bin/tar/test/test_strip_components.c user/ed/newcons/usr.bin/tar/test/test_symlink_dir.c user/ed/newcons/usr.bin/tar/test/test_version.c user/ed/newcons/usr.bin/tar/util.c user/ed/newcons/usr.bin/tar/write.c user/ed/newcons/usr.bin/tftp/main.c user/ed/newcons/usr.bin/tftp/tftp.1 user/ed/newcons/usr.bin/tip/tip/tipout.c user/ed/newcons/usr.bin/top/machine.c user/ed/newcons/usr.bin/top/top.local.1 user/ed/newcons/usr.bin/truss/amd64-fbsd.c user/ed/newcons/usr.bin/truss/amd64-fbsd32.c user/ed/newcons/usr.bin/truss/i386-fbsd.c user/ed/newcons/usr.bin/truss/ia64-fbsd.c user/ed/newcons/usr.bin/truss/main.c user/ed/newcons/usr.bin/truss/powerpc-fbsd.c user/ed/newcons/usr.bin/truss/powerpc64-fbsd.c user/ed/newcons/usr.bin/truss/sparc64-fbsd.c user/ed/newcons/usr.bin/units/units.1 user/ed/newcons/usr.bin/unzip/unzip.1 user/ed/newcons/usr.bin/usbhidaction/usbhidaction.1 user/ed/newcons/usr.bin/usbhidaction/usbhidaction.c user/ed/newcons/usr.bin/usbhidctl/usbhid.c user/ed/newcons/usr.bin/usbhidctl/usbhidctl.1 user/ed/newcons/usr.bin/users/users.c user/ed/newcons/usr.bin/vmstat/vmstat.c user/ed/newcons/usr.bin/w/w.c user/ed/newcons/usr.bin/wall/wall.c user/ed/newcons/usr.bin/xargs/xargs.1 user/ed/newcons/usr.bin/xlint/lint1/decl.c user/ed/newcons/usr.bin/xlint/lint1/scan.l user/ed/newcons/usr.bin/xlint/lint1/tree.c user/ed/newcons/usr.bin/xlint/lint2/msg.c user/ed/newcons/usr.bin/xlint/lint2/read.c user/ed/newcons/usr.sbin/Makefile user/ed/newcons/usr.sbin/acpi/acpidb/Makefile user/ed/newcons/usr.sbin/acpi/iasl/Makefile user/ed/newcons/usr.sbin/ancontrol/ancontrol.c user/ed/newcons/usr.sbin/bluetooth/ath3kfw/Makefile user/ed/newcons/usr.sbin/bluetooth/bthidd/hid.c user/ed/newcons/usr.sbin/bluetooth/l2control/l2control.8 user/ed/newcons/usr.sbin/bluetooth/l2control/l2control.c user/ed/newcons/usr.sbin/bluetooth/l2ping/l2ping.8 user/ed/newcons/usr.sbin/bluetooth/l2ping/l2ping.c user/ed/newcons/usr.sbin/bsdinstall/Makefile user/ed/newcons/usr.sbin/bsdinstall/bsdinstall user/ed/newcons/usr.sbin/bsdinstall/partedit/Makefile user/ed/newcons/usr.sbin/bsdinstall/partedit/diskeditor.c user/ed/newcons/usr.sbin/bsdinstall/partedit/gpart_ops.c user/ed/newcons/usr.sbin/bsdinstall/partedit/part_wizard.c user/ed/newcons/usr.sbin/bsdinstall/partedit/partedit.c user/ed/newcons/usr.sbin/bsdinstall/partedit/partedit.h user/ed/newcons/usr.sbin/bsdinstall/partedit/partedit_powerpc.c user/ed/newcons/usr.sbin/bsdinstall/scripts/Makefile user/ed/newcons/usr.sbin/bsdinstall/scripts/adduser user/ed/newcons/usr.sbin/bsdinstall/scripts/auto user/ed/newcons/usr.sbin/bsdinstall/scripts/checksum user/ed/newcons/usr.sbin/bsdinstall/scripts/config user/ed/newcons/usr.sbin/bsdinstall/scripts/jail user/ed/newcons/usr.sbin/bsdinstall/scripts/keymap user/ed/newcons/usr.sbin/bsdinstall/scripts/netconfig user/ed/newcons/usr.sbin/bsdinstall/scripts/rootpass user/ed/newcons/usr.sbin/bsdinstall/scripts/wlanconfig user/ed/newcons/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 user/ed/newcons/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c user/ed/newcons/usr.sbin/bsnmpd/modules/snmp_hostres/snmp_hostres.3 user/ed/newcons/usr.sbin/bsnmpd/modules/snmp_wlan/Makefile user/ed/newcons/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 user/ed/newcons/usr.sbin/bsnmpd/tools/bsnmptools/bsnmpget.1 user/ed/newcons/usr.sbin/config/main.c user/ed/newcons/usr.sbin/diskinfo/diskinfo.c user/ed/newcons/usr.sbin/dnssec-signzone/Makefile user/ed/newcons/usr.sbin/faithd/faithd.8 user/ed/newcons/usr.sbin/fdread/fdread.c user/ed/newcons/usr.sbin/flowctl/Makefile user/ed/newcons/usr.sbin/flowctl/flowctl.8 user/ed/newcons/usr.sbin/flowctl/flowctl.c user/ed/newcons/usr.sbin/freebsd-update/freebsd-update.sh user/ed/newcons/usr.sbin/ftp-proxy/ftp-proxy/Makefile user/ed/newcons/usr.sbin/gpioctl/gpioctl.8 user/ed/newcons/usr.sbin/ifmcstat/ifmcstat.8 user/ed/newcons/usr.sbin/ifmcstat/ifmcstat.c user/ed/newcons/usr.sbin/jail/Makefile user/ed/newcons/usr.sbin/jail/jail.8 user/ed/newcons/usr.sbin/jail/jail.c user/ed/newcons/usr.sbin/jls/Makefile user/ed/newcons/usr.sbin/jls/jls.c user/ed/newcons/usr.sbin/kbdmap/kbdmap.c user/ed/newcons/usr.sbin/lastlogin/lastlogin.8 user/ed/newcons/usr.sbin/lastlogin/lastlogin.c user/ed/newcons/usr.sbin/lpr/common_source/ctlinfo.c user/ed/newcons/usr.sbin/lpr/common_source/ctlinfo.h user/ed/newcons/usr.sbin/lpr/common_source/matchjobs.c user/ed/newcons/usr.sbin/makefs/Makefile user/ed/newcons/usr.sbin/makefs/cd9660.c user/ed/newcons/usr.sbin/makefs/cd9660.h user/ed/newcons/usr.sbin/makefs/cd9660/cd9660_conversion.c user/ed/newcons/usr.sbin/makefs/cd9660/cd9660_eltorito.c user/ed/newcons/usr.sbin/makefs/cd9660/cd9660_strings.c user/ed/newcons/usr.sbin/makefs/cd9660/cd9660_write.c user/ed/newcons/usr.sbin/makefs/cd9660/iso9660_rrip.c user/ed/newcons/usr.sbin/makefs/ffs.c user/ed/newcons/usr.sbin/makefs/ffs/ffs_bswap.c user/ed/newcons/usr.sbin/makefs/ffs/ffs_subr.c user/ed/newcons/usr.sbin/makefs/makefs.8 user/ed/newcons/usr.sbin/makefs/makefs.c user/ed/newcons/usr.sbin/makefs/makefs.h user/ed/newcons/usr.sbin/mergemaster/mergemaster.8 user/ed/newcons/usr.sbin/mergemaster/mergemaster.sh user/ed/newcons/usr.sbin/mfiutil/mfi_config.c user/ed/newcons/usr.sbin/mfiutil/mfi_drive.c user/ed/newcons/usr.sbin/mfiutil/mfi_evt.c user/ed/newcons/usr.sbin/mfiutil/mfi_flash.c user/ed/newcons/usr.sbin/mfiutil/mfi_patrol.c user/ed/newcons/usr.sbin/mfiutil/mfi_show.c user/ed/newcons/usr.sbin/mfiutil/mfi_volume.c user/ed/newcons/usr.sbin/mfiutil/mfiutil.8 user/ed/newcons/usr.sbin/mfiutil/mfiutil.c user/ed/newcons/usr.sbin/mfiutil/mfiutil.h user/ed/newcons/usr.sbin/mountd/exports.5 user/ed/newcons/usr.sbin/mountd/mountd.8 user/ed/newcons/usr.sbin/mountd/mountd.c user/ed/newcons/usr.sbin/mtest/mtest.c user/ed/newcons/usr.sbin/named-checkconf/Makefile user/ed/newcons/usr.sbin/named/Makefile user/ed/newcons/usr.sbin/newsyslog/newsyslog.c user/ed/newcons/usr.sbin/newsyslog/newsyslog.conf.5 user/ed/newcons/usr.sbin/nfsd/nfsd.8 user/ed/newcons/usr.sbin/nfsd/nfsd.c user/ed/newcons/usr.sbin/nfsd/nfsv4.4 user/ed/newcons/usr.sbin/nfsd/stablerestart.5 user/ed/newcons/usr.sbin/nfsuserd/nfsuserd.c user/ed/newcons/usr.sbin/ntp/ntpdc/Makefile user/ed/newcons/usr.sbin/ntp/ntpq/Makefile user/ed/newcons/usr.sbin/pc-sysinstall/backend-partmanager/create-part.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend-partmanager/delete-part.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend-query/enable-net.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend-query/test-netup.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend-query/update-part-list.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-bsdlabel.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-cleanup.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-disk.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-extractimage.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-ftp.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-installcomponents.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-installpackages.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-localize.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-mountdisk.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-mountoptical.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-networking.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-newfs.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-packages.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-parse.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-runcommands.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-unmount.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-upgrade.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions-users.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/functions.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/parseconfig.sh user/ed/newcons/usr.sbin/pc-sysinstall/backend/startautoinstall.sh user/ed/newcons/usr.sbin/pc-sysinstall/examples/README user/ed/newcons/usr.sbin/pkg_install/Makefile user/ed/newcons/usr.sbin/pkg_install/Makefile.inc user/ed/newcons/usr.sbin/pkg_install/add/Makefile user/ed/newcons/usr.sbin/pkg_install/add/extract.c user/ed/newcons/usr.sbin/pkg_install/add/futil.c user/ed/newcons/usr.sbin/pkg_install/add/main.c user/ed/newcons/usr.sbin/pkg_install/add/perform.c user/ed/newcons/usr.sbin/pkg_install/create/Makefile user/ed/newcons/usr.sbin/pkg_install/create/main.c user/ed/newcons/usr.sbin/pkg_install/create/perform.c user/ed/newcons/usr.sbin/pkg_install/create/pl.c user/ed/newcons/usr.sbin/pkg_install/delete/Makefile user/ed/newcons/usr.sbin/pkg_install/delete/main.c user/ed/newcons/usr.sbin/pkg_install/delete/perform.c user/ed/newcons/usr.sbin/pkg_install/info/Makefile user/ed/newcons/usr.sbin/pkg_install/info/info.h user/ed/newcons/usr.sbin/pkg_install/info/main.c user/ed/newcons/usr.sbin/pkg_install/info/perform.c user/ed/newcons/usr.sbin/pkg_install/info/show.c user/ed/newcons/usr.sbin/pkg_install/tkpkg user/ed/newcons/usr.sbin/pkg_install/updating/Makefile user/ed/newcons/usr.sbin/pkg_install/updating/main.c user/ed/newcons/usr.sbin/pkg_install/version/Makefile user/ed/newcons/usr.sbin/pkg_install/version/main.c user/ed/newcons/usr.sbin/pkg_install/version/perform.c user/ed/newcons/usr.sbin/pmccontrol/pmccontrol.c user/ed/newcons/usr.sbin/pmcstat/pmcpl_calltree.c user/ed/newcons/usr.sbin/pmcstat/pmcstat.c user/ed/newcons/usr.sbin/pmcstat/pmcstat.h user/ed/newcons/usr.sbin/pmcstat/pmcstat_log.c user/ed/newcons/usr.sbin/portsnap/portsnap/portsnap.sh user/ed/newcons/usr.sbin/ppp/nat_cmd.c user/ed/newcons/usr.sbin/pstat/pstat.c user/ed/newcons/usr.sbin/pwd_mkdb/pwd_mkdb.c user/ed/newcons/usr.sbin/rndc-confgen/Makefile user/ed/newcons/usr.sbin/rndc/Makefile user/ed/newcons/usr.sbin/rpc.lockd/lockd.c user/ed/newcons/usr.sbin/rpc.statd/statd.c user/ed/newcons/usr.sbin/rpc.yppasswdd/yppasswdd_main.c user/ed/newcons/usr.sbin/rpc.ypupdated/update.c user/ed/newcons/usr.sbin/rpc.ypupdated/ypupdated_main.c user/ed/newcons/usr.sbin/rpc.ypupdated/ypupdated_server.c user/ed/newcons/usr.sbin/rpcbind/rpcb_stat.c user/ed/newcons/usr.sbin/rpcbind/rpcb_svc_com.c user/ed/newcons/usr.sbin/rpcbind/rpcbind.c user/ed/newcons/usr.sbin/rpcbind/util.c user/ed/newcons/usr.sbin/rpcbind/warmstart.c user/ed/newcons/usr.sbin/rtadvd/Makefile user/ed/newcons/usr.sbin/rtadvd/advcap.c user/ed/newcons/usr.sbin/rtadvd/config.c user/ed/newcons/usr.sbin/rtadvd/config.h user/ed/newcons/usr.sbin/rtadvd/if.c user/ed/newcons/usr.sbin/rtadvd/if.h user/ed/newcons/usr.sbin/rtadvd/pathnames.h user/ed/newcons/usr.sbin/rtadvd/rrenum.c user/ed/newcons/usr.sbin/rtadvd/rrenum.h user/ed/newcons/usr.sbin/rtadvd/rtadvd.8 user/ed/newcons/usr.sbin/rtadvd/rtadvd.c user/ed/newcons/usr.sbin/rtadvd/rtadvd.conf user/ed/newcons/usr.sbin/rtadvd/rtadvd.conf.5 user/ed/newcons/usr.sbin/rtadvd/rtadvd.h user/ed/newcons/usr.sbin/rtadvd/timer.c user/ed/newcons/usr.sbin/rtadvd/timer.h user/ed/newcons/usr.sbin/rtsold/dump.c user/ed/newcons/usr.sbin/rtsold/if.c user/ed/newcons/usr.sbin/rtsold/probe.c user/ed/newcons/usr.sbin/rtsold/rtsock.c user/ed/newcons/usr.sbin/rtsold/rtsol.c user/ed/newcons/usr.sbin/rtsold/rtsold.8 user/ed/newcons/usr.sbin/rtsold/rtsold.c user/ed/newcons/usr.sbin/rtsold/rtsold.h user/ed/newcons/usr.sbin/rwhod/rwhod.c user/ed/newcons/usr.sbin/service/service.8 user/ed/newcons/usr.sbin/syslogd/syslogd.8 user/ed/newcons/usr.sbin/syslogd/syslogd.c user/ed/newcons/usr.sbin/tcpdrop/tcpdrop.8 user/ed/newcons/usr.sbin/tcpdrop/tcpdrop.c user/ed/newcons/usr.sbin/timed/timedc/timedc.c user/ed/newcons/usr.sbin/tzsetup/tzsetup.8 user/ed/newcons/usr.sbin/tzsetup/tzsetup.c user/ed/newcons/usr.sbin/usbdump/Makefile user/ed/newcons/usr.sbin/usbdump/usbdump.8 user/ed/newcons/usr.sbin/usbdump/usbdump.c user/ed/newcons/usr.sbin/wpa/ndis_events/ndis_events.c user/ed/newcons/usr.sbin/wpa/wpa_cli/Makefile user/ed/newcons/usr.sbin/wpa/wpa_supplicant/Packet32.c user/ed/newcons/usr.sbin/ypserv/yp_main.c Directory Properties: user/ed/newcons/ (props changed) user/ed/newcons/cddl/contrib/opensolaris/ (props changed) user/ed/newcons/contrib/bind9/ (props changed) user/ed/newcons/contrib/binutils/ (props changed) user/ed/newcons/contrib/bzip2/ (props changed) user/ed/newcons/contrib/com_err/ (props changed) user/ed/newcons/contrib/compiler-rt/ (props changed) user/ed/newcons/contrib/dialog/ (props changed) user/ed/newcons/contrib/ee/ (props changed) user/ed/newcons/contrib/expat/ (props changed) user/ed/newcons/contrib/file/ (props changed) user/ed/newcons/contrib/gcc/ (props changed) user/ed/newcons/contrib/gdb/ (props changed) user/ed/newcons/contrib/gdtoa/ (props changed) user/ed/newcons/contrib/gnu-sort/ (props changed) user/ed/newcons/contrib/groff/ (props changed) user/ed/newcons/contrib/less/ (props changed) user/ed/newcons/contrib/libpcap/ (props changed) user/ed/newcons/contrib/libstdc++/ (props changed) user/ed/newcons/contrib/llvm/ (props changed) user/ed/newcons/contrib/llvm/tools/clang/ (props changed) user/ed/newcons/contrib/ncurses/ (props changed) user/ed/newcons/contrib/netcat/ (props changed) user/ed/newcons/contrib/ntp/ (props changed) user/ed/newcons/contrib/one-true-awk/ (props changed) user/ed/newcons/contrib/openbsm/ (props changed) user/ed/newcons/contrib/openpam/ (props changed) user/ed/newcons/contrib/openresolv/ (props changed) user/ed/newcons/contrib/pf/ (props changed) user/ed/newcons/contrib/sendmail/ (props changed) user/ed/newcons/contrib/tcpdump/ (props changed) user/ed/newcons/contrib/tcsh/ (props changed) user/ed/newcons/contrib/top/ (props changed) user/ed/newcons/contrib/top/install-sh (props changed) user/ed/newcons/contrib/tzcode/stdtime/ (props changed) user/ed/newcons/contrib/tzcode/zic/ (props changed) user/ed/newcons/contrib/tzdata/ (props changed) user/ed/newcons/contrib/wpa/ (props changed) user/ed/newcons/contrib/xz/ (props changed) user/ed/newcons/crypto/heimdal/ (props changed) user/ed/newcons/crypto/openssh/ (props changed) user/ed/newcons/crypto/openssh/openbsd-compat/sha2.c (props changed) user/ed/newcons/crypto/openssh/openbsd-compat/sha2.h (props changed) user/ed/newcons/crypto/openssh/openbsd-compat/strptime.c (props changed) user/ed/newcons/crypto/openssl/ (props changed) user/ed/newcons/etc/periodic/daily/404.status-zfs (props changed) user/ed/newcons/etc/periodic/daily/405.status-ata-raid (props changed) user/ed/newcons/etc/periodic/daily/406.status-gmirror (props changed) user/ed/newcons/etc/periodic/daily/407.status-graid3 (props changed) user/ed/newcons/etc/periodic/daily/408.status-gstripe (props changed) user/ed/newcons/etc/periodic/daily/409.status-gconcat (props changed) user/ed/newcons/etc/periodic/daily/480.status-ntpd (props changed) user/ed/newcons/etc/periodic/security/410.logincheck (props changed) user/ed/newcons/etc/periodic/security/460.chkportsum (props changed) user/ed/newcons/etc/periodic/security/510.ipfdenied (props changed) user/ed/newcons/etc/periodic/security/520.pfdenied (props changed) user/ed/newcons/etc/periodic/security/610.ipf6denied (props changed) user/ed/newcons/etc/periodic/weekly/340.noid (props changed) user/ed/newcons/etc/rc.d/opensm (props changed) user/ed/newcons/gnu/lib/ (props changed) user/ed/newcons/gnu/usr.bin/binutils/ (props changed) user/ed/newcons/gnu/usr.bin/cc/cc_tools/ (props changed) user/ed/newcons/gnu/usr.bin/gdb/ (props changed) user/ed/newcons/lib/libc/ (props changed) user/ed/newcons/lib/libc/stdtime/ (props changed) user/ed/newcons/lib/libutil/ (props changed) user/ed/newcons/lib/libz/ (props changed) user/ed/newcons/sbin/ (props changed) user/ed/newcons/sbin/ipfw/ (props changed) user/ed/newcons/share/mk/bsd.arch.inc.mk (props changed) user/ed/newcons/share/zoneinfo/ (props changed) user/ed/newcons/sys/ (props changed) user/ed/newcons/sys/amd64/include/xen/ (props changed) user/ed/newcons/sys/boot/ (props changed) user/ed/newcons/sys/boot/i386/efi/ (props changed) user/ed/newcons/sys/boot/ia64/efi/ (props changed) user/ed/newcons/sys/boot/ia64/ski/ (props changed) user/ed/newcons/sys/boot/powerpc/boot1.chrp/ (props changed) user/ed/newcons/sys/boot/powerpc/ofw/ (props changed) user/ed/newcons/sys/cddl/contrib/opensolaris/ (props changed) user/ed/newcons/sys/conf/ (props changed) user/ed/newcons/sys/contrib/dev/acpica/ (props changed) user/ed/newcons/sys/contrib/octeon-sdk/ (props changed) user/ed/newcons/sys/contrib/pf/ (props changed) user/ed/newcons/sys/contrib/x86emu/ (props changed) user/ed/newcons/usr.bin/calendar/ (props changed) user/ed/newcons/usr.bin/csup/ (props changed) user/ed/newcons/usr.bin/procstat/ (props changed) user/ed/newcons/usr.sbin/ndiscvt/ (props changed) user/ed/newcons/usr.sbin/rtadvd/ (props changed) user/ed/newcons/usr.sbin/rtsold/ (props changed) user/ed/newcons/usr.sbin/zic/ (props changed) Modified: user/ed/newcons/MAINTAINERS ============================================================================== --- user/ed/newcons/MAINTAINERS Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/MAINTAINERS Sat Oct 8 09:06:43 2011 (r226142) @@ -108,14 +108,13 @@ linux emul emulation Please discuss chan bs{diff,patch} cperciva Pre-commit review requested. portsnap cperciva Pre-commit review requested. freebsd-update cperciva Pre-commit review requested. -openssl - No non-upstream commits should be done. +openssl benl Pre-commit review requested. sys/netgraph/bluetooth emax Pre-commit review preferred. lib/libbluetooth emax Pre-commit review preferred. lib/libsdp emax Pre-commit review preferred. usr.bin/bluetooth emax Pre-commit review preferred. usr.sbin/bluetooth emax Pre-commit review preferred. gnu/usr.bin/send-pr bugmaster Pre-commit review requested. -ncurses rafan Heads-up appreciated, try not to break it. *env(3) secteam Due to the problematic security history of this code, please have patches reviewed by secteam. share/zoneinfo edwin Heads-up appreciated, since our data is coming @@ -124,8 +123,6 @@ usr.sbin/zic edwin Heads-up appreciat maintained by a third party source. lib/libc/stdtime edwin Heads-up appreciated, since parts of this code is maintained by a third party source. -sysinstall randi Please contact about any major changes so that - they can be co-ordinated. sbin/routed bms Pre-commit review; notify vendor at rhyolite.com Following are the entries from the Makefiles, and a few other sources. Modified: user/ed/newcons/Makefile ============================================================================== --- user/ed/newcons/Makefile Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/Makefile Sat Oct 8 09:06:43 2011 (r226142) @@ -19,7 +19,7 @@ # kernel - buildkernel + installkernel. # kernel-toolchain - Builds the subset of world necessary to build a kernel # doxygen - Build API documentation of the kernel, needs doxygen. -# update - Convenient way to update your source tree (cvs). +# update - Convenient way to update your source tree(s). # check-old - List obsolete directories/files/libraries. # check-old-dirs - List obsolete directories. # check-old-files - List obsolete files. @@ -65,7 +65,7 @@ # 6. `mergemaster -p' # 7. `make installworld' # 8. `make delete-old' -# 9. `mergemaster' (you may wish to use -U or -ai). +# 9. `mergemaster' (you may wish to use -i, along with -U or -F). # 10. `reboot' # 11. `make delete-old-libs' (in case no 3rd party program uses them anymore) # @@ -131,7 +131,7 @@ _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/sun4v/sparc64/:S/mips/mipsel/} +_TARGET_ARCH= ${TARGET:S/pc98/i386/:S/mips/mipsel/} .elif !defined(TARGET) && defined(TARGET_ARCH) && \ ${TARGET_ARCH} != ${MACHINE_ARCH} _TARGET= ${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/} @@ -214,7 +214,7 @@ ${TGTS}: .MAIN: all STARTTIME!= LC_ALL=C date -CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0 +CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s .if !empty(CHECK_TIME) .error check your date/time: ${STARTTIME} .endif @@ -323,12 +323,11 @@ toolchains: # existing system is. # .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets) -TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 sun4v +TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 TARGET_ARCHES_arm?= arm armeb -TARGET_ARCHES_mips?= mipsel mipseb mips64el mips64eb +TARGET_ARCHES_mips?= mipsel mipseb mips64el mips64eb mipsn32eb TARGET_ARCHES_powerpc?= powerpc powerpc64 TARGET_ARCHES_pc98?= i386 -TARGET_ARCHES_sun4v?= sparc64 .for target in ${TARGETS} TARGET_ARCHES_${target}?= ${target} .endfor Modified: user/ed/newcons/Makefile.inc1 ============================================================================== --- user/ed/newcons/Makefile.inc1 Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/Makefile.inc1 Sat Oct 8 09:06:43 2011 (r226142) @@ -12,6 +12,7 @@ # -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel # -DNO_PORTSUPDATE do not update ports in ${MAKE} update # -DNO_DOCUPDATE do not update doc in ${MAKE} update +# -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 # TARGET="machine" to crossbuild world for a different machine type @@ -130,7 +131,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 sparc64/sun4v +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 .if ${TARGET} == ${TARGET_ARCH} _t= ${TARGET} .else @@ -246,9 +247,10 @@ TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ DESTDIR= \ + BOOTSTRAPPING=${OSRELDATE} \ SSP_CFLAGS= \ - BOOTSTRAPPING=${OSRELDATE} -DNO_LINT -DNO_CPU_CFLAGS \ - -DNO_WARNS -DNO_CTF + -DNO_LINT \ + -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF # cross-tools stage XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ @@ -306,7 +308,6 @@ LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${OBJTR PATH=${TMPPATH} \ CC="${CC} ${LIB32FLAGS}" \ CXX="${CXX} ${LIB32FLAGS}" \ - OBJC="${OBJC} ${LIB32FLAGS}" \ LIBDIR=/usr/lib32 \ SHLIBDIR=/usr/lib32 @@ -830,7 +831,7 @@ buildkernel: @echo "--------------------------------------------------------------" cd ${KRNLOBJDIR}/${_kernel}; \ MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ - ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS \ + ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \ -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) @@ -869,7 +870,7 @@ reinstallkernel reinstallkernel.debug: i false .endif @echo "--------------------------------------------------------------" - @echo ">>> Installing kernel" + @echo ">>> Installing kernel ${INSTALLKERNEL}" @echo "--------------------------------------------------------------" cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ ${CROSSENV} PATH=${TMPPATH} \ @@ -904,7 +905,7 @@ doxygen: # # update # -# Update the source tree, by running cvsup and/or running cvs to update to the +# Update the source tree(s), by running cvsup/cvs/svn to update to the # latest copy. # update: @@ -927,6 +928,9 @@ update: .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) @${SUP} ${SUPFLAGS} ${DOCSUPFILE} .endif +.if defined(WWWSUPFILE) && !defined(NO_WWWUPDATE) + @${SUP} ${SUPFLAGS} ${WWWSUPFILE} +.endif .endif .if defined(CVS_UPDATE) @cd ${.CURDIR} ; \ @@ -1010,6 +1014,10 @@ _lex= usr.bin/lex _yacc= usr.bin/yacc .endif +.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 +_awk= usr.bin/awk +.endif + .if ${BOOTSTRAPPING} < 700018 _gensnmptree= usr.sbin/bsnmpd/gensnmptree .endif @@ -1019,13 +1027,15 @@ _gensnmptree= usr.sbin/bsnmpd/gensnmptre _crunchgen= usr.sbin/crunch/crunchgen .endif -# XXX: There is no way to specify bootstrap tools depending on MK-flags -# with different per-architecture default values. Always build tblgen. +.if ${MK_CLANG} != "no" _clang_tblgen= \ lib/clang/libllvmsupport \ usr.bin/clang/tblgen +.endif -.if ${MK_CDDL} != "no" +.if ${MK_CDDL} != "no" && \ + ${BOOTSTRAPPING} < 800038 && \ + !(${BOOTSTRAPPING} >= 700112 && ${BOOTSTRAPPING} < 799999) _dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge .endif @@ -1034,6 +1044,9 @@ _dtrace_tools= cddl/usr.bin/sgsmsg cddl/ _dtc= gnu/usr.bin/dtc .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} \ @@ -1043,6 +1056,7 @@ bootstrap-tools: ${_groff} \ ${_ar} \ ${_dtc} \ + ${_awk} \ usr.bin/lorder \ usr.bin/makewhatis \ ${_mklocale} \ @@ -1092,7 +1106,6 @@ build-tools: ${_aicasm} \ usr.bin/awk \ lib/libmagic \ - usr.sbin/sysinstall \ usr.bin/mkesdb_static \ usr.bin/mkcsmapper_static ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ @@ -1127,17 +1140,27 @@ _kgzip= usr.sbin/kgzip .endif .endif +.if ${MK_BINUTILS} != "no" +_binutils= gnu/usr.bin/binutils +.endif + +.if ${MK_CLANG} != "no" .if ${CC:T:Mclang} == "clang" _clang= usr.bin/clang _clang_libs= lib/clang .endif +.endif + +.if ${MK_GCC} != "no" +_cc= gnu/usr.bin/cc +.endif cross-tools: .for _tool in \ ${_clang_libs} \ ${_clang} \ - gnu/usr.bin/binutils \ - gnu/usr.bin/cc \ + ${_binutils} \ + ${_cc} \ usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \ ${_btxld} \ ${_crunchide} \ @@ -1194,11 +1217,12 @@ _startup_libs+= lib/libc gnu/lib/libgcc__L: lib/libc__L -_prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libheimntlm} \ +_prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libhdb} \ + ${_kerberos5_lib_libheimntlm} \ ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ ${_kerberos5_lib_libroken} \ lib/libbz2 lib/libcom_err lib/libcrypt \ - lib/libexpat lib/libfetch \ + lib/libexpat \ ${_lib_libgssapi} ${_lib_libipx} \ lib/libkiconv lib/libkvm lib/liblzma lib/libmd \ lib/ncurses/ncurses lib/ncurses/ncursesw \ @@ -1231,7 +1255,6 @@ _cddl_lib= cddl/lib _secure_lib_libcrypto= secure/lib/libcrypto _secure_lib_libssl= secure/lib/libssl lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L -lib/libfetch__L: secure/lib/libcrypto__L secure/lib/libssl__L lib/libmd__L .if ${MK_OPENSSH} != "no" _secure_lib_libssh= secure/lib/libssh secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L @@ -1245,6 +1268,19 @@ secure/lib/libssh__L: lib/libgssapi__L k _secure_lib= secure/lib .endif +.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/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ + secure/lib/libcrypto__L kerberos5/lib/libroken__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: lib/libcrypt__L +.endif + .if ${MK_GSSAPI} != "no" _lib_libgssapi= lib/libgssapi .endif @@ -1256,6 +1292,7 @@ _lib_libipx= lib/libipx .if ${MK_KERBEROS} != "no" _kerberos5_lib= kerberos5/lib _kerberos5_lib_libasn1= kerberos5/lib/libasn1 +_kerberos5_lib_libhdb= kerberos5/lib/libhdb _kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 _kerberos5_lib_libhx509= kerberos5/lib/libhx509 _kerberos5_lib_libroken= kerberos5/lib/libroken @@ -1267,7 +1304,7 @@ _lib_libypclnt= lib/libypclnt .endif .if ${MK_OPENSSL} == "no" -lib/libfetch__L lib/libradius__L: lib/libmd__L +lib/libradius__L: lib/libmd__L .endif .for _lib in ${_prereq_libs} @@ -1355,10 +1392,16 @@ delete-old-files: @echo ">>> Removing old files (only deletes safe to delete libs)" # Ask for every old file if the user really wants to remove it. # It's annoying, but better safe than sorry. - @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*.gz:R}; do \ +# NB: We cannot pass the list of OLD_FILES as a parameter because the +# argument list will get too long. Using .for/.endfor make "loops" will make +# the Makefile parser segfault. + @exec 3<&0; \ + ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ + while read file; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ - rm ${RM_I} "${DESTDIR}/$${file}"; \ + rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ fi; \ done # Remove catpages without corresponding manpages. @@ -1368,14 +1411,16 @@ delete-old-files: while read catpage; do \ read manpage; \ if [ ! -e "$${manpage}" ]; then \ - rm ${RM_I} $${catpage} <&3 ; \ + rm ${RM_I} $${catpage} <&3; \ fi; \ done @echo ">>> Old files removed" check-old-files: @echo ">>> Checking for old files" - @for file in ${OLD_FILES} ${OLD_FILES:Musr/share/*.gz:R}; do \ + @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ + while read file; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ echo "${DESTDIR}/$${file}"; \ fi; \ @@ -1386,24 +1431,29 @@ check-old-files: while read catpage; do \ read manpage; \ if [ ! -e "$${manpage}" ]; then \ - echo $${catpage} ; \ + echo $${catpage}; \ fi; \ done delete-old-libs: @echo ">>> Removing old libraries" @echo "${OLD_LIBS_MESSAGE}" | fmt - @for file in ${OLD_LIBS}; do \ + @exec 3<&0; \ + ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_LIBS | xargs -n1 | \ + while read file; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ - rm ${RM_I} "${DESTDIR}/$${file}"; \ + rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ fi; \ done @echo ">>> Old libraries removed" check-old-libs: @echo ">>> Checking for old libraries" - @for file in ${OLD_LIBS}; do \ + @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_LIBS | xargs -n1 | \ + while read file; do \ if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ echo "${DESTDIR}/$${file}"; \ fi; \ @@ -1411,7 +1461,9 @@ check-old-libs: delete-old-dirs: @echo ">>> Removing old directories" - @for dir in ${OLD_DIRS}; do \ + @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_DIRS | xargs -n1 | \ + while read dir; do \ if [ -d "${DESTDIR}/$${dir}" ]; then \ rmdir -v "${DESTDIR}/$${dir}" || true; \ elif [ -L "${DESTDIR}/$${dir}" ]; then \ @@ -1422,7 +1474,9 @@ delete-old-dirs: check-old-dirs: @echo ">>> Checking for old directories" - @for dir in ${OLD_DIRS}; do \ + @${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ + -V OLD_DIRS | xargs -n1 | \ + while read dir; do \ if [ -d "${DESTDIR}/$${dir}" ]; then \ echo "${DESTDIR}/$${dir}"; \ elif [ -L "${DESTDIR}/$${dir}" ]; then \ @@ -1529,7 +1583,8 @@ _xb-build-tools: _xb-cross-tools: .for _tool in \ gnu/usr.bin/binutils \ - gnu/usr.bin/cc + gnu/usr.bin/cc \ + usr.bin/ar ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \ cd ${.CURDIR}/${_tool}; \ ${CDMAKE} DIRPRFX=${_tool}/ obj; \ @@ -1554,7 +1609,8 @@ _xi-cross-tools: @echo "_xi-cross-tools" .for _tool in \ gnu/usr.bin/binutils \ - gnu/usr.bin/cc + gnu/usr.bin/cc \ + usr.bin/ar ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ cd ${.CURDIR}/${_tool}; \ ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} Modified: user/ed/newcons/ObsoleteFiles.inc ============================================================================== --- user/ed/newcons/ObsoleteFiles.inc Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/ObsoleteFiles.inc Sat Oct 8 09:06:43 2011 (r226142) @@ -38,6 +38,120 @@ # xargs -n1 | sort | uniq -d; # done +# 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 +.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 +.endif +OLD_FILES+=usr/include/ftpio.h +OLD_FILES+=usr/share/man/man3/ftpio.3.gz +# 20110915: rename congestion control manpages +OLD_FILES+=usr/share/man/man4/cc.4.gz +OLD_FILES+=usr/share/man/man9/cc.9.gz +# 20110831: atomic page flags operations +OLD_FILES+=usr/share/man/man9/vm_page_flag.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_flag_clear.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_flag_set.9.gz +# 20110828: library version bump for 9.0 +OLD_LIBS+=lib/libcam.so.5 +OLD_LIBS+=lib/libpcap.so.7 +OLD_LIBS+=lib/libufs.so.5 +OLD_LIBS+=usr/lib/libbsnmp.so.5 +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 +OLD_LIBS+=usr/lib32/libbsnmp.so.5 +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 +# 20110718: no longer useful in the age of rc.d +OLD_FILES+=usr/sbin/named.reconfig +OLD_FILES+=usr/sbin/named.reload +# 20110716: bind 9.8.0 import +OLD_LIBS+=usr/lib/liblwres.so.50 +# 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. +OLD_FILES+=usr/share/man/man9/vm_page_copy.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_protect.9.gz +OLD_FILES+=usr/share/man/man9/vm_page_zero_fill.9.gz +# 20110707: script no longer needed by /etc/rc.d/nfsd +OLD_FILES+=etc/rc.d/nfsserver +# 20110705: files moved so both NFS clients can share them +OLD_FILES+=usr/include/nfsclient/krpc.h +OLD_FILES+=usr/include/nfsclient/nfsdiskless.h +# 20110705: the switch of default NFS client to the new one +OLD_FILES+=sbin/mount_newnfs +OLD_FILES+=usr/share/man/man8/mount_newnfs.8.gz +OLD_FILES+=usr/include/nfsclient/nfs_kdtrace.h +# 20110628: calendar.msk removed +OLD_FILES+=usr/share/calendar/ru_RU.KOI8-R/calendar.msk +# 20110517: libpkg removed +OLD_FILES+=usr/include/pkg.h +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 +OLD_FILES+=usr/include/clang/2.9/mmintrin.h +OLD_FILES+=usr/include/clang/2.9/pmmintrin.h +OLD_FILES+=usr/include/clang/2.9/tmmintrin.h +OLD_FILES+=usr/include/clang/2.9/xmmintrin.h +OLD_DIRS+=usr/include/clang/2.9 +# 20110417: removal of Objective-C support +OLD_FILES+=usr/include/objc/encoding.h +OLD_FILES+=usr/include/objc/hash.h +OLD_FILES+=usr/include/objc/NXConstStr.h +OLD_FILES+=usr/include/objc/objc-api.h +OLD_FILES+=usr/include/objc/objc-decls.h +OLD_FILES+=usr/include/objc/objc-list.h +OLD_FILES+=usr/include/objc/objc.h +OLD_FILES+=usr/include/objc/Object.h +OLD_FILES+=usr/include/objc/Protocol.h +OLD_FILES+=usr/include/objc/runtime.h +OLD_FILES+=usr/include/objc/sarray.h +OLD_FILES+=usr/include/objc/thr.h +OLD_FILES+=usr/include/objc/typedstream.h +OLD_FILES+=usr/lib/libobjc.a +OLD_FILES+=usr/lib/libobjc.so +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 OLD_FILES+=usr/share/man/man8/sticky.8.gz # 20110220: new clang import which bumps version from 2.8 to 2.9 @@ -48,6 +162,8 @@ OLD_FILES+=usr/include/clang/2.8/pmmintr OLD_FILES+=usr/include/clang/2.8/tmmintrin.h OLD_FILES+=usr/include/clang/2.8/xmmintrin.h OLD_DIRS+=usr/include/clang/2.8 +# 20110119: netinet/sctp_cc_functions.h removed +OLD_FILES+=usr/include/netinet/sctp_cc_functions.h # 20110119: Remove SYSCTL_*X* sysctl additions. OLD_FILES+=usr/share/man/man9/SYSCTL_XINT.9.gz \ usr/share/man/man9/SYSCTL_XLONG.9.gz @@ -103,6 +219,8 @@ OLD_FILES+=usr/share/man/man8/MAKEDEV.8. OLD_FILES+=usr/share/man/man9/vgonel.9.gz # 20101112: removed gasp.info OLD_FILES+=usr/share/info/gasp.info.gz +# 20101109: machine/mutex.h removed +OLD_FILES+=usr/include/machine/mutex.h # 20101109: headers moved from machine/ to x86/ .if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" OLD_FILES+=usr/include/machine/mptable.h @@ -153,7 +271,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" +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" OLD_LIBS+=usr/lib32/liblzma.so.0 .endif # 20100511: move GCC-specific headers to /usr/include/gcc @@ -1984,9 +2102,9 @@ OLD_FILES+=usr/share/man/man5/ipsend.5.g OLD_FILES+=usr/bin/gtar OLD_FILES+=usr/share/man/man1/gtar.1.gz # 200503XX -OLD_FILES+=share/man/man3/exp10.3.gz -OLD_FILES+=share/man/man3/exp10f.3.gz -OLD_FILES+=share/man/man3/fpsetsticky.3.gz +OLD_FILES+=usr/share/man/man3/exp10.3.gz +OLD_FILES+=usr/share/man/man3/exp10f.3.gz +OLD_FILES+=usr/share/man/man3/fpsetsticky.3.gz # 20050324: updated release infrastructure OLD_FILES+=usr/share/man/man5/drivers.conf.5.gz # 20050317: removed from BIND 9 distribution @@ -2234,6 +2352,8 @@ OLD_FILES+=lib/libz.so OLD_FILES+=bin/cxconfig OLD_FILES+=sbin/cxconfig OLD_FILES+=usr/share/man/man8/cxconfig.8.gz +# 20031016: MULTI_DRIVER_MODULE macro removed +OLD_FILES+=usr/share/man/man9/MULTI_DRIVER_MODULE.9.gz # 200309XX OLD_FILES+=usr/bin/symorder OLD_FILES+=usr/share/man/man1/symorder.1.gz @@ -2473,7 +2593,7 @@ OLD_FILES+=usr/lib/libpam_ssh.a OLD_FILES+=usr/lib/libpam_ssh_p.a OLD_FILES+=usr/bin/help OLD_FILES+=usr/bin/sccs -.if ${TARGET_ARCH} != "amd64" && ${TARGET_ARCH} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET_ARCH} != "powerpc" +.if ${TARGET_ARCH} != "amd64" && ${TARGET} != "arm" && ${TARGET_ARCH} != "i386" && ${TARGET} != "powerpc" OLD_FILES+=usr/bin/gdbserver .endif OLD_FILES+=usr/bin/ssh-keysign @@ -4854,9 +4974,7 @@ OLD_FILES+=usr/include/netns/spidp.h OLD_FILES+=usr/include/netns/spp_debug.h OLD_FILES+=usr/include/netns/spp_timer.h OLD_FILES+=usr/include/netns/spp_var.h -OLD_FILES+=usr/include/nfs/krpc.h OLD_FILES+=usr/include/nfs/nfs.h -OLD_FILES+=usr/include/nfs/nfsdiskless.h OLD_FILES+=usr/include/nfs/nfsm_subs.h OLD_FILES+=usr/include/nfs/nfsmount.h OLD_FILES+=usr/include/nfs/nfsnode.h Modified: user/ed/newcons/UPDATING ============================================================================== --- user/ed/newcons/UPDATING Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/UPDATING Sat Oct 8 09:06:43 2011 (r226142) @@ -9,8 +9,8 @@ handbook. Items affecting the ports and packages system can be found in /usr/ports/UPDATING. Please read that file before running portupgrade. -NOTE TO PEOPLE WHO THINK THAT FreeBSD 9.x IS SLOW: - FreeBSD 9.x has many debugging features turned on, in both the kernel +NOTE TO PEOPLE WHO THINK THAT FreeBSD 10.x IS SLOW: + FreeBSD 10.x has many debugging features turned on, in both the kernel and userland. These features attempt to detect incorrect use of system primitives, and encourage loud failure through extra sanity checking and fail stop semantics. They also substantially impact @@ -22,6 +22,180 @@ NOTE TO PEOPLE WHO THINK THAT FreeBSD 9. machines to maximize performance. (To disable malloc debugging, run ln -s aj /etc/malloc.conf.) +20110930: + sysinstall has been removed + +20110923: + The stable/9 branch created in subversion. This corresponds to the + RELENG_9 branch in CVS. + +20110913: + This commit modifies vfs_register() so that it uses a hash + calculation to set vfc_typenum, which is enabled by default. + The first time a system is booted after this change, the + vfc_typenum values will change for all file systems. The + main effect of this is a change to the NFS server file handles + for file systems that use vfc_typenum in their fsid, such as ZFS. + It will, however, prevent vfc_typenum from changing when file + systems are loaded in a different order for subsequent reboots. + To disable this, you can set vfs.typenumhash=0 in /boot/loader.conf + until you are ready to remount all NFS clients after a reboot. + +20110828: + Bump the shared library version numbers for libraries that + do not use symbol versioning, have changed the ABI compared + to stable/8 and which shared library version was not bumped. + Done as part of 9.0-RELEASE cycle. + +20110815: + During the merge of Capsicum features, the fget(9) KPI was modified. + This may require the rebuilding of out-of-tree device drivers -- + issues have been reported specifically with the nVidia device driver. + __FreeBSD_version is bumped to 900041. + + Also, there is a period between 20110811 and 20110814 where the + special devices /dev/{stdin,stdout,stderr} did not work correctly. + Building world from a kernel during that window may not work. + +20110628: + The packet filter (pf) code has been updated to OpenBSD 4.5. + You need to update userland tools to be in sync with kernel. + This update breaks backward compatibility with earlier pfsync(4) + versions. Care must be taken when updating redundant firewall setups. + +20110608: + The following sysctls and tunables are retired on x86 platforms: + machdep.hlt_cpus + machdep.hlt_logical_cpus + The following sysctl is retired: + machdep.hyperthreading_allowed + The sysctls were supposed to provide a way to dynamically offline and + online selected CPUs on x86 platforms, but the implementation has not + been reliable especially with SCHED_ULE scheduler. + machdep.hyperthreading_allowed tunable is still available to ignore + hyperthreading CPUs at OS level. + Individual CPUs can be disabled using hint.lapic.X.disabled tunable, + where X is an APIC ID of a CPU. Be advised, though, that disabling + CPUs in non-uniform fashion will result in non-uniform topology and + may lead to sub-optimal system performance with SCHED_ULE, which is + a default scheduler. + +20110607: + cpumask_t type is retired and cpuset_t is used in order to describe + a mask of CPUs. + +20110531: + Changes to ifconfig(8) for dynamic address family detection mandate + that you are running a kernel of 20110525 or later. Make sure to + follow the update procedure to boot a new kernel before installing + world. + +20110513: + Support for sun4v architecture is officially dropped + +20110503: + Several KPI breaking changes have been committed to the mii(4) layer, + the PHY drivers and consequently some Ethernet drivers using mii(4). + This means that miibus.ko and the modules of the affected Ethernet + drivers need to be recompiled. + + Note to kernel developers: Given that the OUI bit reversion problem + was fixed as part of these changes all mii(4) commits related to OUIs, + i.e. to sys/dev/mii/miidevs, PHY driver probing and vendor specific + handling, no longer can be merged verbatim to stable/8 and previous + branches. + +20110430: + Users of the Atheros AR71xx SoC code now need to add 'device ar71xx_pci' + into their kernel configurations along with 'device pci'. + +20110427: + The default NFS client is now the new NFS client, so fstype "newnfs" + is now "nfs" and the regular/old NFS client is now fstype "oldnfs". + Although mounts via fstype "nfs" will usually work without userland + changes, it is recommended that the mount(8) and mount_nfs(8) + commands be rebuilt from sources and that a link to mount_nfs called + mount_oldnfs be created. The new client is compiled into the + kernel with "options NFSCL" and this is needed for diskless root + file systems. The GENERIC kernel configs have been changed to use + NFSCL and NFSD (the new server) instead of NFSCLIENT and NFSSERVER. + To use the regular/old client, you can "mount -t oldnfs ...". For + a diskless root file system, you must also include a line like: + + vfs.root.mountfrom="oldnfs:" + + in the boot/loader.conf on the root fs on the NFS server to make + a diskless root fs use the old client. + +20110424: + The GENERIC kernels for all architectures now default to the new + CAM-based ATA stack. It means that all legacy ATA drivers were + removed and replaced by respective CAM drivers. If you are using + ATA device names in /etc/fstab or other places, make sure to update + them respectively (adX -> adaY, acdX -> cdY, afdX -> daY, astX -> saY, + where 'Y's are the sequential numbers starting from zero for each type + in order of detection, unless configured otherwise with tunables, + see cam(4)). There will be symbolic links created in /dev/ to map + old adX devices to the respective adaY. They should provide basic + compatibility for file systems mounting in most cases, but they do + not support old user-level APIs and do not have respective providers + in GEOM. Consider using updated management tools with new device names. + + It is possible to load devices ahci, ata, siis and mvs as modules, + but option ATA_CAM should remain in kernel configuration to make ata + module work as CAM driver supporting legacy ATA controllers. Device ata + still can be used in modular fashion (atacore + ...). Modules atadisk + and atapi* are not used and won't affect operation in ATA_CAM mode. + Note that to use CAM-based ATA kernel should include CAM devices + scbus, pass, da (or explicitly ada), cd and optionally others. All of + them are parts of the cam module. + + ataraid(4) functionality is now supported by the RAID GEOM class. + To use it you can load geom_raid kernel module and use graid(8) tool + for management. Instead of /dev/arX device names, use /dev/raid/rX. + + No kernel config options or code have been removed, so if a problem + arises, please report it and optionally revert to the old ATA stack. + In order to do it you can remove from the kernel config: + options ATA_CAM + device ahci + device mvs + device siis + , and instead add back: + device atadisk # ATA disk drives + device ataraid # ATA RAID drives + device atapicd # ATAPI CDROM drives + device atapifd # ATAPI floppy drives + device atapist # ATAPI tape drives + +20110423: + The default NFS server has been changed to the new server, which + was referred to as the experimental server. If you need to switch + back to the old NFS server, you must now put the "-o" option on + both the mountd and nfsd commands. This can be done using the + mountd_flags and nfs_server_flags rc.conf variables until an + update to the rc scripts is committed, which is coming soon. + +20110418: + The GNU Objective-C runtime library (libobjc), and other Objective-C + related components have been removed from the base system. If you + require an Objective-C library, please use one of the available ports. + +20110331: + ath(4) has been split into bus- and device- modules. if_ath contains + the HAL, the TX rate control and the network device code. if_ath_pci + contains the PCI bus glue. For Atheros MIPS embedded systems, if_ath_ahb + contains the AHB glue. Users need to load both if_ath_pci and if_ath + in order to use ath on everything else. + + TO REPEAT: if_ath_ahb is not needed for normal users. Normal users only + need to load if_ath and if_ath_pci for ath(4) operation. + +20110314: + As part of the replacement of sysinstall, the process of building + release media has changed significantly. For details, please re-read + release(7), which has been updated to reflect the new build process. + 20110218: GNU binutils 2.17.50 (as of 2007-07-03) has been merged to -HEAD. This is the last available version under GPLv2. It brings a number of new @@ -1307,9 +1481,10 @@ COMMON ITEMS: FORMAT: This file contains a list, in reverse chronological order, of major -breakages in tracking -current. Not all things will be listed here, -and it only starts on October 16, 2004. Updating files can found in -previous releases if your system is older than this. +breakages in tracking -current. It is not guaranteed to be a complete +list of such breakages, and only contains entries since October 10, 2007. +If you need to see UPDATING entries from before that date, you will need +to fetch an UPDATING file from an older FreeBSD release. Copyright information: Modified: user/ed/newcons/bin/chmod/chmod.1 ============================================================================== --- user/ed/newcons/bin/chmod/chmod.1 Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/bin/chmod/chmod.1 Sat Oct 8 09:06:43 2011 (r226142) @@ -134,7 +134,7 @@ will run with effective gid set to the g See .Xr chmod 2 and -.Xr sticky 8 . +.Xr sticky 7 . .It Li 0400 Allow read by owner. .It Li 0200 @@ -325,10 +325,10 @@ option is non-standard and its use in sc .Xr umask 2 , .Xr fts 3 , .Xr setmode 3 , +.Xr sticky 7 , .Xr symlink 7 , .Xr chown 8 , -.Xr mount 8 , -.Xr sticky 8 +.Xr mount 8 .Sh STANDARDS The .Nm Modified: user/ed/newcons/bin/ed/POSIX ============================================================================== --- user/ed/newcons/bin/ed/POSIX Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/bin/ed/POSIX Sat Oct 8 09:06:43 2011 (r226142) @@ -75,7 +75,7 @@ DEVIATIONS 2) Since the behavior of `u' (undo) within a `g' (global) command list is not specified by POSIX, it follows the behavior of the SunOS ed: undo forces a global command list to be executed only once, rather than - for each line matching a global pattern. In addtion, each instance of + for each line matching a global pattern. In addition, each instance of `u' within a global command undoes all previous commands (including undo's) in the command list. This seems the best way, since the alternatives are either too complicated to implement or too confusing @@ -83,7 +83,7 @@ DEVIATIONS The global/undo combination is useful for masking errors that would otherwise cause a script to fail. For instance, an ed script - to remove any occurences of either `censor1' or `censor2' might be + to remove any occurrences of either `censor1' or `censor2' might be written as: ed - file <= LINECHARS) { errmsg = "line too long"; + free(lp); return NULL; } len = s - cs; @@ -102,6 +103,7 @@ put_sbuf_line(const char *cs) if (fseeko(sfp, (off_t)0, SEEK_END) < 0) { fprintf(stderr, "%s\n", strerror(errno)); errmsg = "cannot seek temp file"; + free(lp); return NULL; } sfseek = ftello(sfp); @@ -112,6 +114,7 @@ put_sbuf_line(const char *cs) sfseek = -1; fprintf(stderr, "%s\n", strerror(errno)); errmsg = "cannot write temp file"; + free(lp); return NULL; } lp->len = len; Modified: user/ed/newcons/bin/expr/expr.1 ============================================================================== --- user/ed/newcons/bin/expr/expr.1 Sat Oct 8 07:20:12 2011 (r226141) +++ user/ed/newcons/bin/expr/expr.1 Sat Oct 8 09:06:43 2011 (r226142) @@ -50,25 +50,25 @@ and writes the result on standard output All operators and operands must be passed as separate arguments. Several of the operators have special meaning to command interpreters and must therefore be quoted appropriately. -All integer operands are interpreted in base 10. +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 +prior versions of +.Nm +in +.Fx ) . .Pp -Arithmetic operations are performed using signed integer math. -If the -.Fl e -flag is specified, arithmetic uses the C +Arithmetic operations are performed using signed integer math with a +range according to the C .Vt intmax_t -data type (the largest integral type available), and -.Nm -will detect arithmetic overflow and return an error indication. -If a numeric operand is specified which is so large as to overflow -conversion to an integer, it is parsed as a string instead. -If +data type (the largest signed integral type available). +All conversions and operations are checked for overflow. +Overflow results in program termination with an error message on stdout +and with an error status. +.Pp +The .Fl e -is not specified, arithmetic operations and parsing of integer -arguments will overflow silently according to the rules of the C -standard, using the -.Vt long -data type. +option enables backwards compatible behaviour as detailed below. .Pp Operators are listed below in order of increasing precedence; all are left-associative. @@ -82,7 +82,9 @@ Return the evaluation of .Ar expr1 if it is neither an empty string nor zero; otherwise, returns the evaluation of -.Ar expr2 . +.Ar expr2 +if it is not an empty string; +otherwise, returns zero. .It Ar expr1 Li & Ar expr2 Return the evaluation of .Ar expr1 @@ -163,25 +165,26 @@ function (with a .Fa utility argument of .Dq Li expr ) -is used to determine whether compatibility mode should be enabled. +is used to determine whether backwards compatibility mode should be enabled. This feature is intended for use as a transition and debugging aid, when .Nm is used in complex scripts which cannot easily be recast to avoid the non-portable usage. -Enabling compatibility mode -also implicitly enables the +Enabling backwards compatibility mode also implicitly enables the .Fl e option, since this matches the historic behavior of .Nm in -.Fx . +.Fx . This option makes number parsing less strict and permits leading +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 -also enables compatibility mode. +also enables backwards compatibility mode. .Sh ENVIRONMENT .Bl -tag -width ".Ev EXPR_COMPAT" .It Ev EXPR_COMPAT -If set, enables compatibility mode. +If set, enables backwards compatibility mode. .El .Sh EXIT STATUS The @@ -270,8 +273,37 @@ expands to the required number. The .Nm utility conforms to -.St -p1003.1-2001 , -provided that compatibility mode is not enabled. +.St -p1003.1-2008 , +provided that backwards compatibility mode is not enabled. +.Pp +Backwards compatibility mode performs less strict checks of numeric arguments: +.Bl -bullet +.It +An empty operand string is interpreted as 0. +.El +.Bl -bullet +.It +Leading white space and/or a plus sign before an otherwise valid positive +numberic operand are allowed and will be ignored. +.El +.Pp +The extended arithmetic range and overflow checks do not conflict with +POSIX's requirement that arithmetic be done using signed longs, since +they only make a difference to the result in cases where using signed +longs would give undefined behavior. +.Pp +According to the *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-src-user@FreeBSD.ORG Sat Oct 8 09:15:05 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61B91106564A; Sat, 8 Oct 2011 09:15:05 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 496298FC16; Sat, 8 Oct 2011 09:15:05 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id p989F5Hr051589; Sat, 8 Oct 2011 09:15:05 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p989F5Lv051587; Sat, 8 Oct 2011 09:15:05 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201110080915.p989F5Lv051587@svn.freebsd.org> From: Ed Schouten Date: Sat, 8 Oct 2011 09:15:05 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r226144 - in user/ed/newcons/sys/dev/vt: font tools/fontcvt X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Oct 2011 09:15:05 -0000 Author: ed Date: Sat Oct 8 09:15:04 2011 New Revision: 226144 URL: http://svn.freebsd.org/changeset/base/226144 Log: Upgrade to Terminus 4.36. Modified: user/ed/newcons/sys/dev/vt/font/font_default.c user/ed/newcons/sys/dev/vt/tools/fontcvt/terminus.sh Modified: user/ed/newcons/sys/dev/vt/font/font_default.c ============================================================================== --- user/ed/newcons/sys/dev/vt/font/font_default.c Sat Oct 8 09:14:18 2011 (r226143) +++ user/ed/newcons/sys/dev/vt/font/font_default.c Sat Oct 8 09:15:04 2011 (r226144) @@ -1,5 +1,5 @@ /*- - * Copyright (c) 2008 Dimitar Toshkov Zhekov + * Copyright (c) 2011 Dimitar Toshkov Zhekov * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -31,7 +31,7 @@ __FBSDID("$FreeBSD$"); #include -static uint8_t font_bytes[1410 * 16] = { +static uint8_t font_bytes[1422 * 16] = { 0x00, 0x00, 0x7e, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, @@ -232,9 +232,9 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x00, 0x00, 0x00, 0x32, 0x4c, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x24, 0x24, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x24, 0x18, 0x24, 0x42, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x3a, 0x44, 0x46, 0x4a, 0x4a, 0x52, - 0x52, 0x62, 0x22, 0x5c, 0x40, 0x00, 0x00, 0x00, 0x10, 0x08, 0x42, 0x42, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x24, 0x18, 0x18, 0x24, 0x42, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x43, 0x42, 0x46, 0x4a, 0x52, + 0x62, 0x42, 0xc2, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x10, 0x08, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x08, 0x10, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x24, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, @@ -382,8 +382,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0x40, 0x80, 0x00, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x42, 0x42, 0x62, 0x52, 0x4a, - 0x46, 0x42, 0x42, 0x42, 0x02, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x02, 0x02, 0x04, 0x00, + 0x46, 0x42, 0x42, 0x42, 0x02, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x02, 0x02, 0x0c, 0x00, 0x3c, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x24, 0x18, 0x00, 0x3c, @@ -559,7 +559,7 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x00, 0x08, 0x10, 0x00, 0x44, 0x82, 0x92, 0x92, 0x92, 0x92, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x7e, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf8, 0x20, - 0x20, 0x3c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x02, 0x04, 0x00, 0x00, + 0x20, 0x3c, 0x22, 0x22, 0x22, 0x22, 0x22, 0x24, 0x00, 0x00, 0x00, 0x00, 0x08, 0x10, 0x00, 0x7e, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x40, 0x40, 0x78, 0x40, 0x40, 0x40, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x50, @@ -597,8 +597,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x0a, 0x12, 0x22, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x40, 0x40, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x44, 0x44, 0x48, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x7c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x02, 0x02, - 0x3c, 0x40, 0x40, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x92, 0x92, 0x54, 0x38, 0x54, 0x92, 0x92, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x02, 0x1c, 0x02, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x22, 0x22, @@ -622,8 +622,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x8c, 0x92, 0x92, 0xf2, 0x92, 0x92, 0x8c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x42, 0x42, 0x3e, 0x12, 0x22, 0x42, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x40, 0xf8, 0x40, 0x7c, 0x42, 0x42, - 0x42, 0x42, 0x42, 0x42, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x08, 0x10, - 0x00, 0x3c, 0x02, 0x02, 0x3c, 0x40, 0x40, 0x3c, 0x00, 0x00, 0x00, 0x00, + 0x42, 0x42, 0x42, 0x42, 0x02, 0x02, 0x0c, 0x00, 0x00, 0x00, 0x08, 0x10, + 0x00, 0x7e, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x40, 0x78, 0x40, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0x90, 0x9c, 0x92, 0x92, 0x92, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -633,9 +633,9 @@ static uint8_t font_bytes[1410 * 16] = { 0x42, 0x42, 0x42, 0x3e, 0x02, 0x02, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x7e, 0x18, 0x18, 0x00, 0x00, 0x02, 0x02, 0x7e, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x40, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x20, 0x3c, 0x02, 0x02, - 0x3c, 0x40, 0x40, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, - 0x40, 0x40, 0x40, 0xf8, 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x02, 0x7e, 0x40, 0x40, + 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, + 0x40, 0x40, 0xf8, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, 0x40, 0xf8, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, 0x40, 0x40, 0x40, 0x7c, 0x42, 0x42, 0x42, 0x42, 0x02, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -710,24 +710,32 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x3c, 0x42, 0x42, 0x7e, 0x40, 0x40, 0x3c, 0x00, 0x10, 0x10, 0x00, 0x32, 0x4c, 0x00, 0x7e, 0x40, 0x40, 0x40, 0x78, 0x40, 0x40, 0x40, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x4c, 0x00, 0x3c, 0x42, 0x42, - 0x7e, 0x40, 0x40, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, - 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x10, 0x10, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, - 0x00, 0x10, 0x10, 0x00, 0x64, 0x98, 0x00, 0x82, 0x82, 0x44, 0x44, 0x28, - 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x4c, - 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3e, 0x02, 0x02, 0x3c, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, - 0x28, 0x28, 0x28, 0x28, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x00, 0x7e, - 0x00, 0x08, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x10, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x10, 0x00, 0x00, 0x00, - 0x00, 0x12, 0x24, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x12, 0x24, 0x00, 0x00, 0x00, 0x00, + 0x7e, 0x40, 0x40, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x10, + 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x38, 0x00, 0x10, 0x10, 0x00, + 0x00, 0x00, 0x10, 0x10, 0x00, 0x30, 0x10, 0x10, 0x10, 0x10, 0x10, 0x38, + 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, + 0x42, 0x42, 0x42, 0x3c, 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x10, 0x10, 0x00, + 0x00, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, + 0x00, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x42, 0x42, 0x42, + 0x42, 0x42, 0x42, 0x3e, 0x00, 0x08, 0x08, 0x00, 0x64, 0x98, 0x00, 0x82, + 0x82, 0x44, 0x44, 0x28, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x32, 0x4c, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3e, + 0x02, 0x02, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x28, + 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x7e, 0x00, 0x7e, 0x00, 0x08, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x08, + 0x10, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x08, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x12, 0x24, 0x24, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x12, 0x12, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x24, 0x24, 0x48, 0x00, 0x00, 0x00, 0x00, 0x48, 0x48, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x24, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x7c, 0x10, 0x10, 0x10, 0x10, 0x7c, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -782,9 +790,9 @@ static uint8_t font_bytes[1410 * 16] = { 0x40, 0x40, 0x40, 0x40, 0x40, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x28, 0x28, 0x44, 0x44, 0x82, 0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x82, 0x82, 0x44, 0x44, - 0x28, 0x28, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, - 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, + 0x28, 0x28, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x3c, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x42, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x4c, 0x00, 0x32, 0x4c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x7e, 0x08, 0x10, 0x7e, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -792,7 +800,7 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x08, 0x10, 0x20, 0x10, 0x08, 0x04, 0x00, 0x3e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x10, 0x08, 0x04, 0x08, 0x10, 0x20, 0x00, 0x7c, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x10, 0x28, 0x44, 0x82, 0x82, 0x82, 0xfe, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x10, 0x28, 0x44, 0x82, 0x82, 0x82, 0x82, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0x40, 0x40, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x12, 0x12, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, 0x10, @@ -1199,8 +1207,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x76, 0xdc, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x6c, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0xc6, 0x6c, 0x38, 0x6c, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x3d, 0x67, 0x66, 0x6e, 0x7e, 0x76, 0x66, 0x66, 0xe6, 0xbc, + 0x00, 0xc6, 0x6c, 0x38, 0x38, 0x6c, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x7c, 0xc7, 0xc6, 0xce, 0xde, 0xf6, 0xe6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, @@ -1349,8 +1357,8 @@ static uint8_t font_bytes[1410 * 16] = { 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x60, 0xc0, 0x00, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xe6, 0xf6, 0xde, 0xce, 0xc6, 0xc6, 0xc6, - 0x06, 0x06, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xc6, 0xc6, - 0xc6, 0xc6, 0xc6, 0xc6, 0x06, 0x06, 0x0c, 0x00, 0x7c, 0x00, 0x7c, 0xc6, + 0x06, 0x06, 0x1c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfc, 0xc6, 0xc6, + 0xc6, 0xc6, 0xc6, 0xc6, 0x06, 0x06, 0x1c, 0x00, 0x7c, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x6c, 0x38, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, @@ -1526,7 +1534,7 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x44, 0xc6, 0xd6, 0xd6, 0xd6, 0xfe, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xfe, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xf0, 0x60, 0x60, 0x7c, 0x66, 0x66, - 0x66, 0x66, 0x66, 0x66, 0x06, 0x0c, 0x00, 0x00, 0x18, 0x30, 0x00, 0xfe, + 0x66, 0x66, 0x66, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, 0x00, 0xfe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x70, 0xd0, 0xdc, 0xd6, 0xd6, @@ -1565,8 +1573,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x1e, 0x36, 0x66, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc0, 0xc0, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x78, 0xcc, 0xcc, 0xc8, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0xfc, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0x06, 0x06, - 0x7c, 0xc0, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, 0xc0, + 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd6, 0xd6, 0x7c, 0x38, 0x7c, 0xd6, 0xd6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0x06, 0x3c, 0x06, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x66, 0x66, @@ -1590,8 +1598,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0xcc, 0xd6, 0xd6, 0xf6, 0xd6, 0xd6, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7e, 0xc6, 0xc6, 0x7e, 0x36, 0x66, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0xf8, 0x60, 0x7c, 0x66, 0x66, - 0x66, 0x66, 0x66, 0x66, 0x06, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x18, 0x30, - 0x00, 0x7c, 0x06, 0x06, 0x7c, 0xc0, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, + 0x66, 0x66, 0x66, 0x66, 0x06, 0x06, 0x1c, 0x00, 0x00, 0x00, 0x18, 0x30, + 0x00, 0xfe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc0, 0xf8, 0xc0, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x70, 0xd0, 0xdc, 0xd6, 0xd6, 0xd6, 0x9c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -1601,9 +1609,9 @@ static uint8_t font_bytes[1410 * 16] = { 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x06, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xfe, 0x38, 0x38, 0x00, 0x00, 0x06, 0x06, 0xfe, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, 0xc0, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x60, 0x60, 0x7c, 0x06, 0x06, - 0x7c, 0xc0, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x60, - 0x60, 0x60, 0x60, 0xfc, 0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0xfe, 0xc0, 0xc0, + 0xc0, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x60, + 0x60, 0x60, 0xfc, 0x60, 0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7f, 0x60, 0x60, 0xfc, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, 0xc0, 0xc0, 0xc0, 0xfc, 0xc6, 0xc6, 0xc6, 0xc6, 0x06, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, @@ -1678,22 +1686,30 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x7c, 0xc6, 0xc6, 0xfe, 0xc0, 0xc0, 0x7c, 0x00, 0x18, 0x18, 0x00, 0x76, 0xdc, 0x00, 0xfe, 0xc0, 0xc0, 0xc0, 0xf8, 0xc0, 0xc0, 0xc0, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x00, 0x7c, 0xc6, 0xc6, - 0xfe, 0xc0, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, - 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x18, 0x18, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, - 0x00, 0x18, 0x18, 0x00, 0x76, 0xdc, 0x00, 0xc3, 0xc3, 0x66, 0x66, 0x3c, - 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, - 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, 0x06, 0x06, 0x7c, 0x00, - 0x00, 0x00, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0xfe, 0x00, 0x18, 0x30, 0x30, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x33, 0x66, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, - 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x18, + 0xfe, 0xc0, 0xc0, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x18, + 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, 0x00, 0x18, 0x18, 0x00, + 0x00, 0x00, 0x18, 0x18, 0x00, 0x38, 0x18, 0x18, 0x18, 0x18, 0x18, 0x3c, + 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, + 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x18, 0x18, 0x00, + 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, + 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, + 0xc6, 0xc6, 0xc6, 0x7e, 0x00, 0x18, 0x18, 0x00, 0x76, 0xdc, 0x00, 0xc3, + 0xc3, 0x66, 0x66, 0x3c, 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x76, 0xdc, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7e, + 0x06, 0x06, 0x7c, 0x00, 0x00, 0x00, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, 0x6c, + 0x6c, 0x6c, 0x6c, 0x6c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0x00, 0xfe, + 0x00, 0x18, 0x30, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x30, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x30, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x66, 0xcc, 0xcc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x33, 0x33, 0x66, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0xcc, 0x00, 0x00, 0x00, + 0x00, 0xcc, 0xcc, 0x66, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x18, 0x18, 0x7e, 0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xdb, 0xdb, @@ -1744,8 +1760,8 @@ static uint8_t font_bytes[1410 * 16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x10, 0x38, 0x38, 0x6c, 0x6c, 0xc6, 0xc6, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0x6c, 0x6c, 0x38, 0x38, 0x10, 0x10, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, + 0x00, 0x00, 0x00, 0x00, 0x7c, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0xc6, 0x7c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x76, 0xdc, 0x00, 0x76, 0xdc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0xfe, 0x18, 0x30, 0xfe, 0xc0, 0x00, 0x00, @@ -1754,7 +1770,7 @@ static uint8_t font_bytes[1410 * 16] = { 0x18, 0x30, 0x60, 0x30, 0x18, 0x0c, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x18, 0x0c, 0x06, 0x0c, 0x18, 0x30, 0x00, 0x7e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x38, 0x6c, 0xc6, - 0xc6, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0xc6, 0xc6, 0xc6, 0xfe, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfe, 0xc0, 0xc0, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x1b, 0x1b, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, @@ -1914,7 +1930,7 @@ static uint8_t font_bytes[1410 * 16] = { 0x7e, 0x66, 0x66, 0x66, 0x66, 0x66, 0x6e, 0xec, 0xc0, 0x00, 0x00, 0x00, }; -static struct vt_font_map font_mapping_normal[249] = { +static struct vt_font_map font_mapping_normal[248] = { { 0x0020, 0x0001, 0x5e }, { 0x00a0, 0x0001, 0x00 }, { 0x00a1, 0x0060, 0x6e }, { 0x0110, 0x008f, 0x00 }, { 0x0111, 0x00cf, 0x08 }, { 0x011a, 0x00d2, 0x01 }, @@ -1998,181 +2014,180 @@ static struct vt_font_map font_mapping_n { 0x04f1, 0x00be, 0x00 }, { 0x04f2, 0x01f1, 0x03 }, { 0x04f8, 0x01f5, 0x01 }, { 0x1e34, 0x01f7, 0x01 }, { 0x1eb8, 0x01f9, 0x01 }, { 0x1ebc, 0x01fb, 0x01 }, - { 0x1ecc, 0x01fd, 0x01 }, { 0x1ef8, 0x01ff, 0x01 }, - { 0x2000, 0x0001, 0x00 }, { 0x2001, 0x0001, 0x00 }, - { 0x2002, 0x0001, 0x00 }, { 0x2003, 0x0001, 0x00 }, - { 0x2004, 0x0001, 0x00 }, { 0x2005, 0x0001, 0x00 }, - { 0x2006, 0x0001, 0x00 }, { 0x2007, 0x0001, 0x00 }, - { 0x2008, 0x0001, 0x00 }, { 0x2009, 0x0001, 0x00 }, - { 0x200a, 0x0001, 0x00 }, { 0x2010, 0x006c, 0x00 }, - { 0x2011, 0x006c, 0x00 }, { 0x2012, 0x000e, 0x00 }, - { 0x2013, 0x000e, 0x00 }, { 0x2014, 0x0201, 0x00 }, - { 0x2015, 0x0201, 0x05 }, { 0x201c, 0x0207, 0x02 }, - { 0x2020, 0x020a, 0x02 }, { 0x2026, 0x020d, 0x00 }, - { 0x2030, 0x020e, 0x00 }, { 0x2032, 0x020f, 0x01 }, - { 0x2039, 0x0211, 0x01 }, { 0x203c, 0x0213, 0x00 }, - { 0x203e, 0x0214, 0x00 }, { 0x207f, 0x0215, 0x00 }, - { 0x20a7, 0x0216, 0x00 }, { 0x20ac, 0x0217, 0x00 }, - { 0x20ae, 0x0218, 0x00 }, { 0x210e, 0x0049, 0x00 }, - { 0x210f, 0x00e3, 0x00 }, { 0x2116, 0x0219, 0x00 }, - { 0x2122, 0x021a, 0x00 }, { 0x2126, 0x016d, 0x00 }, - { 0x2190, 0x021b, 0x05 }, { 0x21a8, 0x0221, 0x00 }, - { 0x21b5, 0x0222, 0x00 }, { 0x21d0, 0x0223, 0x05 }, - { 0x2203, 0x0229, 0x00 }, { 0x2205, 0x022a, 0x00 }, - { 0x2206, 0x0165, 0x00 }, { 0x2208, 0x022b, 0x00 }, - { 0x220a, 0x022c, 0x00 }, { 0x2212, 0x000e, 0x00 }, - { 0x2219, 0x022d, 0x01 }, { 0x221e, 0x022f, 0x01 }, - { 0x2227, 0x0231, 0x03 }, { 0x2248, 0x0235, 0x00 }, - { 0x2260, 0x0236, 0x01 }, { 0x2264, 0x0238, 0x01 }, - { 0x2302, 0x023a, 0x00 }, { 0x2310, 0x023b, 0x00 }, - { 0x2320, 0x023c, 0x01 }, { 0x23ba, 0x023e, 0x03 }, - { 0x2409, 0x0242, 0x04 }, { 0x2424, 0x0247, 0x00 }, - { 0x2500, 0x0248, 0x03 }, { 0x2508, 0x024c, 0x43 }, - { 0x2550, 0x0290, 0x1c }, { 0x2580, 0x02ad, 0x08 }, - { 0x258c, 0x02b6, 0x00 }, { 0x2590, 0x02b7, 0x03 }, - { 0x2596, 0x02bb, 0x0a }, { 0x25ac, 0x02c6, 0x00 }, - { 0x25ae, 0x02c7, 0x00 }, { 0x25b2, 0x02c8, 0x00 }, - { 0x25b6, 0x02c9, 0x00 }, { 0x25bc, 0x02ca, 0x00 }, - { 0x25c0, 0x02cb, 0x00 }, { 0x25c6, 0x02cc, 0x00 }, - { 0x25ca, 0x02cd, 0x01 }, { 0x25d8, 0x02cf, 0x01 }, - { 0x263a, 0x02d1, 0x02 }, { 0x2640, 0x02d4, 0x00 }, - { 0x2642, 0x02d5, 0x00 }, { 0x2660, 0x02d6, 0x00 }, - { 0x2663, 0x02d7, 0x00 }, { 0x2665, 0x02d8, 0x00 }, - { 0x2666, 0x02cc, 0x00 }, { 0x266a, 0x02d9, 0x01 }, - { 0xf6be, 0x0148, 0x00 }, + { 0x1eca, 0x01fd, 0x03 }, { 0x1ee4, 0x0201, 0x01 }, + { 0x1ef8, 0x0203, 0x01 }, { 0x2000, 0x0001, 0x00 }, + { 0x2001, 0x0001, 0x00 }, { 0x2002, 0x0001, 0x00 }, + { 0x2003, 0x0001, 0x00 }, { 0x2004, 0x0001, 0x00 }, + { 0x2005, 0x0001, 0x00 }, { 0x2006, 0x0001, 0x00 }, + { 0x2007, 0x0001, 0x00 }, { 0x2008, 0x0001, 0x00 }, + { 0x2009, 0x0001, 0x00 }, { 0x200a, 0x0001, 0x00 }, + { 0x2010, 0x006c, 0x00 }, { 0x2011, 0x006c, 0x00 }, + { 0x2012, 0x000e, 0x00 }, { 0x2013, 0x000e, 0x00 }, + { 0x2014, 0x0205, 0x00 }, { 0x2015, 0x0205, 0x0d }, + { 0x2026, 0x0213, 0x00 }, { 0x2030, 0x0214, 0x00 }, + { 0x2032, 0x0215, 0x01 }, { 0x2039, 0x0217, 0x01 }, + { 0x203c, 0x0219, 0x00 }, { 0x203e, 0x021a, 0x00 }, + { 0x207f, 0x021b, 0x00 }, { 0x20a7, 0x021c, 0x00 }, + { 0x20ac, 0x021d, 0x00 }, { 0x20ae, 0x021e, 0x00 }, + { 0x210e, 0x0049, 0x00 }, { 0x210f, 0x00e3, 0x00 }, + { 0x2116, 0x021f, 0x00 }, { 0x2122, 0x0220, 0x00 }, + { 0x2126, 0x016d, 0x00 }, { 0x2190, 0x0221, 0x05 }, + { 0x21a8, 0x0227, 0x00 }, { 0x21b5, 0x0228, 0x00 }, + { 0x21d0, 0x0229, 0x05 }, { 0x2203, 0x022f, 0x00 }, + { 0x2205, 0x0230, 0x00 }, { 0x2206, 0x0165, 0x00 }, + { 0x2208, 0x0231, 0x00 }, { 0x220a, 0x0232, 0x00 }, + { 0x2212, 0x000e, 0x00 }, { 0x2219, 0x0233, 0x01 }, + { 0x221e, 0x0235, 0x01 }, { 0x2227, 0x0237, 0x03 }, + { 0x2248, 0x023b, 0x00 }, { 0x2260, 0x023c, 0x01 }, + { 0x2264, 0x023e, 0x01 }, { 0x2302, 0x0240, 0x00 }, + { 0x2310, 0x0241, 0x00 }, { 0x2320, 0x0242, 0x01 }, + { 0x23ba, 0x0244, 0x03 }, { 0x2409, 0x0248, 0x04 }, + { 0x2424, 0x024d, 0x00 }, { 0x2500, 0x024e, 0x03 }, + { 0x2508, 0x0252, 0x43 }, { 0x2550, 0x0296, 0x1c }, + { 0x2580, 0x02b3, 0x08 }, { 0x258c, 0x02bc, 0x00 }, + { 0x2590, 0x02bd, 0x03 }, { 0x2596, 0x02c1, 0x0a }, + { 0x25ac, 0x02cc, 0x00 }, { 0x25ae, 0x02cd, 0x00 }, + { 0x25b2, 0x02ce, 0x00 }, { 0x25b6, 0x02cf, 0x00 }, + { 0x25bc, 0x02d0, 0x00 }, { 0x25c0, 0x02d1, 0x00 }, + { 0x25c6, 0x02d2, 0x00 }, { 0x25ca, 0x02d3, 0x01 }, + { 0x25d8, 0x02d5, 0x01 }, { 0x263a, 0x02d7, 0x02 }, + { 0x2640, 0x02da, 0x00 }, { 0x2642, 0x02db, 0x00 }, + { 0x2660, 0x02dc, 0x00 }, { 0x2663, 0x02dd, 0x00 }, + { 0x2665, 0x02de, 0x00 }, { 0x2666, 0x02d2, 0x00 }, + { 0x266a, 0x02df, 0x01 }, { 0xf6be, 0x0148, 0x00 }, }; static struct vt_font_map font_mapping_bold[260] = { - { 0x0021, 0x02db, 0x0b }, { 0x002d, 0x0201, 0x00 }, - { 0x002e, 0x02e7, 0x50 }, { 0x00a1, 0x0338, 0x07 }, - { 0x00aa, 0x0340, 0x03 }, { 0x00af, 0x0344, 0x07 }, - { 0x00b7, 0x022d, 0x00 }, { 0x00b8, 0x034c, 0x57 }, - { 0x0110, 0x0364, 0x00 }, { 0x0111, 0x03a4, 0x08 }, - { 0x011a, 0x03a7, 0x01 }, { 0x011c, 0x03ad, 0x59 }, - { 0x0178, 0x0407, 0x07 }, { 0x0186, 0x040f, 0x00 }, - { 0x018e, 0x0410, 0x02 }, { 0x0192, 0x0413, 0x00 }, - { 0x019d, 0x0414, 0x01 }, { 0x01b7, 0x0416, 0x00 }, - { 0x0218, 0x0417, 0x03 }, { 0x0232, 0x041b, 0x01 }, - { 0x0237, 0x041d, 0x00 }, { 0x0254, 0x041e, 0x00 }, - { 0x0258, 0x041f, 0x01 }, { 0x025b, 0x0421, 0x00 }, - { 0x0272, 0x0422, 0x00 }, { 0x0292, 0x0423, 0x00 }, - { 0x02bb, 0x0424, 0x02 }, { 0x02c6, 0x0427, 0x01 }, - { 0x02d8, 0x0428, 0x01 }, { 0x02db, 0x042a, 0x02 }, - { 0x0300, 0x0319, 0x00 }, { 0x0301, 0x0349, 0x00 }, - { 0x0302, 0x0427, 0x00 }, { 0x0303, 0x042b, 0x00 }, - { 0x0306, 0x0428, 0x00 }, { 0x030c, 0x0428, 0x00 }, - { 0x0329, 0x042d, 0x00 }, { 0x0384, 0x042e, 0x06 }, - { 0x038c, 0x0435, 0x00 }, { 0x038e, 0x0436, 0x02 }, - { 0x0391, 0x02fa, 0x01 }, { 0x0393, 0x0439, 0x01 }, - { 0x0395, 0x02fe, 0x00 }, { 0x0396, 0x0313, 0x00 }, - { 0x0397, 0x0301, 0x00 }, { 0x0398, 0x043b, 0x00 }, - { 0x0399, 0x0302, 0x00 }, { 0x039a, 0x0304, 0x00 }, - { 0x039b, 0x043c, 0x00 }, { 0x039c, 0x0306, 0x01 }, - { 0x039e, 0x043d, 0x00 }, { 0x039f, 0x0308, 0x00 }, - { 0x03a0, 0x043e, 0x00 }, { 0x03a1, 0x0309, 0x00 }, - { 0x03a3, 0x043f, 0x00 }, { 0x03a4, 0x030d, 0x00 }, - { 0x03a5, 0x0312, 0x00 }, { 0x03a6, 0x0440, 0x00 }, - { 0x03a7, 0x0311, 0x00 }, { 0x03a8, 0x0441, 0x01 }, - { 0x03aa, 0x0363, 0x00 }, { 0x03ab, 0x0407, 0x00 }, - { 0x03ac, 0x0443, 0x08 }, { 0x03b5, 0x0421, 0x00 }, - { 0x03b6, 0x044c, 0x00 }, { 0x03b7, 0x0415, 0x00 }, - { 0x03b8, 0x044d, 0x01 }, { 0x03ba, 0x03c9, 0x00 }, - { 0x03bb, 0x044f, 0x00 }, { 0x03bc, 0x034a, 0x00 }, - { 0x03bd, 0x032f, 0x00 }, { 0x03be, 0x0450, 0x00 }, - { 0x03bf, 0x0328, 0x00 }, { 0x03c0, 0x0451, 0x0b }, - { 0x03cc, 0x0387, 0x00 }, { 0x03cd, 0x045d, 0x01 }, - { 0x03f3, 0x0323, 0x00 }, { 0x03f4, 0x045f, 0x00 }, - { 0x0400, 0x035c, 0x00 }, { 0x0401, 0x035f, 0x00 }, - { 0x0402, 0x0460, 0x02 }, { 0x0405, 0x030c, 0x00 }, - { 0x0406, 0x0302, 0x00 }, { 0x0407, 0x0363, 0x00 }, - { 0x0408, 0x0303, 0x00 }, { 0x0409, 0x0463, 0x06 }, - { 0x0410, 0x02fa, 0x00 }, { 0x0411, 0x046a, 0x00 }, - { 0x0412, 0x02fb, 0x00 }, { 0x0413, 0x0439, 0x00 }, - { 0x0414, 0x046b, 0x00 }, { 0x0415, 0x02fe, 0x00 }, - { 0x0416, 0x046c, 0x00 }, { 0x0417, 0x02ec, 0x00 }, - { 0x0418, 0x046d, 0x01 }, { 0x041a, 0x0304, 0x00 }, - { 0x041b, 0x046f, 0x00 }, { 0x041c, 0x0306, 0x00 }, - { 0x041d, 0x0301, 0x00 }, { 0x041e, 0x0308, 0x00 }, - { 0x041f, 0x043e, 0x00 }, { 0x0420, 0x0309, 0x00 }, - { 0x0421, 0x02fc, 0x00 }, { 0x0422, 0x030d, 0x00 }, - { 0x0423, 0x0470, 0x01 }, { 0x0425, 0x0311, 0x00 }, - { 0x0426, 0x0472, 0x09 }, { 0x0430, 0x031a, 0x00 }, - { 0x0431, 0x047c, 0x02 }, { 0x0434, 0x0320, 0x00 }, - { 0x0435, 0x031e, 0x00 }, { 0x0436, 0x047f, 0x01 }, - { 0x0438, 0x032e, 0x00 }, { 0x0439, 0x03fe, 0x00 }, - { 0x043a, 0x03c9, 0x00 }, { 0x043b, 0x0481, 0x02 }, - { 0x043e, 0x0328, 0x00 }, { 0x043f, 0x0451, 0x00 }, - { 0x0440, 0x0329, 0x00 }, { 0x0441, 0x031c, 0x00 }, - { 0x0442, 0x0484, 0x00 }, { 0x0443, 0x0332, 0x00 }, - { 0x0444, 0x0485, 0x00 }, { 0x0445, 0x0331, 0x00 }, - { 0x0446, 0x0486, 0x09 }, { 0x0450, 0x037c, 0x00 }, - { 0x0451, 0x037f, 0x00 }, { 0x0452, 0x0490, 0x02 }, - { 0x0455, 0x032c, 0x00 }, { 0x0456, 0x0322, 0x00 }, - { 0x0457, 0x0383, 0x00 }, { 0x0458, 0x0323, 0x00 }, - { 0x0459, 0x0493, 0x01 }, { 0x045b, 0x03b8, 0x00 }, - { 0x045c, 0x0495, 0x00 }, { 0x045d, 0x038d, 0x00 }, - { 0x045e, 0x0496, 0x01 }, { 0x0490, 0x0498, 0x0d }, - { 0x04a0, 0x04a6, 0x05 }, { 0x04aa, 0x04ac, 0x01 }, - { 0x04ae, 0x0312, 0x00 }, { 0x04af, 0x044a, 0x00 }, - { 0x04b0, 0x04ae, 0x03 }, { 0x04b6, 0x04b2, 0x05 }, - { 0x04d0, 0x0396, 0x01 }, { 0x04d2, 0x0358, 0x00 }, - { 0x04d3, 0x0378, 0x00 }, { 0x04d4, 0x035a, 0x00 }, - { 0x04d5, 0x037a, 0x00 }, { 0x04d6, 0x03a7, 0x01 }, - { 0x04d8, 0x0411, 0x00 }, { 0x04d9, 0x0420, 0x00 }, - { 0x04da, 0x04b8, 0x05 }, { 0x04e2, 0x04be, 0x00 }, - { 0x04e3, 0x03fc, 0x00 }, { 0x04e4, 0x04bf, 0x00 }, - { 0x04e5, 0x0390, 0x00 }, { 0x04e6, 0x036a, 0x00 }, - { 0x04e7, 0x038a, 0x00 }, { 0x04e8, 0x045f, 0x00 }, - { 0x04e9, 0x04c0, 0x05 }, { 0x04ef, 0x041c, 0x00 }, - { 0x04f0, 0x04c6, 0x00 }, { 0x04f1, 0x0393, 0x00 }, - { 0x04f2, 0x04c7, 0x03 }, { 0x04f8, 0x04cb, 0x01 }, - { 0x1e34, 0x04cd, 0x01 }, { 0x1eb8, 0x04cf, 0x01 }, - { 0x1ebc, 0x04d1, 0x01 }, { 0x1ecc, 0x04d3, 0x01 }, - { 0x1ef8, 0x04d5, 0x01 }, { 0x2010, 0x0343, 0x00 }, - { 0x2011, 0x0343, 0x00 }, { 0x2012, 0x0201, 0x00 }, - { 0x2013, 0x0201, 0x00 }, { 0x2016, 0x04d7, 0x03 }, - { 0x201a, 0x02e6, 0x00 }, { 0x201c, 0x04db, 0x02 }, - { 0x2020, 0x04de, 0x01 }, { 0x2026, 0x04e0, 0x00 }, - { 0x2030, 0x04e1, 0x00 }, { 0x2032, 0x04e2, 0x01 }, - { 0x2039, 0x04e4, 0x01 }, { 0x203c, 0x04e6, 0x00 }, - { 0x203e, 0x04e7, 0x00 }, { 0x207f, 0x04e8, 0x00 }, - { 0x20a7, 0x04e9, 0x00 }, { 0x20ac, 0x04ea, 0x00 }, - { 0x20ae, 0x04eb, 0x00 }, { 0x210e, 0x0321, 0x00 }, - { 0x210f, 0x03b8, 0x00 }, { 0x2126, 0x0442, 0x00 }, - { 0x2190, 0x04ec, 0x05 }, { 0x21a8, 0x04f2, 0x00 }, - { 0x21b5, 0x04f3, 0x00 }, { 0x21d0, 0x04f4, 0x05 }, - { 0x2203, 0x04fa, 0x00 }, { 0x2205, 0x04fb, 0x00 }, - { 0x2206, 0x043a, 0x00 }, { 0x2208, 0x04fc, 0x00 }, - { 0x220a, 0x04fd, 0x00 }, { 0x2212, 0x0201, 0x00 }, - { 0x2219, 0x04fe, 0x01 }, { 0x221e, 0x0500, 0x01 }, - { 0x2227, 0x0502, 0x03 }, { 0x2248, 0x0506, 0x00 }, - { 0x2260, 0x0507, 0x01 }, { 0x2264, 0x0509, 0x01 }, - { 0x2302, 0x050b, 0x00 }, { 0x2310, 0x050c, 0x00 }, - { 0x2320, 0x050d, 0x01 }, { 0x23ba, 0x050f, 0x02 }, - { 0x23bd, 0x02ae, 0x00 }, { 0x2409, 0x0512, 0x04 }, - { 0x2424, 0x0517, 0x00 }, { 0x2500, 0x0249, 0x00 }, - { 0x2501, 0x0518, 0x00 }, { 0x2502, 0x024b, 0x00 }, - { 0x2503, 0x0519, 0x00 }, { 0x2508, 0x024d, 0x00 }, - { 0x2509, 0x051a, 0x00 }, { 0x250a, 0x024f, 0x00 }, - { 0x250b, 0x051b, 0x00 }, { 0x250c, 0x0253, 0x00 }, - { 0x250d, 0x051c, 0x02 }, { 0x2510, 0x0257, 0x00 }, - { 0x2511, 0x051f, 0x02 }, { 0x2514, 0x025b, 0x00 }, - { 0x2515, 0x0522, 0x02 }, { 0x2518, 0x025f, 0x00 }, - { 0x2519, 0x0525, 0x02 }, { 0x251c, 0x0267, 0x00 }, - { 0x251d, 0x0528, 0x06 }, { 0x2524, 0x026f, 0x00 }, - { 0x2525, 0x052f, 0x06 }, { 0x252c, 0x0277, 0x00 }, - { 0x252d, 0x0536, 0x06 }, { 0x2534, 0x027f, 0x00 }, - { 0x2535, 0x053d, 0x06 }, { 0x253c, 0x028f, 0x00 }, - { 0x253d, 0x0544, 0x0e }, { 0x2550, 0x0553, 0x1c }, - { 0x25a0, 0x0570, 0x00 }, { 0x25ac, 0x0571, 0x00 }, - { 0x25ae, 0x0572, 0x00 }, { 0x25b2, 0x0573, 0x00 }, - { 0x25b6, 0x0574, 0x00 }, { 0x25bc, 0x0575, 0x00 }, - { 0x25c0, 0x0576, 0x00 }, { 0x25c6, 0x0577, 0x00 }, - { 0x25ca, 0x0578, 0x01 }, { 0x25d9, 0x057a, 0x00 }, - { 0x263c, 0x057b, 0x00 }, { 0x2640, 0x057c, 0x00 }, - { 0x2642, 0x057d, 0x00 }, { 0x2660, 0x057e, 0x00 }, - { 0x2663, 0x057f, 0x00 }, { 0x2666, 0x0577, 0x00 }, - { 0x266a, 0x0580, 0x01 }, { 0xf6be, 0x041d, 0x00 }, + { 0x0021, 0x02e1, 0x0b }, { 0x002d, 0x0205, 0x00 }, + { 0x002e, 0x02ed, 0x50 }, { 0x00a1, 0x033e, 0x07 }, + { 0x00aa, 0x0346, 0x03 }, { 0x00af, 0x034a, 0x07 }, + { 0x00b7, 0x0233, 0x00 }, { 0x00b8, 0x0352, 0x57 }, + { 0x0110, 0x036a, 0x00 }, { 0x0111, 0x03aa, 0x08 }, + { 0x011a, 0x03ad, 0x01 }, { 0x011c, 0x03b3, 0x59 }, + { 0x0178, 0x040d, 0x07 }, { 0x0186, 0x0415, 0x00 }, + { 0x018e, 0x0416, 0x02 }, { 0x0192, 0x0419, 0x00 }, + { 0x019d, 0x041a, 0x01 }, { 0x01b7, 0x041c, 0x00 }, + { 0x0218, 0x041d, 0x03 }, { 0x0232, 0x0421, 0x01 }, + { 0x0237, 0x0423, 0x00 }, { 0x0254, 0x0424, 0x00 }, + { 0x0258, 0x0425, 0x01 }, { 0x025b, 0x0427, 0x00 }, + { 0x0272, 0x0428, 0x00 }, { 0x0292, 0x0429, 0x00 }, + { 0x02bb, 0x042a, 0x02 }, { 0x02c6, 0x042d, 0x01 }, + { 0x02d8, 0x042e, 0x01 }, { 0x02db, 0x0430, 0x02 }, + { 0x0300, 0x031f, 0x00 }, { 0x0301, 0x034f, 0x00 }, + { 0x0302, 0x042d, 0x00 }, { 0x0303, 0x0431, 0x00 }, + { 0x0306, 0x042e, 0x00 }, { 0x030c, 0x042e, 0x00 }, + { 0x0329, 0x0433, 0x00 }, { 0x0384, 0x0434, 0x06 }, + { 0x038c, 0x043b, 0x00 }, { 0x038e, 0x043c, 0x02 }, + { 0x0391, 0x0300, 0x01 }, { 0x0393, 0x043f, 0x01 }, + { 0x0395, 0x0304, 0x00 }, { 0x0396, 0x0319, 0x00 }, + { 0x0397, 0x0307, 0x00 }, { 0x0398, 0x0441, 0x00 }, + { 0x0399, 0x0308, 0x00 }, { 0x039a, 0x030a, 0x00 }, + { 0x039b, 0x0442, 0x00 }, { 0x039c, 0x030c, 0x01 }, + { 0x039e, 0x0443, 0x00 }, { 0x039f, 0x030e, 0x00 }, + { 0x03a0, 0x0444, 0x00 }, { 0x03a1, 0x030f, 0x00 }, + { 0x03a3, 0x0445, 0x00 }, { 0x03a4, 0x0313, 0x00 }, + { 0x03a5, 0x0318, 0x00 }, { 0x03a6, 0x0446, 0x00 }, + { 0x03a7, 0x0317, 0x00 }, { 0x03a8, 0x0447, 0x01 }, + { 0x03aa, 0x0369, 0x00 }, { 0x03ab, 0x040d, 0x00 }, + { 0x03ac, 0x0449, 0x08 }, { 0x03b5, 0x0427, 0x00 }, + { 0x03b6, 0x0452, 0x00 }, { 0x03b7, 0x041b, 0x00 }, + { 0x03b8, 0x0453, 0x01 }, { 0x03ba, 0x03cf, 0x00 }, + { 0x03bb, 0x0455, 0x00 }, { 0x03bc, 0x0350, 0x00 }, + { 0x03bd, 0x0335, 0x00 }, { 0x03be, 0x0456, 0x00 }, + { 0x03bf, 0x032e, 0x00 }, { 0x03c0, 0x0457, 0x0b }, + { 0x03cc, 0x038d, 0x00 }, { 0x03cd, 0x0463, 0x01 }, + { 0x03f3, 0x0329, 0x00 }, { 0x03f4, 0x0465, 0x00 }, + { 0x0400, 0x0362, 0x00 }, { 0x0401, 0x0365, 0x00 }, + { 0x0402, 0x0466, 0x02 }, { 0x0405, 0x0312, 0x00 }, + { 0x0406, 0x0308, 0x00 }, { 0x0407, 0x0369, 0x00 }, + { 0x0408, 0x0309, 0x00 }, { 0x0409, 0x0469, 0x06 }, + { 0x0410, 0x0300, 0x00 }, { 0x0411, 0x0470, 0x00 }, + { 0x0412, 0x0301, 0x00 }, { 0x0413, 0x043f, 0x00 }, + { 0x0414, 0x0471, 0x00 }, { 0x0415, 0x0304, 0x00 }, + { 0x0416, 0x0472, 0x00 }, { 0x0417, 0x02f2, 0x00 }, + { 0x0418, 0x0473, 0x01 }, { 0x041a, 0x030a, 0x00 }, + { 0x041b, 0x0475, 0x00 }, { 0x041c, 0x030c, 0x00 }, + { 0x041d, 0x0307, 0x00 }, { 0x041e, 0x030e, 0x00 }, + { 0x041f, 0x0444, 0x00 }, { 0x0420, 0x030f, 0x00 }, + { 0x0421, 0x0302, 0x00 }, { 0x0422, 0x0313, 0x00 }, + { 0x0423, 0x0476, 0x01 }, { 0x0425, 0x0317, 0x00 }, + { 0x0426, 0x0478, 0x09 }, { 0x0430, 0x0320, 0x00 }, + { 0x0431, 0x0482, 0x02 }, { 0x0434, 0x0326, 0x00 }, + { 0x0435, 0x0324, 0x00 }, { 0x0436, 0x0485, 0x01 }, + { 0x0438, 0x0334, 0x00 }, { 0x0439, 0x0404, 0x00 }, + { 0x043a, 0x03cf, 0x00 }, { 0x043b, 0x0487, 0x02 }, + { 0x043e, 0x032e, 0x00 }, { 0x043f, 0x0457, 0x00 }, + { 0x0440, 0x032f, 0x00 }, { 0x0441, 0x0322, 0x00 }, + { 0x0442, 0x048a, 0x00 }, { 0x0443, 0x0338, 0x00 }, + { 0x0444, 0x048b, 0x00 }, { 0x0445, 0x0337, 0x00 }, + { 0x0446, 0x048c, 0x09 }, { 0x0450, 0x0382, 0x00 }, + { 0x0451, 0x0385, 0x00 }, { 0x0452, 0x0496, 0x02 }, + { 0x0455, 0x0332, 0x00 }, { 0x0456, 0x0328, 0x00 }, + { 0x0457, 0x0389, 0x00 }, { 0x0458, 0x0329, 0x00 }, + { 0x0459, 0x0499, 0x01 }, { 0x045b, 0x03be, 0x00 }, + { 0x045c, 0x049b, 0x00 }, { 0x045d, 0x0393, 0x00 }, + { 0x045e, 0x049c, 0x01 }, { 0x0490, 0x049e, 0x0d }, + { 0x04a0, 0x04ac, 0x05 }, { 0x04aa, 0x04b2, 0x01 }, + { 0x04ae, 0x0318, 0x00 }, { 0x04af, 0x0450, 0x00 }, + { 0x04b0, 0x04b4, 0x03 }, { 0x04b6, 0x04b8, 0x05 }, + { 0x04d0, 0x039c, 0x01 }, { 0x04d2, 0x035e, 0x00 }, + { 0x04d3, 0x037e, 0x00 }, { 0x04d4, 0x0360, 0x00 }, + { 0x04d5, 0x0380, 0x00 }, { 0x04d6, 0x03ad, 0x01 }, + { 0x04d8, 0x0417, 0x00 }, { 0x04d9, 0x0426, 0x00 }, + { 0x04da, 0x04be, 0x05 }, { 0x04e2, 0x04c4, 0x00 }, + { 0x04e3, 0x0402, 0x00 }, { 0x04e4, 0x04c5, 0x00 }, + { 0x04e5, 0x0396, 0x00 }, { 0x04e6, 0x0370, 0x00 }, + { 0x04e7, 0x0390, 0x00 }, { 0x04e8, 0x0465, 0x00 }, + { 0x04e9, 0x04c6, 0x05 }, { 0x04ef, 0x0422, 0x00 }, + { 0x04f0, 0x04cc, 0x00 }, { 0x04f1, 0x0399, 0x00 }, + { 0x04f2, 0x04cd, 0x03 }, { 0x04f8, 0x04d1, 0x01 }, + { 0x1e34, 0x04d3, 0x01 }, { 0x1eb8, 0x04d5, 0x01 }, + { 0x1ebc, 0x04d7, 0x01 }, { 0x1eca, 0x04d9, 0x03 }, + { 0x1ee4, 0x04dd, 0x01 }, { 0x1ef8, 0x04df, 0x01 }, + { 0x2010, 0x0349, 0x00 }, { 0x2011, 0x0349, 0x00 }, + { 0x2012, 0x0205, 0x00 }, { 0x2013, 0x0205, 0x00 }, + { 0x2016, 0x04e1, 0x03 }, { 0x201a, 0x02ec, 0x00 }, + { 0x201b, 0x04e5, 0x06 }, { 0x2026, 0x04ec, 0x00 }, + { 0x2030, 0x04ed, 0x00 }, { 0x2032, 0x04ee, 0x01 }, + { 0x2039, 0x04f0, 0x01 }, { 0x203c, 0x04f2, 0x00 }, + { 0x203e, 0x04f3, 0x00 }, { 0x207f, 0x04f4, 0x00 }, + { 0x20a7, 0x04f5, 0x00 }, { 0x20ac, 0x04f6, 0x00 }, + { 0x20ae, 0x04f7, 0x00 }, { 0x210e, 0x0327, 0x00 }, + { 0x210f, 0x03be, 0x00 }, { 0x2126, 0x0448, 0x00 }, + { 0x2190, 0x04f8, 0x05 }, { 0x21a8, 0x04fe, 0x00 }, + { 0x21b5, 0x04ff, 0x00 }, { 0x21d0, 0x0500, 0x05 }, + { 0x2203, 0x0506, 0x00 }, { 0x2205, 0x0507, 0x00 }, + { 0x2206, 0x0440, 0x00 }, { 0x2208, 0x0508, 0x00 }, + { 0x220a, 0x0509, 0x00 }, { 0x2212, 0x0205, 0x00 }, + { 0x2219, 0x050a, 0x01 }, { 0x221e, 0x050c, 0x01 }, + { 0x2227, 0x050e, 0x03 }, { 0x2248, 0x0512, 0x00 }, + { 0x2260, 0x0513, 0x01 }, { 0x2264, 0x0515, 0x01 }, + { 0x2302, 0x0517, 0x00 }, { 0x2310, 0x0518, 0x00 }, + { 0x2320, 0x0519, 0x01 }, { 0x23ba, 0x051b, 0x02 }, + { 0x23bd, 0x02b4, 0x00 }, { 0x2409, 0x051e, 0x04 }, + { 0x2424, 0x0523, 0x00 }, { 0x2500, 0x024f, 0x00 }, + { 0x2501, 0x0524, 0x00 }, { 0x2502, 0x0251, 0x00 }, + { 0x2503, 0x0525, 0x00 }, { 0x2508, 0x0253, 0x00 }, + { 0x2509, 0x0526, 0x00 }, { 0x250a, 0x0255, 0x00 }, + { 0x250b, 0x0527, 0x00 }, { 0x250c, 0x0259, 0x00 }, + { 0x250d, 0x0528, 0x02 }, { 0x2510, 0x025d, 0x00 }, + { 0x2511, 0x052b, 0x02 }, { 0x2514, 0x0261, 0x00 }, + { 0x2515, 0x052e, 0x02 }, { 0x2518, 0x0265, 0x00 }, + { 0x2519, 0x0531, 0x02 }, { 0x251c, 0x026d, 0x00 }, + { 0x251d, 0x0534, 0x06 }, { 0x2524, 0x0275, 0x00 }, + { 0x2525, 0x053b, 0x06 }, { 0x252c, 0x027d, 0x00 }, + { 0x252d, 0x0542, 0x06 }, { 0x2534, 0x0285, 0x00 }, + { 0x2535, 0x0549, 0x06 }, { 0x253c, 0x0295, 0x00 }, + { 0x253d, 0x0550, 0x0e }, { 0x2550, 0x055f, 0x1c }, + { 0x25a0, 0x057c, 0x00 }, { 0x25ac, 0x057d, 0x00 }, + { 0x25ae, 0x057e, 0x00 }, { 0x25b2, 0x057f, 0x00 }, + { 0x25b6, 0x0580, 0x00 }, { 0x25bc, 0x0581, 0x00 }, + { 0x25c0, 0x0582, 0x00 }, { 0x25c6, 0x0583, 0x00 }, + { 0x25ca, 0x0584, 0x01 }, { 0x25d9, 0x0586, 0x00 }, + { 0x263c, 0x0587, 0x00 }, { 0x2640, 0x0588, 0x00 }, + { 0x2642, 0x0589, 0x00 }, { 0x2660, 0x058a, 0x00 }, + { 0x2663, 0x058b, 0x00 }, { 0x2666, 0x0583, 0x00 }, + { 0x266a, 0x058c, 0x01 }, { 0xf6be, 0x0423, 0x00 }, }; struct vt_font vt_font_default = { @@ -2180,7 +2195,7 @@ struct vt_font vt_font_default = { .vf_height = 16, .vf_bytes = font_bytes, .vf_normal = font_mapping_normal, - .vf_normal_length = 249, + .vf_normal_length = 248, .vf_bold = font_mapping_bold, .vf_bold_length = 260, .vf_refcount = 1, Modified: user/ed/newcons/sys/dev/vt/tools/fontcvt/terminus.sh ============================================================================== --- user/ed/newcons/sys/dev/vt/tools/fontcvt/terminus.sh Sat Oct 8 09:14:18 2011 (r226143) +++ user/ed/newcons/sys/dev/vt/tools/fontcvt/terminus.sh Sat Oct 8 09:15:04 2011 (r226144) @@ -1,12 +1,12 @@ #!/bin/sh -for i in 6:12 8:14 8:16 10:20 11:22 12:24 14:28 16:32 +for i in 6:12 8:14 8:16 10:18 10:20 11:22 12:24 14:28 16:32 do C=`echo $i | cut -f 1 -d :` R=`echo $i | cut -f 2 -d :` ./fontcvt \ $C $R \ - ~/terminus-font-4.32/ter-u${R}n.bdf \ - ~/terminus-font-4.32/ter-u${R}b.bdf \ + ~/terminus-font-4.36/ter-u${R}n.bdf \ + ~/terminus-font-4.36/ter-u${R}b.bdf \ terminus-u${R}.vfnt gzip -9nf terminus-u${R}.vfnt done